/* =====================================================================
   PRM — "Get back to the life you love" premium concept (WARM variant)
   Aesthetic: warm editorial · human, quality-of-life
   Big idea: pain relief that gives you your life back
   ===================================================================== */

/* ---- Tokens ---------------------------------------------------------- */
:root {
  /* color — warm ivory / espresso / terracotta */
  --paper:      #FFFFFF;   /* white base */
  --paper-2:    #FAFAF9;   /* near-white, neutral */
  --paper-3:    #F2F2F0;   /* very light neutral grey */
  --ink:        #1B1A17;   /* neutral near-black text */
  --ink-2:      #595852;   /* neutral grey text */
  --ink-3:      #8C8B86;   /* tertiary / meta */
  --line:       #EAE9E5;   /* neutral light hairline */
  --line-soft:  #F3F3F1;   /* faint neutral hairline */
  --teal:       #1A6699;   /* primary accent — terracotta */
  --teal-deep:  #134E78;
  --teal-bright:#1F6FA5;   /* terracotta, readable on white */
  --teal-tint:  #E9F1F8;   /* faint warm wash (hover only) */
  --night:      #F6F6F4;   /* section band -> near-white neutral */
  --night-2:    #FFFFFF;   /* sub-panels -> white */
  --night-line: #E8E7E3;   /* neutral light hairline */
  --bone:       #1B1A17;   /* text on those sections -> dark */

  /* type — warm serif display */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", -apple-system, system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  /* scale */
  --container: 1280px;
  --pad-x: clamp(1.25rem, 4vw, 3.75rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 3px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: -0.008em; line-height: 1.04; }

::selection { background: var(--teal); color: #fff; }

:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.skip-link {
  position: absolute; left: 0; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: .65rem 1rem;
  font: 500 .8rem/1 var(--mono); letter-spacing: .04em;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---- Shared atoms ---------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x); }

.kicker {
  display: inline-flex; align-items: center; gap: .6ch;
  font: 500 .72rem/1 var(--mono);
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--teal);
}
.kicker::before {
  content: ""; width: 1.6rem; height: 1px; background: var(--teal); opacity: .65;
}
.kicker--plain::before { display: none; }
.kicker--night { color: var(--teal-bright); }
.kicker--night::before { background: var(--teal-bright); }

.eyebrow-index { font: 500 .72rem/1 var(--mono); letter-spacing: .14em; color: var(--ink-3); }

.lead {
  font-size: clamp(1.06rem, 1.3vw, 1.28rem);
  line-height: 1.55; color: var(--ink-2); max-width: 54ch; font-weight: 400;
}

/* buttons */
.btn {
  --bg: var(--teal); --fg: #fff;
  position: relative; display: inline-flex; align-items: center; gap: .8ch;
  background: var(--bg); color: var(--fg);
  padding: .95rem 1.5rem;
  font: 600 .92rem/1 var(--sans); letter-spacing: -0.01em;
  border: 1px solid var(--bg); border-radius: var(--radius);
  overflow: hidden; transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover { background: var(--teal-deep); border-color: var(--teal-deep); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); --fg: #fff; }
.btn--lg { padding: 1.1rem 1.9rem; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

.text-link {
  display: inline-flex; align-items: center; gap: .6ch;
  font: 600 .92rem/1 var(--sans); color: var(--ink);
  padding-bottom: 3px; border-bottom: 1px solid var(--ink);
  transition: gap .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.text-link:hover { gap: 1ch; color: var(--teal); border-color: var(--teal); }

/* blueprint grid background util */
.bp-grid {
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 46px 46px;
}

/* corner tick marks */
.ticks::before, .ticks::after {
  content: ""; position: absolute; width: 9px; height: 9px; pointer-events: none;
  border-color: var(--teal); opacity: .8;
}

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(180deg, rgba(26,19,13,.55), rgba(26,19,13,0));
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
}
.nav.solid {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--line);
}
/* transparent state (over video) — light text */
.nav:not(.solid) .brand__txt strong { color: #fff; }
.nav:not(.solid) .brand__txt small { color: rgba(255,255,255,.72); }
.nav:not(.solid) .nav__links a:not(.btn) { color: rgba(255,255,255,.86); }
.nav:not(.solid) .nav__links a:not(.btn):hover { color: #fff; }
.nav:not(.solid) .nav__phone { color: #fff !important; }
.nav:not(.solid) .brand img { filter: brightness(0) invert(1); }
.nav__row {
  display: flex; align-items: center; gap: 2rem;
  height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand img { width: 30px; height: 30px; object-fit: contain; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__txt strong { font: 700 .98rem/1 var(--display); letter-spacing: -0.02em; }
.brand__txt small { font: 500 .6rem/1.2 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links a:not(.btn) {
  font: 500 .92rem/1 var(--sans); color: var(--ink-2);
  position: relative; padding: .4rem 0;
  transition: color .2s var(--ease);
}
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--teal); transition: width .25s var(--ease);
}
.nav__links a:not(.btn):hover { color: var(--ink); }
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__phone {
  font: 500 .82rem/1 var(--mono) !important; letter-spacing: .02em; color: var(--ink) !important;
}
.nav__toggle { display: none; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__toggle {
    display: inline-flex; align-items: center; gap: .6ch; margin-left: auto;
    background: var(--teal); color: #fff; padding: .6rem 1rem; border: none; border-radius: var(--radius);
    font: 600 .85rem/1 var(--sans);
  }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero--video {
  position: relative;
  min-height: min(92vh, 820px);
  min-height: min(92svh, 820px); /* svh = stable on mobile (ignores Safari URL-bar resize) */
  display: flex; align-items: center; color: #fff; overflow: hidden;
  background: var(--night);
}
.hero__media {
  position: absolute; inset: 0; z-index: 0;
  background: #0d1416 url('/videos/prm-hero-poster.jpg') center/cover no-repeat;
}
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(26,19,13,.93) 0%, rgba(26,19,13,.70) 40%, rgba(26,19,13,.34) 72%, rgba(26,19,13,.48) 100%),
    linear-gradient(0deg, rgba(26,19,13,.80) 0%, rgba(26,19,13,0) 40%),
    linear-gradient(180deg, rgba(26,19,13,.60) 0%, rgba(26,19,13,0) 24%);
}
.hero__bpgrid {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 70%);
          mask-image: linear-gradient(90deg, transparent, #000 70%);
}
.hero__inner {
  position: relative; z-index: 2;
  padding-block: clamp(7rem, 15vh, 10.5rem);
}
.hero--video .kicker--onvideo { color: #6FB3DD; }
.hero--video .kicker--onvideo::before { background: #6FB3DD; opacity: 1; }
.hero h1 {
  font-size: clamp(2.7rem, 5.9vw, 5.3rem);
  font-weight: 600; line-height: 1.0; letter-spacing: -0.012em;
  margin: 1.4rem 0 0; max-width: 16ch; color: #fff;
  text-shadow: 0 2px 34px rgba(0,0,0,.4);
}
.hero h1 .accent { color: #80C2E8; font-style: italic; font-weight: 500; }
.hero__lead { margin-top: 1.6rem; max-width: 46ch; color: rgba(255,255,255,.85); }
.hero__actions { margin-top: 2.1rem; display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.text-link--onvideo { color: #fff; border-color: rgba(255,255,255,.55); }
.text-link--onvideo:hover { color: #fff; border-color: var(--teal-bright); }

.hero__stats {
  margin-top: 2.75rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.22);
  display: grid; grid-template-columns: repeat(3, auto); gap: clamp(1.4rem, 3vw, 3rem); justify-content: start;
}
.hero__stat strong { display: block; font: 700 1.8rem/1 var(--display); letter-spacing: -0.02em; color: #fff; }
.hero__stat span { display: block; margin-top: .45rem; font: 500 .68rem/1.3 var(--mono); text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.6); max-width: 16ch; }

/* mono meta strip pinned to hero bottom */
.hero__meta {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 1.05rem var(--pad-x);
  border-top: 1px solid rgba(255,255,255,.14);
  font: 500 .62rem/1 var(--mono); text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.6);
}
.hero__meta span:first-child { color: rgba(255,255,255,.82); }

@media (max-width: 940px) {
  .hero--video { min-height: 88vh; }
  .hero__bpgrid { -webkit-mask-image: none; mask-image: none; opacity: .22; }
  .hero__video { object-position: 50% 30%; }
}
@media (max-width: 520px) {
  .hero--video { min-height: 86svh; }
  /* full-width text on mobile needs a uniform scrim so it stays legible over
     every frame of the loop (the bright window-lit and procedure-light shots) */
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(26,19,13,.74) 0%, rgba(26,19,13,.52) 42%, rgba(26,19,13,.86) 100%);
  }
  .hero__inner { padding-top: 6rem; padding-bottom: 4.25rem; }
  .hero h1 { max-width: 14ch; font-size: clamp(2.5rem, 11vw, 3.4rem); }
  .hero__lead { font-size: 1.02rem; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: .9rem; }
  .hero__stat strong { font-size: 1.45rem; }
  .hero__stat span { max-width: none; font-size: .56rem; letter-spacing: .08em; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }
  .hero__meta { font-size: .54rem; letter-spacing: .1em; padding-block: .85rem; }
  .hero__meta span { white-space: nowrap; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}

/* =====================================================================
   TENSION — the procedure-menu problem
   ===================================================================== */
.tension { background: var(--night); color: var(--ink); }
.tension__inner { padding-block: var(--section-y); display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); }
.tension h2 { color: var(--ink); font-size: clamp(1.9rem, 3.4vw, 3rem); }
.tension__lead { color: rgba(82,81,76,.72); margin-top: 1.2rem; font-size: clamp(1.05rem,1.3vw,1.25rem); line-height: 1.55; max-width: 30ch; }
.compare { display: grid; gap: 0; align-self: center; width: 100%; border: 1px solid var(--night-line); }
.compare__row { display: grid; grid-template-columns: 1fr 1fr; }
.compare__row + .compare__row { border-top: 1px solid var(--night-line); }
.compare__cell { padding: 1.15rem 1.3rem; }
.compare__cell:first-child { border-right: 1px solid var(--night-line); }
.compare__head { font: 500 .64rem/1 var(--mono); text-transform: uppercase; letter-spacing: .16em; }
.compare__head--them { color: rgba(82,81,76,.5); }
.compare__head--us { color: var(--teal-bright); }
.compare__txt { margin-top: .55rem; font-size: .98rem; line-height: 1.4; }
.compare__cell--them .compare__txt { color: rgba(82,81,76,.62); }
.compare__cell--us .compare__txt { color: var(--ink); font-weight: 600; }
.compare__row--head .compare__cell { padding-block: .85rem; background: var(--night-2); }

@media (max-width: 860px) {
  .tension__inner { grid-template-columns: 1fr; gap: 2rem; }
  .tension__lead { max-width: none; }
}

/* =====================================================================
   METHOD — diagnose first (numbered schematic)
   ===================================================================== */
.method__inner { padding-block: var(--section-y); }
.method__head { max-width: 60ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.method__head h2 { font-size: clamp(1.95rem, 3.6vw, 3.1rem); margin-top: 1.1rem; }
.method__head p { margin-top: 1.1rem; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.step { position: relative; padding: 2rem 1.75rem 2.25rem 0; }
.step + .step { padding-left: 1.75rem; border-left: 1px solid var(--line); }
.step__idx { font: 500 .8rem/1 var(--mono); letter-spacing: .1em; color: var(--teal); }
.step__bar { height: 2px; background: var(--teal); width: 2.4rem; margin: 1.1rem 0 1.3rem; }
.step h3 { font-size: 1.32rem; letter-spacing: -0.02em; }
.step p { margin-top: .7rem; color: var(--ink-2); font-size: .98rem; line-height: 1.5; max-width: 32ch; }
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
  .step { padding: 1.6rem 0 1.7rem; }
  .step + .step { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 1.6rem; }
}

/* =====================================================================
   MODALITIES — the index + featured
   ===================================================================== */
.modalities { background: var(--paper-2); border-block: 1px solid var(--line); }
.modalities__inner { padding-block: var(--section-y); }
.modalities__head {
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.modalities__head h2 { font-size: clamp(1.95rem, 3.4vw, 3rem); margin-top: 1.1rem; max-width: 18ch; }
.modalities__layout { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(1.5rem, 3vw, 2.75rem); }

/* featured cards */
.feature-stack { display: grid; grid-template-rows: repeat(3, 1fr); gap: 1.25rem; }
.feature {
  position: relative; display: grid; grid-template-columns: 150px 1fr; gap: 1.25rem;
  background: var(--paper); border: 1px solid var(--line); overflow: hidden;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feature:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: 0 18px 40px -28px rgba(14,92,91,.55); }
.feature__img { overflow: hidden; background: var(--ink); }
.feature__img img { width: 100%; height: 100%; object-fit: cover; min-height: 130px; transition: transform .5s var(--ease); }
.feature:hover .feature__img img { transform: scale(1.05); }
.feature__body { padding: 1.15rem 1.3rem 1.15rem 0; align-self: center; }
.feature__idx { font: 500 .64rem/1 var(--mono); letter-spacing: .14em; color: var(--ink-3); }
.feature__body h3 { font-size: 1.14rem; margin-top: .5rem; letter-spacing: -0.015em; }
.feature__body p { margin-top: .45rem; font-size: .9rem; color: var(--ink-2); line-height: 1.45; }

/* index list */
.index-card { background: var(--paper); border: 1px solid var(--line); display: flex; flex-direction: column; }
.index-card__head {
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--line);
  font: 500 .64rem/1 var(--mono); text-transform: uppercase; letter-spacing: .16em; color: var(--ink-3);
  display: flex; justify-content: space-between;
}
.index-list { list-style: none; padding: 0; }
.index-list li { border-bottom: 1px solid var(--line-soft); }
.index-list li:last-child { border-bottom: 0; }
.index-list a {
  display: grid; grid-template-columns: 2.4rem 1fr auto; align-items: center; gap: .5rem;
  padding: .72rem 1.25rem;
  transition: background .2s var(--ease), padding .2s var(--ease);
}
.index-list a:hover { background: var(--teal-tint); padding-left: 1.55rem; }
.index-list .ix { font: 500 .68rem/1 var(--mono); color: var(--teal); }
.index-list .nm { font-size: .95rem; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
.index-list .go { font: 500 .9rem/1 var(--mono); color: var(--ink-3); opacity: 0; transform: translateX(-4px); transition: opacity .2s var(--ease), transform .2s var(--ease); }
.index-list a:hover .go { opacity: 1; transform: translateX(0); color: var(--teal); }

@media (max-width: 900px) {
  .modalities__layout { grid-template-columns: 1fr; }
  .modalities__head { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 520px) {
  .feature { grid-template-columns: 1fr; }
  .feature__img img { min-height: 170px; }
  .feature__body { padding: 1.15rem 1.3rem; }
}

/* =====================================================================
   PHYSICIAN — dark authority band
   ===================================================================== */
.physician { background: var(--night); color: var(--bone); position: relative; overflow: hidden; }
.physician::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--night-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--night-line) 1px, transparent 1px);
  background-size: 64px 64px; opacity: .35;
  -webkit-mask-image: radial-gradient(80% 80% at 80% 20%, #000, transparent 75%);
          mask-image: radial-gradient(80% 80% at 80% 20%, #000, transparent 75%);
}
.physician__inner { position: relative; padding-block: var(--section-y); display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.physician__photo { position: relative; }
.physician__photo .frameimg {
  position: relative; border: 1px solid var(--night-line); padding: 10px; background: var(--night-2);
}
.physician__photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 18%; }
.physician__photo .tag {
  position: absolute; left: 10px; bottom: 10px; right: 10px;
  background: linear-gradient(transparent, rgba(26,19,13,.92));
  padding: 2.4rem 1.1rem .9rem; display: flex; flex-direction: column; gap: 2px;
}
.physician__photo .tag b { font: 600 1rem/1 var(--sans); color: #fff; }
.physician__photo .tag span { font: 500 .6rem/1.3 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--teal-bright); }
.physician h2 { color: var(--ink); font-size: clamp(1.95rem, 3.6vw, 3.1rem); margin-top: 1.1rem; }
.physician__lead { color: rgba(82,81,76,.74); margin-top: 1.3rem; font-size: clamp(1.04rem,1.3vw,1.22rem); line-height: 1.55; max-width: 50ch; }
.creds { margin-top: 2rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--night-line); }
.creds li { list-style: none; padding: 1rem 1.15rem; }
.creds li:nth-child(odd) { border-right: 1px solid var(--night-line); }
.creds li:nth-child(n+3) { border-top: 1px solid var(--night-line); }
.creds .c-k { font: 500 .58rem/1 var(--mono); text-transform: uppercase; letter-spacing: .14em; color: var(--teal-bright); }
.creds .c-v { margin-top: .45rem; font-size: .95rem; color: var(--ink); line-height: 1.35; font-weight: 600; }
@media (max-width: 860px) {
  .physician__inner { grid-template-columns: 1fr; gap: 2.25rem; }
  .physician__photo { max-width: 340px; }
}
@media (max-width: 460px) { .creds { grid-template-columns: 1fr; } .creds li:nth-child(odd) { border-right: 0; } .creds li:nth-child(n+2){ border-top: 1px solid var(--night-line);} }

/* =====================================================================
   CONDITIONS — find your pattern
   ===================================================================== */
.conditions__inner { padding-block: var(--section-y); }
.conditions__head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; margin-bottom: 2.5rem; }
.conditions__head h2 { font-size: clamp(1.95rem,3.4vw,3rem); margin-top: 1.1rem; max-width: 20ch; }
.cond-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.cond {
  position: relative; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1.4rem 1.3rem 1.6rem; min-height: 132px; display: flex; flex-direction: column; justify-content: space-between;
  transition: background .25s var(--ease);
}
.cond:hover { background: var(--teal); }
.cond__ix { font: 500 .62rem/1 var(--mono); letter-spacing: .12em; color: var(--ink-3); transition: color .25s var(--ease); }
.cond__nm { font: 700 1.18rem/1.05 var(--display); letter-spacing: -0.02em; margin-top: auto; transition: color .25s var(--ease); }
.cond__go { position: absolute; top: 1.3rem; right: 1.3rem; font: 500 .85rem/1 var(--mono); color: var(--ink-3); opacity: 0; transition: opacity .25s var(--ease), color .25s; }
.cond:hover .cond__ix, .cond:hover .cond__nm { color: #fff; }
.cond:hover .cond__go { opacity: 1; color: #fff; }
@media (max-width: 880px) { .cond-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .cond-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   TESTIMONIALS — real patient voices
   ===================================================================== */
.voices { background: var(--paper-2); border-block: 1px solid var(--line); }
.voices__inner { padding-block: var(--section-y); }
.voices__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.5rem; margin-bottom: 3rem; }
.voices__head h2 { font-size: clamp(1.95rem,3.6vw,3.1rem); margin-top: 1.1rem; max-width: 22ch; }
.voices__note { font: 500 .64rem/1.5 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); text-align: right; }

.lede-quote {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem,3vw,3rem); align-items: center;
  padding: clamp(1.75rem,3vw,2.75rem); background: var(--paper-2); color: var(--ink); margin-bottom: 1.5rem; border: 1px solid var(--line); border-left: 3px solid var(--teal);
}
.lede-quote .pct { font: 700 clamp(3.5rem,9vw,6.5rem)/0.85 var(--display); color: var(--teal-bright); letter-spacing: -0.04em; }
.lede-quote blockquote { font: 600 clamp(1.3rem,2.4vw,2rem)/1.22 var(--display); letter-spacing: -0.02em; }
.lede-quote cite { display: block; margin-top: 1rem; font: 500 .68rem/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: rgba(82,81,76,.6); font-style: normal; }

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.quote {
  background: var(--paper); border: 1px solid var(--line); padding: 1.5rem 1.5rem 1.4rem;
  display: flex; flex-direction: column; position: relative;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.quote:hover { border-color: var(--teal); transform: translateY(-2px); }
.quote::before { content: "“"; font: 700 2.4rem/0.7 var(--display); color: var(--teal); opacity: .35; }
.quote p { font-size: 1.02rem; line-height: 1.45; color: var(--ink); margin-top: .5rem; font-weight: 500; letter-spacing: -0.01em; }
.quote cite { margin-top: auto; padding-top: 1.1rem; font: 500 .64rem/1.4 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); font-style: normal; }
.quote cite b { color: var(--teal); font-weight: 600; }
@media (max-width: 880px) { .quote-grid { grid-template-columns: 1fr; } .lede-quote { grid-template-columns: 1fr; gap: 1rem; } }

/* =====================================================================
   BOOKING / CONTACT — conversion close
   ===================================================================== */
.book { background: var(--night); color: var(--bone); position: relative; overflow: hidden; }
.book::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--night-line) 1px, transparent 1px), linear-gradient(90deg, var(--night-line) 1px, transparent 1px);
  background-size: 56px 56px; opacity: .3;
  -webkit-mask-image: linear-gradient(115deg, #000, transparent 60%); mask-image: linear-gradient(115deg, #000, transparent 60%);
}
.book__inner { position: relative; padding-block: var(--section-y); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); }
.book__left h2 { color: var(--ink); font-size: clamp(2.1rem, 4vw, 3.4rem); margin-top: 1.2rem; letter-spacing: -0.03em; }
.book__left p { color: rgba(82,81,76,.72); margin-top: 1.2rem; font-size: clamp(1.04rem,1.3vw,1.2rem); line-height: 1.55; max-width: 38ch; }
.callbar {
  margin-top: 2rem; display: inline-flex; align-items: center; gap: 1rem;
  border: 1px solid var(--night-line); padding: 1rem 1.25rem; background: var(--night-2);
}
.callbar a { font: 700 clamp(1.4rem,2.6vw,2rem)/1 var(--display); letter-spacing: -0.02em; color: var(--ink); }
.callbar a:hover { color: var(--teal-bright); }
.callbar .lab { font: 500 .58rem/1.3 var(--mono); text-transform: uppercase; letter-spacing: .14em; color: var(--teal-bright); }
.detail-rows { margin-top: 2rem; display: grid; gap: 0; border-top: 1px solid var(--night-line); max-width: 30rem; }
.detail-rows div { display: grid; grid-template-columns: 7rem 1fr; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--night-line); }
.detail-rows .k { font: 500 .6rem/1.5 var(--mono); text-transform: uppercase; letter-spacing: .14em; color: var(--teal-bright); }
.detail-rows .v { font-size: .95rem; color: rgba(82,81,76,.9); line-height: 1.4; }

/* form */
.book__form { background: var(--paper); color: var(--ink); padding: clamp(1.5rem,2.5vw,2.25rem); border: 1px solid var(--line); box-shadow: 0 24px 60px -36px rgba(0,0,0,.28); }
.book__form h3 { font-size: 1.35rem; letter-spacing: -0.02em; }
.book__form > p { color: var(--ink-2); font-size: .92rem; margin-top: .5rem; margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.field.wide { grid-column: 1 / -1; }
.field label { font: 500 .6rem/1 var(--mono); text-transform: uppercase; letter-spacing: .12em; color: var(--ink-3); }
.field input, .field textarea, .field select {
  width: 100%; min-width: 0; max-width: 100%;
  font: 400 .98rem/1.3 var(--sans); color: var(--ink);
  padding: .7rem .8rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-tint); }
.book__form button { margin-top: 1.25rem; }
.book__form .fineprint { margin-top: .9rem; font: 500 .58rem/1.5 var(--mono); letter-spacing: .04em; color: var(--ink-3); text-transform: uppercase; }
.book__left, .book__form { min-width: 0; }
.detail-rows div { min-width: 0; }
.detail-rows .v { overflow-wrap: anywhere; }
@media (max-width: 880px) { .book__inner { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } .detail-rows { max-width: none; } }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--night); color: var(--bone); border-top: 1px solid var(--night-line); }
.footer__inner { padding-block: clamp(3rem,5vw,4.5rem); display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.footer__brand { display: flex; flex-direction: column; gap: 1rem; max-width: 26rem; }
.footer__brand img { width: 38px; height: 38px; object-fit: contain; }
.footer__brand p { color: rgba(82,81,76,.7); font-size: .92rem; line-height: 1.5; }
.footer__col h4 { font: 500 .6rem/1 var(--mono); text-transform: uppercase; letter-spacing: .14em; color: var(--teal-bright); margin-bottom: 1rem; }
.footer__col a, .footer__col p { display: block; font-size: .92rem; color: rgba(82,81,76,.78); padding: .25rem 0; line-height: 1.4; }
.footer__col a:hover { color: var(--teal); }
.footer__bar { border-top: 1px solid var(--night-line); }
.footer__bar .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem; padding-block: 1.4rem; }
.footer__bar p { font: 500 .62rem/1.5 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: rgba(82,81,76,.5); }
@media (max-width: 820px) { .footer__inner { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer__inner { grid-template-columns: 1fr; } }

/* =====================================================================
   MOTION — one restrained reveal language, reduced-motion gated
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* hero cold-open */
.cold > * { opacity: 0; transform: translateY(14px); animation: rise .8s var(--ease) forwards; }
.cold > *:nth-child(1) { animation-delay: .05s; }
.cold > *:nth-child(2) { animation-delay: .15s; }
.cold > *:nth-child(3) { animation-delay: .27s; }
.cold > *:nth-child(4) { animation-delay: .39s; }
.cold > *:nth-child(5) { animation-delay: .51s; }
.proof { opacity: 0; animation: rise .9s var(--ease) .35s forwards; }
.annot { opacity: 0; animation: pop .5s var(--ease) forwards; }
.annot--a { animation-delay: .85s; } .annot--b { animation-delay: 1s; } .annot--c { animation-delay: 1.15s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes pop { 0% { opacity: 0; transform: scale(.9); } 100% { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .cold > *, .proof, .annot { opacity: 1; transform: none; }
}
