/* ==========================================================================
   NutriWave — design system
   Built to the measured spec of joinfound.com (extracted 2026-09-07).

   Type ------------------------------------------------------------------
   Found ships two COMMERCIAL faces from Connary Fagen, loaded as woff from
   Webflow's CDN — no free font is those faces, only near them:
     · Quincy CF    — soft, warm display serif, big x-height, short caps,
                      rounded terminals, a true (narrow, upright-ish) italic
     · Greycliff CF — geometric sans, double-storey a, single-storey g
   Both are available on Adobe Fonts (any Creative Cloud plan) and sold at
   connary.com. The stacks below name the real faces FIRST, so a Typekit kit
   or licensed files under assets/fonts/ (see @font-face block) make the
   page identical to the reference with no other change.

   Free stand-ins — chosen by rendering candidates NEXT TO the real Quincy
   at 54–96px and picking by eye first, then confirming by measurement:
     · Erode (Indian Type Foundry, via Fontshare, ITF Free Font License)
       -> display serif, weight 400
       Same skeleton as Quincy: big x-height, SHORT ascenders (h/l/d), soft
       wedge serifs, low contrast, a narrow upright-ish true italic. At 48px
       vs Quincy: roman advance -0.9%, italic advance +0.9%, x-height,
       ascender and descender exact, cap height 29 vs 30.
       The h was the tell: Fraunces / Alegreya / Crimson / Newsreader all
       carry a tall ascender and a heavy bracketed foot Quincy does not have.
     · Red Hat Display -> UI sans
       vs Greycliff at 40px: width -0.75% / ink +4.7% (400), ink -0.6% (500),
       x-height and cap height exact. Figtree, the previous pick, is 14.5%
       heavier at 400 — body copy read darker than Found's.
   Earlier serif picks, all wrong and why: Alegreya / Crimson Pro / Newsreader /
   Spectral / Petrona / Fraunces all scored well on advance+ink but have the
   wrong skeleton — tall ascenders, bracketed serifs, higher contrast. Google
   Fonts simply has nothing in Quincy's genre; Fontshare does. A global scale factor
   (--serif-adj) is not a fix for a wrong face; it stays at 1.
   Measured on the live site: Greycliff 400 vs 300 = +15.1% ink, vs 500 =
   -20% ink. Body copy is 400. The only places Found goes lighter are the
   big sans section heads (300) and the 240px stat numerals (300).

   Scale (their :root tokens) -------------------------------------------
     h1 4rem/1   h2 3.75rem/1   h3 3rem/1.1   h4 2.235rem/1.4
     h5 1.5/1.4  p-lg 1.375/1.4 p-125 1.25/1.5  body 1rem/1.6
   Mobile: h1 3rem  h2 2.25rem  h3 2rem  h4 1.5rem  body 1rem/1.6
   Body line-height is 1.6 everywhere — the single biggest legibility gain
   over the previous build (1.4), and the reason this reads at arm's length.

   Rhythm ----------------------------------------------------------------
     container 1280 · page pad 64 / 24 / 20
     section pad 128 (lg) / 104 (md) / 48 (sm)
     button radius 100px, 16px 42px, 17px/500 · small 12px 22px
     cards 40px (feature) · 16px (media) · 24px (body pad)
   No scroll-jacking anywhere: every step sequence is plain document flow.
   Nothing on this page pins the viewport.
   ========================================================================== */

/* --- Licensed faces (optional) ------------------------------------------
   Option A — Adobe Fonts: add the kit <link> to index.html, then change the
   two family names below to the kit's ("quincy-cf", "greycliff-cf").
   Option B — self-host: drop the licensed files into assets/fonts/ and
   uncomment. Nothing else changes; the stacks already name these first.

@font-face { font-family: "Quincy CF"; font-weight: 400; font-style: normal;
  src: url(../assets/fonts/QuincyCF-Regular.woff2) format("woff2"); font-display: swap; }
@font-face { font-family: "Quincy CF"; font-weight: 400; font-style: italic;
  src: url(../assets/fonts/QuincyCF-RegularItalic.woff2) format("woff2"); font-display: swap; }
@font-face { font-family: "Greycliff CF"; font-weight: 300; src: url(../assets/fonts/GreycliffCF-Light.woff2) format("woff2"); font-display: swap; }
@font-face { font-family: "Greycliff CF"; font-weight: 400; src: url(../assets/fonts/GreycliffCF-Regular.woff2) format("woff2"); font-display: swap; }
@font-face { font-family: "Greycliff CF"; font-weight: 500; src: url(../assets/fonts/GreycliffCF-Medium.woff2) format("woff2"); font-display: swap; }
@font-face { font-family: "Greycliff CF"; font-weight: 600; src: url(../assets/fonts/GreycliffCF-DemiBold.woff2) format("woff2"); font-display: swap; }
@font-face { font-family: "Greycliff CF"; font-weight: 700; src: url(../assets/fonts/GreycliffCF-Bold.woff2) format("woff2"); font-display: swap; }
*/

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--sage-500); outline-offset: 3px; border-radius: 4px; }

/* --- Tokens -------------------------------------------------------------- */
:root {
  /* palette — verbatim from the reference */
  --sage-100:#d8ece4; --sage-200:#a8beb7; --sage-300:#798f8b;
  --sage-400:#49615e; --sage-500:#193231;
  --n-100:#f6f1ee; --n-200:#d5d1ce; --n-300:#93908e;
  --n-400:#504f4f; --n-500:#0e0e0f;
  --grass-400:#daff9d; --grass-500:#147d57;
  --mint:#e5f5ed;
  --melon-100:#edf1de; --peach-200:#fddbd0; --lav-100:#e7e9f8;
  --alabaster:#f4f5e4;
  --white:#fff;

  --bg:var(--n-100);
  --text:var(--n-500);
  --text-2:var(--n-400);
  --text-3:var(--n-300);
  --line:var(--n-200);

  /* type */
  /* Real faces first; the free stand-ins only render when they are absent. */
  --sans:"Greycliff CF", "Red Hat Display", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --serif:"Quincy CF", "Erode", Georgia, "Times New Roman", serif;
  /* Erode weight tuned against Quincy CF (see header). Quincy ships one
     weight, so this is ignored when the real face loads. */
  --serif-w:400;
  --serif-fvs:normal;
  /* Hook only. Do not set to anything but 1 — a scale factor makes every
     heading smaller than the reference; it does not fix a mismatched face. */
  --serif-adj:1;

  --h1:4rem;       --h1-lh:1;
  --h2:3.75rem;    --h2-lh:1;
  --h3:3rem;       --h3-lh:1.1;
  --h4:2rem;       --h4-lh:1.2;
  --h5:1.5rem;     --h5-lh:1.4;
  --p-lg:1.375rem; --p-lg-lh:1.4;
  --p-md:1.25rem;  --p-md-lh:1.5;
  --p:1rem;        --p-lh:1.6;
  --p-sm:.9rem;    --p-sm-lh:1.5;
  --p-xs:.75rem;   --p-xs-lh:1.5;
  --stat:15rem;    --stat-2:11.25rem;  --stat-ls:-.0625em;  --stat-2-ls:-.0889em;

  /* rhythm */
  --pad-x:64px;
  --maxw:1280px;
  --sec-lg:128px; --sec-lg-b:64px; --sec-md:104px; --sec-sm:48px; --sec-map:80px;
  --frame:40px;

  /* shape */
  --r-card:40px; --r-media:16px; --r-input:12px; --r-pill:100px;
  --nav-h:83px;

  --ease:cubic-bezier(.22,.61,.36,1);
  --ease-s:cubic-bezier(.4,0,.2,1);
}

@media (max-width: 991px) {
  :root {
    --pad-x:24px;
    --sec-lg:64px; --sec-lg-b:48px; --sec-md:48px; --sec-sm:32px; --sec-map:48px;
    --frame:20px;
    --h1:clamp(2.5rem, 1.9rem + 3.6vw, 3.25rem);
    --h2:clamp(2.25rem, 1.75rem + 2.1vw, 2.75rem);
    --h3:1.8rem;    --h3-lh:1.1;
    --h4:1.5rem;    --h4-lh:1.2;
    --h5:1.25rem;
    --p-lg:1.25rem;
    --p-md:1.125rem;
    --stat:5rem;     --stat-2:4.5rem;
    --r-card:28px;
    --nav-h:64px;
  }
}
@media (max-width: 479px) { :root { --pad-x:20px; } }

/* --- Base ---------------------------------------------------------------- */
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: var(--p);
  line-height: var(--p-lh);
  font-weight: 400;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-locked { overflow: hidden; }
::selection { background: var(--n-500); color: #fff; }

/* --- Type helpers -------------------------------------------------------- */
.d1, .d2, .d3 {
  font-family: var(--serif);
  letter-spacing: 0;
  text-wrap: balance;
}
/* Every serif setting shares weight, axes and lining figures (the reference
   sets lining; Alegreya-era rules did not). */
.d1, .d2, .d3, .offer__h, .quote__mark {
  font-weight: var(--serif-w);
  font-variation-settings: var(--serif-fvs);
  font-variant-numeric: lining-nums;
}
.d1 { font-size: calc(var(--h1) * var(--serif-adj)); line-height: var(--h1-lh); }
.d2 { font-size: calc(var(--h2) * var(--serif-adj)); line-height: var(--h2-lh); }
.d3 { font-size: calc(var(--h3) * var(--serif-adj)); line-height: var(--h3-lh); }
/* The reference never leaves an italic the same colour as its heading — it
   pushes the emphasis FURTHER from the background than the surrounding text:
   white on the dark sections, sage-500 on the cream ones, sage-100 in the
   hero over the photo. Each context sets --em; the default inherits. */
.d1 em, .d2 em, .d3 em, .em { font-style: italic; color: var(--em, inherit); }
/* Keep hyphenated emphasis from breaking mid-word on a phone. */
.nb { white-space: nowrap; }

.s2 {
  font-family: var(--sans); font-weight: 300;
  font-size: var(--h3); line-height: 1.1; letter-spacing: -.01em;
  text-wrap: balance;
}
.s5 { font-family: var(--sans); font-weight: 500; font-size: var(--h5); line-height: var(--h5-lh); }

.p-md { font-size: var(--p-md); line-height: var(--p-md-lh); }
.p-sm { font-size: var(--p-sm); line-height: var(--p-sm-lh); }
.p-sub { font-size: 1.125rem; line-height: 1.5; }
.p-xs { font-size: var(--p-xs); line-height: var(--p-xs-lh); color: var(--text-3); }
.fine { font-size: var(--p-xs); line-height: 1.45; color: var(--text-3); }
.fine a { text-decoration: underline; }
.eyebrow {
  font-size: .875rem; font-weight: 700; line-height: 1.4;
  letter-spacing: .1225rem; text-transform: uppercase;
}
.muted { color: var(--text-2); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-8 { margin-top: 8px; }  .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; } .mt-56 { margin-top: 56px; }
.mw-58 { max-width: 58ch; } .mw-46 { max-width: 46ch; }

/* --- Layout -------------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
/* The reference pads sections asymmetrically: 128 top / 64-72 bottom on the
   big ones, so the eye gets a lead-in but not a matching gap underneath. */
.section { padding-block: var(--sec-lg) var(--sec-lg-b); }
.section--flush { padding-block: 0; }
.section--md { padding-block: var(--sec-md); }
.section--sm { padding-block: var(--sec-sm); }
.frame { padding: var(--frame); }

.bg-cream { background: var(--n-100); }
.bg-white { background: var(--white); }
.bg-dark  { background: var(--sage-500); color: #fff; }
.section--dark-b { padding-bottom: 72px; }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 58px; padding: 16px 42px;
  font-size: 1.0625rem; font-weight: 500; line-height: 1.5;
  border-radius: var(--r-pill); border: .8px solid transparent;
  transition: background-color .2s var(--ease-s), color .2s var(--ease-s),
              border-color .2s var(--ease-s), transform .2s var(--ease-s);
  text-align: center;
}
.btn:active { transform: scale(.985); }
.btn--dark  { background: var(--sage-500); color: #fff; }
.btn--dark:hover  { background: var(--sage-400); }
.btn--white { background: #fff; color: var(--sage-500); }
.btn--white:hover { background: var(--sage-100); }
.btn--ghost { background: transparent; color: #fff; border-width: 1.6px; border-color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.14); }
.btn--outline { background: #fff; color: var(--n-400); border-width: 1.6px; border-color: var(--n-200); }
.btn--outline:hover { border-color: var(--n-400); }
.btn--green { background: var(--grass-400); color: var(--sage-500); font-weight: 700; font-size: 1rem;
  border-color: rgba(0,0,0,.2); }
.btn--green:hover { filter: brightness(.96); }
.btn--sm { min-height: 50px; padding: 12px 22px; }
.btn--full { width: 100%; }
.btn__arrow { transition: transform .25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

.link-u { text-decoration: underline; text-underline-offset: 3px; }

/* --- Alert bar ----------------------------------------------------------- */
.alert { display: block; background: var(--sage-300); color: #fff; font-size: 1rem; line-height: 1.6; }
.alert .container { display: flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 56px; padding-block: 8px; text-align: center; }
.alert sup { font-size: .7em; }

/* --- Nav ----------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: #fff; border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease-s);
}
.nav.is-stuck { border-bottom-color: var(--line); }
.nav__inner {
  display: flex; align-items: center; gap: 42px;
  min-height: var(--nav-h); padding-inline: 42px; max-width: none;
}
.nav__logo { display: inline-flex; align-items: center; min-height: 44px; }
.nav__logo img { height: 38px; width: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: 42px; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 1rem; font-weight: 500; padding: 6px 0;
  border-bottom: 1.5px solid transparent;
}
.nav__link:hover { border-bottom-color: currentColor; }
.nav__right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.nav__tel { font-size: 1rem; font-weight: 500; }
.nav__cta {
  min-height: 43px; max-height: 43px; padding: 8px 20px; font-size: 1rem; font-weight: 600;
  border-radius: var(--r-pill); border: 1.6px solid var(--n-400); color: var(--n-500);
  display: inline-flex; align-items: center; transition: background-color .2s, color .2s, border-color .2s;
}
.nav__cta:hover { background: var(--n-500); color: #fff; border-color: var(--n-500); }

.nav__has { position: relative; }
.nav__menu {
  position: absolute; top: calc(100% + 14px); left: -20px; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-media);
  padding: 10px; box-shadow: 0 18px 40px -20px rgba(14,14,15,.28);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s var(--ease-s), transform .18s var(--ease-s), visibility .18s;
}
.nav__has:hover .nav__menu, .nav__has:focus-within .nav__menu {
  opacity: 1; visibility: visible; transform: none;
}
.nav__menu a { display: block; padding: 10px 14px; border-radius: 8px; font-weight: 500; }
.nav__menu a:hover { background: var(--n-100); }
.nav__chev { transition: transform .2s var(--ease-s); }
.nav__has:hover .nav__chev { transform: rotate(180deg); }

.burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.burger span { display: block; width: 22px; height: 1.8px; background: var(--n-500);
  position: relative; transition: background-color .2s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 1.8px; background: var(--n-500);
  transition: transform .25s var(--ease-s);
}
.burger span::before { top: -7px; } .burger span::after { top: 7px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 70; background: #fff;
  padding: 0 var(--pad-x) 40px; overflow-y: auto;
  transform: translateY(-100%); transition: transform .38s var(--ease);
  display: flex; flex-direction: column;
}
.drawer[hidden] { display: none; }
.drawer.is-open { transform: none; }
.drawer__top { display: flex; align-items: center; justify-content: space-between;
  min-height: var(--nav-h); margin-inline: calc(var(--pad-x) * -1); padding-inline: var(--pad-x);
  border-bottom: 1px solid var(--line); }
.drawer__nav { padding-block: 8px; }
.drawer__nav > a, .drawer__acc-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%;
  padding: 18px 0; font-size: 1.375rem; font-weight: 500; line-height: 1.3;
  border-bottom: 1px solid var(--line); text-align: left;
}
.drawer__sub { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease-s); }
.drawer__acc.is-open .drawer__sub { grid-template-rows: 1fr; }
.drawer__sub > div { overflow: hidden; }
.drawer__sub a { display: block; font-size: 1.0625rem; font-weight: 400; color: var(--text-2);
  padding: 13px 0 13px 16px; }
.drawer__acc { border-bottom: 1px solid var(--line); }
.drawer__acc .drawer__acc-btn { border-bottom: 0; }
.drawer__acc-btn svg { transition: transform .25s var(--ease-s); flex: none; }
.drawer__acc.is-open .drawer__acc-btn svg { transform: rotate(45deg); }
.drawer__foot { margin-top: auto; padding-top: 28px; display: grid; gap: 12px; }
.drawer__tel { text-align: center; font-size: 1.0625rem; font-weight: 500; padding-top: 8px; }

/* --- Hero ---------------------------------------------------------------- */
.hero__card {
  position: relative; overflow: hidden; border-radius: var(--r-media);
  min-height: 636px; padding: 48px; display: flex; isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
/* hero-coach.jpg is a bright photo: a pure-white curtain (254,254,254) sits
   directly behind the top-left of the h1, and the practitioner's white coat
   runs under the right of the facts row. Unscrimmed the h1 measures 1.93:1.
   Tuned by compositing the photo into the real 1345x636 card (object-fit:
   cover) and taking the 95th-percentile luminance under each text box — a
   handful of blown specular pixels between glyphs does not impair reading,
   but a bright field does. The wash is anchored to the top-left corner so it
   darkens the copy column and leaves the two subjects, who sit centre-right,
   essentially untouched.
     h1     5.85:1  (large text, needs 3)
     buttons 5.25:1 (needs 4.5)
     facts   5.09:1 (needs 4.5)
   This is near the floor: every lighter variant tried drops the buttons and
   the facts row under 4.5.
   Re-measure with tools/scrim-check.html if the photograph changes. */
.hero__scrim { position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(115deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.5) 26%, rgba(0,0,0,.08) 55%, rgba(0,0,0,0) 100%),
    linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,.22) 26%, rgba(0,0,0,0) 50%),
    rgba(0,0,0,.12);
}
.hero__inside { display: flex; flex-direction: column; justify-content: space-between;
  gap: 40px; width: 100%; color: #fff; }
.hero__top { display: flex; flex-direction: column; gap: 40px; max-width: 550px; }
.hero__btns { display: flex; flex-direction: column; gap: 8px; width: 340px; max-width: 100%; }
.hero__facts { display: flex; align-items: center; gap: 40px; }
.hero__fact { display: flex; gap: 12px; width: 214px; font-size: 1.25rem; line-height: 1.3; font-weight: 400; }
.hero__fact svg { flex: none; margin-top: 1px; }

/* Mobile hero: copy first on cream, photo after. The reference does exactly
   this, and it is why the page is comfortable on a phone. */
/* hero: white heading over the photo, dark heading on cream below 992 */
.hero__card .d1   { --em: var(--sage-100); }
.hero__mobile .d1 { --em: var(--sage-500); }

.hero__mobile { display: none; }
.hero__logos { margin-top: 32px; overflow: hidden;
  margin-inline: calc(var(--frame) * -1); padding-inline: var(--frame);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.hero__logos-track { display: flex; align-items: center; gap: 28px; width: max-content;
  animation: marquee 30s linear infinite; }
.hero__logos-track span { flex: none; font-size: .9rem; font-weight: 600; letter-spacing: .04em;
  color: var(--text-3); white-space: nowrap; text-transform: uppercase; }
@keyframes marquee { from { transform: none; } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .hero__logos-track { animation: none; } }

/* --- Marquee (dark section) ---------------------------------------------
   Measured on the reference: three rows, 20px apart; each row 64px tall with
   a 16px gap. Text pills are 12px/40px padding, 0.8px sage-200 hairline,
   200px radius, and the text inside is 36px at weight 300 — not the 18px
   I had first. Photo pills are plain 320x64 images at the same radius. */
.marquee { display: grid; gap: 20px; }
.marquee__row { display: flex; gap: 16px; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.marquee__track { display: flex; gap: 16px; width: max-content; align-items: center;
  animation: marquee 56s linear infinite; }
.marquee__row:nth-child(2) .marquee__track { animation-duration: 68s; animation-direction: reverse; }
.marquee__row:nth-child(3) .marquee__track { animation-duration: 62s; }
.mpill {
  flex: none; display: flex; align-items: center; height: 62px; padding: 12px 40px;
  border: .8px solid var(--sage-200); border-radius: 200px;
  font-size: 2.25rem; font-weight: 300; line-height: 1; color: var(--sage-200);
  white-space: nowrap;
}
.mpill--img { padding: 0; border: 0; width: 320px; height: 64px; border-radius: 200px; overflow: hidden; }
/* The radius goes on the IMAGE, not just the wrapper: .marquee__track runs a
   transform animation, and a composited ancestor makes the wrapper's rounded
   overflow:hidden clip get dropped — the photo then paints square. */
.mpill--img img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
@keyframes marquee { from { transform: none; } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* --- Rails / cards ------------------------------------------------------- */
.rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: 420px; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--pad-x);
  padding-inline: var(--pad-x); margin-inline: calc(var(--pad-x) * -1);
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }

/* Testimonial card — measured 420x450 on sage-400, a 420x330 media strip
   split into two 210px halves, then a 120px stats row. Tapping "What X says"
   flips the card to the quote, as the reference does. */
.tcard { position: relative; height: 450px; perspective: 1400px; }
.tcard__side {
  position: absolute; inset: 0; display: grid; grid-template-rows: 330px 1fr;
  background: var(--sage-400); border-radius: var(--r-media); overflow: clip;
  backface-visibility: hidden; transition: transform .6s var(--ease);
}
.tcard__side--back {
  grid-template-rows: 1fr; transform: rotateY(180deg);
  padding: 28px 24px; align-content: space-between; gap: 20px;
}
.tcard.is-flipped .tcard__side--front { transform: rotateY(-180deg); }
.tcard.is-flipped .tcard__side--back  { transform: rotateY(0); }

.tcard__media { position: relative; display: grid; grid-template-columns: 1fr 1fr; }
.tcard__media img { width: 100%; height: 100%; object-fit: cover; }
.tcard__half { position: relative; overflow: hidden; }
.tcard__tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  padding: 4px 12px; border-radius: 100px;
  font-size: 1rem; font-weight: 500; line-height: 1.6; color: #101f23;
  background: rgba(246,241,238,.65); backdrop-filter: blur(4px);
}
.tcard__half:last-child .tcard__tag { left: auto; right: 16px; background: var(--grass-400); }

.tcard__stats { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 0 24px; }
.tcard__left { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.tcard__name { font-size: 2rem; font-weight: 500; line-height: .8; color: #fff; }
.tcard__says {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; min-height: 34px;
  background: var(--sage-500); color: #fff; border-radius: 100px;
  font-size: .875rem; line-height: 1.6;
}
.tcard__says:hover { background: var(--n-500); }
.tcard__right { text-align: right; color: var(--grass-400); }
.tcard__lost { font-size: 1.375rem; line-height: 1.4; }
.tcard__n { font-size: 3.5rem; font-weight: 400; line-height: 1; letter-spacing: -.01em; }
.tcard__u { font-size: 1.375rem; color: #fff; }
.tcard__quote { color: #fff; font-size: 1.125rem; line-height: 1.5; }
.tcard__quote cite { display: block; margin-top: 14px; font-style: normal; color: var(--grass-400); }
.tcard__back-btn {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  padding: 6px 14px; background: var(--sage-500); color: #fff;
  border-radius: 100px; font-size: .875rem;
}
@media (prefers-reduced-motion: reduce) { .tcard__side { transition: none; } }

.rail-nav { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.rail-btn { width: 46px; height: 46px; border-radius: 50%; border: 1.6px solid rgba(255,255,255,.4);
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
  transition: background-color .2s, opacity .2s; }
.rail-btn:hover:not(:disabled) { background: rgba(255,255,255,.14); }
.rail-btn:disabled { opacity: .3; cursor: default; }

/* --- Stats --------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: 1fr 1fr; }
.stats > * + * { border-left: 1px solid rgba(255,255,255,.1); }
.stat { text-align: center; padding-inline: 16px; }
/* The reference paints these numerals with a 115deg gradient clipped to the
   glyphs — #cbda95 into #798f8b — not a flat colour. */
.stat b {
  display: block; white-space: nowrap;
  font-weight: 300; font-size: var(--stat-2); line-height: 1.1;
  letter-spacing: var(--stat-2-ls);
  background-image: linear-gradient(115deg, #cbda95, #798f8b);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.stat > span { display: block; margin-top: 12px; font-size: var(--p-md); line-height: 1.5;
  color: var(--sage-200); }

.served { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
.served__num { font-weight: 300; font-size: var(--stat); line-height: .9; white-space: nowrap;
  letter-spacing: var(--stat-ls); color: var(--sage-400); }
.served__lab { font-size: 2.75rem; font-weight: 300; letter-spacing: -1px; line-height: 1.1; color: var(--sage-400); margin-top: 4px; }
.collage { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.collage img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; }
.collage img:nth-child(3n+2) { margin-top: 26px; }

/* --- Offer band ---------------------------------------------------------- */
/* --- Offer ---------------------------------------------------------------
   Product-page layout: a gallery with a thumbnail strip on the left, the
   offer panel on the right. Built from the site's own tokens, not the
   reference's palette. */
.offer { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.offer__gallery { position: sticky; top: calc(var(--nav-h) + 24px); }
.offer__stage { position: relative; margin: 0; border-radius: var(--r-card); overflow: hidden; }
.offer__stage img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.offer__badge { position: absolute; left: 16px; right: 16px; bottom: 16px;
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px 20px; border-radius: var(--r-media);
  background: rgba(25,50,49,.82); backdrop-filter: blur(8px);
  color: #fff; font-size: .9375rem; line-height: 1.45; text-align: left; }
.offer__badge svg { flex: none; margin-top: 1px; color: var(--grass-400); }
.offer__badge b { font-weight: 600; }


.offer__trust { display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: var(--r-pill); background: var(--mint);
  font-size: .9375rem; color: #162a29; }
.offer__trust svg { flex: none; color: var(--grass-500); }
.offer__trust b { font-weight: 600; }

.offer__panel > .eyebrow { margin-top: 24px; }
.offer__h { font-size: 2.5rem; line-height: 1.15; color: var(--sage-500); margin-top: 12px; }
.offer__body { margin-top: 16px; font-size: 1.125rem; line-height: 1.5; color: #162a29; }

.offer__pricing { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.offer__now { font-size: 4rem; line-height: 1; font-weight: 500; letter-spacing: -.03em; color: var(--sage-500); }
.offer__was { font-size: 1.75rem; color: var(--sage-300); text-decoration-thickness: 1.5px; }
.offer__per { font-size: 1rem; color: #3d5250; }
.offer__save { margin-left: 4px; align-self: center; padding: 6px 14px; border-radius: var(--r-pill);
  background: var(--grass-400); color: var(--sage-500); font-size: .875rem; font-weight: 600; }

.offer__list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.offer__list li { display: flex; gap: 12px; align-items: flex-start;
  font-size: 1.0625rem; line-height: 1.45; color: #162a29; }
.offer__list b { font-weight: 600; }
.offer__tick { flex: none; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%;
  display: grid; place-items: center; background: var(--sage-500); color: #fff; }

.offer__cta { position: relative; margin-top: 36px; }
.offer__flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); z-index: 1;
  padding: 4px 14px; border-radius: var(--r-pill); white-space: nowrap;
  background: var(--grass-400); color: var(--sage-500); font-size: .8125rem; font-weight: 600; }

.offer__meta { list-style: none; padding: 0; margin: 20px 0 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; }
.offer__meta li { display: flex; align-items: center; gap: 7px; font-size: .875rem; color: #3d5250; }
.offer__meta svg { flex: none; color: var(--grass-500); }


/* --- Quote --------------------------------------------------------------- */
.quote { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.quote__card {
  background: linear-gradient(160deg, var(--sage-100), #cfe2da 60%, var(--sage-200));
  border-radius: var(--r-media); padding: 40px;
}
.quote__mark { font-family: var(--serif); font-size: 5rem; line-height: .6; color: var(--alabaster); }
.quote__text { font-size: 2.5rem; line-height: 1.2; color: var(--sage-500); margin-top: 20px; }
.quote__by { display: flex; align-items: center; justify-content: flex-end; gap: 14px; margin-top: 28px; }
.quote__by img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.quote__by div { text-align: right; }
.quote__by b { display: block; font-size: 1.375rem; line-height: 1.16; font-weight: 600; color: var(--sage-500); }
.quote__by span { font-size: 1rem; font-weight: 500; color: var(--sage-400); }

/* --- Timeline (replaces the pinned scroller) ----------------------------- */
/* Timeline — measured off the reference at 1440 and 375.
   The rail is a dotted n-300 hairline capped by a hollow ring at BOTH ends,
   so it terminates instead of running off the bottom. Each stage hangs a
   green ring (with a solid 10px core) on the rail and reaches its card with a
   short dotted green connector. */
.tl-wrap { padding-inline: 40px; }
.tl { position: relative; margin-top: 56px; max-width: 1440px; margin-inline: auto;
  padding-block: 20px; }

.tl__rail { position: absolute; top: 0; bottom: 0; left: 50%; width: 20px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; }
.tl__cap { flex: none; width: 20px; height: 20px; border-radius: 50%;
  border: 1.6px solid var(--n-300); background: var(--n-100); }
.tl__line { flex: 1; width: 0; border-left: 1.6px dotted var(--n-300); }

.tl__list { display: grid; gap: 24px; }
.tl__item { position: relative; display: grid; grid-template-columns: 1fr 1fr; }
.tl__item > .tl__card { grid-column: 1; }
.tl__item:nth-child(even) > .tl__card { grid-column: 2; }

/* node centre sits on the h3's optical centre: card padding + half its line box */
.tl__node { position: absolute; left: 50%; top: 54px; transform: translate(-50%,-50%);
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.6px solid var(--grass-500); background: var(--n-100);
  display: grid; place-items: center; }
.tl__node::before { content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: var(--grass-500); }
.tl__conn { position: absolute; top: 54px; width: 30px; border-top: 1.6px dotted var(--grass-500);
  right: calc(50% + 10px); }
.tl__item:nth-child(even) .tl__conn { right: auto; left: calc(50% + 10px); }

.tl__card { background: #fff; border-radius: var(--r-card); padding: 40px; margin-inline: 0 40px; }
.tl__item:nth-child(even) .tl__card { margin-inline: 40px 0; }
.tl__step { font-size: 1.5rem; font-weight: 400; color: var(--grass-500); line-height: 1.2; }
.tl__title { margin-top: 12px; font-size: 2.5rem; font-weight: 500; line-height: 1.2; color: var(--sage-500); }
.tl__body { margin-top: 20px; color: var(--text-2); font-size: 1.25rem; line-height: 1.4; }



/* --- Map / locations ----------------------------------------------------- */
.map {
  background: linear-gradient(150deg, var(--sage-100), #bfd5cd 55%, var(--sage-200));
  border-radius: var(--r-card); padding: 56px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center;
}
.map__art { width: 100%; }
.map__panel { display: grid; gap: 14px; justify-items: center; text-align: center; align-content: center; }
.map__addr { font-size: 1.125rem; line-height: 1.5; color: var(--sage-500); }
.map__facts { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px;
  font-size: 1rem; line-height: 1.45; color: var(--sage-400); max-width: 34ch; }
.map__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 6px; }
.map__label { font-size: 1.25rem; font-weight: 500; line-height: 1.28; color: var(--sage-500); }
.map__sub { font-size: 1.25rem; font-weight: 400; line-height: 1.28; color: var(--sage-300); }
.closer { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
  margin-top: 56px; max-width: 900px; margin-inline: auto; }
.closer__h { font-size: 2rem; line-height: 1.25; color: var(--sage-500); }
.closer__p { font-size: 1rem; font-weight: 500; line-height: 1.6; color: var(--n-500); }

/* --- FAQ ----------------------------------------------------------------- */
.faq { display: grid; grid-template-columns: 320px 1fr; gap: 80px; align-items: start; }
.faq__aside { position: sticky; top: calc(var(--nav-h) + 32px); }
.faq__help { display: inline-block; margin-top: 40px; padding: 12px;
  background: var(--sage-100); color: var(--sage-500); border-radius: var(--r-input);
  font-size: .875rem; line-height: 1.6; }
.faq__help a { text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.acc { border-top: 1px solid var(--n-200); }
.acc:last-child { border-bottom: 1px solid var(--n-200); }
.acc__btn { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px;
  width: 100%; padding: 28px 0; text-align: left;
  font-size: 1.125rem; font-weight: 500; line-height: 1.42; }
.acc__ico { flex: none; position: relative; width: 22px; height: 22px; margin-top: 3px; }
.acc__ico::before, .acc__ico::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--n-500);
  transition: transform .28s var(--ease-s), opacity .2s;
}
.acc__ico::before { width: 20px; height: 1.6px; transform: translate(-50%,-50%); }
.acc__ico::after  { width: 1.6px; height: 20px; transform: translate(-50%,-50%); }
.acc.is-open .acc__ico::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .34s var(--ease-s); }
.acc.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }
.acc__panel p { color: var(--text-2); padding-right: 54px; }
.acc__panel p + p { margin-top: 16px; }
.acc__panel > div > :last-child { padding-bottom: 28px; }

/* --- Footer -------------------------------------------------------------- */
.footer { background: var(--sage-500); color: #fff; padding-block: var(--sec-lg) 42px; }
.footer__grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)) 1.25fr; gap: 40px; }
.footer h2 { font-size: 1.125rem; font-weight: 600; line-height: 1; margin-bottom: 20px; }
.footer h2 + ul + h2 { margin-top: 40px; }
.footer li + li { margin-top: 0; }
.footer a { display: inline-block; padding-block: 4px; margin-bottom: 4px; color: rgba(255,255,255,.82); font-size: 1rem; line-height: 1.6; }
.footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer__logo { height: 58px; width: auto; display: block; }
.footer__tag { margin-top: 20px; color: rgba(255,255,255,.82); font-size: 1rem; line-height: 1.6; max-width: 34ch; }
.footer__meta { color: rgba(255,255,255,.75); font-size: 1rem; line-height: 1.6; margin-top: 16px; }
.footer__bottom { margin-top: 64px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 16px 32px; justify-content: space-between;
  color: rgba(255,255,255,.6); font-size: .8125rem; }

/* --- Reveal -------------------------------------------------------------- */
.js [data-reveal] { opacity: 0; transform: translateY(18px); }
.js [data-reveal].is-in { opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Breakpoints
   ========================================================================== */
@media (max-width: 1199px) {
  .nav__inner { gap: 28px; padding-inline: 24px; }
  .nav__links { gap: 26px; }
  .faq { grid-template-columns: 280px 1fr; gap: 48px; }
  .offer, .quote { gap: 48px; }
  .map { padding: 40px; gap: 40px; }
  .tl__card { margin-inline: 0 48px; padding: 30px 32px; }
  .tl__item:nth-child(even) .tl__card { margin-inline: 48px 0; }
}

@media (max-width: 991px) {
  .nav__links, .nav__tel { display: none; }
  .burger { display: inline-flex; }
  .nav__inner { padding-inline: var(--pad-x); gap: 16px; }
  .nav__logo img { height: 30px; }
  .nav__cta { min-height: 40px; padding: 7px 16px; font-size: .9375rem; }

  .hero__card { display: none; }
  .hero__mobile { display: block; }
  .hero__mobile .d1 { max-width: 18ch; }
  .hero__facts { flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 28px; }
  .hero__fact { width: auto; font-size: 1.0625rem; }
  .hero__btns { width: 100%; margin-top: 32px; gap: 10px; }
  .hero__photo { margin-top: 32px; border-radius: var(--r-media); overflow: hidden; }
  .hero__photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

  .stats { grid-template-columns: 1fr; gap: 40px; }
  .stats > * + * { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); padding-top: 40px; }
  .served { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .served__order { order: -1; }

  .offer, .quote, .map { grid-template-columns: 1fr; gap: 32px; }
  /* gallery leads on a phone, and stops sticking */
  .offer__gallery { position: static; }
  .offer__badge { left: 12px; right: 12px; bottom: 12px; padding: 12px 14px; font-size: .875rem; }
  /* keep the credential pill on one line: trim its own chrome, drop a step,
     and shed the tail on the narrowest phones where even that will not fit */
  .offer__trust { padding: 8px 12px; gap: 8px; font-size: .875rem; white-space: nowrap; }
  .offer__panel > .eyebrow { margin-top: 20px; }
  .offer__now { font-size: 3.25rem; }
  .offer__was { font-size: 1.5rem; }
  .offer__list li { font-size: 1rem; }
  .offer__meta { justify-content: flex-start; gap: 10px 20px; }
  .quote__card { order: -1; }
  .quote__card { padding: 28px; }
  .map { padding: 28px; text-align: center; }
  .map__panel { justify-items: stretch; }
  .closer { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 20px; margin-top: 40px; }

  /* single left rail: card radius 24, padding 20, connector 20 (reference) */
  .tl-wrap { padding-inline: var(--pad-x); }
  .tl { margin-top: 32px; padding-block: 20px; }
  .tl__rail { left: 10px; transform: translateX(-50%); }
  .tl__item { grid-template-columns: 1fr; }
  .tl__item > .tl__card, .tl__item:nth-child(even) > .tl__card { grid-column: 1; }
  .tl__card, .tl__item:nth-child(even) .tl__card { margin-inline: 40px 0; padding: 20px; border-radius: 24px; }
  .tl__node { left: 10px; top: 30px; }
  .tl__conn, .tl__item:nth-child(even) .tl__conn { right: auto; left: 20px; width: 20px; top: 30px; }
  .tl__list { gap: 20px; }

  .faq { grid-template-columns: 1fr; gap: 28px; }
  .faq__aside { position: static; }
  .acc__btn { padding: 22px 0; gap: 20px; font-size: 1.0625rem; }
  .acc__panel p { padding-right: 0; }

  .rail { grid-auto-columns: 320px; }

  .footer { padding-block: var(--sec-lg) 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brandcol { grid-column: 1 / -1; }
  .footer__logo { height: 48px; }
  .footer__bottom { margin-top: 40px; }
}

@media (max-width: 640px) {
  .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .rail { grid-auto-columns: min(84vw, 340px); }
  .collage { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .collage img:nth-child(3n+2) { margin-top: 0; }
  .collage img:nth-child(4n+2) { margin-top: 14px; }
}

/* --- Mobile polish ------------------------------------------------------- */
@media (max-width: 991px) {
  .offer__h { font-size: var(--h3); }
  .alert .container { min-height: 52px; font-size: .9375rem; }
}

/* --- Marquee + testimonial card, small screens --------------------------- */
@media (max-width: 991px) {
  .marquee { gap: 12px; }
  .marquee__row, .marquee__track { gap: 10px; }
  .mpill { height: 48px; padding: 8px 24px; font-size: 1.5rem; }
  .mpill--img { width: 200px; height: 48px; }
  .tcard { height: 400px; }
  .tcard__side { grid-template-rows: 280px 1fr; }
  .tcard__stats { padding: 0 18px; gap: 16px; }
  .tcard__name { font-size: 1.625rem; }
  .tcard__n { font-size: 2.75rem; }
  .tcard__lost, .tcard__u { font-size: 1.125rem; }
  .tcard__tag { font-size: .875rem; left: 10px; bottom: 10px; }
  .tcard__half:last-child .tcard__tag { right: 10px; }
  .tcard__quote { font-size: 1rem; }
}

/* --- Reference-exact type at small widths -------------------------------- */
@media (max-width: 991px) {
  .quote__text { font-size: 1.75rem; line-height: 1.25; }
  .quote__by b { font-size: 1.25rem; }
  .tl__body { font-size: 1rem; line-height: 1.6; margin-top: 12px; }
  .tl__step { font-size: 1rem; line-height: 1.2; }
  .tl__title { font-size: 1.5rem; margin-top: 4px; }
  .served__lab { font-size: 1.75rem; }
  .map__label, .map__sub { font-size: 1.125rem; }
  .closer__h { font-size: 1.75rem; }
  .acc__btn { font-size: 1.0625rem; }
  .footer__meta { font-size: .9375rem; }
}

/* Below ~360px even the tightened pill cannot hold the full string on one
   line, so the location tail drops rather than the type shrinking further. */
@media (max-width: 359px) {
  .offer__trust-tail { display: none; }
}


/* --- Legal pages (/policy, /termsofservice) -------------------------------
   Long-form reading, so the measure is capped near 70ch and the type steps
   down from the marketing scale: a legal page is read, not scanned. The
   chrome and tokens are the homepage's, unchanged. */
.container--narrow { max-width: 720px; }

.legal-main { padding-block: calc(var(--nav-h) + 64px) var(--sec-lg-b); }

.legal__head { padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.legal__eff { margin-top: 16px; font-size: var(--p-sm); line-height: var(--p-sm-lh);
  letter-spacing: .04em; text-transform: uppercase; color: var(--text-3); }
.legal__intro { margin-top: 24px; font-size: var(--p-md); line-height: var(--p-md-lh); color: var(--text-2); }

.legal__sec { margin-top: 48px; }
.legal__sec h2 { font-family: var(--sans); font-size: 1.375rem; font-weight: 600;
  line-height: 1.3; color: var(--sage-500); }
.legal__sec p { margin-top: 16px; font-size: var(--p); line-height: 1.7; color: var(--text-2); }
.legal__sec a { color: var(--grass-500); text-underline-offset: 3px; }

.legal__list { margin-top: 16px; padding-left: 0; list-style: none;
  display: grid; gap: 12px; }
.legal__list li { position: relative; padding-left: 26px;
  font-size: var(--p); line-height: 1.7; color: var(--text-2); }
/* A dot rather than a disc marker, so the list keeps the page's roundness. */
.legal__list li::before { content: ""; position: absolute; left: 6px; top: .62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--grass-500); }
.legal__list li strong { color: var(--sage-500); font-weight: 600; }

/* The medical disclaimer is the one block a reader must not skim past. */
.legal__sec p.legal__callout { margin-top: 16px; padding: 24px 28px; border-radius: var(--r-media);
  background: var(--mint); color: #162a29; }
.legal__sec p.legal__callout strong { color: var(--sage-500); }

.legal__contact { margin-top: 16px; line-height: 1.7; }

@media (max-width: 991px) {
  .legal-main { padding-block: calc(var(--nav-h) + 40px) 48px; }
  .legal__sec { margin-top: 36px; }
  .legal__sec h2 { font-size: 1.25rem; }
  .legal__intro { font-size: 1.0625rem; }
  .legal__sec p.legal__callout { padding: 20px; }
}

/* The typical-results line under the testimonial rail. Sits on the dark
   ground, so it is set in the same muted white as the rest of the section
   rather than a grey that would read as switched-off. Legible, not loud:
   the FTC asks for "clear and conspicuous", which rules out fine print. */
.tnote { max-width: 68ch; margin: 32px auto 0; text-align: center;
  font-size: .9375rem; line-height: 1.6; color: rgba(255,255,255,.72); }
@media (max-width: 991px) { .tnote { margin-top: 24px; font-size: .875rem; text-align: left; } }

/* --- /book -----------------------------------------------------------------
   The scheduler now lives on our own domain instead of sending people to
   calendly.com, so the fbclid survives the click and a completed booking is
   attributable. Chrome is the homepage's; only the shell below is new. */
.book-main { padding-block: calc(var(--nav-h) + 56px) var(--sec-lg-b); }
.book__sub { margin-top: 20px; font-size: var(--p-md); line-height: var(--p-md-lh); color: var(--text-2); }
.book .calendly-inline-widget { margin-top: 32px; border-radius: var(--r-media); overflow: hidden; }
/* Always visible, not an error state: some networks block the widget script
   outright, and a dead CTA is the worst outcome on this page. */
.book__fallback { margin-top: 20px; font-size: var(--p-sm); line-height: 1.6; color: var(--text-3); }
.book__fallback a { color: var(--grass-500); text-underline-offset: 3px; }

@media (max-width: 991px) {
  .book-main { padding-block: calc(var(--nav-h) + 32px) 48px; }
  .book__sub { font-size: 1.0625rem; }
  .book .calendly-inline-widget { margin-top: 24px; }
}
