/* ==========================================================================
   The Body & Its Language — site styles
   Palette: deep plum (brand), lilac (logo), marigold (action), cream (ground)
   Type: Fraunces (display) + Figtree (text). Base 18px for 40+ readers.
   ========================================================================== */

:root {
  --plum-950: #1E0A22;
  --plum-900: #2A0F2E;
  --plum-800: #3D1744;
  --plum-700: #56215F;
  --plum-500: #83408F;
  --lilac-300: #CFB3DC;
  --lilac-100: #F1E8F5;
  --cream: #FBF7F1;
  --paper: #FFFFFF;
  --blush: #FBE7DF;
  --blush-2: #F6D3C6;
  --gold: #F6A928;
  --gold-600: #E3920C;
  --gold-100: #FFF1D6;
  --ink: #1E1520;
  --ink-2: #4A3E4D;
  --ink-3: #7A6E7C;
  --line: #E9DFE4;
  --ok: #1F7A57;
  --ok-100: #DDF2E8;

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --text: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --r-sm: 10px;
  --r: 18px;
  --r-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(42, 15, 46, .06), 0 4px 14px -6px rgba(42, 15, 46, .12);
  --shadow: 0 2px 4px rgba(42, 15, 46, .05), 0 20px 44px -18px rgba(42, 15, 46, .28);
  --wrap: 1180px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --sect: clamp(4rem, 9vw, 7.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }
body {
  margin: 0; background: var(--cream); color: var(--ink);
  font-family: var(--text); font-size: 1.125rem; line-height: 1.65;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
html, body { overflow-x: clip; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--plum-700); text-underline-offset: .18em; }
a:hover { color: var(--plum-500); }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { margin: 0; color: var(--plum-900); text-wrap: balance; }
h1, h2 { font-family: var(--display); font-weight: 700; letter-spacing: -.02em; font-variation-settings: "opsz" 120; font-variant-numeric: lining-nums; }
.qz__q, .res__v, .price, .step__n, .reframe__card .n, .meter__n b, .qz__teaser-score b, .res__num, .badge-float b { font-variant-numeric: lining-nums; }
h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); line-height: 1.06; }
h3 { font-size: 1.3rem; line-height: 1.25; font-weight: 700; }
h1 em, h2 em { font-style: italic; font-weight: 600; color: var(--plum-500); }
strong { font-weight: 700; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 0; background: var(--plum-900); color: #fff; padding: .7rem 1rem; z-index: 999; }
.skip:focus { left: 1rem; top: 1rem; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: 780px; }
.sect { padding: var(--sect) 0; }
.sect--tight { padding: calc(var(--sect) * .6) 0; }
.sect--paper { background: var(--paper); }
.sect--blush { background: var(--blush); }
.sect--lilac { background: var(--lilac-100); }
.sect--plum { background: var(--plum-900); color: #F3E9F4; }
.sect--plum h2, .sect--plum h3 { color: #fff; }
.sect--plum h2 em { color: var(--gold); }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .82rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--plum-500); margin: 0 0 1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 2px; }
.center .eyebrow::after { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow--gold { color: var(--gold); }
.lede { font-size: clamp(1.15rem, 1.8vw, 1.35rem); line-height: 1.55; color: var(--ink-2); max-width: 40rem; }
.sect--plum .lede { color: #DCCBDD; }
.sect-head { margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.sect-head h2 { margin-bottom: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--plum-800); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 56px; padding: .95rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  background: var(--bg); color: var(--fg); font: 700 1.05rem/1.2 var(--text); letter-spacing: .005em;
  text-decoration: none; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-align: center;
}
.btn:hover { color: var(--fg); transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(42, 15, 46, .55); }
.btn:active { transform: translateY(0); }
.btn--gold { --bg: var(--gold); --fg: var(--plum-950); box-shadow: 0 10px 24px -12px rgba(227, 146, 12, .8); }
.btn--gold:hover { --bg: #FFB53D; }
.btn--ghost { --bg: transparent; --fg: var(--plum-800); border-color: var(--plum-800); }
.btn--ghost:hover { --bg: var(--plum-800); --fg: #fff; }
.btn--ghost-light { --bg: transparent; --fg: #fff; border-color: rgba(255, 255, 255, .55); }
.btn--ghost-light:hover { --bg: #fff; --fg: var(--plum-900); }
.btn--lg { min-height: 62px; padding: 1.05rem 2rem; font-size: 1.12rem; }
.btn--sm { min-height: 46px; padding: .6rem 1.15rem; font-size: .98rem; }
.btn--block { width: 100%; }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(4px); }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }
.btn-row--center { justify-content: center; }
.micro { font-size: .92rem; color: var(--ink-3); margin-top: .9rem; display: flex; flex-wrap: wrap; gap: .3rem 1.2rem; }
.micro span::before { content: "✓ "; color: var(--ok); font-weight: 800; }

/* ---------- Top bar + nav ---------- */
.topbar {
  display: flex; align-items: center; justify-content: center; gap: .7rem; flex-wrap: wrap;
  background: var(--gold); color: var(--plum-950); text-decoration: none;
  font-size: .95rem; padding: .6rem var(--gutter); text-align: center; line-height: 1.35;
}
.topbar:hover { color: var(--plum-950); background: #FFB53D; }
.topbar__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--plum-800); box-shadow: 0 0 0 0 rgba(61, 23, 68, .6); animation: pulse 2s infinite; flex: none; }
.topbar__go { font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.topbar__short { display: none; }
@media (max-width: 640px) { .topbar__long { display: none; } .topbar__short { display: inline; } .topbar { flex-wrap: nowrap; font-size: .92rem; } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(61, 23, 68, .55); } 70% { box-shadow: 0 0 0 9px rgba(61, 23, 68, 0); } 100% { box-shadow: 0 0 0 0 rgba(61, 23, 68, 0); } }

.nav { position: sticky; top: 0; z-index: 50; background: rgba(251, 247, 241, .92); backdrop-filter: saturate(1.4) blur(12px); -webkit-backdrop-filter: saturate(1.4) blur(12px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.nav.is-stuck { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(42, 15, 46, .5); }
.nav__in { display: flex; align-items: center; gap: 1.5rem; min-height: 78px; }
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--plum-900); flex: none; }
.brand img { width: 44px; height: 44px; }
.brand__word { font-family: var(--display); font-weight: 700; font-size: 1.22rem; line-height: 1; letter-spacing: -.01em; }
.brand__word small { display: block; font-family: var(--text); font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--plum-500); margin-bottom: 3px; font-weight: 800; }
.brand--light { color: #fff; }
.brand--light .brand__word small { color: var(--lilac-300); }
.nav__links { display: flex; gap: 1.6rem; margin-left: auto; align-items: center; }
.nav__links a { color: var(--ink-2); text-decoration: none; font-weight: 600; font-size: 1rem; padding: .35rem 0; border-bottom: 2px solid transparent; }
.nav__links a:hover { color: var(--plum-900); }
.nav__links a[aria-current] { color: var(--plum-900); border-color: var(--gold); }
.nav__quiz { display: none; }
.nav__toggle { display: none; }

@media (max-width: 980px) {
  .nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--cream); }
  .nav__in { min-height: 68px; gap: .75rem; }
  .brand__word { font-size: 1.08rem; }
  .nav__cta { margin-left: auto; }
  .nav__toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 6px; width: 46px; height: 46px; border: 0; background: var(--plum-900); border-radius: 50%; padding: 0 13px; cursor: pointer; }
  .nav__toggle span:not(.sr) { height: 2px; background: #fff; border-radius: 2px; transition: transform .25s; }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .nav__links { position: fixed; inset: 0 0 0 auto; top: 0; width: min(88vw, 380px); height: 100dvh; overflow-y: auto; flex-direction: column; align-items: stretch; gap: 0; padding: 6rem 1.6rem 2rem; background: var(--plum-900); transform: translateX(100%); visibility: hidden; transition: transform .3s ease, visibility 0s .3s; z-index: -1; }
  .menu-open .nav .brand { color: #fff; }
  .menu-open .nav .brand__word small { color: var(--lilac-300); }
  .nav__links.is-open { transform: none; visibility: visible; transition: transform .3s ease; box-shadow: -20px 0 50px rgba(0, 0, 0, .3); }
  .nav__links a { color: #fff; font-size: 1.3rem; font-family: var(--display); padding: 1rem 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .nav__links a[aria-current] { color: var(--gold); border-color: rgba(255, 255, 255, .12); }
  .nav__quiz { display: block; margin-top: 1.5rem; text-align: center; background: var(--gold); color: var(--plum-950) !important; border-radius: 999px; border: 0 !important; font-family: var(--text) !important; font-weight: 800; font-size: 1.05rem !important; }
}
@media (max-width: 520px) {
  .nav__cta { display: none; }
  .nav__toggle { margin-left: auto; }
  .brand img { width: 38px; height: 38px; }
}

/* ---------- Hero (home) ---------- */
.hero { position: relative; background: var(--plum-900); color: #fff; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 30%; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(30, 10, 34, .96) 0%, rgba(30, 10, 34, .88) 38%, rgba(30, 10, 34, .25) 70%, rgba(30, 10, 34, 0) 100%); }
.hero__in { padding: clamp(4rem, 10vw, 8rem) 0 clamp(4.5rem, 10vw, 8rem); max-width: 640px; }
.hero h1 { color: #fff; margin-bottom: 1.4rem; }
.hero h1 em { color: var(--gold); }
.hero .lede { color: #E6D8E8; margin-bottom: 2rem; font-size: clamp(1.18rem, 2vw, 1.4rem); }
.hero .micro { color: #CDB9D0; }
.hero .micro span::before { color: var(--gold); }
.hero__tag { display: inline-block; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); color: #fff; padding: .45rem .95rem; border-radius: 999px; font-size: .9rem; font-weight: 600; margin-bottom: 1.6rem; }
.hero__tag b { color: var(--gold); }
@media (max-width: 820px) {
  .hero__media img { object-position: 78% 20%; }
  .hero::before { background: linear-gradient(180deg, rgba(30, 10, 34, .55) 0%, rgba(30, 10, 34, .82) 42%, rgba(30, 10, 34, .97) 70%); }
  .hero__in { padding-top: 17rem; }
}

/* ---------- Sub-page hero ---------- */
.phero { padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem); }
.phero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.phero h1 { margin-bottom: 1.3rem; font-size: clamp(2.5rem, 5.6vw, 4.4rem); }
.phero .lede { margin-bottom: 2rem; }
.phero__img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; position: relative; }
.phero__img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .phero__grid { grid-template-columns: 1fr; } .phero__img { aspect-ratio: 4/3; order: -1; } }

/* ---------- Sound familiar (symptom list) ---------- */
.familiar { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.familiar__img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow); }
.familiar__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.quotes { list-style: none; margin: 1.5rem 0 2rem; padding: 0; display: grid; gap: .7rem; }
.quotes li { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1rem 1.2rem 1rem 3.3rem; position: relative; font-size: 1.08rem; color: var(--ink); line-height: 1.45; box-shadow: var(--shadow-sm); }
.quotes li::before { content: "“"; position: absolute; left: 1.05rem; top: .35rem; font-family: var(--display); font-size: 2.6rem; color: var(--gold-600); line-height: 1; }
@media (max-width: 860px) { .familiar { grid-template-columns: 1fr; } .familiar__img { aspect-ratio: 16/11; } }

/* ---------- Reframe (not your fault) ---------- */
.reframe { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.5rem; }
.reframe__card { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--r); padding: 1.8rem; }
.reframe__card .n { font-family: var(--display); font-size: 3rem; line-height: 1; color: var(--gold); font-weight: 700; margin-bottom: .8rem; display: block; }
.reframe__card h3 { margin-bottom: .6rem; font-size: 1.25rem; }
.reframe__card p { color: #D7C6D9; margin: 0; font-size: 1.02rem; }
.bigline { font-family: var(--display); font-size: clamp(1.6rem, 3.2vw, 2.4rem); line-height: 1.2; color: #fff; max-width: 30ch; margin: 3rem auto 0; text-align: center; font-weight: 600; }
.bigline em { color: var(--gold); }
@media (max-width: 860px) { .reframe { grid-template-columns: 1fr; } }

/* ---------- Life after (thriving mosaic) ---------- */
.mosaic { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 210px; gap: 1rem; }
.tile { position: relative; border-radius: var(--r); overflow: hidden; color: #fff; isolation: isolate; box-shadow: var(--shadow-sm); }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s ease; }
.tile:hover img { transform: scale(1.04); }
.tile::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(30, 10, 34, 0) 35%, rgba(30, 10, 34, .88) 100%); }
.tile__txt { position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.1rem; }
.tile__txt b { display: block; font-family: var(--display); font-size: 1.45rem; line-height: 1.15; font-weight: 700; }
.tile__txt span { font-size: .98rem; color: #EBDDED; }
.t1 { grid-column: span 5; grid-row: span 2; }
.t2 { grid-column: span 4; }
.t3 { grid-column: span 3; }
.t4 { grid-column: span 3; }
.t5 { grid-column: span 4; }
@media (max-width: 860px) { .mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; } .t1 { grid-column: span 2; } .t2, .t3, .t4, .t5 { grid-column: span 1; } .t5 { grid-column: span 2; } }
@media (max-width: 480px) { .mosaic { grid-auto-rows: 180px; } .tile__txt b { font-size: 1.2rem; } .tile__txt span { font-size: .88rem; } }

/* ---------- Help cards (what we work on) ---------- */
.helps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.help { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.7rem; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.help:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.help__ic { width: 52px; height: 52px; border-radius: 14px; background: var(--lilac-100); color: var(--plum-700); display: grid; place-items: center; margin-bottom: 1.1rem; }
.help__ic svg { width: 26px; height: 26px; }
.help h3 { margin-bottom: .5rem; }
.help p { margin: 0; color: var(--ink-2); font-size: 1.02rem; }
@media (max-width: 900px) { .helps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .helps { grid-template-columns: 1fr; } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; counter-reset: s; position: relative; }
.step { background: var(--paper); border-radius: var(--r); padding: 2rem 1.8rem; border: 1px solid var(--line); position: relative; box-shadow: var(--shadow-sm); }
.step__n { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: var(--plum-900); color: var(--gold); font: 700 1.5rem/1 var(--display); margin-bottom: 1.2rem; }
.step h3 { margin-bottom: .5rem; }
.step p { color: var(--ink-2); margin: 0 0 1rem; font-size: 1.02rem; }
.step a { font-weight: 700; }
.step--hl { background: var(--plum-900); border-color: var(--plum-900); color: #E6D8E8; }
.step--hl h3 { color: #fff; }
.step--hl p { color: #D7C6D9; }
.step--hl .step__n { background: var(--gold); color: var(--plum-950); }
.step--hl a { color: var(--gold); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Founder teaser ---------- */
.founder { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.founder__photo { position: relative; }
.portrait { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; background: linear-gradient(160deg, var(--plum-700), var(--plum-950)); box-shadow: var(--shadow); display: grid; place-items: center; position: relative; }
.portrait picture { display: block; width: 100%; height: 100%; }
.portrait img.photo { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.portrait__ph { text-align: center; color: #E9DAEC; padding: 2rem; }
.portrait__ph img { width: 42%; margin: 0 auto 1rem; opacity: .95; }
.portrait__ph b { display: block; font-family: var(--display); font-size: 1.6rem; color: #fff; }
.portrait__ph span { font-size: .95rem; color: var(--lilac-300); }
.badge-float { position: absolute; right: -14px; bottom: 28px; background: var(--gold); color: var(--plum-950); border-radius: var(--r); padding: .9rem 1.1rem; box-shadow: var(--shadow); font-weight: 700; font-size: .95rem; line-height: 1.3; max-width: 220px; }
.badge-float b { font-family: var(--display); font-size: 1.5rem; display: block; }
.creds { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: grid; gap: .6rem; }
.creds li { display: flex; gap: .8rem; align-items: flex-start; font-size: 1.05rem; }
.creds li::before { content: ""; flex: none; width: 24px; height: 24px; margin-top: 2px; border-radius: 50%; background: var(--ok-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F7A57' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/14px no-repeat; }
.sig { font-family: var(--display); font-style: italic; font-size: 1.5rem; color: var(--plum-700); margin: 0 0 1.5rem; }
@media (max-width: 860px) { .founder { grid-template-columns: 1fr; } .founder__photo { max-width: 460px; } .badge-float { right: 12px; } }

/* ---------- Testimonials ---------- */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.tcard { margin: 0; background: var(--paper); border-radius: var(--r); padding: 1.9rem; border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.tcard__stars { color: var(--gold-600); letter-spacing: 3px; font-size: 1.1rem; margin-bottom: .9rem; }
.tcard blockquote { margin: 0 0 1.5rem; font-family: var(--display); font-size: 1.3rem; line-height: 1.4; color: var(--plum-900); font-weight: 500; flex: 1; }
.tcard__who { display: flex; align-items: center; gap: .85rem; }
.avatar { width: 52px; height: 52px; border-radius: 50%; flex: none; object-fit: cover; background: var(--lilac-100); color: var(--plum-700); display: grid; place-items: center; font: 700 1.15rem/1 var(--display); }
.tcard__who b { display: block; color: var(--ink); }
.tcard__who span { font-size: .92rem; color: var(--ink-3); }
.tcard--feature { background: var(--plum-900); border-color: var(--plum-900); }
.tcard--feature blockquote { color: #fff; }
.tcard--feature .tcard__who b { color: #fff; }
.tcard--feature .tcard__who span { color: var(--lilac-300); }
.tcard--feature .avatar { background: var(--gold); color: var(--plum-950); }
@media (max-width: 900px) { .tgrid { grid-template-columns: 1fr; } }

/* ---------- Quiz promo band ---------- */
.qband { background: linear-gradient(135deg, var(--gold) 0%, #FFC766 100%); border-radius: var(--r-lg); padding: clamp(2rem, 5vw, 3.5rem); display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center; color: var(--plum-950); position: relative; overflow: hidden; }
.qband h2 { color: var(--plum-950); font-size: clamp(1.9rem, 3.8vw, 2.8rem); margin-bottom: .8rem; }
.qband h2 em { color: var(--plum-700); }
.qband p { color: #4A2A10; font-size: 1.1rem; }
.qband .btn { --bg: var(--plum-900); --fg: #fff; }
.qband__chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.qband__chips span { background: rgba(255, 255, 255, .65); border: 1.5px solid rgba(42, 15, 46, .15); border-radius: 999px; padding: .5rem .95rem; font-weight: 700; font-size: .95rem; display: inline-flex; gap: .4rem; align-items: center; }
.qband__chips span::before { content: ""; width: 16px; height: 16px; border-radius: 4px; border: 2px solid var(--plum-800); background: #fff; }
.qband__chips span.on::before { background: var(--plum-800) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/11px no-repeat; }
@media (max-width: 860px) { .qband { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 1.35rem 3rem 1.35rem 0; font-weight: 700; font-size: 1.15rem; color: var(--plum-900); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; background: var(--lilac-100); display: grid; place-items: center; font-size: 1.4rem; font-weight: 500; color: var(--plum-700); transition: transform .2s; }
.faq details[open] summary::after { content: "–"; background: var(--plum-900); color: #fff; }
.faq details > div { padding: 0 0 1.4rem; color: var(--ink-2); }
.faq details > div p:last-child { margin: 0; }

/* ---------- Final CTA ---------- */
.final { background: var(--plum-900) radial-gradient(ellipse at 80% 0%, rgba(131, 64, 143, .55), transparent 55%) ; color: #fff; padding: var(--sect) 0; text-align: center; }
.final__in { max-width: 820px; }
.final .eyebrow::after { content: ""; width: 28px; height: 2px; background: currentColor; }
.final__h { color: #fff; margin-bottom: 1.2rem; }
.final__h em { color: var(--gold); }
.final__p { color: #DCCBDD; font-size: 1.22rem; max-width: 38rem; margin: 0 auto 2.2rem; }
.final__fine { color: var(--lilac-300); font-size: .95rem; margin: 1.2rem 0 0; }

/* ---------- Footer ---------- */
.foot { background: var(--plum-950); color: #CDB9D0; padding: 4rem 0 7rem; font-size: 1rem; }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; }
.foot__brand p { margin-top: 1.1rem; max-width: 34ch; }
.foot__h { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--text); }
.foot__list { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.foot a { color: #E6D8E8; text-decoration: none; }
.foot a:hover { color: var(--gold); }
.foot__legal { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 3rem; padding-top: 1.6rem; font-size: .88rem; color: #A893AC; }
.foot__legal p { max-width: 75ch; }
@media (max-width: 760px) { .foot__grid { grid-template-columns: 1fr; } }
@media (min-width: 981px) { .foot { padding-bottom: 4rem; } }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: none; gap: .6rem; padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom)); background: rgba(251, 247, 241, .97); border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -20px rgba(42, 15, 46, .5); transform: translateY(110%); transition: transform .3s; }
.sticky-cta.is-on { transform: none; }
.sticky-cta .btn { flex: 1; }
.sticky-cta .btn--ghost { flex: .7; }
@media (max-width: 980px) { .sticky-cta { display: flex; } }

/* ---------- Program page ---------- */
.fixes { display: grid; gap: 1.1rem; }
.fix { display: grid; grid-template-columns: 220px 1fr 1fr; gap: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); }
.fix__img { position: relative; min-height: 200px; }
.fix__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fix__col { padding: 1.6rem 1.7rem; }
.fix__col h3 { margin-bottom: .45rem; font-size: 1.35rem; }
.fix__col p { margin: 0; color: var(--ink-2); font-size: 1.02rem; }
.fix__label { display: inline-block; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .55rem; padding: .25rem .6rem; border-radius: 6px; }
.fix__label--pain { background: var(--blush); color: #9A3B1E; }
.fix__label--fix { background: var(--ok-100); color: var(--ok); }
.fix__col--fix { background: #FBFDFB; border-left: 1px dashed var(--line); }
@media (max-width: 900px) { .fix { grid-template-columns: 1fr; } .fix__img { min-height: 190px; } .fix__col--fix { border-left: 0; border-top: 1px dashed var(--line); } }

.phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.phase { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .15); border-radius: var(--r); padding: 2rem 1.8rem; position: relative; }
.phase__wk { display: inline-block; background: var(--gold); color: var(--plum-950); font-weight: 800; font-size: .85rem; letter-spacing: .06em; padding: .35rem .8rem; border-radius: 999px; margin-bottom: 1.1rem; }
.phase h3 { font-family: var(--display); font-size: 1.7rem; margin-bottom: .6rem; }
.phase p { color: #D7C6D9; font-size: 1.02rem; }
.phase ul { margin: 0; padding-left: 1.1rem; color: #E6D8E8; display: grid; gap: .35rem; font-size: 1rem; }
@media (max-width: 900px) { .phases { grid-template-columns: 1fr; } }

.offer { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; background: var(--paper); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.offer__l { padding: clamp(1.8rem, 4vw, 3rem); }
.offer__r { background: var(--plum-900); color: #fff; padding: clamp(1.8rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.offer__r h3 { color: #fff; font-family: var(--display); font-size: 1.6rem; margin-bottom: .3rem; }
.incl { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .75rem; }
.incl li { display: flex; gap: .8rem; align-items: flex-start; }
.incl li::before { content: ""; flex: none; width: 24px; height: 24px; margin-top: 2px; border-radius: 50%; background: var(--ok-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F7A57' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/14px no-repeat; }
.incl b { display: block; color: var(--plum-900); }
.incl span { color: var(--ink-2); font-size: 1rem; }
.price { font-family: var(--display); font-size: clamp(3.2rem, 6vw, 4.4rem); font-weight: 700; line-height: 1; color: var(--gold); margin: 1rem 0 .3rem; }
.price small { font-family: var(--text); font-size: 1rem; color: var(--lilac-300); font-weight: 600; margin-left: .3rem; }
.per { color: var(--lilac-300); margin-bottom: 1.6rem; }
.offer__r .btn + .btn { margin-top: .75rem; }
.offer__r .fine { font-size: .9rem; color: var(--lilac-300); margin: 1rem 0 0; text-align: center; }
@media (max-width: 860px) { .offer { grid-template-columns: 1fr; } }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.compare__col { border-radius: var(--r); padding: 1.8rem; }
.compare__col h3 { margin-bottom: 1rem; }
.compare__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.compare__col li { padding-left: 2rem; position: relative; }
.compare__col--no { background: #F4ECEE; }
.compare__col--no li::before { content: "✕"; position: absolute; left: 0; color: #B0473A; font-weight: 800; }
.compare__col--yes { background: var(--ok-100); }
.compare__col--yes li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 800; }
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }

/* ---------- About page ---------- */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.story p { color: var(--ink-2); font-size: 1.12rem; }
.story .drop::first-letter { font-family: var(--display); float: left; font-size: 4.2rem; line-height: .85; padding: .35rem .6rem 0 0; color: var(--plum-700); font-weight: 700; }
.pull { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.25; color: var(--plum-900); border-left: 4px solid var(--gold); padding-left: 1.4rem; margin: 0 0 2rem; font-weight: 600; }
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.value { background: var(--paper); border-radius: var(--r); padding: 1.6rem; border: 1px solid var(--line); }
.value b { display: block; font-family: var(--display); font-size: 1.3rem; color: var(--plum-900); margin-bottom: .45rem; line-height: 1.2; }
.value p { margin: 0; color: var(--ink-2); font-size: 1rem; }
@media (max-width: 900px) { .story { grid-template-columns: 1fr; } .values { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .values { grid-template-columns: 1fr; } }
.facts { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.facts span { background: var(--lilac-100); color: var(--plum-800); border-radius: 999px; padding: .5rem 1rem; font-weight: 600; font-size: .98rem; }

/* ---------- Article (symptoms guide) ---------- */
.article { max-width: 760px; margin: 0 auto; }
.article h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin: 3rem 0 1rem; }
.article h3 { margin: 1.8rem 0 .5rem; }
.article p, .article li { color: var(--ink-2); font-size: 1.12rem; }
.article ul { padding-left: 1.2rem; }
.toc { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.4rem 1.6rem; margin: 2rem 0; }
.toc b { display: block; margin-bottom: .6rem; color: var(--plum-900); }
.toc ol { margin: 0; padding-left: 1.2rem; display: grid; gap: .3rem; }
.signs { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin: 1.5rem 0; padding: 0; list-style: none; }
.signs li { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 1rem 1.1rem; font-size: 1.02rem !important; }
.signs li b { color: var(--plum-900); display: block; }
@media (max-width: 620px) { .signs { grid-template-columns: 1fr; } }
.inline-cta { background: var(--plum-900); color: #fff; border-radius: var(--r); padding: 1.8rem; margin: 2.5rem 0; display: grid; gap: 1rem; }
.inline-cta h3 { color: #fff; font-family: var(--display); font-size: 1.6rem; margin: 0; }
.inline-cta p { color: #DCCBDD !important; margin: 0; }
.note { background: var(--gold-100); border-left: 4px solid var(--gold-600); padding: 1rem 1.2rem; border-radius: 0 var(--r-sm) var(--r-sm) 0; font-size: 1rem !important; }

/* ---------- Book page ---------- */
.book { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.expect { list-style: none; margin: 1.5rem 0; padding: 0; display: grid; gap: 1rem; }
.expect li { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; align-items: start; }
.expect .t { width: 48px; height: 48px; border-radius: 50%; background: var(--plum-900); color: var(--gold); display: grid; place-items: center; font: 700 .85rem/1 var(--text); }
.expect b { display: block; color: var(--plum-900); font-size: 1.1rem; }
.expect span { color: var(--ink-2); font-size: 1.02rem; }
.card { background: var(--paper); border-radius: var(--r-lg); box-shadow: var(--shadow); border: 1px solid var(--line); padding: clamp(1.5rem, 4vw, 2.5rem); }
.card h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: .5rem; }
.embed { width: 100%; min-height: 720px; border: 0; border-radius: var(--r); background: var(--cream); }
@media (max-width: 900px) { .book { grid-template-columns: 1fr; } .book__side { order: 2; } }

/* ---------- Forms ---------- */
.field { display: grid; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-weight: 700; color: var(--plum-900); font-size: 1rem; }
.field input, .field select, .field textarea { width: 100%; font: 500 1.1rem/1.4 var(--text); color: var(--ink); background: #fff; border: 2px solid var(--line); border-radius: 14px; padding: .95rem 1.05rem; min-height: 58px; transition: border-color .15s, box-shadow .15s; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--plum-500); box-shadow: 0 0 0 4px rgba(131, 64, 143, .15); }
.field .hint { font-size: .9rem; color: var(--ink-3); }
.form-msg { border-radius: 12px; padding: .9rem 1rem; font-weight: 600; margin-top: 1rem; display: none; }
.form-msg.is-ok { display: block; background: var(--ok-100); color: var(--ok); }
.form-msg.is-err { display: block; background: #FBE3DF; color: #9A2E1E; }
.privacy-line { font-size: .88rem; color: var(--ink-3); margin: .9rem 0 0; display: flex; gap: .45rem; align-items: flex-start; }
.privacy-line svg { flex: none; width: 16px; height: 16px; margin-top: 3px; }

/* ---------- Reveal on scroll ---------- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.rv.is-in { opacity: 1; transform: none; }
.no-js .rv { opacity: 1; transform: none; }

/* ---------- Legal ---------- */
.legal { max-width: 780px; margin: 0 auto; }
.legal h2 { font-size: 1.6rem; margin: 2.4rem 0 .8rem; }
.legal p, .legal li { color: var(--ink-2); font-size: 1.05rem; }

/* ---------- Book page: the button has to be reachable without scrolling ---------- */
.book__h { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: .35rem; }
.book__sub { color: var(--ink-2); font-size: 1rem; margin-bottom: 1.25rem; }
.book .field { margin-bottom: .85rem; }
.book .field input, .book .field select { min-height: 52px; padding: .75rem 1rem; }
.book .field textarea { min-height: 72px; }
.book__note { margin-top: 1rem; border-top: 1px solid var(--line); padding-top: .9rem; }
.book__note summary { cursor: pointer; font-weight: 600; color: var(--plum-800); font-size: .98rem; list-style: none; }
.book__note summary::-webkit-details-marker { display: none; }
.book__note summary::before { content: "+ "; color: var(--gold-600); font-weight: 800; }
.book__note[open] summary::before { content: "– "; }
.book__note summary span { font-weight: 500; color: var(--ink-3); }
@media (max-width: 900px) {
  /* The form first, and the reassurance below it — she came here to book. */
  .book { gap: 1.75rem; }
  .book .card { padding: 1.25rem; }
  .phero { padding-top: 1.5rem; }
}
