/* =========================================================
   FairPath Home Offers — shared design system
   Warm off-white / deep pine green / honey-amber / charcoal
   ========================================================= */

:root {
  /* Brand palette */
  --bg:          #F6F3EC;  /* warm off-white background */
  --pine:        #173F30;  /* deep pine green primary */
  --pine-deep:   #0E2A20;  /* darker pine */
  --amber:       #E9A23B;  /* honey-amber CTA accent */
  --amber-dark:  #CE8A28;  /* amber hover */
  --ink:         #1C1B18;  /* charcoal ink text */
  --ink-soft:    #4A4842;  /* muted body text */
  --line:        #E2DCCC;  /* hairline borders on cream */
  --line-strong: #D3CBB6;
  --surface:     #FFFFFF;  /* cards */
  --surface-2:   #FBF9F3;  /* subtle raised cream */
  --pine-tint:   #E7EDE7;  /* pale green wash */
  --success:     #2F7D5B;
  --danger:      #B44A3A;

  --radius:      14px;
  --radius-lg:   22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(20,27,20,.06), 0 1px 3px rgba(20,27,20,.05);
  --shadow-md: 0 8px 24px rgba(14,42,32,.10), 0 2px 6px rgba(14,42,32,.06);
  --shadow-lg: 0 24px 60px rgba(14,42,32,.16);

  --font-head: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --wrap: 1120px;
  --gap: clamp(1rem, 3vw, 2rem);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--pine-deep);
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -0.015em;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4.4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); }
p  { margin: 0 0 1rem; color: var(--ink-soft); }
a  { color: var(--pine); text-decoration: none; }
a:hover { color: var(--amber-dark); }
img { max-width: 100%; display: block; }
strong { color: var(--ink); font-weight: 700; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding: clamp(3rem, 8vw, 5.5rem) 0; }
.section--tint { background: var(--pine-tint); }
.section--pine { background: var(--pine-deep); color: #F3EFE3; }
.section--pine h2, .section--pine h3 { color: #FFF; }
.section--pine p { color: #CFD8CE; }
.section--pine .eyebrow { color: var(--amber); }
/* Elevated cards on solid pine */
.section--pine .card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.section--pine .card h3 { color: #fff; }
.section--pine .card p { color: #CFD8CE; }
.section--pine .card .step-num { background: var(--amber); color: var(--pine-deep); }
/* Full-bleed photo band (dark overlay, white content) */
.section--photo {
  position: relative; isolation: isolate; color: #fff;
  background:
    linear-gradient(180deg, rgba(14,42,32,.86), rgba(14,42,32,.9)),
    url("/assets/img/hero-neighborhood.svg");
  background-size: cover; background-position: center;
}
.section--photo h2, .section--photo h3 { color:#fff; }
.section--photo p { color:#D2DBCE; }
.section--photo .eyebrow { color: var(--amber); }
.section--photo .card {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.16);
  backdrop-filter: blur(4px);
}
.section--photo .card h3 { color:#fff; }
.section--photo .card p { color:#CFD8CE; }
.section--photo .card .step-num { background: var(--amber); color: var(--pine-deep); }
.center { text-align: center; }
.narrow { max-width: 720px; margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: .9rem;
}
.section--pine .eyebrow { color: var(--amber); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--amber);
  --btn-fg: var(--pine-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
  padding: 1.05rem 1.7rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.btn:hover { background: var(--amber-dark); color: var(--pine-deep); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translateY(0); }
.btn--block { width: 100%; }
.btn--lg { font-size: 1.15rem; padding: 1.2rem 2rem; }
.btn--pine { --btn-bg: var(--pine); --btn-fg: #fff; }
.btn--pine:hover { background: var(--pine-deep); color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--pine);
  border-color: var(--line-strong);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--surface); color: var(--pine-deep); border-color: var(--pine); }

/* ---------- Focus states (accessibility) ---------- */
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 6px;
}
.section--pine :focus-visible { outline-color: var(--amber); }

/* ---------- Trust ticks ---------- */
.ticks {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.4rem;
}
.ticks li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  color: var(--ink);
  font-size: .98rem;
}
.ticks svg { flex: none; color: var(--pine); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,243,236,.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .85rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--pine-deep);
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--pine-deep); }
.brand__mark {
  width: 34px; height: 34px; flex: none;
  border-radius: 9px;
  background: var(--pine);
  display: grid; place-items: center;
  color: var(--amber);
}
.nav__cta { display: flex; align-items: center; gap: .9rem; }
.nav__phone {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--pine-deep);
  white-space: nowrap;
}
.nav__phone span { display:block; font-family: var(--font-body); font-weight:500; font-size:.7rem; letter-spacing:.08em; text-transform:uppercase; color: var(--ink-soft); }
@media (max-width: 620px) { .nav__phone { display: none; } }

/* ---------- Hero (full-bleed photo) ---------- */
.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(3.5rem, 9vw, 6.5rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  color: #fff;
}
/* SWAP ME: replace hero-neighborhood.svg with a real photo (e.g. hero.jpg) to change the background. */
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url("/assets/img/hero-neighborhood.svg");
  background-size: cover;
  background-position: center;
}
.hero::before { /* legibility scrim — kept dark so white text/capture bar stays crisp */
  content:"";
  position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(180deg, rgba(14,42,32,.74) 0%, rgba(14,42,32,.62) 40%, rgba(14,42,32,.9) 100%),
    linear-gradient(90deg, rgba(14,42,32,.72) 0%, rgba(14,42,32,.15) 70%);
  pointer-events:none;
}
/* Crisp bottom edge so the photo hero doesn't bleed into the next section */
.hero { border-bottom: 4px solid var(--amber); }
.hero__grid {
  position: relative;
  max-width: 760px;
}
.hero h1 { color:#fff; text-shadow: 0 2px 18px rgba(0,0,0,.28); }
.hero h1 span { color: var(--amber); }
.hero__sub { font-size: clamp(1.05rem, 2.4vw, 1.3rem); max-width: 42ch; color:#EAF0E7; }
.hero__badge {
  display:inline-flex; align-items:center; gap:.5rem;
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  padding: .4rem .85rem;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: .85rem;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(4px);
}
.hero__badge .dot { width:8px;height:8px;border-radius:50%;background:#6FD3A3; box-shadow:0 0 0 4px rgba(111,211,163,.25); }
.hero .ticks li { color:#fff; }
.hero .ticks svg { color: var(--amber); }
.hero__trust {
  margin-top: 1.6rem; font-size:.88rem; color:#D7DFD3;
}
.hero__trust strong { color:#fff; }

/* Address + phone capture bar (overlaid on hero) */
.capture {
  margin-top: 1.8rem;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.1rem, 2.6vw, 1.5rem);
  backdrop-filter: blur(6px);
}
.capture__step {
  font-family: var(--font-head);
  font-weight: 600; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber-dark); margin-bottom: .55rem;
}
.capture h3 { color: var(--pine-deep); margin-bottom: .35rem; }
.capture__hint { font-size: .9rem; margin-bottom: 1.1rem; }
/* Row of fields: address | phone | button */
.capture__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: .7rem;
}
@media (max-width: 720px) { .capture__row { grid-template-columns: 1fr; } }
.field {
  display: flex; align-items: center; gap: .55rem;
  background: var(--surface-2);
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  padding: .2rem .9rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field:focus-within { border-color: var(--pine); box-shadow: 0 0 0 4px rgba(23,63,48,.12); }
.field svg { color: var(--pine); flex: none; }
.field input {
  flex: 1; min-width: 0;
  border: 0; background: transparent;
  font: inherit; color: var(--ink);
  padding: .85rem 0;
}
.field input:focus { outline: none; }
.capture__row .btn { padding: .95rem 1.4rem; font-size: 1rem; white-space: nowrap; }
@media (max-width: 720px) { .capture__row .btn { width: 100%; } }
.capture__note {
  display:flex; align-items:center; gap:.45rem;
  margin-top: .85rem; font-size: .82rem; color: var(--ink-soft);
}
.capture__reviews { margin-top: .85rem; display:flex; align-items:center; gap:.6rem; font-size:.85rem; color:var(--ink-soft); }
.stars { color: var(--amber); letter-spacing: 1px; }
.capture__error { color: var(--danger); font-size: .85rem; font-weight: 600; margin: .6rem 0 0; min-height: 1em; }

/* Google Places autocomplete dropdown */
.pac-container {
  z-index: 100000;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  background: #fff;
  font-family: var(--font-body);
  overflow: hidden;
}
.pac-item { padding: .45rem .8rem; cursor: pointer; border-top: 1px solid var(--line); color: var(--ink); font-size: .8125rem; line-height: 1.5; }
.pac-item:first-child { border-top: 0; }
.pac-item:hover, .pac-item-selected { background: var(--pine-tint); }
.pac-item-query { color: var(--pine-deep); font-weight: 600; font-size: .8125rem; }
.pac-icon { margin-top: 2px; }
/* "Powered by Google" attribution — REQUIRED by the Places API ToS.
   Kept visible, just made smaller and more subtle (never removed). */
.pac-container:after,
.pac-logo:after {
  opacity: .45 !important;
  height: 15px !important;
  background-size: 96px 12px !important;
}
/* Safety net: never let Google's auth-error icon (gm-err-autocomplete) paint
   its tiled "!" background over the address field — keep it a plain input. */
input.gm-err-autocomplete {
  background-image: none !important;
  padding-left: 0 !important;
}

/* ---------- Generic cards / grids ---------- */
.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.5rem); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid--3 { grid-template-columns: 1fr; } .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 1.9rem);
  box-shadow: var(--shadow-sm);
}
.icon-badge {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--pine-tint);
  color: var(--pine);
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.section--pine .icon-badge { background: rgba(233,162,59,.16); color: var(--amber); }

/* Steps (how it works) */
.step-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--amber); color: var(--pine-deep);
  display: grid; place-items: center; margin-bottom: 1rem;
}

/* Situations grid */
.sit {
  display: flex; align-items: center; gap: .9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.sit:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.sit .icon-badge { width: 44px; height: 44px; margin: 0; border-radius: 11px; }
.sit h3 { margin: 0; font-size: 1.05rem; color: var(--pine-deep); }
.sit p { margin: .1rem 0 0; font-size: .88rem; }
.grid--sit { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .grid--sit { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .grid--sit { grid-template-columns: 1fr; } }

/* Comparison table */
.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare th, .compare td { padding: 1rem 1.15rem; text-align: left; vertical-align: middle; }
.compare thead th { font-family: var(--font-head); font-size: 1rem; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.compare thead th:nth-child(2) { background: var(--pine); color: #fff; }
.compare thead th:nth-child(3) { color: var(--ink-soft); }
.compare tbody td { border-bottom: 1px solid var(--line); font-size: .96rem; }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare td:first-child { font-weight: 600; color: var(--ink); }
.compare td:nth-child(2) { background: rgba(23,63,48,.045); font-weight: 600; color: var(--pine-deep); }
.compare .yes { color: var(--success); font-weight: 700; }
.compare .no  { color: var(--danger); }
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 640px) { .compare th, .compare td { padding: .8rem .7rem; font-size: .85rem; } .compare-scroll { margin-inline: calc(-1 * clamp(1.1rem,4vw,2rem)); padding-inline: clamp(1.1rem,4vw,2rem); } }

/* About */
.about__grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3rem); align-items:center; }
@media (max-width:860px){ .about__grid { grid-template-columns:1fr; } }
.about__stats { display:flex; flex-wrap:wrap; gap:1.5rem 2.5rem; margin-top:1.4rem; }
.stat b { display:block; font-family:var(--font-head); font-size:2rem; color:var(--pine-deep); line-height:1; }
.stat span { font-size:.85rem; color:var(--ink-soft); }
.photo-frame {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.photo-frame img { width:100%; height:100%; object-fit:cover; display:block; }
.photo-frame span { font-family:var(--font-head); font-size:1.1rem; opacity:.85; }

/* FAQ */
.faq { max-width: 760px; margin-inline: auto; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 1.15rem;
  margin-bottom: .8rem;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--pine-deep);
  padding: 1.1rem 2rem 1.1rem 0;
  position: relative;
  font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--amber-dark); font-weight: 400;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq details[open] { box-shadow: var(--shadow-md); }
.faq p { padding-bottom: 1.15rem; margin: 0; }

/* Final CTA band */
.cta-band {
  background: linear-gradient(160deg, var(--pine) 0%, var(--pine-deep) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 6vw, 3.6rem);
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #CFD8CE; max-width: 46ch; margin-inline: auto; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--pine-deep);
  color: #C7D0C5;
  padding: clamp(2.5rem, 6vw, 3.5rem) 0 2rem;
  font-size: .9rem;
}
.footer__top { display:flex; flex-wrap:wrap; justify-content:space-between; gap:1.5rem; align-items:flex-start; }
.footer__brand { display:flex; align-items:center; gap:.6rem; color:#fff; font-family:var(--font-head); font-weight:700; font-size:1.1rem; }
.footer__links { display:flex; flex-wrap:wrap; gap:1.2rem; }
.footer__links a { color:#C7D0C5; font-weight:500; }
.footer__links a:hover { color:#fff; }
.footer__disclaimer {
  margin-top: 1.8rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .8rem; line-height: 1.6; color: #9FAE9C;
  max-width: 90ch;
}
/* Emphasized words ("Disclaimer:", "not") — the global dark strong color is
   invisible on the pine footer, so surface them in amber. */
.footer__disclaimer strong { color: var(--amber); }
.footer__local { margin-top: 1.4rem; font-size:.85rem; color:#B9C4AF; max-width:60ch; }
.footer__local strong { color:#EAF0E7; }
.footer__legal { margin-top: .6rem; font-size:.78rem; color:#8A997F; }

/* ---------- Utilities ---------- */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.sr-only {
  position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0;
}
.skip-link {
  position:absolute; left:.75rem; top:-3rem;
  background:var(--pine); color:#fff; padding:.6rem 1rem; border-radius:8px;
  z-index:100; transition: top .15s ease;
}
.skip-link:focus { top:.75rem; color:#fff; }

/* =========================================================
   Premium CTA polish — buttons + header phone
   ========================================================= */
/* Give every .btn real depth: layered shadow + a soft inset top highlight,
   and a more pronounced, tasteful lift on hover. */
.btn {
  box-shadow:
    0 1px 2px rgba(14,42,32,.10),
    0 8px 20px rgba(14,42,32,.14),
    inset 0 1px 0 rgba(255,255,255,.20);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 10px rgba(14,42,32,.14),
    0 18px 42px rgba(14,42,32,.24),
    inset 0 1px 0 rgba(255,255,255,.26);
}
.btn:active { transform: translateY(-1px); }

/* Header "Get My Offer" — a touch tighter for the nav, with a gentle
   desktop-only "breathe" that draws the eye without being gimmicky.
   (Mobile/touch never animates; reduced-motion users are covered by the
   global animation reset above.) */
.nav__cta .btn { padding: .82rem 1.5rem; font-size: 1rem; }
@media (hover:hover) and (pointer:fine) and (min-width:621px) {
  .nav__cta .btn--pine { animation: ctaBreathe 3.6s ease-in-out infinite; }
  .nav__cta .btn--pine:hover { animation: none; }
  @keyframes ctaBreathe {
    0%, 100% {
      box-shadow:
        0 1px 2px rgba(14,42,32,.10),
        0 8px 20px rgba(14,42,32,.16),
        inset 0 1px 0 rgba(255,255,255,.20);
    }
    50% {
      box-shadow:
        0 4px 10px rgba(14,42,32,.14),
        0 14px 32px rgba(14,42,32,.26),
        0 0 0 4px rgba(23,63,48,.07),
        inset 0 1px 0 rgba(255,255,255,.24);
    }
  }
}

/* Header phone — a clear, premium hover state (subtle pill + lift).
   display:inline-block is scoped to desktop so it does NOT override the
   mobile `@media(max-width:620px){ .nav__phone{display:none} }` hide. */
.nav__phone {
  padding: .3rem .6rem;
  border-radius: 10px;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
@media (min-width: 621px) { .nav__phone { display: inline-block; } }
.nav__phone:hover { background: rgba(23,63,48,.06); color: var(--pine); transform: translateY(-1px); }
.nav__phone:hover span { color: var(--pine); }

/* Header logo image mark — swaps the green house tile for the uploaded PNG logo.
   Neutralizes the tile background/rounding so only the image shows; the span keeps
   its context size (34px header, 28px quiz) and the image fills it. */
.brand__mark--logo { background: none; border-radius: 0; width: 72px; height: 72px; }
.brand__mark--logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
@media (max-width: 620px) {
  .brand__mark--logo { width: 44px; height: 44px; }
  .brand { font-size: .98rem; gap: .5rem; line-height: 1.1; }
  .nav { gap: .5rem; }
  .nav__cta .btn { padding: .6rem 1rem; font-size: .9rem; }
}

/* =========================================================
   People-focused hero (2026 redesign) + trust strip
   Light hero: cream background, dark copy on the left, photo on the right.
   ========================================================= */
.hero-people {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  border-bottom: 4px solid var(--amber);
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(1rem, 2.6vw, 2.2rem);
  align-items: center;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}
.hero__copy { position: relative; z-index: 2; max-width: 620px; }
.hero-people h1 { color: var(--pine-deep); font-size: clamp(1.85rem, 3.9vw, 2.8rem); line-height: 1.06; margin-bottom: .7rem; text-wrap: balance; }
.hero-people h1 span { color: var(--amber-dark); }
.hero-people .hero__sub { color: var(--ink-soft); font-size: clamp(1.05rem, 2.2vw, 1.25rem); max-width: 46ch; margin-bottom: 1.1rem; }
.hero-people .hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--pine-tint); color: var(--pine-deep);
  border: 1px solid var(--line-strong);
  padding: .4rem .85rem; border-radius: var(--radius-pill);
  font-weight: 600; font-size: .85rem; margin-bottom: 1rem;
}
.hero-people .hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(47,125,91,.18); }
.hero-people .ticks { margin: 0 0 1.4rem; }
.hero-people .ticks li { color: var(--ink); }
.hero-people .ticks svg { color: var(--pine); }

/* Photo column */
.hero__media { position: relative; align-self: stretch; }
.hero__media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 48% 26%; aspect-ratio: 3 / 2; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
/* Gradient blend so the photo melts into the cream copy area on desktop */
@media (min-width: 921px) {
  /* Bleed the photo off the right edge of the viewport (section clips overflow) */
  .hero__media { margin-right: calc(50% - 50vw); }
  .hero__media img { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
  .hero__media::before {
    content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    /* subtle dark gradient on the left so the copy/form side reads as integrated, not split */
    background: linear-gradient(90deg, rgba(14,42,32,.44) 0%, rgba(14,42,32,.14) 26%, rgba(14,42,32,0) 48%);
  }
}

/* Capture form on the cream hero — stack fields + full-width button (matches mockup) */
.hero-people .capture { margin-top: 0; }
.hero-people .capture__row { grid-template-columns: 1fr; }
.hero-people .capture__row .btn { width: 100%; }

/* Reassurance line that replaced the (removed) fake rating */
.capture__reassure { margin-top: .85rem; display: flex; align-items: center; gap: .5rem; font-size: .9rem; font-weight: 600; color: var(--pine); }
.capture__reassure svg { flex: none; color: var(--pine); }

.hero-people .hero__trust { display: flex; align-items: flex-start; gap: .55rem; color: var(--ink-soft); margin-top: 1.4rem; }
.hero-people .hero__trust svg { flex: none; color: var(--pine); margin-top: .1rem; }
.hero-people .hero__trust strong { color: var(--pine-deep); }

/* Mobile: copy + form first, photo beneath (full-bleed) */
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 1.4rem; padding-block: 1.5rem 0; }
  .hero__copy { order: 1; max-width: none; }
  .hero__media { order: 2; margin-inline: calc(-1 * clamp(1.1rem, 4vw, 2rem)); }
  .hero__media img { border-radius: 0; aspect-ratio: 16 / 10; box-shadow: none; }
}

/* ---------- Centered full-bleed hero (people photo behind, content centered) ---------- */
.hero--centered .hero__photo { position: absolute; inset: 0; z-index: -2; display: block; }
.hero--centered .hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.hero--centered::before {   /* even scrim so centered white content stays legible */
  background: linear-gradient(180deg, rgba(14,42,32,.76) 0%, rgba(14,42,32,.52) 46%, rgba(14,42,32,.82) 100%);
}
.hero--centered .hero__grid { max-width: 720px; text-align: center; }
.hero--centered .hero__sub { margin-inline: auto; }
.hero--centered .ticks { justify-content: center; }
.hero--centered .capture { margin: 1.7rem auto 0; }
.hero--centered .capture__note, .hero--centered .capture__reassure { justify-content: center; }
.hero--centered .hero__trust { display: flex; align-items: flex-start; justify-content: center; gap: .5rem; max-width: 54ch; margin: 1.5rem auto 0; text-align: left; }
.hero--centered .hero__trust svg { flex: none; color: var(--amber); margin-top: .15rem; }
.hero--centered .hero__trust strong { color: #fff; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--bg); padding: clamp(.5rem,2vw,1rem) 0 clamp(1.5rem,4vw,2.5rem); }
.trust-strip__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(.75rem, 2vw, 1.25rem);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: clamp(1.1rem, 2.5vw, 1.5rem) clamp(1rem, 2.5vw, 1.6rem);
}
.trust-item { display: flex; align-items: center; gap: .75rem; }
.trust-item .icon-badge { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--pine-tint); color: var(--pine); display: grid; place-items: center; margin: 0; }
.trust-item strong { display: block; color: var(--pine-deep); font-family: var(--font-head); font-size: 1rem; line-height: 1.15; }
.trust-item span { font-size: .85rem; color: var(--ink-soft); }
@media (max-width: 780px) { .trust-strip__inner { grid-template-columns: 1fr 1fr; gap: 1rem 1.25rem; } }
@media (max-width: 440px) { .trust-strip__inner { grid-template-columns: 1fr; } }

/* ---------- How it works — number badge + icon on each card ---------- */
.how-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.how-card .step-num { margin-bottom: 0; }
.how-icon { color: var(--pine); opacity: .4; flex: none; }

/* ---------- National trust section (#service-area) ---------- */
.area__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.area__photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-md); background: linear-gradient(160deg, var(--pine) 0%, var(--pine-deep) 100%); }
.area__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.area__trust { list-style: none; margin: 1.3rem 0 0; padding: 0; display: grid; gap: .7rem; }
.area__trust li { display: flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--ink); }
.area__trust svg { flex: none; color: var(--pine); }
.area__map { margin-top: 1.4rem; max-width: 520px; }
.area__map img { display: block; width: 100%; height: auto; border-radius: var(--radius); }
@media (max-width: 860px) {
  .area__grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .area__photo { order: 1; }        /* mobile: image first */
  .area__content { order: 2; }      /* then text + map */
}
