/* ============================================================
   Brain Wellness — single-page site
   Design tokens mirrored from reference: warm grey / ink / tan
   ============================================================ */
:root {
  --grey: #d4d2cf;
  --grey-2: #cfcdc9;
  --ink: #1f1f1f;
  --light: #f1f1f1;
  --tan: #c5b197;
  --tan-deep: #b39d80;
  --black: #0a0908;
  --hair: rgba(31, 31, 31, 0.18);
  --hair-light: rgba(241, 241, 241, 0.22);
  --font: "Inter Tight", Arial, sans-serif;
  --pad: clamp(16px, 2.5vw, 48px);
  --h1: clamp(42px, 4.1vw, 96px);
  --h2: clamp(32px, 2.55vw, 60px);
  --h3: clamp(22px, 1.64vw, 38px);
  --body: clamp(16.5px, 1.05vw, 22px);
  --small: clamp(15px, 0.8vw, 18px);
  --ease: cubic-bezier(0.32, 0.94, 0.6, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis { height: auto; scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font);
  font-size: var(--body);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  background: var(--grey);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-weight: 500; line-height: 1.02; letter-spacing: -0.03em; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.sr-only { position: absolute; width: 1px; height: 1px; clip-path: inset(50%); overflow: hidden; }

:focus-visible { outline: 2px solid var(--tan); outline-offset: 3px; }

::selection { background: var(--tan); color: var(--ink); }

/* ---------- Buttons (pill + arrow chip, hover arrow-swap) ---------- */
.btn--pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--light);
  color: var(--ink);
  border-radius: 999px;
  padding: 7px 7px 7px 22px;
  font-size: clamp(15px, 0.8vw, 20px);
  font-weight: 500;
  min-height: 46px;
  transition: transform 0.35s var(--ease), background 0.35s;
  white-space: nowrap;
}
.btn--pill:hover { transform: scale(1.04); }
.btn--pill:active { transform: scale(0.98); }
.btn__chip {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--light);
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.btn__arrow { width: 13px; height: 13px; transition: transform 0.4s var(--ease); }
.btn__arrow--dupe {
  position: absolute;
  transform: translate(-140%, 140%);
}
.btn--pill:hover .btn__arrow:not(.btn__arrow--dupe) { transform: translate(140%, -140%); }
.btn--pill:hover .btn__arrow--dupe { transform: translate(0, 0); }
.btn--dark { background: var(--ink); color: var(--light); }
.btn--dark .btn__chip { background: var(--light); color: var(--ink); }
.btn--wide { width: 100%; justify-content: space-between; }
/* Quiz entry points: a secondary pill so the quiz reads as a real call to
   action rather than a line of body text, without competing with the
   primary booking button. */
.btn--quiz {
  background: none;
  border: 1px solid rgba(31, 31, 31, 0.35);
  color: var(--ink);
}
.btn--quiz .btn__chip { background: var(--ink); color: var(--light); }
.btn--quiz:hover { background: rgba(31, 31, 31, 0.06); }
.btn--quiz-light {
  border-color: rgba(241, 241, 241, 0.55);
  background: rgba(10, 9, 8, 0.3);
  backdrop-filter: blur(6px);
  color: var(--light);
}
.btn--quiz-light .btn__chip { background: var(--light); color: var(--ink); }
.btn--quiz-light:hover { background: rgba(10, 9, 8, 0.45); }
/* Two buttons sitting together no longer need a text separator. */
.who__foot .who__sep { display: none; }
.who__foot { gap: 12px; align-items: center; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  transition: transform 0.5s var(--ease), background 0.4s, color 0.4s;
  color: var(--light);
}
.nav.is-hidden { transform: translateY(-110%); }
.nav.is-solid { background: rgba(212, 210, 207, 0.88); backdrop-filter: blur(12px); color: var(--ink); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--pad);
}
.nav__brand { display: block; flex: none; }   /* never the element that shrinks */
/* The lockup is icon + two-line wordmark (~3.2:1), so it needs more height
   than a horizontal strip to carry the same presence. */
/* Squarer 2.2:1 lockup, so it needs more height than the old 3.2:1 one to
   carry the same visual weight against the nav. */
.nav__logo { display: block; height: 56px; width: auto; }
.nav__logo--dark { display: none; }
.nav.is-solid .nav__logo--light { display: none; }
.nav.is-solid .nav__logo--dark { display: block; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(15px, 0.7vw, 18.7px);
  margin-left: auto;
  margin-right: 8px;
}
.nav__links a { opacity: 0.9; transition: opacity 0.25s; padding: 12px 0; }
.nav__links a:hover { opacity: 0.55; }
.nav__dot { opacity: 0.45; font-size: clamp(13px, 0.6vw, 16px); }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__phone { font-size: clamp(15px, 0.7vw, 18.7px); opacity: 0.9; padding: 13px 0; }
.nav__phone:hover { opacity: 0.55; }
.nav__burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;                 /* minimum comfortable touch target */
  height: 44px;
  padding: 0;
}
.nav__burger span { width: 24px; height: 1.6px; background: currentColor; display: block; }

/* ============================================================
   FULLSCREEN MENU
   ============================================================ */
.menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--black);
  color: var(--light);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease);
  overflow-y: auto;
}
.menu.is-open { clip-path: inset(0 0 0% 0); }
.menu__inner { min-height: 100%; display: flex; flex-direction: column; padding: 14px var(--pad) 48px; }
.menu__head { display: flex; justify-content: space-between; align-items: center; }
.menu__brand img { display: block; height: 52px; width: auto; }
.menu__close { font-size: clamp(15px, 0.7vw, 18.7px); opacity: 0.85; padding: 13px 0; }
.menu__close:hover { opacity: 0.5; }
.menu__body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  margin-top: clamp(40px, 10vh, 110px);
}
.menu__label {
  font-size: clamp(13px, 0.6vw, 16px);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.5;
  margin-bottom: 18px;
}
.menu__label--gap { margin-top: 40px; }
.menu__link {
  display: block;
  padding: 4px 0;              /* lifts the tap target over 44px */
  font-size: clamp(34px, 4.5vw, 105.6px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  transition: opacity 0.3s, transform 0.45s var(--ease);
}
.menu__link:hover { opacity: 0.55; transform: translateX(10px); }
.menu__small { display: block; padding: 11px 0; font-size: clamp(16px, 0.8vw, 21.3px); opacity: 0.85; margin-bottom: 0; }
.menu__small:hover { opacity: 0.5; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  color: var(--light);
  overflow: clip;
}
.hero__media, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__media img { filter: sepia(0.22) saturate(1.08) brightness(0.98); }
.hero__vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  filter: sepia(0.22) saturate(1.08) brightness(0.98);
  pointer-events: none;
}
.hero__vid.is-active { opacity: 1; }
/* All hero text now sits in the lower half, so the scrim's weight is shifted
   down: light through the upper band where the footage plays, heavy below. */
.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(61, 38, 15, 0.18), rgba(61, 38, 15, 0.18)),
    linear-gradient(180deg,
      rgba(10, 9, 8, 0.52) 0%,
      rgba(10, 9, 8, 0.20) 26%,
      rgba(10, 9, 8, 0.46) 58%,
      rgba(10, 9, 8, 0.88) 100%);
}
.hero__inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  padding: calc(60px + 4vh) var(--pad) clamp(48px, 9vh, 110px);
}
/* One left column: headline, sub-line and actions read top to bottom, and the
   right of the frame stays clear for the footage. */
/* Wide enough for the headline to hold its two lines; ch here would resolve
   against the body size, not the h1's, and crush the title. */
.hero__col { max-width: min(94vw, 1180px); }
.hero__trust {
  font-size: clamp(13px, 0.6vw, 16px);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  opacity: 0.72;
  margin-bottom: clamp(16px, 2.5vh, 28px);
}
.hero__title { font-size: var(--h1); color: #e8e6e2; }
.hero__title em { font-style: normal; color: var(--tan); }
.hero__line { display: block; overflow: clip; }
.hero__line > span { display: inline-block; will-change: transform; }
.hero__sub {
  margin-top: clamp(18px, 2.8vh, 32px);
  font-size: clamp(19px, 1.1vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 24ch;
  opacity: 0.92;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px clamp(18px, 2vw, 32px);
  margin-top: clamp(24px, 3.5vh, 40px);
}

/* ============================================================
   PILLARS (band under the hero)
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px dashed var(--hair);
}
.pillars__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(26px, 3.4vw, 52px) clamp(20px, 2.6vw, 44px);
  border-right: 1px dashed var(--hair);
}
.pillars__item:last-child { border-right: 0; }
.pillars__icon { flex: none; width: clamp(24px, 1.7vw, 34px); height: clamp(24px, 1.7vw, 34px); margin-top: 2px; }
.pillars__icon svg { width: 100%; height: 100%; }
.pillars__item h2 {
  font-size: clamp(16px, 1vw, 25.3px);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.pillars__item p { font-size: clamp(15px, 0.8vw, 19.3px); line-height: 1.5; opacity: 0.75; max-width: 34ch; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  padding: clamp(28px, 4vh, 44px) 0 clamp(24px, 3.5vh, 38px);
  border-bottom: 1px dashed var(--hair);
}
.trust__label {
  font-size: clamp(15px, 1.1vw, 28.2px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0 var(--pad);
  margin-bottom: clamp(20px, 3vh, 30px);
}
.trust__marquee { overflow: clip; }
.trust__marquee:hover .trust__track { animation-play-state: paused; }
.trust__track {
  display: flex;
  width: max-content;
  animation: trust-scroll 32s linear infinite;
}
@keyframes trust-scroll {
  to { transform: translateX(-50%); }
}
.trust__logos {
  display: flex;
  align-items: center;
  gap: clamp(48px, 6vw, 110px);
  padding-right: clamp(48px, 6vw, 110px);
  flex: none;
}
.trust__logos img {
  height: clamp(38px, 3.6vw, 54px);
  width: auto;
  max-width: none;
  filter: grayscale(1);
  mix-blend-mode: multiply;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.trust__logos li:hover img { opacity: 1; }
html.reduced .trust__track, html.no-anim .trust__track { animation: none; }

/* ============================================================
   QUIZ LINK
   ============================================================ */
.quiz-link {
  display: inline-block;
  font-size: clamp(15px, 0.7vw, 18px);
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.75;
  transition: opacity 0.25s;
  padding: 10px 0;
}
.quiz-link:hover { opacity: 1; }
.statement .quiz-link { margin-top: 28px; }

/* ============================================================
   STATEMENT
   ============================================================ */
.statement { padding: clamp(70px, 11vh, 130px) var(--pad) clamp(50px, 7vh, 90px); }
.statement__eyebrow { display: flex; align-items: flex-start; gap: 14px; margin-bottom: clamp(48px, 8vh, 110px); }
.statement__star { width: 22px; height: 22px; color: var(--ink); animation: spin 14s linear infinite; }
.statement__star svg { width: 100%; height: 100%; }
@keyframes spin { to { transform: rotate(360deg); } }
.statement__eyebrow p { font-size: clamp(13px, 0.6vw, 16px); text-transform: uppercase; letter-spacing: 0.13em; line-height: 1.55; }
.statement__title {
  font-size: clamp(38px, 3.8vw, 88.3px);
  max-width: 18ch;
  letter-spacing: -0.032em;
}
.statement__title em { font-style: normal; color: var(--tan-deep); }

/* scrub-word treatment */
[data-scrub-words] .word { opacity: 0.18; }

/* ============================================================
   CARDS
   ============================================================ */
.cards { padding: 0 0 clamp(70px, 10vh, 120px); }
.cards__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 8px var(--pad) 24px;
}
.card {
  background: var(--light);
  border-radius: 10px;
  overflow: clip;
  display: flex;
  flex-direction: column;
}
.card--note {
  position: relative;
  /* Radial warmth stands in for the fog if WebGL is unavailable. */
  background:
    radial-gradient(120% 90% at 70% 20%, rgba(197, 177, 151, 0.35), transparent 60%),
    var(--black);
  color: var(--light);
  gap: 16px;
  padding: 26px 24px 28px;
  justify-content: space-between;
  overflow: clip;
}
.card__fog { position: absolute; inset: 0; opacity: 0.9; }
.card--note > *:not(.card__fog) { position: relative; z-index: 1; }
.card--note h3 { font-size: clamp(19px, 1vw, 25.3px); letter-spacing: -0.015em; color: #f4f2ee; }
.card--note p { font-size: clamp(15px, 0.7vw, 18px); line-height: 1.5; opacity: 0.78; }
.card--note .btn--pill { align-self: flex-start; margin-top: auto; }
.card__top { display: flex; align-items: flex-start; gap: 12px; padding: 18px 18px 10px; position: relative; }
.card__value { display: flex; align-items: baseline; gap: 4px; }
.card__num { font-size: clamp(38px, 2.5vw, 57.6px); font-weight: 500; letter-spacing: -0.04em; line-height: 0.95; }
.card__unit { font-size: clamp(13px, 0.6vw, 16px); opacity: 0.55; }
.card__meta h3 { font-size: clamp(17px, 0.9vw, 22.7px); letter-spacing: -0.01em; }
.card__meta p { font-size: clamp(13px, 0.6vw, 16px); opacity: 0.55; }
.card__dots { position: absolute; right: 16px; top: 20px; display: flex; gap: 3px; }
.card__dots i { width: 5px; height: 5px; border-radius: 1px; background: var(--ink); }
.card__dots i.is-dim { opacity: 0.25; }
.card__desc { padding: 4px 18px 16px; font-size: clamp(15px, 0.7vw, 18px); line-height: 1.45; opacity: 0.8; min-height: 76px; }
.card__img { position: relative; margin-top: auto; aspect-ratio: 16 / 10.6; overflow: clip; }
.card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; transition: transform 0.7s var(--ease); }
.card:hover .card__img img { transform: scale(1.06); }

/* ============================================================
   ANY MIND
   ============================================================ */
.anymind { padding: clamp(60px, 9vh, 110px) 0 0; }
.anymind__title { font-size: var(--h2); padding: 0 var(--pad); }
.anymind__sub { font-size: clamp(22px, 1.6vw, 38.4px); font-weight: 500; letter-spacing: -0.025em; padding: 6px var(--pad) clamp(44px, 7vh, 80px); }
.anymind__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px dashed var(--hair);
}
/* A modifier, not an inline style: an inline grid-template-columns beats
   every media query below and left this grid three-across on a phone. */
.anymind__grid--three { grid-template-columns: repeat(3, 1fr); }
.anymind__cell {
  padding: clamp(24px, 3vw, 44px) clamp(18px, 2vw, 32px) clamp(32px, 4vw, 56px);
  border-right: 1px dashed var(--hair);
}
.anymind__cell:last-child { border-right: 0; }
.anymind__icon { display: inline-block; width: 30px; height: 30px; margin-bottom: clamp(40px, 6vh, 90px); }
.anymind__icon svg { width: 100%; height: 100%; }
.anymind__cell h3 { font-size: clamp(17px, 0.9vw, 22.7px); letter-spacing: -0.01em; margin-bottom: 10px; }
.anymind__cell p { font-size: clamp(15px, 0.7vw, 18px); line-height: 1.5; opacity: 0.75; }

/* ============================================================
   CHECK-UP (dark pinned sequence, centred)
   ============================================================ */
/* ---- Check-up: full-bleed panels, one per scroll beat ---------------------
   The video is always full screen. Scrolling swaps which panel is showing —
   a plain opacity cross-fade, no per-frame work. */
.checkup { height: 400svh; position: relative; background: var(--black); }
.checkup__pin {
  position: sticky; top: 0;
  height: 100svh; min-height: 100svh;
  overflow: clip;
  isolation: isolate;
}
.checkup__panels { position: absolute; inset: 0; }
.checkup__panel {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
  pointer-events: none;
}
.checkup__panel.is-active { opacity: 1; }
.checkup__panel video.checkup__clip {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: var(--black);
}
/* Weighted to the bottom, where the copy sits; the subject stays readable
   through the upper two thirds. */
.checkup__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.72) 0%, rgba(10,9,8,0.30) 22%,
                    rgba(10,9,8,0.16) 38%, rgba(10,9,8,0.52) 66%,
                    rgba(10,9,8,0.90) 100%);
}
.checkup__copy {
  position: absolute;
  left: 50%;
  /* translateX(-50%) has to ride along, so both axes live in one transform. */
  transform: translate(-50%, 20px);
  opacity: 0;
  transition: opacity 0.55s var(--ease), transform 0.7s var(--ease);
  transition-delay: 0.1s;
  bottom: clamp(76px, 13vh, 150px);
  width: min(92vw, 1000px);
  text-align: center;
  color: var(--light);
}
.checkup__tag {
  display: inline-block;
  font-size: clamp(12px, 0.72vw, 14px);
  letter-spacing: 0.13em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px;
  border: 1px solid rgba(241,241,241,0.34);
  margin-bottom: clamp(14px, 2.2vh, 26px);
}
.checkup__panel--punch .checkup__tag { border-style: dashed; color: var(--tan); border-color: rgba(197,177,151,0.6); }
.checkup__panel.is-active .checkup__copy { opacity: 1; transform: translate(-50%, 0); }
.checkup__copy h2 {
  font-size: clamp(30px, 3.5vw, 66px);
  line-height: 1.05; letter-spacing: -0.03em;
  max-width: 20ch;
  margin-inline: auto;
  text-wrap: balance;
}
.checkup__copy h2 em { font-style: normal; color: var(--tan); }
/* Section title over the sticky panels. */
.checkup__title {
  position: absolute; top: clamp(84px, 12vh, 132px); left: 0; right: 0;
  text-align: center; z-index: 3; pointer-events: none;
  color: var(--light); opacity: 0.72;
  font-size: clamp(12px, 0.72vw, 14px);
  letter-spacing: 0.14em; text-transform: uppercase;
}
/* The brain panel carries more copy and the client wants it read, so it
   steps up from the other three rather than shrinking to fit. */
.checkup__note--punch {
  font-size: clamp(18px, 1.3vw, 25px);
  max-width: 60ch;
  line-height: 1.5;
}
.checkup__note--punch strong { font-weight: 600; color: #fff; opacity: 1; }
.checkup__note {
  margin: clamp(12px, 1.8vh, 22px) auto 0;
  max-width: 62ch;
  font-size: var(--small);
  line-height: 1.55;
  opacity: 0.84;
}
.checkup__eyebrow {
  position: absolute; top: clamp(84px, 12vh, 132px); left: 0; right: 0;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: var(--light); opacity: 0.72;
  font-size: clamp(12px, 0.72vw, 14px);
  letter-spacing: 0.14em; text-transform: uppercase;
  z-index: 3; pointer-events: none;
}
.checkup__eyebrow .statement__star { width: 15px; height: 15px; }
.checkup__progress {
  position: absolute; bottom: clamp(34px, 5vh, 58px); left: 0; right: 0;
  display: flex; justify-content: center; gap: 10px;
  z-index: 3; pointer-events: none;
}
.checkup__progress i {
  width: 34px; height: 2px; border-radius: 2px;
  background: rgba(241,241,241,0.26);
  transition: background 0.4s;
}
.checkup__progress i.is-active { background: var(--tan); }

/* No scroll choreography: the panels become a plain stack. */
html.qa-instant .checkup__panel, html.qa-instant .checkup__copy { transition: none; }

html.reduced .checkup, html.no-anim .checkup { height: auto; }
html.reduced .checkup__pin, html.no-anim .checkup__pin { position: static; height: auto; min-height: 0; }
html.reduced .checkup__panels, html.no-anim .checkup__panels { position: static; }
html.reduced .checkup__panel, html.no-anim .checkup__panel {
  position: relative; height: 78svh; opacity: 1;
}
html.reduced .checkup__copy, html.no-anim .checkup__copy {
  opacity: 1; transform: translate(-50%, 0);
}
html.reduced .checkup__eyebrow, html.no-anim .checkup__eyebrow,
html.reduced .checkup__progress, html.no-anim .checkup__progress { display: none; }
/* Native sticky rather than a JS pin: the browser owns the positioning, so
   it cannot desynchronise from the scroll position when reversing direction.
   The section height supplies the scroll distance for the four steps. */



/* QA capture mode: no cross-fades, so a single step can be screenshotted. */

/* Reduced motion / no-JS: show the full sequence as a static list. */
html.no-anim .checkup__art:not(.checkup__art--brain) { display: none; }

/* ============================================================
   SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 92svh; }
.split__media { position: relative; overflow: clip; }
.split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split__panel {
  background: var(--tan);
  padding: clamp(40px, 6vw, 80px) var(--pad);
  display: flex;
  flex-direction: column;
}
.split__panel h2 { font-size: var(--h2); }
.split__panel p {
  margin-top: auto;
  padding: 40px 0 28px;
  font-size: clamp(20px, 1.4vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 20ch;
}
.split__panel .btn { align-self: flex-start; }

/* ============================================================
   REPORT
   ============================================================ */
.report { background: var(--light); padding: clamp(80px, 12vh, 150px) var(--pad); text-align: center; overflow: clip; }
.report__title { font-size: var(--h2); }
.report__title em { font-style: normal; opacity: 0.45; }
.report__sub { max-width: clamp(560px, 23.9vw, 560px); margin: 26px auto clamp(48px, 7vh, 90px); font-size: clamp(15.5px, 0.8vw, 20.7px); line-height: 1.6; opacity: 0.85; }
.report__device {
  max-width: 940px;
  margin: 0 auto;
  background: #111;
  border-radius: 22px;
  padding: clamp(10px, 1.6vw, 18px);
  box-shadow: 0 40px 90px -30px rgba(31, 31, 31, 0.45);
  perspective: 1000px;
}
.report__screen {
  background: #fbfaf8;
  border-radius: 12px;
  overflow: clip;
  text-align: left;
  font-size: 12px;
}
.report__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(31, 31, 31, 0.08);
}
.report__logo img { display: block; height: 28px; width: auto; }
.report__tabs { display: flex; gap: 4px; }
.report__tabs i {
  font-style: normal; padding: 5px 12px; border-radius: 999px; opacity: 0.55;
}
.report__tabs i.is-on { background: var(--ink); color: var(--light); opacity: 1; }
.report__client { font-size: 12px; opacity: 0.55; }
.report__body { display: grid; grid-template-columns: 1fr 1.25fr; gap: 24px; padding: 22px 24px 26px; }
.report__maplabel, .report__bandslabel, .report__prlabel {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.09em; opacity: 0.5; margin-bottom: 12px;
}
.report__prlabel { margin-top: 18px; }
.report__head { width: min(100%, 240px); margin: 0 auto; color: var(--ink); }
.report__sites circle.s0 { fill: #dcd6cb; }
.report__sites circle.s1 { fill: #c5b197; }
.report__sites circle.s2 { fill: #a97f52; }
.report__sites circle.s3 { fill: #7a4a28; }
.report__maplegend { display: flex; align-items: center; gap: 6px; font-size: 10.5px; opacity: 0.75; margin-top: 10px; flex-wrap: wrap; }
.report__maplegend .k { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.report__maplegend .k0 { background: #dcd6cb; }
.report__maplegend .k1 { background: #c5b197; }
.report__maplegend .k2 { background: #a97f52; }
.report__maplegend .k3 { background: #7a4a28; }
.report__band { display: grid; grid-template-columns: 64px 1fr 34px; align-items: center; gap: 10px; padding: 5px 0; }
.report__band span { opacity: 0.75; }
.report__band b { font-weight: 500; text-align: right; }
.report__meter { height: 6px; border-radius: 3px; background: rgba(31, 31, 31, 0.08); overflow: clip; }
.report__meter i {
  display: block; height: 100%; width: var(--w);
  background: var(--tan);
  border-radius: 3px;
  transform-origin: left;
}
.report__meter i.hot { background: #a97f52; }
.report__meter i.low { background: #dcd6cb; }
.report__chips { display: flex; gap: 6px; flex-wrap: wrap; }
.report__chips span {
  border: 1px solid rgba(31, 31, 31, 0.2);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
}

/* ============================================================
   DESIGN (checklist)
   ============================================================ */
.design {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 90px);
  padding: clamp(80px, 12vh, 150px) var(--pad);
}
.design__left { position: sticky; top: 110px; align-self: start; }
.design__left h2 { font-size: var(--h2); margin-bottom: 22px; }
.design__left p { font-size: clamp(15px, 0.8vw, 19.3px); opacity: 0.75; line-height: 1.6; }
.design__row {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px dashed var(--hair);
}
.design__row:first-child { padding-top: 0; }
.design__icon { flex: none; width: 26px; height: 26px; margin-top: 3px; }
.design__icon svg { width: 100%; height: 100%; }
.design__row h3 { font-size: clamp(17px, 0.9vw, 22.7px); letter-spacing: -0.01em; margin-bottom: 8px; }
.design__row p { font-size: clamp(15px, 0.7vw, 18px); line-height: 1.55; opacity: 0.75; max-width: 46ch; }

/* ============================================================
   INDEX (conditions)
   ============================================================ */
.index { background: #e9e7e4; padding: clamp(80px, 12vh, 150px) var(--pad); }
.index__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(56px, 8vh, 110px);
}
.index__head h2 { font-size: clamp(30px, 2.4vw, 55.7px); }
.index__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(48px, 6vh, 90px) clamp(28px, 4vw, 72px);
}
.index__group h3 { font-size: clamp(26px, 1.8vw, 42.2px); min-height: 2.1em; margin-bottom: clamp(40px, 8vh, 120px); }
.index__group ul { font-size: clamp(15px, 0.7vw, 18px); line-height: 1.5; }
.index__group li { padding: 3px 0; opacity: 0.85; }

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.who { padding: clamp(80px, 12vh, 150px) var(--pad); }
.who__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(44px, 7vh, 80px);
}
.who__head h2 { font-size: var(--h2); }
.who__head p { font-size: clamp(15px, 0.8vw, 19.3px); opacity: 0.75; line-height: 1.6; }
.who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px dashed var(--hair);
  border-left: 1px dashed var(--hair);
}
.who__cell {
  padding: clamp(28px, 3.5vw, 52px) clamp(22px, 3vw, 48px) clamp(34px, 4.5vw, 64px);
  border-right: 1px dashed var(--hair);
  border-bottom: 1px dashed var(--hair);
}
.who__img {
  position: relative;
  aspect-ratio: 16 / 9.5;
  border-radius: 8px;
  overflow: clip;
  margin-bottom: clamp(20px, 3vh, 32px);
}
.who__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.22) saturate(0.92) contrast(0.97);
  transition: transform 0.7s var(--ease);
}
.who__cell:hover .who__img img { transform: scale(1.05); }
.who__cell h3 { font-size: clamp(20px, 1.4vw, 34px); letter-spacing: -0.02em; margin-bottom: 12px; }
.who__cell p { font-size: clamp(15px, 0.7vw, 18.7px); line-height: 1.55; opacity: 0.75; max-width: 44ch; }
.who__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-top: clamp(28px, 4vh, 44px);
}
.who__foot > p { font-size: clamp(15px, 0.8vw, 19.3px); font-weight: 500; }
.who__sep { opacity: 0.4; }

/* ============================================================
   CHOOSE (full-bleed, bottom-left column like the hero)
   ============================================================ */
.choose { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--light); overflow: clip; }
.choose__media, .choose__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.choose__media img { filter: sepia(0.22) saturate(1.08) brightness(0.98); }
/* The section is full-height with object-fit: cover, so a phone takes a tall
   slice out of the middle — which on this frame is the lamp and the flowers,
   with both faces cropped away. Bias the crop toward the patient instead. */
@media (max-width: 860px) {
  .choose__media img { object-position: 30% center; }
}
.choose__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(61, 38, 15, 0.18), rgba(61, 38, 15, 0.18)),
    linear-gradient(180deg,
      rgba(10, 9, 8, 0.52) 0%,
      rgba(10, 9, 8, 0.20) 26%,
      rgba(10, 9, 8, 0.46) 58%,
      rgba(10, 9, 8, 0.88) 100%);
}
.choose__inner {
  position: relative;
  width: 100%;
  padding: clamp(80px, 14vh, 160px) var(--pad) clamp(48px, 9vh, 110px);
}
.choose__col { max-width: min(94vw, 1180px); }
.choose__col h2 { font-size: clamp(30px, 2.5vw, 59.6px); letter-spacing: -0.03em; color: #efede9; }
.choose__big {
  margin-top: clamp(18px, 2.8vh, 32px);
  font-size: clamp(19px, 1.1vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 26ch;
  opacity: 0.92;
}
.choose__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: clamp(22px, 3vh, 36px); max-width: 640px; }
.choose__tags span {
  border: 1px solid rgba(241, 241, 241, 0.5);
  background: rgba(10, 9, 8, 0.25);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: clamp(15px, 0.7vw, 17.3px);
}
.choose__col .btn--pill { margin-top: clamp(24px, 3.5vh, 40px); }

/* ============================================================
   PLANS
   ============================================================ */
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: clamp(24px, 3vw, 48px) var(--pad) clamp(80px, 11vh, 140px);
  background: var(--grey);
}
.plans__panel { border-radius: 14px; padding: clamp(26px, 3vw, 44px); }
.plans__panel--light { background: var(--light); }
.plans__panel--tan { background: var(--tan); }
.plans__head { display: flex; align-items: center; justify-content: space-between; }
.plans__head h3 { font-size: clamp(28px, 2vw, 46px); }
.plans__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--ink); }
.plans__for { font-size: clamp(15px, 0.7vw, 18px); opacity: 0.7; margin: 10px 0 26px; }
.plans__list div { padding: 14px 0; border-bottom: 1px dashed var(--hair); }
.plans__list div:last-child { border-bottom: 0; }
.plans__list dt { font-weight: 500; font-size: clamp(15.5px, 0.8vw, 20.7px); margin-bottom: 4px; }
.plans__list dd { font-size: clamp(15px, 0.7vw, 17.3px); opacity: 0.72; line-height: 1.5; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes {
  background: var(--light);
  text-align: center;
  padding: clamp(80px, 12vh, 150px) var(--pad);
}
.quotes__eyebrow {
  font-size: clamp(13px, 0.6vw, 16px);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  opacity: 0.55;
  margin-bottom: 18px;
}
.quotes__stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  color: var(--tan-deep);
  margin-bottom: clamp(32px, 5vh, 56px);
}
.quotes__stars svg { width: 17px; height: 17px; }
.quotes__stage {
  display: grid;
  max-width: clamp(880px, 45.833vw, 1173.3px);
  margin: 0 auto;
}
.quotes__item {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s, transform 0.5s var(--ease);
  visibility: hidden;
}
.quotes__item.is-active { opacity: 1; transform: none; visibility: visible; }
.quotes__item p {
  font-size: clamp(22px, 1.9vw, 44.2px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.18;
}
.quotes__item footer {
  margin-top: 26px;
  font-size: clamp(15px, 0.7vw, 17.3px);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.55;
}
.quotes__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: clamp(36px, 6vh, 60px);
}
.quotes__arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(31, 31, 31, 0.3);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, color 0.3s;
}
.quotes__arrow svg { width: 14px; height: 14px; }
.quotes__arrow:hover { background: var(--ink); color: var(--light); }
.quotes__dots { display: flex; gap: 7px; }
.quotes__dots i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.25;
  transition: opacity 0.3s;
}
.quotes__dots i.is-active { opacity: 1; }

/* ============================================================
   TEAM
   ============================================================ */
.team { padding: clamp(80px, 12vh, 150px) var(--pad) clamp(60px, 9vh, 110px); }
.team__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(48px, 8vh, 90px);
}
.team__head h2 { font-size: var(--h2); }
.team__head p { font-size: clamp(15px, 0.8vw, 19.3px); opacity: 0.75; line-height: 1.6; }
.team__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
}
.team__member { text-align: center; }
.team__member img {
  width: min(100%, 168px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  filter: grayscale(1) sepia(0.16);
}
.team__member h3 { font-size: clamp(16.5px, 0.9vw, 22px); letter-spacing: -0.01em; margin-bottom: 5px; }
.team__creds { font-size: clamp(13px, 0.6vw, 14.7px); text-transform: uppercase; letter-spacing: 0.09em; opacity: 0.5; margin-bottom: 3px; }
.team__role { font-size: clamp(15px, 0.7vw, 17.3px); opacity: 0.75; }

/* ============================================================
   TIMELINE (dark fog)
   ============================================================ */
.timeline { padding: 0 clamp(10px, 1.6vw, 32px) clamp(60px, 8vh, 110px); background: var(--grey); }
.timeline__card {
  position: relative;
  background: var(--black);
  color: var(--light);
  border-radius: 22px;
  overflow: clip;
  padding: clamp(56px, 9vh, 110px) clamp(20px, 3.5vw, 64px);
}
.timeline__fog { position: absolute; inset: 0; opacity: 0.85; }
.timeline__title {
  position: relative;
  font-size: clamp(34px, 3vw, 69.2px);
  max-width: 20ch;
  margin-bottom: clamp(56px, 9vh, 120px);
  color: #efede9;
}
.timeline__title .word { opacity: 0.25; }
.timeline__rows { position: relative; }
.timeline__row {
  display: grid;
  grid-template-columns: 64px 1fr 1.2fr;
  gap: clamp(16px, 3vw, 48px);
  align-items: start;
  padding: clamp(28px, 4vh, 44px) 0;
  border-bottom: 1px dashed var(--hair-light);
}
.timeline__row:last-child { border-bottom: 0; }
.timeline__icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(241, 241, 241, 0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.timeline__icon svg { width: 20px; height: 20px; }
.timeline__row h3 { font-size: clamp(22px, 1.5vw, 34.6px); letter-spacing: -0.02em; }
.timeline__detail h4 { font-size: clamp(18px, 1.1vw, 34px); margin-bottom: 14px; }
.timeline__detail ul { font-size: clamp(15px, 0.7vw, 18px); opacity: 0.75; }
.timeline__detail li { padding: 3px 0 3px 14px; position: relative; }
.timeline__detail li::before { content: "·"; position: absolute; left: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 90px);
  padding: clamp(80px, 12vh, 150px) var(--pad);
  background: var(--grey);
}
.faq__media { position: sticky; top: 110px; align-self: start; border-radius: 6px; overflow: clip; aspect-ratio: 4 / 4.6; }
.faq__media img { width: 100%; height: 100%; object-fit: cover; }
.faq__content h2 { font-size: var(--h2); margin-bottom: clamp(30px, 5vh, 60px); }
.faq__item { border-bottom: 1px solid var(--hair); }
.faq__item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  font-size: clamp(15.5px, 0.8vw, 20.7px);
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.25s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { opacity: 0.6; }
.faq__plus { position: relative; flex: none; width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute; background: var(--ink); inset: 50% auto auto 0;
  width: 100%; height: 1.5px; transform: translateY(-50%);
}
.faq__plus::after { transform: translateY(-50%) rotate(90deg); }
.faq__item[open] .faq__plus { transform: rotate(45deg); }
.faq__answer { overflow: clip; }
.faq__answer p { padding: 0 0 20px; font-size: clamp(15px, 0.7vw, 18.7px); line-height: 1.6; opacity: 0.8; max-width: 62ch; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--light); overflow: clip; }
.final__media, .final__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.final__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,9,8,.25), rgba(10,9,8,.05) 40%, rgba(10,9,8,.6)); }
.final__inner { position: relative; padding: 0 var(--pad) clamp(48px, 8vh, 90px); display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
.final__inner h2 { font-size: clamp(40px, 3.6vw, 84.4px); color: #efede9; }
.final__inner p { font-size: clamp(15px, 0.8vw, 19.3px); opacity: 0.85; line-height: 1.55; }

/* ============================================================
   FEES
   ============================================================ */
.fees {
  padding: 0 var(--pad) clamp(40px, 6vh, 70px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 26px);
  align-items: start;
}
.fees__card {
  background: var(--light);
  border-radius: 16px;
  padding: clamp(26px, 2.4vw, 40px);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.fees__label {
  font-size: clamp(12px, 0.72vw, 14px);
  letter-spacing: 0.13em; text-transform: uppercase;
  opacity: 0.55; margin-bottom: 14px;
}
.fees__card h2 {
  font-size: clamp(21px, 1.5vw, 32px);
  letter-spacing: -0.02em; line-height: 1.12;
  max-width: 18ch;
}
.fees__price { margin: clamp(16px, 2vh, 24px) 0; }
.fees__price span {
  font-size: clamp(34px, 3vw, 56px);
  letter-spacing: -0.03em;
}
.fees__price--soft span { font-size: clamp(19px, 1.2vw, 26px); opacity: 0.6; }
.fees__list { list-style: none; display: grid; gap: 11px; }
.fees__list li {
  position: relative; padding-left: 20px;
  font-size: var(--small); line-height: 1.5; opacity: 0.8;
}
.fees__list li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--tan);
}
/* The free first step, set apart from the priced items below it. */
.feestart { padding: 0 var(--pad) clamp(26px, 4vh, 44px); }
.feestart__inner {
  background: var(--ink); color: var(--light);
  border-radius: 16px;
  padding: clamp(26px, 2.6vw, 44px);
  display: grid; grid-template-columns: 1.6fr auto;
  gap: clamp(20px, 3vw, 50px); align-items: center;
}
.feestart__inner h2 { font-size: clamp(21px, 1.6vw, 34px); letter-spacing: -0.02em; margin-bottom: 12px; }
.feestart__inner .fees__label { opacity: 0.6; }
.feestart__text { font-size: var(--small); line-height: 1.6; opacity: 0.82; max-width: 62ch; }
.feestart__price { text-align: right; }
.feestart__price .fees__price { margin: 0; }
.feestart__price .fees__price span { color: var(--tan); }
.feestart__dur {
  margin-top: 6px; font-size: clamp(12px, 0.72vw, 14px);
  letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.55;
}

/* The combined assessment fee is the one most people are looking for. */
.fees__card--lead { outline: 1px solid var(--tan); outline-offset: -1px; }
.fees__note {
  margin-top: -8px; margin-bottom: clamp(16px, 2vh, 22px);
  font-size: clamp(12.5px, 0.72vw, 14.5px); opacity: 0.6;
}
.fees__price--pair {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  margin: 0 0 8px;
}
.fees__price--pair span { font-size: clamp(26px, 2vw, 40px); }
.fees__price--pair em {
  font-style: normal; font-size: clamp(12.5px, 0.72vw, 14.5px);
  opacity: 0.6; letter-spacing: 0.02em;
}
.fees__price--pair + .fees__price--pair { margin-bottom: clamp(16px, 2vh, 22px); }
.fees__list strong { font-weight: 500; opacity: 1; }

@media (max-width: 720px) {
  .feestart__inner { grid-template-columns: 1fr; }
  .feestart__price { text-align: left; }
}

/* Two options side by side, with a full-width intro above them. */
.fees--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.fees__intro { grid-column: 1 / -1; margin-bottom: clamp(4px, 1vh, 10px); }
.fees__intro h2 { font-size: clamp(24px, 2vw, 40px); letter-spacing: -0.025em; margin-bottom: 10px; }
.fees__intro p { font-size: var(--small); line-height: 1.6; opacity: 0.72; max-width: 60ch; }
.fees__card h3 {
  font-size: clamp(21px, 1.5vw, 32px);
  letter-spacing: -0.02em; line-height: 1.12; max-width: 20ch;
}
.fees__flag {
  display: inline-block; margin-left: 8px;
  padding: 3px 10px; border-radius: 999px;
  background: var(--tan); color: var(--ink);
  /* em-scaled off the label, so floor it rather than dipping under 12px. */
  font-size: max(12px, 0.92em); letter-spacing: 0.08em;
}
/* Says plainly what the cheaper option leaves out. */
.fees__caveat {
  margin-top: clamp(16px, 2vh, 22px);
  padding-top: clamp(14px, 2vh, 18px);
  border-top: 1px dashed var(--hair);
  font-size: clamp(12.5px, 0.72vw, 14.5px);
  line-height: 1.55; opacity: 0.62;
}

@media (max-width: 860px) { .fees--two { grid-template-columns: 1fr; } }

.fees__stage {
  font-size: clamp(12px, 0.72vw, 14px);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--tan-deep); margin-bottom: 10px;
}
/* Stage one is a single card, so the price and the detail sit side by side
   rather than leaving a very wide, very short column of text. */
.fees--one { grid-template-columns: 1fr; }
.fees--one .fees__card {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  column-gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.fees--one .fees__price { grid-column: 1; grid-row: 1; margin: 0; }
.fees--one .fees__note  { grid-column: 1; grid-row: 2; margin: 8px 0 0; }
.fees--one .fees__list  { grid-column: 2; grid-row: 1 / span 2; }

@media (max-width: 860px) {
  .fees--one .fees__card { grid-template-columns: 1fr; }
  .fees--one .fees__price,
  .fees--one .fees__note,
  .fees--one .fees__list { grid-column: 1; grid-row: auto; }
  .fees--one .fees__list { margin-top: clamp(16px, 2vh, 22px); }
}

.fees__notes {
  padding: 0 var(--pad) clamp(60px, 8vh, 110px);
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 70px);
}
.fees__notes h3 { font-size: clamp(19px, 1.3vw, 28px); margin-bottom: 12px; letter-spacing: -0.02em; }
.fees__notes p { font-size: var(--small); line-height: 1.6; opacity: 0.78; max-width: 52ch; }

@media (max-width: 1100px) { .fees { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .fees__notes { grid-template-columns: 1fr; } }

/* ============================================================
   QUIZ
   ============================================================ */
.quiz {
  min-height: 78svh;
  display: grid;
  place-items: center;
  padding: clamp(90px, 15vh, 170px) var(--pad) clamp(60px, 9vh, 110px);
}
.quiz__inner { width: min(100%, 760px); }
.quiz__progress { margin-bottom: clamp(28px, 5vh, 54px); }
.quiz__bar { height: 2px; background: rgba(31, 31, 31, 0.14); border-radius: 2px; overflow: clip; }
.quiz__bar i {
  display: block; height: 100%; width: 0;
  background: var(--tan);
  transition: width 0.45s var(--ease);
}
.quiz__count {
  margin-top: 12px;
  font-size: clamp(12px, 0.72vw, 14px);
  letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.5;
}

.quiz__intro h1 { font-size: var(--h1); letter-spacing: -0.035em; line-height: 0.98; }
.quiz__introtext {
  margin: clamp(18px, 3vh, 30px) 0 clamp(26px, 4vh, 40px);
  font-size: var(--body); line-height: 1.55; opacity: 0.8; max-width: 46ch;
}
.quiz__note {
  margin-top: clamp(20px, 3vh, 32px);
  font-size: clamp(13px, 0.72vw, 15px); line-height: 1.55; opacity: 0.5; max-width: 54ch;
}
.quiz__note a { text-decoration: underline; text-underline-offset: 3px; }

.quiz__question {
  font-size: clamp(26px, 2.5vw, 50px);
  letter-spacing: -0.03em; line-height: 1.1;
  max-width: 20ch;
  margin-bottom: clamp(26px, 4vh, 44px);
  text-wrap: balance;
}
.quiz__options { display: grid; gap: 10px; max-width: 520px; }
.quiz__option {
  text-align: left;
  padding: 17px 22px;
  border: 1px solid rgba(31, 31, 31, 0.18);
  border-radius: 999px;
  background: none;
  font-size: var(--small);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}
.quiz__option:hover { border-color: var(--ink); transform: translateX(4px); }
.quiz__option.is-chosen { background: var(--ink); color: var(--light); border-color: var(--ink); }
.quiz__option:focus-visible { outline: 2px solid var(--tan); outline-offset: 2px; }
.quiz__back {
  margin-top: clamp(22px, 3vh, 34px);
  background: none; border: 0; padding: 12px 0; cursor: pointer;
  font-size: clamp(13px, 0.72vw, 15px); opacity: 0.55;
}
.quiz__back:hover { opacity: 1; }

.quiz__eyebrow {
  font-size: clamp(12px, 0.72vw, 14px);
  letter-spacing: 0.13em; text-transform: uppercase; opacity: 0.5;
}
.quiz__resultname {
  font-size: clamp(32px, 3.2vw, 62px);
  letter-spacing: -0.035em; line-height: 1.02;
  margin: 12px 0 10px;
  max-width: 18ch;
}
.quiz__resultname:focus { outline: none; }
.quiz__band {
  font-size: clamp(12px, 0.72vw, 14px);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--tan-deep);
  margin-bottom: clamp(20px, 3vh, 30px);
}
.quiz__lead { font-size: var(--body); line-height: 1.5; margin-bottom: 14px; max-width: 48ch; }
.quiz__body { font-size: var(--small); line-height: 1.62; opacity: 0.8; max-width: 56ch; margin-bottom: 14px; }
.quiz__body--map { opacity: 1; font-weight: 500; }
.quiz__cta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  margin: clamp(26px, 4vh, 40px) 0 0;
}
.quiz__again {
  background: none; border: 0; padding: 12px 0; cursor: pointer;
  font-size: clamp(13px, 0.72vw, 15px); opacity: 0.55;
  text-decoration: underline; text-underline-offset: 3px;
}
.quiz__again:hover { opacity: 1; }
.quiz__disclaimer {
  margin-top: clamp(30px, 5vh, 52px);
  padding-top: clamp(20px, 3vh, 28px);
  border-top: 1px dashed var(--hair);
  font-size: clamp(12.5px, 0.7vw, 14px);
  line-height: 1.6; opacity: 0.55; max-width: 62ch;
}

@media (max-width: 560px) {
  .quiz__options { max-width: none; }
  .quiz__option:hover { transform: none; }
}

/* ============================================================
   BOOKING
   ============================================================ */
.booking {
  padding: 0 var(--pad) clamp(60px, 8vh, 110px);
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: clamp(28px, 4vw, 70px);
  align-items: start;
}
.booking__aside h2 { font-size: clamp(21px, 1.5vw, 32px); letter-spacing: -0.02em; margin-bottom: 20px; }
.booking__alt { margin-top: clamp(22px, 3vh, 32px); font-size: var(--small); line-height: 1.6; opacity: 0.75; }
.booking__alt a { text-decoration: underline; text-underline-offset: 3px; }
.booking__cal { min-width: 0; }
.booking__embed {
  background: var(--light);
  border-radius: 16px;
  min-height: 520px;
  overflow: clip;
}
.booking__pending {
  display: grid; place-content: center; gap: 10px;
  min-height: 520px; padding: clamp(28px, 4vw, 50px); text-align: center;
}
.booking__pending p { font-size: var(--body); }
.booking__pendingsmall { font-size: var(--small) !important; opacity: 0.7; max-width: 42ch; line-height: 1.6; }
.booking__pendingsmall a { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 900px) {
  .booking { grid-template-columns: 1fr; }
  .booking__embed, .booking__pending { min-height: 460px; }
}

/* ============================================================
   PRICING (home)
   ============================================================ */
.pricing { padding: clamp(80px, 12vh, 150px) var(--pad); background: var(--grey); }
.pricing__head {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 70px); align-items: end;
  margin-bottom: clamp(34px, 5vh, 60px);
}
.pricing__head h2 { font-size: var(--h2); letter-spacing: -0.03em; line-height: 1.02; }
.pricing__head > p { font-size: var(--small); line-height: 1.6; opacity: 0.75; max-width: 46ch; }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 22px);
  align-items: stretch;
}
.pricing__card {
  background: var(--light);
  border-radius: 16px;
  padding: clamp(24px, 2vw, 34px);
  display: flex; flex-direction: column;
}
.pricing__card--lead { outline: 1.5px solid var(--tan); outline-offset: -1.5px; }
.pricing__tag {
  font-size: clamp(12px, 0.7vw, 13.5px);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--tan-deep); margin-bottom: 12px;
}
.pricing__card h3 {
  font-size: clamp(18px, 1.15vw, 24px);
  letter-spacing: -0.02em; line-height: 1.2;
  min-height: 2.4em;                 /* keeps the four prices on one line */
}
.pricing__amount {
  display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap;
  margin: clamp(14px, 2vh, 20px) 0 4px;
}
.pricing__amount span {
  font-size: clamp(32px, 2.4vw, 48px);
  letter-spacing: -0.03em; line-height: 1;
}
.pricing__amount em {
  font-style: normal; font-size: clamp(13px, 0.75vw, 15px); opacity: 0.55;
}
.pricing__card:first-child .pricing__amount span { color: var(--tan-deep); }
.pricing__unit {
  font-size: clamp(12.5px, 0.7vw, 14px);
  opacity: 0.6; letter-spacing: 0.02em;
  padding-bottom: clamp(16px, 2.2vh, 22px);
  border-bottom: 1px dashed var(--hair);
  margin-bottom: clamp(16px, 2.2vh, 22px);
}
.pricing__list { list-style: none; display: grid; gap: 10px; align-content: start; }
.pricing__list li {
  position: relative; padding-left: 18px;
  font-size: clamp(13.5px, 0.76vw, 15.5px); line-height: 1.5; opacity: 0.78;
}
.pricing__list li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--tan);
}

.pricing__foot {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: clamp(18px, 3vw, 40px);
  margin-top: clamp(28px, 4.5vh, 50px);
}
.pricing__foot p { font-size: var(--small); line-height: 1.6; opacity: 0.72; max-width: 52ch; }

@media (max-width: 1100px) {
  .pricing__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing__card h3 { min-height: 0; }
}
@media (max-width: 620px) {
  .pricing__head { grid-template-columns: 1fr; align-items: start; }
  .pricing__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   tPBM — copy beside a click-to-load video
   ============================================================ */
.tpbm { background: var(--ink); color: var(--light); padding: clamp(80px, 12vh, 150px) var(--pad); }
.tpbm__inner {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 90px); align-items: center;
}
.tpbm__eyebrow {
  font-size: clamp(12px, 0.72vw, 14px);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--tan); margin-bottom: 18px;
}
.tpbm__copy h2 { font-size: var(--h2); letter-spacing: -0.03em; line-height: 1.02; color: #efede9; }
.tpbm__lead {
  margin-top: clamp(18px, 2.8vh, 30px);
  font-size: clamp(18px, 1.15vw, 24px); line-height: 1.45; opacity: 0.92;
  max-width: 46ch;
}
.tpbm__body { margin-top: 16px; font-size: var(--small); line-height: 1.65; opacity: 0.72; max-width: 58ch; }
.tpbm__list { list-style: none; display: grid; gap: 11px; margin: clamp(22px, 3vh, 32px) 0; }
.tpbm__list li {
  position: relative; padding-left: 20px;
  font-size: var(--small); line-height: 1.5; opacity: 0.85;
}
.tpbm__list li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--tan);
}
.tpbm__caption { margin-top: 14px; font-size: clamp(12.5px, 0.72vw, 14px); opacity: 0.55; letter-spacing: 0.02em; }

/* The facade: a poster and a play button. The iframe only exists after a
   click, so nothing is fetched from YouTube on page load. */
.yt {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: 14px; overflow: clip;
  background: #000;
}
.yt__play {
  position: absolute; inset: 0; width: 100%; height: 100%;
  padding: 0; border: 0; background: none; cursor: pointer;
  display: grid; place-items: center;
}
.yt__poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.78;
  transition: transform 0.7s var(--ease), opacity 0.4s;
}
.yt__play:hover .yt__poster { transform: scale(1.03); opacity: 0.9; }
.yt__btn {
  position: relative; z-index: 1;
  width: clamp(64px, 6vw, 88px); height: clamp(64px, 6vw, 88px);
  border-radius: 50%; background: var(--light); color: var(--ink);
  display: grid; place-items: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.45);
  transition: transform 0.35s var(--ease);
}
.yt__btn svg { width: 40%; height: 40%; margin-left: 6%; }
.yt__play:hover .yt__btn { transform: scale(1.06); }
.yt__play:focus-visible { outline: 3px solid var(--tan); outline-offset: 3px; }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* No id yet: the poster stays, the play affordance goes. */
.yt[data-yt=""] .yt__btn { display: none; }
.yt[data-yt=""] .yt__play { cursor: default; }

@media (max-width: 900px) {
  .tpbm__inner { grid-template-columns: 1fr; }
  .tpbm__media { order: -1; }   /* video first on a phone — it is the hook */
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); color: var(--light); padding: clamp(56px, 8vh, 100px) var(--pad) 0; }
.footer__main {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.6fr;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: clamp(56px, 8vh, 100px);
}
.footer__brand img { display: block; height: 66px; width: auto; }
.footer__news h3 { font-size: clamp(16px, 0.8vw, 21.3px); margin-bottom: 8px; }
.footer__news > p { font-size: clamp(15px, 0.7vw, 17.3px); opacity: 0.6; margin-bottom: 18px; }
.footer__form { display: flex; gap: 8px; align-items: center; border: 1px solid rgba(241,241,241,.35); border-radius: 999px; padding: 5px 5px 5px 20px; max-width: 380px; }
.footer__form input {
  padding: 13px 0;             /* fill the pill, so the whole thing is tappable */
  flex: 1; min-width: 0; background: none; border: 0; color: var(--light);
  font: inherit; font-size: 14px; outline: none;
}
.footer__form input::placeholder { color: rgba(241, 241, 241, 0.5); }
.footer__form button {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--light); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease);
}
.footer__form button:hover { transform: scale(1.08); }
.footer__form button svg { width: 13px; height: 13px; }
.footer__formmsg { font-size: 12.5px; margin-top: 10px; color: var(--tan); min-height: 1em; }
.footer__cols { display: grid; grid-template-columns: repeat(3, auto); gap: 32px; justify-content: space-between; }
.footer__label { font-size: clamp(13px, 0.6vw, 16px); text-transform: uppercase; letter-spacing: 0.13em; opacity: 0.45; margin-bottom: 16px; }
.footer__cols a { display: block; font-size: clamp(15px, 0.7vw, 18.7px); opacity: 0.85; padding: 11px 0; }
.footer__cols a:hover { opacity: 0.5; }
.footer__addr { font-size: clamp(15px, 0.7vw, 18.7px); opacity: 0.85; padding: 3px 0; line-height: 1.5; }
/* Restores the qEEG disclaimer the previous site carried site-wide. */
.footer__disclaimer {
  border-top: 1px dashed var(--hair-light);
  padding-top: clamp(24px, 3.5vh, 34px);
  font-size: clamp(12px, 0.66vw, 13.5px);
  line-height: 1.6;
  opacity: 0.5;
  max-width: 108ch;
}
.footer__bar {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
  border-top: 1px dashed var(--hair-light);
  padding: 22px 0;
  font-size: clamp(13px, 0.7vw, 16.7px);
  opacity: 0.65;
}
.footer__bar a { margin-right: 18px; display: inline-block; padding: 13px 0; }
.footer__bar a:hover { opacity: 0.6; }

/* ============================================================
   MODAL
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 110; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: opacity 0.4s, visibility 0s 0.4s; }
.modal.is-open { visibility: visible; opacity: 1; transition: opacity 0.4s; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(10, 9, 8, 0.72); backdrop-filter: blur(6px); }
.modal__panel {
  position: relative;
  width: min(calc(100vw - 40px), 460px);
  background: var(--light);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 44px);
  transform: translateY(24px);
  transition: transform 0.45s var(--ease);
  max-height: 90svh;
  overflow-y: auto;
}
.modal.is-open .modal__panel { transform: none; }
.modal__close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 50%; background: rgba(31,31,31,.07); display: flex; align-items: center; justify-content: center; }
.modal__close:hover { background: rgba(31, 31, 31, 0.15); }
.modal__close svg { width: 13px; height: 13px; }
.modal__panel h3 { font-size: 26px; margin-bottom: 8px; letter-spacing: -0.02em; }
.modal__panel > .modal__form-wrap > p { font-size: 13.5px; opacity: 0.7; margin-bottom: 24px; }
.modal__panel label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.6; margin: 16px 0 6px; }
.modal__panel input,
.modal__panel textarea {
  width: 100%;
  font: inherit; font-size: 15px;
  padding: 12px 16px;
  border: 1px solid rgba(31, 31, 31, 0.25);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}
.modal__panel textarea { resize: vertical; min-height: 84px; font-family: inherit; }
.modal__panel input:focus,
.modal__panel textarea:focus { outline: 2px solid var(--tan); outline-offset: 1px; }
.modal__panel input.is-invalid,
.modal__panel textarea.is-invalid { border-color: #a4472c; }
.modal__panel .btn { margin-top: 26px; background: var(--ink); color: var(--light); }
.modal__panel .btn .btn__chip { background: var(--light); color: var(--ink); }
.modal__terms { font-size: 11.5px; opacity: 0.6; margin-top: 16px; line-height: 1.5; }
.modal__terms a { text-decoration: underline; }
.modal__success h3 { margin-bottom: 10px; }
.modal__success p { font-size: 14px; opacity: 0.75; line-height: 1.6; }
.modal__error { font-size: 13px; color: #a4472c; margin-top: 14px; }
.modal__error a { text-decoration: underline; }

/* ============================================================
   SUBPAGES
   ============================================================ */
.nav--ink { color: var(--ink); }
.nav--ink .nav__logo--light { display: none; }
.nav--ink .nav__logo--dark { display: block; }
.nav--ink .btn--pill { background: var(--ink); color: var(--light); }
.nav--ink .btn--pill .btn__chip { background: var(--light); color: var(--ink); }

/* Anchored bottom-left to match the video heroes. Top padding only needs to
   clear the fixed nav; min-height must exceed the content or there is no free
   space for justify-content to push into. */
.page-head {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(560px, 82svh, 1000px);
  padding: calc(80px + 2vh) var(--pad) clamp(48px, 8vh, 100px);
}

/* Video variant: light type over a looping clip. */
.page-head--video {
  position: relative;
  display: flex;
  flex-direction: row;          /* base is column; this variant has one child */
  align-items: flex-end;
  min-height: clamp(520px, 78svh, 900px);
  padding: 0;
  color: var(--light);
  overflow: clip;
}
.page-head__media, .page-head__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.page-head__media img, .page-head__vid { filter: sepia(0.22) saturate(1.08) brightness(0.98); }
.page-head__vid {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.page-head__vid.is-active { opacity: 1; }
.page-head__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(61, 38, 15, 0.18), rgba(61, 38, 15, 0.18)),
    linear-gradient(180deg,
      rgba(10, 9, 8, 0.66) 0%,
      rgba(10, 9, 8, 0.30) 38%,
      rgba(10, 9, 8, 0.80) 100%);
}
.page-head--video .page-head__inner {
  position: relative;
  width: 100%;
  padding: 0 var(--pad) clamp(44px, 7vh, 80px);
}
.page-head--video h1 { color: #efede9; }
.page-head--video .page-head__intro { opacity: 0.9; }
.page-head__eyebrow {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: clamp(13px, 0.6vw, 16px); text-transform: uppercase; letter-spacing: 0.13em;
  margin-bottom: clamp(36px, 6vh, 70px);
}
.page-head__eyebrow .statement__star { flex: none; }
.page-head h1 {
  font-size: clamp(40px, 4.1vw, 96px);
  letter-spacing: -0.032em;
  max-width: 16ch;
}
.page-head__intro {
  margin-top: 30px;
  max-width: 56ch;
  font-size: clamp(16px, 1.1vw, 29.4px);
  line-height: 1.55;
  opacity: 0.85;
}

/* numbered process rows */
.steps { padding: clamp(40px, 6vh, 80px) var(--pad) clamp(70px, 10vh, 130px); }
.steps__row {
  display: grid;
  grid-template-columns: 90px 1fr 1.35fr;
  gap: clamp(16px, 3vw, 48px);
  align-items: start;
  padding: clamp(26px, 4vh, 42px) 0;
  border-bottom: 1px dashed var(--hair);
}
.steps__row:first-child { border-top: 1px dashed var(--hair); }
.steps__num {
  font-size: clamp(28px, 2vw, 46px);
  font-weight: 500;
  letter-spacing: -0.03em;
  opacity: 0.35;
}
.steps__row h3 { font-size: clamp(22px, 1.6vw, 36.5px); letter-spacing: -0.02em; }
.steps__row h3 span { display: block; font-size: clamp(15px, 0.7vw, 17.3px); letter-spacing: 0.02em; font-weight: 400; opacity: 0.55; margin-top: 8px; }
.steps__body { font-size: clamp(15px, 0.8vw, 19.3px); line-height: 1.6; opacity: 0.8; max-width: 56ch; }
.steps__body p + p { margin-top: 12px; }

/* clinic photo band */
/* minmax(0,…) is required: the figures' aspect-ratio otherwise sets an
   automatic minimum width that overflows the tracks. */
.band { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; padding: 0 var(--pad) clamp(70px, 10vh, 130px); }
.band--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.band figure { border-radius: 10px; overflow: clip; position: relative; aspect-ratio: 16 / 10.5; }
.band img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: sepia(0.22) saturate(0.92) contrast(0.97);
}
.band figcaption {
  position: absolute; left: 14px; bottom: 12px;
  font-size: clamp(13px, 0.6vw, 15.3px); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--light);
  background: rgba(10, 9, 8, 0.55);
  padding: 6px 12px; border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* founder bio */
.bio {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 5vw, 90px);
  padding: clamp(70px, 10vh, 130px) var(--pad);
  background: var(--light);
}
.bio__media img {
  width: min(100%, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1) sepia(0.16);
}
.bio h2 { font-size: var(--h2); margin-bottom: 8px; }
.bio__creds { font-size: clamp(13px, 0.6vw, 16px); text-transform: uppercase; letter-spacing: 0.11em; opacity: 0.5; margin-bottom: 26px; }
.bio__text { font-size: clamp(15px, 0.8vw, 20px); line-height: 1.65; opacity: 0.85; max-width: 62ch; }
.bio__text p + p { margin-top: 14px; }

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px dashed var(--hair);
  margin: 0 var(--pad);
}
.contact-grid > div {
  padding: clamp(24px, 3vw, 44px) clamp(18px, 2vw, 32px) clamp(32px, 4vw, 56px);
  border-right: 1px dashed var(--hair);
}
.contact-grid > div:last-child { border-right: 0; }
.contact-grid h3 { font-size: clamp(17px, 0.9vw, 22.7px); margin-bottom: 10px; }
.contact-grid a, .contact-grid p { font-size: clamp(15px, 0.8vw, 20px); line-height: 1.6; opacity: 0.8; display: block; }
.contact-grid a:hover { opacity: 0.5; }

.cform-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 90px);
  padding: clamp(70px, 10vh, 120px) var(--pad);
  background: var(--light);
}
.cform-wrap h2 { font-size: var(--h2); }
.cform-wrap .cform-note { margin-top: 22px; font-size: clamp(15px, 0.7vw, 18.7px); line-height: 1.6; opacity: 0.75; max-width: 40ch; }
.cform label { display: block; font-size: clamp(13px, 0.6vw, 16px); text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.6; margin: 18px 0 6px; }
.cform label:first-child { margin-top: 0; }
.cform input, .cform textarea {
  width: 100%;
  font: inherit; font-size: clamp(15px, 0.8vw, 20px);
  padding: 12px 16px;
  border: 1px solid rgba(31, 31, 31, 0.25);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  resize: vertical;
}
.cform input:focus, .cform textarea:focus { outline: 2px solid var(--tan); outline-offset: 1px; }
.cform input.is-invalid, .cform textarea.is-invalid { border-color: #a4472c; }
.cform .btn { margin-top: 26px; background: var(--ink); color: var(--light); }
.cform .btn .btn__chip { background: var(--light); color: var(--ink); }
.cform__msg { font-size: clamp(15px, 0.7vw, 18px); margin-top: 14px; min-height: 1em; }
.cform__msg.is-ok { color: #4a6741; }
.cform__msg.is-err { color: #a4472c; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal { padding: 0 var(--pad) clamp(80px, 12vh, 150px); }
.legal__body { max-width: 76ch; }
.legal__meta {
  font-size: clamp(13px, 0.6vw, 15.3px);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.5;
  margin-bottom: clamp(28px, 4vh, 44px);
}
.legal__body h2 {
  font-size: clamp(19px, 1.1vw, 25.3px);
  letter-spacing: -0.015em;
  margin: clamp(34px, 5vh, 56px) 0 14px;
}
.legal__body p, .legal__body li {
  font-size: clamp(15px, 0.8vw, 19.3px);
  line-height: 1.65;
  opacity: 0.85;
}
.legal__body p + p { margin-top: 14px; }
.legal__body ul { margin: 14px 0 0; padding-left: 0; }
.legal__body li { position: relative; padding: 5px 0 5px 22px; }
.legal__body li::before {
  content: "";
  position: absolute; left: 4px; top: 15px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--tan-deep);
}
.legal__body a { text-decoration: underline; text-underline-offset: 3px; }
.legal__body a:hover { opacity: 0.6; }

/* dark CTA band */
.page-cta {
  /* The card is inset on every edge. The top was 0, so it butted against
     whatever came before — obvious wherever that section is full-bleed. */
  margin: clamp(32px, 4vw, 64px) clamp(10px, 1.6vw, 32px) clamp(60px, 8vh, 110px);
  background: var(--black);
  color: var(--light);
  border-radius: 22px;
  padding: clamp(60px, 10vh, 120px) clamp(24px, 4vw, 72px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.page-cta h2 { font-size: clamp(34px, 3vw, 69.2px); color: #efede9; max-width: 16ch; }
.page-cta__right { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.page-cta__right p { font-size: clamp(15px, 0.8vw, 19.3px); opacity: 0.75; max-width: 34ch; line-height: 1.55; }

/* ============================================================
   ANIMATION PRIMITIVES
   ============================================================ */
[data-reveal-lines] .line { display: block; overflow: clip; }
/* The reveal masks clip to the 1.02 line box, which is shallower than the
   font's descenders: g, p, y and commas lost their tails. Extend each mask
   below the baseline and pull the next line back up by the same amount so
   the heading rhythm is unchanged. */
[data-reveal-lines] .line, .hero__line { padding-bottom: 0.12em; margin-bottom: -0.12em; }
[data-reveal-lines] .line > * { display: inline-block; }
[data-stagger] { opacity: 0; transform: translateY(28px); }
html.no-anim [data-stagger], html.reduced [data-stagger] { opacity: 1; transform: none; }
html.no-anim [data-scrub-words] .word, html.reduced [data-scrub-words] .word { opacity: 1 !important; }
html.no-anim .timeline__title .word, html.reduced .timeline__title .word { opacity: 1 !important; }
html.no-anim .choose__big .word, html.reduced .choose__big .word { opacity: 1 !important; }

@media (prefers-reduced-motion: reduce) {
  .statement__star { animation: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .cards__track { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .design { grid-template-columns: 1fr; }
  .design__left { position: static; }
  .report__body { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .cards__track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps__row { grid-template-columns: 48px 1fr; }
  .steps__body { grid-column: 2; }
  .band, .band--three { grid-template-columns: minmax(0, 1fr); }
  .bio { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid > div { border-right: 0; border-bottom: 1px dashed var(--hair); }
  .cform-wrap { grid-template-columns: 1fr; }
  .page-head { min-height: clamp(380px, 56svh, 560px); }
  .pillars { grid-template-columns: 1fr; }
  .pillars__item { border-right: 0; border-bottom: 1px dashed var(--hair); }
  .pillars__item:last-child { border-bottom: 0; }
  .anymind__grid, .anymind__grid--three { grid-template-columns: 1fr 1fr; }
  .anymind__cell:nth-child(2n) { border-right: 0; }
  .anymind__cell { border-bottom: 1px dashed var(--hair); }
  .anymind__icon { margin-bottom: 28px; }
  .split { grid-template-columns: 1fr; min-height: 0; }
  .split__media { min-height: 56vw; position: relative; }
  .split__media img { position: absolute; }
  .split__panel p { margin-top: 36px; }
  .index__grid { grid-template-columns: 1fr 1fr; }
  .index__group h3 { min-height: 0; margin-bottom: 24px; }
  .plans { grid-template-columns: 1fr; }
  .who__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .faq { grid-template-columns: 1fr; }
  .faq__media { position: static; aspect-ratio: 16 / 10; }
  .footer__main { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { justify-content: flex-start; gap: 48px; }
  .menu__body { grid-template-columns: 1fr; }
  .timeline__row { grid-template-columns: 54px 1fr; }
  .timeline__detail { grid-column: 2; }
}

@media (max-width: 560px) {
  :root { --pad: 18px; }
  .nav__phone { display: none; }
  /* No room for logo + pill + burger at phone widths; the burger menu carries
     the same CTA, and the hero offers it twice more. */
  .nav__right > .btn--pill { display: none; }
  .nav__inner { gap: 12px; }
  .nav__logo { height: 44px; }
  /* Fluid so "London's Harley Street" holds one line on 360-430px phones. */
  .hero__title { font-size: clamp(30px, 9vw, 40.5px); }
  .hero__col { max-width: none; }
  .anymind__grid, .anymind__grid--three { grid-template-columns: 1fr; }
  .anymind__cell { border-right: 0; }
  .index__grid { grid-template-columns: 1fr; }
  .index__group h3 br { display: none; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .cards__track { grid-template-columns: minmax(0, 1fr); }
  .footer__cols { grid-template-columns: 1fr; }
  .statement__title { font-size: clamp(34px, 7.7vw, 34px); }
  .choose__col h2 br { display: none; }
}


/* ============================================================
   PAYMENT (pay.html) + RESULT (payment-result.html)
   Stripe Checkout front end. Reuses the fee-card look.
   ============================================================ */
.pay {
  padding: 0 var(--pad) clamp(40px, 6vh, 70px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(16px, 1.6vw, 26px);
  align-items: start;
}
.pay__card h2 { max-width: 22ch; }
/* Author display rules beat the hidden attribute, so restate it. */
.pay__check[hidden], .pay__card[hidden] { display: none; }
.pay--invalid { grid-template-columns: minmax(0, 1fr); max-width: 72ch; }
.pay__panel {
  background: var(--light);
  border-radius: 16px;
  padding: clamp(26px, 2.4vw, 40px);
}
.pay__check {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: var(--small); line-height: 1.5; opacity: 0.85;
  margin-bottom: 16px; cursor: pointer;
}
.pay__check input {
  width: 18px; height: 18px; margin-top: 3px; flex: none;
  accent-color: var(--ink); cursor: pointer;
}
.pay__check a, .pay__fallback a, .pay__invalid a, .pay__error a {
  text-decoration: underline; text-underline-offset: 3px;
}
.pay__error {
  color: #8a2a1e; font-size: var(--small); line-height: 1.5;
  margin: 0 0 16px;
}
.pay__panel .btn--wide { margin-top: 8px; }
.pay__panel .btn.is-busy { opacity: 0.6; cursor: progress; transform: none; }
.pay__fallback {
  margin-top: 14px; font-size: var(--small); line-height: 1.5; opacity: 0.8;
}
.pay__small {
  margin-top: 18px; font-size: clamp(12.5px, 0.72vw, 14.5px);
  line-height: 1.55; opacity: 0.6;
}
.pay__cards {
  margin-top: 12px; display: flex; align-items: center; gap: 8px;
}
/* Card-scheme marks, self-contained (no external logo requests). Swap for
   official brand assets later if the clinic prefers. */
.cardmark {
  display: inline-flex; align-items: center; justify-content: center;
  height: 26px; min-width: 40px; padding: 0 8px;
  background: #ffffff; border: 1px solid var(--hair);
  border-radius: 5px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.02em;
}
.cardmark--visa { color: #1434cb; font-style: italic; font-weight: 800; }
.cardmark--amex { background: #006fcf; border-color: #006fcf; color: #ffffff; }
.cardmark--mc { padding: 0 6px; }
.cardmark--mc svg { height: 18px; width: auto; display: block; }
.pay__invalid h2 { font-size: clamp(21px, 1.5vw, 32px); letter-spacing: -0.02em; margin-bottom: 12px; }
.pay__invalid p { font-size: var(--small); line-height: 1.6; opacity: 0.85; }
@media (max-width: 900px) { .pay { grid-template-columns: 1fr; } }

.result { padding: 0 var(--pad) clamp(60px, 8vh, 110px); }
.result__panel {
  background: var(--light);
  border-radius: 16px;
  padding: clamp(26px, 2.6vw, 44px);
  max-width: 72ch;
}
.result__panel h2 {
  font-size: clamp(24px, 1.9vw, 40px); letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.result__panel p { font-size: var(--small); line-height: 1.6; opacity: 0.85; }
.result__panel p a { text-decoration: underline; text-underline-offset: 3px; }
.result__ref {
  margin-top: 18px; font-size: clamp(12px, 0.72vw, 14px);
  letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.55;
}
.result__ref:empty { display: none; }
.result__actions { margin-top: clamp(22px, 3vh, 32px); }
.result__actions a { text-decoration: none; }
.result--paid .result__panel { outline: 1px solid var(--tan); outline-offset: -1px; }
.result--declined .result__panel h2,
.result--error .result__panel h2,
.result--failure .result__panel h2 { color: #8a2a1e; }
