:root {
  --ink: #15201c;
  --muted: #53625b;
  --line: #d9e0dc;
  --paper: #f8f6ef;
  --white: #ffffff;
  --green: #1f5b46;
  --green-dark: #163d31;
  --amber: #c9832f;
  --clay: #8f4f35;
  --blue: #264b61;
  --shadow: 0 18px 50px rgba(20, 31, 27, .14);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Segoe UI", Helvetica, sans-serif;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
}

.center {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 246, 239, .95);
  border-bottom: 1px solid rgba(21, 32, 28, .1);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--paper);
  border-radius: 8px;
  font-family: Georgia, serif;
  font-weight: 700;
}

.brand strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1rem;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: .78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-size: .92rem;
}

.nav-links a,
.mobile-menu a,
.site-footer a {
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--green);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.15;
  cursor: pointer;
}

.btn.primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green-dark);
}

.btn.primary:hover {
  background: var(--green-dark);
}

.btn.secondary {
  background: rgba(255, 255, 255, .84);
  color: var(--ink);
  border-color: var(--line);
}

.btn.full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: var(--ink);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  padding: 8px 16px 18px;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(21, 32, 28, .08);
}

.mobile-sticky {
  display: none;
}

.home-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #1d2924;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 26, 22, .93) 0%, rgba(15, 26, 22, .78) 38%, rgba(15, 26, 22, .22) 72%, rgba(15, 26, 22, .45) 100%),
    url("/assets/img/hero-inspection-charpente.webp") center right / cover no-repeat;
  transform: scale(1.01);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 360px;
  gap: 42px;
  padding: 96px 0 72px;
}

.hero-copy {
  max-width: 770px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 5.4rem);
  max-width: 11ch;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.lead,
.page-hero p {
  font-size: 1.16rem;
  color: rgba(255, 255, 255, .86);
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.center-actions {
  justify-content: center;
}

.hero-disclaimer {
  margin-top: 18px;
  color: rgba(255, 255, 255, .72);
  font-size: .95rem;
}

.hero-panel,
.cta-box,
.quote-block,
.form-aside,
.lead-form {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  align-self: end;
  padding: 24px;
  background: rgba(248, 246, 239, .94);
  color: var(--ink);
}

.hero-panel strong {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.hero-panel ul,
.form-aside ul {
  margin: 0;
  padding-left: 18px;
}

.section {
  padding: 78px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-head p,
.split p,
.article-body p,
.cta-box p,
.quote-block p {
  color: var(--muted);
}

.trust-strip {
  padding: 28px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-grid div {
  padding: 20px;
  border-left: 4px solid var(--green);
  background: #f9fbf8;
}

.trust-grid span {
  color: var(--amber);
  font-weight: 900;
}

.trust-grid strong {
  display: block;
  margin: 4px 0;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
}

.card-grid,
.zone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.small-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.zone-card,
.mini-card {
  display: block;
  min-height: 100%;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease;
}

.service-card:hover,
.zone-card:hover,
.mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 91, 70, .45);
}

.service-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--clay);
  font-weight: 800;
  font-size: .85rem;
}

.service-card p,
.zone-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.band {
  background: #edf2ee;
  border-block: 1px solid var(--line);
}

.band.soft {
  background: #f1f5f4;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 40px;
  align-items: start;
}

.quote-block,
.cta-box {
  padding: 26px;
  background: var(--white);
  border-color: var(--line);
}

.legal-note {
  padding: 16px;
  margin: 18px 0 0;
  background: #fff7e8;
  border: 1px solid #ecd4aa;
  border-radius: var(--radius);
  color: #5d4424;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.city-cloud,
.nearby-list,
.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-cloud a,
.city-cloud span,
.nearby-list span,
.check-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.city-cloud small {
  margin-left: 6px;
  color: var(--muted);
  font-weight: 600;
}

.guide-list {
  display: grid;
  gap: 10px;
}

.guide-list a {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 750;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 18px;
  background: #fbfcfa;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 800;
}

.faq-item p {
  margin-top: 0;
  color: var(--muted);
}

.breadcrumb {
  background: #eef2ee;
  border-bottom: 1px solid var(--line);
}

.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 14px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .9rem;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
}

.page-hero {
  padding: 90px 0;
  background:
    linear-gradient(90deg, rgba(22, 61, 49, .95), rgba(31, 91, 70, .85)),
    url("/assets/img/hero-inspection-charpente.webp") center / cover no-repeat;
  color: var(--white);
}

.page-hero.compact {
  padding: 72px 0;
}

.page-hero.city-hero {
  background:
    linear-gradient(90deg, rgba(38, 75, 97, .95), rgba(31, 91, 70, .82)),
    url("/assets/img/hero-inspection-charpente.webp") center / cover no-repeat;
}

.article-layout,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 36px;
  align-items: start;
}

.article-body {
  max-width: 820px;
}

.article-section {
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.article-aside {
  position: sticky;
  top: 96px;
}

.legal-page h2 {
  margin-top: 34px;
}

.form-layout {
  grid-template-columns: 330px minmax(0, 1fr);
}

.form-aside,
.lead-form {
  background: var(--white);
  border-color: var(--line);
  padding: 26px;
}

.form-aside {
  position: sticky;
  top: 96px;
}

.lead-form {
  display: grid;
  gap: 18px;
}

.form-grid.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label,
.consent {
  font-weight: 800;
}

.form-row label span {
  color: var(--clay);
}

.form-row small {
  color: var(--muted);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd5cf;
  border-radius: 8px;
  background: #fbfcfa;
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 91, 70, .18);
  border-color: var(--green);
}

.hint,
.form-footnote {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.consent {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbf7;
  font-weight: 600;
  line-height: 1.45;
}

.consent input {
  width: 20px;
  min-height: 20px;
  margin-top: 3px;
}

.form-errors {
  padding: 16px;
  border: 1px solid #d99382;
  border-radius: var(--radius);
  background: #fff1ec;
  color: #733621;
}

.form-errors ul {
  margin-bottom: 0;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 58px 0 28px;
  background: #17211d;
  color: rgba(255, 255, 255, .82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, .7fr));
  gap: 32px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 16px;
}

.site-footer h2 {
  font-size: 1rem;
  color: var(--white);
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.footer-small {
  font-size: .9rem;
  color: rgba(255, 255, 255, .62);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .9rem;
  color: rgba(255, 255, 255, .62);
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .mobile-menu.open {
    display: block;
  }

  .hero-grid,
  .split,
  .article-layout,
  .form-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .form-aside,
  .article-aside {
    position: static;
  }

  .card-grid,
  .zone-grid,
  .small-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .home-hero {
    min-height: auto;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(15, 26, 22, .92) 0%, rgba(15, 26, 22, .82) 56%, rgba(15, 26, 22, .95) 100%),
      url("/assets/img/hero-inspection-charpente.webp") center / cover no-repeat;
  }

  .hero-grid {
    padding: 70px 0 42px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
    max-width: 10.5ch;
  }

  h2 {
    font-size: 1.75rem;
  }

  .lead,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .center-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 54px 0;
  }

  .card-grid,
  .zone-grid,
  .small-grid,
  .trust-grid,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-sticky {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
  }

  .mobile-sticky a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: var(--green);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .24);
  }

  .site-footer {
    padding-bottom: 86px;
  }
}

/* CRO/UI pass before indexation */
:root {
  --ink: #18211c;
  --muted: #5d665f;
  --line: #d8dbd2;
  --paper: #f5f0e6;
  --white: #fffdf8;
  --green: #275b41;
  --green-dark: #183a2b;
  --amber: #b86f22;
  --clay: #8d4d32;
  --blue: #2f5360;
  --cream: #fbf7ed;
  --urgent: #a4442b;
  --shadow: 0 22px 48px rgba(39, 31, 23, .12);
  --shadow-soft: 0 10px 26px rgba(39, 31, 23, .08);
}

body {
  background:
    radial-gradient(circle at top left, rgba(184, 111, 34, .08), transparent 34rem),
    linear-gradient(180deg, #f7f2e8 0%, #f5f0e6 42%, #f8f5ed 100%);
  font-family: "Avenir Next", "Segoe UI", Helvetica, sans-serif;
  font-size: 16px;
}

.site-header {
  background: rgba(255, 253, 248, .96);
  border-bottom-color: rgba(24, 33, 28, .11);
}

.nav-wrap {
  min-height: 78px;
}

.brand-mark {
  background: linear-gradient(135deg, var(--green), #214533);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18), 0 8px 18px rgba(24, 58, 43, .2);
}

.brand strong {
  font-size: 1.04rem;
}

.nav-links {
  gap: 22px;
  font-weight: 750;
}

.nav-links a {
  color: #2b342f;
}

.btn {
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 8px;
  box-shadow: none;
}

.btn.primary {
  background: linear-gradient(180deg, #2f6a4c 0%, var(--green-dark) 100%);
  border-color: #102a1f;
  box-shadow: 0 12px 28px rgba(24, 58, 43, .24);
}

.btn.primary:hover {
  background: linear-gradient(180deg, #24533c 0%, #122d22 100%);
}

.btn.secondary {
  background: rgba(255, 253, 248, .94);
  border-color: rgba(255, 255, 255, .48);
  box-shadow: 0 10px 22px rgba(24, 33, 28, .12);
}

.home-hero {
  min-height: 720px;
  background: #18241f;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(16, 27, 22, .96) 0%, rgba(16, 27, 22, .86) 38%, rgba(16, 27, 22, .34) 72%, rgba(16, 27, 22, .56) 100%),
    url("/assets/img/hero-inspection-charpente.webp") center right / cover no-repeat;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: end;
  gap: 54px;
  padding: 104px 0 80px;
}

h1 {
  font-size: 4.55rem;
  max-width: 12ch;
}

h2 {
  font-size: 2.65rem;
  max-width: 13ch;
}

.lead,
.page-hero p {
  max-width: 760px;
}

.hero-copy .lead {
  margin-top: 22px;
  font-size: 1.24rem;
  color: rgba(255, 253, 248, .9);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
  max-width: 850px;
}

.hero-benefits div {
  padding: 16px;
  min-height: 122px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 253, 248, .09);
  backdrop-filter: blur(8px);
}

.hero-benefits strong {
  display: block;
  color: #fff5df;
  margin-bottom: 8px;
  font-family: Georgia, serif;
  font-size: 1.12rem;
}

.hero-benefits span {
  display: block;
  color: rgba(255, 253, 248, .76);
  font-size: .93rem;
}

.hero-disclaimer {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(0, 0, 0, .18);
  color: rgba(255, 253, 248, .82);
}

.hero-panel,
.cta-box,
.quote-block,
.form-aside,
.lead-form,
.service-card,
.zone-card,
.mini-card,
.summary-box,
.inline-cta,
.service-visual,
.form-aside-visual {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  padding: 28px;
  background: rgba(255, 253, 248, .96);
  border: 1px solid rgba(255, 255, 255, .54);
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--urgent);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-panel ul {
  display: grid;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--muted);
}

.trust-strip {
  padding: 34px 0;
  background: var(--cream);
}

.trust-grid div {
  border-left: 0;
  border-top: 4px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.section {
  padding: 90px 0;
}

.section-head {
  margin-bottom: 34px;
}

.section-head p {
  font-size: 1.06rem;
}

.service-card,
.zone-card,
.mini-card {
  background: var(--white);
  border-color: rgba(82, 91, 82, .18);
  box-shadow: var(--shadow-soft);
}

.service-card {
  padding: 26px;
}

.service-card span {
  color: var(--urgent);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.service-card h3 {
  min-height: 3em;
}

.band {
  background: linear-gradient(180deg, #eaf0e7 0%, #eef1e8 100%);
}

.band.soft {
  background: #f8f4ea;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}

.quote-block,
.cta-box {
  background: var(--white);
  border: 1px solid rgba(82, 91, 82, .18);
}

.legal-note {
  background: #fff5dd;
  border-color: #e6c684;
}

.city-cloud a,
.city-cloud span,
.nearby-list span,
.check-list span {
  background: var(--white);
  border-color: rgba(82, 91, 82, .19);
  box-shadow: 0 5px 14px rgba(39, 31, 23, .05);
}

.page-hero {
  padding: 96px 0;
}

.page-hero.compact {
  padding: 78px 0;
}

.devis-hero h1 {
  max-width: 13ch;
}

.form-layout {
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 42px;
}

.lead-form {
  padding: 32px;
  gap: 18px;
  border: 1px solid rgba(82, 91, 82, .18);
}

.form-aside {
  padding: 28px;
  background: #fff9ed;
  border-color: #e5cf9f;
}

.form-aside h2 {
  max-width: 12ch;
}

.assurance-list {
  display: grid;
  gap: 14px;
}

.assurance-list p {
  margin: 0;
  padding: 14px;
  background: rgba(255, 253, 248, .76);
  border: 1px solid rgba(141, 77, 50, .14);
  border-radius: 8px;
}

.assurance-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.service-visual,
.form-aside-visual {
  margin: 0 0 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(82, 91, 82, .18);
}

.service-visual img,
.form-aside-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-visual {
  margin-top: 20px;
  margin-bottom: 24px;
}

.form-aside-visual {
  margin-bottom: 20px;
}

.required-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(141, 77, 50, .18);
}

.required-box strong {
  width: 100%;
}

.required-box span {
  padding: 7px 9px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(141, 77, 50, .16);
  font-size: .86rem;
  font-weight: 750;
}

.form-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.form-topline h2 {
  margin-bottom: 0;
  font-size: 1.78rem;
  max-width: 16ch;
}

.form-topline span {
  min-width: max-content;
  padding: 8px 10px;
  border-radius: 8px;
  background: #eaf0e7;
  color: var(--green-dark);
  font-weight: 850;
}

.form-row label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #26322c;
}

.form-row label span {
  color: var(--urgent);
}

input,
select,
textarea {
  min-height: 52px;
  background: #fffdf8;
  border-color: #cfd5cb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

textarea {
  line-height: 1.5;
}

.optional-details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf9f2;
}

.optional-details summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 13px 15px;
  cursor: pointer;
  font-weight: 850;
  color: var(--green-dark);
}

.optional-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 15px 16px;
}

.optional-details-grid .wide {
  grid-column: 1 / -1;
}

.submit-strong {
  min-height: 58px;
  font-size: 1.06rem;
}

.form-footnote {
  padding: 12px;
  border-radius: 8px;
  background: #f4f6ef;
}

.info-steps,
.local-panel-grid {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.info-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-steps article,
.local-panel-grid article {
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(82, 91, 82, .18);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.info-steps article span,
.local-panel-grid article span,
.article-count {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--amber);
  font-weight: 900;
}

.info-steps h3 {
  margin-bottom: 8px;
  font-size: 1.24rem;
}

.local-panel-grid article strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, serif;
  font-size: 1.24rem;
}

.cta-band {
  padding: 48px 0;
  background: #1d2b25;
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 253, 248, .72);
}

.cta-band h2 {
  max-width: 18ch;
}

.cta-row {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
}

.article-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
}

.summary-box,
.inline-cta {
  padding: 22px;
  margin-bottom: 28px;
  background: var(--white);
  border: 1px solid rgba(82, 91, 82, .18);
}

.summary-box ul {
  margin: 0;
  padding-left: 20px;
}

.summary-box li {
  margin: 8px 0;
}

.summary-box a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.article-section {
  padding: 24px 0 30px;
}

.article-section h2 {
  max-width: 18ch;
}

.inline-cta {
  background: #fff5dd;
  border-color: #e6c684;
}

.inline-cta p {
  margin-top: 6px;
}

.mobile-menu-cta {
  margin-top: 10px;
  padding: 13px 14px !important;
  background: var(--green);
  color: var(--white);
  border-radius: 8px;
  text-align: center;
  font-weight: 850;
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.35rem;
    max-width: 13ch;
  }

  h2 {
    font-size: 2.15rem;
    max-width: 16ch;
  }

  .hero-grid,
  .form-layout,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-panel,
  .form-aside,
  .article-aside {
    position: static;
  }

  .hero-benefits,
  .info-steps {
    grid-template-columns: 1fr;
  }

  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: .96rem;
  }

  .home-hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 58px 0 34px;
  }

  h1 {
    font-size: 2.45rem;
    max-width: 100%;
  }

  h2 {
    font-size: 1.82rem;
    max-width: 14ch;
  }

  .hero-copy .lead,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .center-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .center-actions .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-left: 14px;
    padding-right: 14px;
    text-align: center;
    white-space: normal;
  }

  .hero-benefits div {
    min-height: auto;
  }

  .section {
    padding: 58px 0;
  }

  .page-hero,
  .page-hero.compact {
    padding: 58px 0;
  }

  .lead-form,
  .form-aside,
  .cta-box,
  .quote-block,
  .service-card,
  .zone-card,
  .mini-card {
    padding: 20px;
  }

  .form-topline {
    flex-direction: column;
  }

  .form-topline h2 {
    font-size: 1.65rem;
  }

  .optional-details-grid {
    grid-template-columns: 1fr;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .mobile-sticky a {
    min-height: 54px;
    padding: 10px 12px;
    font-size: .86rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }
}
