/* =============================================================
   Mariposa Menopause Specialists — Design System + Homepage
   Premium / editorial / calm. Serif headlines, humanist body,
   warm-paper background, delicate wing-gradient accents.
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --forest:  #223D2C;   /* text, headlines, wordmark */
  --ocean:   #1E5AA8;   /* cool anchor / accents      */
  --teal:    #3FB6C9;   /* kicker labels, cool accent */
  --leaf:    #4E9A3E;   /* primary CTA                */
  --lime:    #B5D334;   /* energy / hope highlight    */
  --yellow:  #EDE84C;   /* glow highlight             */
  --paper:   #F7F6F1;   /* background (warm, not white)*/

  /* Derived / supporting tones */
  --forest-90: #2c4a37;
  --forest-70: rgba(34, 61, 44, 0.72);
  --forest-55: rgba(34, 61, 44, 0.55);
  --paper-2:   #FbFAF6;
  --paper-shade: #EFEDE4;
  --line:     rgba(34, 61, 44, 0.12);
  --leaf-dark: #3f7e32;

  /* The wing gradient — ocean → teal → leaf → lime → yellow */
  --wing: linear-gradient(90deg, #1E5AA8 0%, #3FB6C9 28%, #4E9A3E 52%, #B5D334 76%, #EDE84C 100%);
  --wing-soft: linear-gradient(120deg, #1E5AA8, #3FB6C9 34%, #4E9A3E 60%, #B5D334 82%, #EDE84C);
  /* The luminous "butterfly" background from the closing section — pastel glows over deep green */
  --bg-butterfly:
    radial-gradient(60% 80% at 20% 20%, rgba(63,182,201,0.5), transparent 60%),
    radial-gradient(70% 80% at 82% 30%, rgba(181,211,52,0.45), transparent 60%),
    radial-gradient(80% 90% at 60% 100%, rgba(237,232,76,0.35), transparent 55%),
    linear-gradient(150deg, #16321f, #1d4a37 55%, #256a4f);

  /* Type */
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans:  "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --wrap: 1180px;
  --wrap-narrow: 820px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 9vw, 9rem);
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(34,61,44,0.06);
  --shadow-md: 0 18px 50px -22px rgba(34,61,44,0.30);
  --shadow-lg: 0 40px 90px -40px rgba(34,61,44,0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  color: var(--forest);
  background: var(--paper);
  font-size: clamp(1.0625rem, 0.5vw + 1rem, 1.125rem);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: var(--forest);
  text-wrap: balance;
}
h1 { font-size: clamp(2.75rem, 6.5vw, 5.25rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); line-height: 1.12; }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
p  { text-wrap: pretty; }

.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 500; }

/* Wing-gradient text (used on one hero word) */
.grad-text {
  background: var(--wing);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

/* Kicker / eyebrow label */
.kicker {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}
.kicker.center { align-items: center; }
.kicker::after {
  content: "";
  width: 46px; height: 3px; border-radius: 3px;
  background: var(--wing);
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--section-y); position: relative; }
.section--paper2 { background: var(--paper-2); }
.section--shade { background: var(--paper-shade); }
.lede { font-size: clamp(1.15rem, 1.4vw, 1.4rem); color: var(--forest-70); line-height: 1.6; }
.center { text-align: center; }
.measure { max-width: 60ch; }
.mx-auto { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700; font-size: 0.98rem; letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  will-change: transform;
}
.btn:focus-visible { outline: 3px solid var(--ocean); outline-offset: 3px; }
.btn--primary { background: var(--leaf); color: #fff; box-shadow: 0 12px 26px -12px rgba(78,154,62,0.7); }
.btn--primary:hover { background: var(--leaf-dark); transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(78,154,62,0.75); }
.btn--ghost { background: transparent; color: var(--forest); border: 1.5px solid rgba(34,61,44,0.28); }
.btn--ghost:hover { border-color: var(--forest); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,0.14); color: #fff; border: 1.5px solid rgba(255,255,255,0.55); backdrop-filter: blur(4px); }
.btn--light:hover { background: rgba(255,255,255,0.24); transform: translateY(-2px); }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.05rem; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 700; color: var(--ocean);
  border-bottom: 2px solid transparent; padding-bottom: 2px;
  transition: gap 0.3s var(--ease), border-color 0.3s var(--ease);
}
.link-arrow:hover { gap: 0.75rem; border-color: var(--ocean); }
/* On dark surfaces the ocean blue is unreadable — use the lime accent instead. */
.offer-card .link-arrow,
.commband .link-arrow,
.ww__text .link-arrow,
.close .link-arrow,
.dstrips .link-arrow { color: var(--lime); }
.offer-card .link-arrow:hover,
.commband .link-arrow:hover,
.ww__text .link-arrow:hover,
.close .link-arrow:hover,
.dstrips .link-arrow:hover { border-color: var(--lime); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding-block: 1.1rem;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__mark { width: 44px; height: auto; transition: transform 0.4s var(--ease); flex: none; }
.brand:hover .brand__mark { transform: rotate(-6deg) scale(1.05); }
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif); font-weight: 600; font-size: 1.5rem;
  letter-spacing: 0.14em; color: var(--paper);
  transition: color 0.4s var(--ease);
}
.brand__sub {
  font-family: var(--sans); font-weight: 600; font-size: 0.52rem;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); margin-top: 3px;
  transition: color 0.4s var(--ease);
}
.nav__links { display: flex; align-items: center; gap: clamp(0.9rem, 1.8vw, 1.9rem); }
.nav__link { white-space: nowrap; }
.nav__link {
  font-weight: 600; font-size: 0.95rem; color: rgba(255,255,255,0.9);
  position: relative; transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--wing); transition: width 0.3s var(--ease);
}
.nav__link:hover::after { width: 100%; }
.nav__cta { margin-left: 0.4rem; }

/* Scrolled state — solid warm paper */
.nav.is-scrolled {
  background: rgba(247,246,241,0.92);
  backdrop-filter: saturate(1.4) blur(12px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px rgba(34,61,44,0.4);
  padding-block: 0.7rem;
}
.nav.is-scrolled .brand__name { color: var(--forest); }
.nav.is-scrolled .brand__sub { color: var(--forest-55); }
.nav.is-scrolled .nav__link { color: var(--forest); }
.nav.is-scrolled .nav__toggle span { background: var(--forest); }

/* Mobile toggle */
.nav__toggle { display: none; width: 44px; height: 44px; position: relative; z-index: 120; }
.nav__toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), background 0.4s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 15px; }
.nav__toggle span:nth-child(2) { top: 21px; }
.nav__toggle span:nth-child(3) { top: 27px; }
body.menu-open .nav__toggle span { background: var(--forest); }
body.menu-open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Nav dropdowns — grouped menus (desktop hover/click, mobile accordion) */
.nav__group { position: relative; }
.nav__group-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: inherit; font-weight: 600; font-size: 0.95rem; white-space: nowrap;
  color: rgba(255,255,255,0.9); background: none; border: 0; cursor: pointer;
  transition: color 0.3s var(--ease);
}
.nav.is-scrolled .nav__group-btn { color: var(--forest); }
.nav__group-btn:hover { color: #fff; }
.nav.is-scrolled .nav__group-btn:hover { color: var(--ocean); }
.nav__caret {
  width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); margin-top: -3px; opacity: 0.6;
  transition: transform 0.3s var(--ease), margin-top 0.3s var(--ease);
}
.nav__group-btn[aria-expanded="true"] .nav__caret { transform: rotate(-135deg); margin-top: 2px; }
.nav__menu { display: flex; flex-direction: column; }
.nav__menu-link {
  display: block; font-weight: 600; color: var(--forest); white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav__menu-link:hover, .nav__menu-link:focus-visible { color: var(--ocean); }
.nav__menu-link[aria-current="page"] { color: var(--ocean); }

@media (min-width: 941px) {
  .nav__menu {
    position: absolute; top: calc(100% + 0.7rem); left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 224px; background: var(--paper);
    border: 1px solid var(--line); border-radius: 14px; padding: 0.5rem; gap: 1px;
    box-shadow: 0 22px 48px -24px rgba(34,61,44,0.6);
    opacity: 0; visibility: hidden; pointer-events: none; z-index: 130;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  }
  .nav__menu::before { content: ""; position: absolute; top: -0.8rem; left: 0; right: 0; height: 0.8rem; }
  .nav__group:hover .nav__menu,
  .nav__group:focus-within .nav__menu,
  .nav__group-btn[aria-expanded="true"] + .nav__menu {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
  }
  .nav__menu-link { padding: 0.62rem 0.85rem; border-radius: 9px; font-size: 0.92rem; }
  .nav__menu-link:hover, .nav__menu-link:focus-visible { background: var(--paper-shade); }
}

@media (max-width: 940px) {
  .nav__group { width: 100%; }
  .nav__group-btn {
    width: 100%; justify-content: space-between; color: var(--forest);
    font-size: 1.15rem; padding: 0.15rem 0;
  }
  .nav__menu {
    max-height: 0; overflow: hidden; padding-left: 0.7rem;
    transition: max-height 0.32s var(--ease);
  }
  .nav__group-btn[aria-expanded="true"] + .nav__menu { max-height: 460px; }
  .nav__menu-link { color: var(--forest); font-size: 1.02rem; padding: 0.55rem 0.3rem; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; color: #fff; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* Placeholder art direction until real footage is supplied */
.hero__placeholder {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 90% at 78% 18%, rgba(237,232,76,0.30), transparent 55%),
    radial-gradient(80% 80% at 92% 60%, rgba(181,211,52,0.28), transparent 60%),
    radial-gradient(90% 90% at 12% 88%, rgba(30,90,168,0.55), transparent 60%),
    linear-gradient(120deg, #16321f 0%, #1b4a3b 42%, #256a63 74%, #2f7d5a 100%);
  animation: heroDrift 22s ease-in-out infinite alternate;
}
.hero__placeholder::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("../img/mariposa-mark.png");
  background-repeat: no-repeat; background-position: 88% 42%;
  background-size: min(46vw, 560px);
  opacity: 0.16; mix-blend-mode: screen; filter: blur(0.3px);
}
@keyframes heroDrift { from { transform: scale(1.06) translate(0,0);} to { transform: scale(1.14) translate(-1.5%, -1%);} }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(12,28,18,0.78) 0%, rgba(12,28,18,0.55) 34%, rgba(12,28,18,0.12) 70%, rgba(12,28,18,0.02) 100%);
}
.hero__scrim::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(12,28,18,0.55), transparent 30%); }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-top: 6rem; }
.hero__content { max-width: 40rem; }
.hero h1 { color: #fff; margin-bottom: 1.4rem; }
.hero__sub { font-size: clamp(1.1rem, 1.5vw, 1.35rem); color: rgba(255,255,255,0.92); line-height: 1.55; max-width: 34rem; margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.2rem; }
.hero__trust {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.92rem; color: rgba(255,255,255,0.82);
  border-top: 1px solid rgba(255,255,255,0.22); padding-top: 1.2rem; max-width: 30rem;
}
.hero__trust b { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--lime); }
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 2;
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.75);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero__scroll span { width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,0.7), transparent); animation: scrollPulse 2.4s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{ transform: scaleY(0.4); opacity:0.4;} 50%{ transform: scaleY(1); opacity:1;} }
.placeholder-tag {
  position: absolute; z-index: 2; right: var(--gutter); bottom: 1.4rem;
  font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); border: 1px dashed rgba(255,255,255,0.35);
  padding: 0.35rem 0.7rem; border-radius: 999px; background: rgba(0,0,0,0.15);
}

/* ---------- Recognition (her thoughts) ---------- */
.recognition { background: var(--bg-butterfly); color: var(--paper); text-align: center; }
.recognition .kicker { color: var(--lime); }
.thoughts { max-width: 46rem; margin-inline: auto; display: flex; flex-direction: column; gap: clamp(1.5rem, 3.2vw, 2.6rem); }
.thought {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem); line-height: 1.3; color: rgba(247,246,241,0.94);
}
.thought--muted { color: rgba(247,246,241,0.55); font-size: clamp(1.3rem, 2.6vw, 2rem); }
.thought--turn {
  font-style: normal; font-weight: 600; color: #7fc7ff;
  font-size: clamp(1.7rem, 3.6vw, 2.8rem); margin-top: 0.6rem;
}
.thought--tag { font-family: var(--sans); font-style: normal; font-size: 1rem; letter-spacing: 0.02em; color: rgba(247,246,241,0.6); font-weight: 600; }

/* Symptom picker (calm, interactive) */
.picker { margin-top: clamp(3rem, 6vw, 5rem); background: rgba(247,246,241,0.06); border: 1px solid rgba(247,246,241,0.14); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.8rem); backdrop-filter: blur(4px); }
.picker__head { font-family: var(--serif); font-size: clamp(1.3rem,2.4vw,1.8rem); margin-bottom: 0.4rem; color: #fff; }
.picker__sub { color: rgba(247,246,241,0.7); font-size: 0.98rem; margin-bottom: 1.6rem; }
.picker__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; text-align: left; }
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  padding: 0.6rem 1.05rem; border-radius: 999px;
  border: 1.5px solid rgba(247,246,241,0.28); color: rgba(247,246,241,0.9);
  font-size: 0.9rem; font-weight: 600; transition: all 0.25s var(--ease);
}
.chip:hover { border-color: var(--lime); }
.chip[aria-pressed="true"] { background: var(--wing); color: #12281a; border-color: transparent; }
.chip:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }
.figure-wrap { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.body-figure { width: min(232px, 74%); height: auto; }
.fig-silhouette { fill: rgba(247,246,241,0.22); stroke: rgba(247,246,241,0.5); stroke-width: 1.1; stroke-linejoin: round; }
.fig-hair { fill: rgba(247,246,241,0.17); }
.glow-c { mix-blend-mode: screen; }
.body-glow { opacity: 0; transition: opacity 0.7s var(--ease); }
.body-glow.lit { opacity: 1; }
.body-glow.lit .glow-c { animation: glowPulse 3.4s ease-in-out infinite; }
@keyframes glowPulse { 0%, 100% { opacity: 0.72; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .body-glow.lit .glow-c { animation: none; } }
.picker__readout { text-align: center; min-height: 3.4em; }
.picker__count { font-family: var(--serif); font-size: clamp(1.2rem, 2.2vw, 1.6rem); color: #fff; line-height: 1.3; }
.picker__count b { color: var(--lime); }
.picker__cta { margin-top: 1.3rem; }

/* ---------- The Case (stats) ---------- */
.case__head { max-width: 40rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.stat {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: clamp(360px, 42vw, 480px); display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.4rem, 2.5vw, 2rem); color: #fff; box-shadow: var(--shadow-md);
  isolation: isolate;
}
.stat__bg { position: absolute; inset: 0; z-index: -2; }
.stat:nth-child(1) .stat__bg { background: linear-gradient(160deg, #1E5AA8, #14406f); }
.stat:nth-child(2) .stat__bg { background: linear-gradient(160deg, #3FB6C9, #2b7f8c); }
.stat:nth-child(3) .stat__bg { background: linear-gradient(160deg, #4E9A3E, #356b2b); }
.stat__bg::after {
  content:""; position:absolute; inset:0;
  background: url("../img/mariposa-mark.png") no-repeat 120% -10%; background-size: 70%;
  opacity: 0.14; mix-blend-mode: screen;
}
.stat__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(10,25,16,0.72), transparent 62%); }
.stat__num { font-family: var(--serif); font-weight: 600; font-size: clamp(3.4rem, 7vw, 5rem); line-height: 0.95; }
.stat__label { display: inline-block; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 0.4rem; }
.stat__copy { font-size: 0.98rem; line-height: 1.5; color: rgba(255,255,255,0.94); margin-top: 0.7rem; max-width: 30ch; }
.case__source { margin-top: 1.8rem; font-size: 0.8rem; color: var(--forest-55); }

/* ---------- The Turn (before → after) ---------- */
.turn { background: var(--bg-butterfly); color: var(--paper); }
.turn__head { text-align: center; max-width: 40rem; margin-inline: auto; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.turn__head h2 { color: #fff; }
.turn__grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; }
.turn__col { border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); }
.turn__col--now { background: rgba(247,246,241,0.05); border: 1px solid rgba(247,246,241,0.12); }
.turn__col--after { background: rgba(247,246,241,0.96); color: var(--forest); box-shadow: var(--shadow-lg); }
.turn__tag { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; margin-bottom: 1.2rem; display: block; }
.turn__col--now .turn__tag { color: rgba(247,246,241,0.6); }
.turn__col--after .turn__tag { color: var(--leaf); }
.turn__list li { padding: 0.85rem 0; display: flex; gap: 0.8rem; align-items: flex-start; font-size: 1.05rem; line-height: 1.45; }
.turn__list li + li { border-top: 1px solid currentColor; border-color: rgba(128,128,128,0.18); }
.turn__col--now .turn__list li { color: rgba(247,246,241,0.72); }
.turn__ic { flex: none; width: 22px; height: 22px; margin-top: 3px; }
.turn__arrow { display: flex; align-items: center; justify-content: center; color: var(--lime); }
.turn__arrow svg { width: 40px; height: 40px; }

/* ---------- The Guide (Dr. Julie) ---------- */
.guide__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.portrait {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(150deg, #dfe7dd, #c7d8cf 55%, #a9c6c9); box-shadow: var(--shadow-md);
  display: flex; align-items: flex-end; justify-content: center;
}
.portrait::before {
  content:""; position:absolute; inset:0;
  background: url("../img/mariposa-mark.png") no-repeat center 38%; background-size: 78%; opacity: 0.35;
}
.portrait__tag {
  position: relative; margin-bottom: 1.2rem; z-index: 1;
  font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest-55);
  border: 1px dashed rgba(34,61,44,0.3); padding: 0.35rem 0.7rem; border-radius: 999px; background: rgba(255,255,255,0.5);
}
.guide__quote {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.35; color: var(--forest);
  border-left: 3px solid transparent; border-image: var(--wing) 1; padding-left: 1.4rem; margin-top: 1.8rem;
}
.guide__sign { margin-top: 1.2rem; font-weight: 700; }
.guide__sign span { display: block; font-weight: 600; color: var(--forest-55); font-size: 0.9rem; }

/* ---------- Proof (evidence) ---------- */
.proof { background: var(--paper-2); text-align: center; }
.proof__head { max-width: 42rem; margin-inline: auto; margin-bottom: 2.4rem; }
.evidence { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem; margin-bottom: 1.4rem; }
.evidence__chip {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.4rem; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); font-weight: 600; color: var(--forest);
}
.evidence__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--wing); flex: none; }
.evidence__note { font-size: 0.82rem; color: var(--forest-55); max-width: 44rem; margin-inline: auto; }

/* ---------- The Solution (what we treat) ---------- */
.solution__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.care-visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/6; box-shadow: var(--shadow-md);
  background: linear-gradient(150deg, #eaf0e6, #cfe2dd 60%, #bcd7c6);
  display: flex; align-items: flex-end; justify-content: center;
}
.care-visual::before { content:""; position:absolute; inset:0; background: url("../img/mariposa-mark.png") no-repeat center 40%; background-size: 66%; opacity: 0.4; }
.care-list { display: grid; gap: 0.4rem; margin-top: 1.8rem; }
.care-list li { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-top: 1px solid var(--line); }
.care-list li:first-child { border-top: 0; }
.care-list .check { flex: none; width: 30px; height: 30px; border-radius: 50%; background: rgba(78,154,62,0.12); display: grid; place-items: center; margin-top: 2px; }
.care-list .check svg { width: 16px; height: 16px; color: var(--leaf); }
.care-list b { font-family: var(--sans); font-weight: 800; display: block; font-size: 1.05rem; }
.care-list span.desc { color: var(--forest-70); font-size: 0.96rem; }

/* ---------- The Path (sticky scroll, 3 steps) ---------- */
.path { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-shade) 100%); }
.path__head { text-align: center; max-width: 40rem; margin-inline: auto; margin-bottom: clamp(2rem,4vw,3rem); }
.path__layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.path__visual-col { position: sticky; top: 12vh; }
.path__visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg); display: grid; place-items: center; color: #fff;
  transition: background 0.6s var(--ease);
  background: linear-gradient(160deg, #1E5AA8, #14406f);
}
.path__visual::after { content:""; position:absolute; inset:0; background: url("../img/mariposa-mark.png") no-repeat center; background-size: 62%; opacity: 0.22; mix-blend-mode: screen; transition: opacity 0.6s var(--ease); }
.path__visual-num { position: relative; font-family: var(--serif); font-weight: 600; font-size: clamp(6rem, 16vw, 12rem); line-height: 1; text-shadow: 0 10px 40px rgba(0,0,0,0.25); }
.path__visual-word { position: absolute; bottom: 8%; left: 0; right: 0; text-align: center; font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.6vw, 1.9rem); }
.path__steps { display: flex; flex-direction: column; gap: clamp(2rem, 8vh, 6rem); padding-block: 8vh; }
.step { display: flex; gap: 1.4rem; align-items: flex-start; opacity: 0.4; transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.step.is-active { opacity: 1; }
.step__num { flex: none; font-family: var(--serif); font-weight: 600; font-size: 2.2rem; width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; border: 2px solid var(--line); color: var(--forest); transition: all 0.5s var(--ease); }
.step.is-active .step__num { background: var(--wing); color: #12281a; border-color: transparent; box-shadow: var(--shadow-md); }
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--forest-70); }
.path__cta { text-align: center; margin-top: clamp(2rem,4vw,3rem); }

/* ---------- Community ---------- */
.community__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.community__visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow-md);
  background: linear-gradient(150deg, #e7eee3, #cbe0d5 55%, #b6d4d9);
  display: flex; align-items: flex-end; justify-content: center;
}
.community__visual::before { content:""; position:absolute; inset:0; background: url("../img/mariposa-mark.png") no-repeat center 42%; background-size: 60%; opacity: 0.38; }
.community__list { display: grid; gap: 0.4rem; margin: 1.6rem 0; }
.community__list li { display: flex; gap: 0.8rem; align-items: flex-start; padding: 0.7rem 0; font-size: 1.05rem; }
.community__list .dot { flex: none; width: 12px; height: 12px; border-radius: 50%; background: var(--wing); margin-top: 8px; }
.tag-placeholder {
  display: inline-block; margin-top: 1rem; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--forest-55); border: 1px dashed rgba(34,61,44,0.3); padding: 0.4rem 0.8rem; border-radius: 999px;
}

/* ---------- FAQ ---------- */
.faq { background: var(--paper-2); }
.faq__head { text-align: center; margin-bottom: clamp(2rem,4vw,3rem); }
.faq__list { max-width: 780px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.5rem 0; font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 600; color: var(--forest);
}
.faq__q:focus-visible { outline: 3px solid var(--ocean); outline-offset: 4px; }
.faq__icon { flex: none; width: 30px; height: 30px; position: relative; }
.faq__icon::before, .faq__icon::after { content:""; position:absolute; top:50%; left:50%; width:15px; height:2.5px; background: var(--leaf); border-radius: 2px; transform: translate(-50%,-50%); transition: transform 0.35s var(--ease); }
.faq__icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%,-50%) rotate(0); }
.faq__a { overflow: hidden; height: 0; transition: height 0.4s var(--ease); }
.faq__a-inner { padding: 0 0 1.6rem; color: var(--forest-70); font-size: 1.05rem; line-height: 1.65; max-width: 64ch; }

/* ---------- Close (dream state) ---------- */
.close { position: relative; overflow: hidden; text-align: center; color: #fff; }
.close__bg { position: absolute; inset: 0; z-index: 0;
  background: var(--bg-butterfly);
}
.close__bg::after { content:""; position:absolute; inset:0; background: url("../img/mariposa-mark.png") no-repeat center 40%; background-size: min(56vw,600px); opacity: 0.34; mix-blend-mode: screen; animation: bflyFloat 9s ease-in-out infinite; }
@keyframes bflyFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@media (prefers-reduced-motion: reduce) { .close__bg::after { animation: none; } }
.close__inner { position: relative; z-index: 1; max-width: 46rem; margin-inline: auto; }
.close h2 { color: #fff; margin-bottom: 1.4rem; }
.close p { color: rgba(247,246,241,0.9); font-size: clamp(1.1rem,1.5vw,1.35rem); margin-bottom: 2.2rem; }
.close__cta { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.close__soft { font-size: 0.98rem; color: rgba(247,246,241,0.82); }
.close__soft a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer ---------- */
.footer { background: var(--forest); color: rgba(247,246,241,0.8); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer__brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.2rem; }
.footer__brand img { width: 52px; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__sub { color: rgba(247,246,241,0.55); }
.footer__blurb { max-width: 30ch; font-size: 0.95rem; line-height: 1.6; color: rgba(247,246,241,0.7); }
.footer h4 { font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lime); margin-bottom: 1.1rem; }
.footer__links li { margin-bottom: 0.7rem; }
.footer__links a { color: rgba(247,246,241,0.78); transition: color 0.25s var(--ease); }
.footer__links a:hover { color: #fff; }
.footer__socials { display: flex; gap: 0.8rem; margin-top: 0.6rem; }
.footer__socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(247,246,241,0.25); display: grid; place-items: center; transition: all 0.25s var(--ease); }
.footer__socials a:hover { background: rgba(247,246,241,0.1); border-color: rgba(247,246,241,0.5); }
.footer__socials svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid rgba(247,246,241,0.15); margin-top: 3rem; padding-top: 1.6rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.82rem; color: rgba(247,246,241,0.55); }
.footer__disclaimer { max-width: 62ch; line-height: 1.6; margin-top: 1rem; font-size: 0.8rem; color: rgba(247,246,241,0.5); }

/* ---------- Scroll-reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero__placeholder, .hero__scroll span { animation: none; }
}

/* Skip link + a11y */
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--forest); color: #fff; padding: 0.8rem 1.2rem; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 940px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 360px);
    background: var(--paper); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 1.6rem; padding: 2rem var(--gutter);
    transform: translateX(100%); transition: transform 0.4s var(--ease); box-shadow: var(--shadow-lg);
  }
  body.menu-open .nav__links { transform: translateX(0); }
  .nav__link { color: var(--forest); font-size: 1.15rem; }
  .nav.is-scrolled .nav__link, .nav__link { color: var(--forest); }
  .nav__cta { margin-left: 0; }
  .nav__toggle { display: block; }

  .stats { grid-template-columns: 1fr; }
  .stat { min-height: 340px; }
  .turn__grid { grid-template-columns: 1fr; }
  .turn__arrow { transform: rotate(90deg); }
  .guide__grid, .solution__grid, .community__grid, .assess__grid { grid-template-columns: 1fr; }
  .guide__cover { transform: none; }
  .assess__grid { min-height: auto; }
  .assess__scrim { background: linear-gradient(180deg, rgba(247,246,241,0.95) 0%, rgba(247,246,241,0.82) 55%, rgba(247,246,241,0.72) 100%); }
  .assess__ui { align-items: stretch; }
  .assess__bubble { max-width: 100%; }
  .assess__options { width: 100%; }
  .guide__grid { text-align: left; }
  .portrait { max-width: 420px; }
  .picker__grid { grid-template-columns: 1fr; }
  .path__layout { grid-template-columns: 1fr; }
  .path__visual-col { position: relative; top: 0; max-width: 380px; margin-inline: auto; }
  .path__steps { padding-block: 2rem; gap: 2.2rem; }
  .step { opacity: 1; }        /* no scroll-driven dimming on mobile */
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
/* =============================================================
   Where you are — assessment teaser (thepauselife-style)
   ============================================================= */
.assess { position: relative; overflow: hidden; padding-block: clamp(4.5rem, 9vw, 8rem); }
.assess__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.assess__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, var(--paper) 0%, rgba(247,246,241,0.92) 24%, rgba(247,246,241,0.5) 48%, rgba(247,246,241,0.06) 70%, rgba(247,246,241,0) 82%),
    linear-gradient(to top, rgba(247,246,241,0.35), transparent 30%);
}
.assess__grid {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center; min-height: 44vh;
}
.assess__intro .kicker { margin-bottom: 1.4rem; }
.assess__title {
  font-family: var(--serif); font-style: italic; font-weight: 600; line-height: 1.05;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem); color: var(--forest); margin: 0 0 1.2rem; text-wrap: balance;
}
.assess__intro .lede { margin-bottom: 1.9rem; max-width: 32ch; }

.assess__ui { display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; }
.assess__bubble {
  position: relative; background: var(--paper); border-radius: 22px 22px 22px 6px;
  padding: 1.1rem 1.4rem 1rem; box-shadow: var(--shadow-md); max-width: 90%;
}
.assess__bubble::before {
  content: "\201C"; position: absolute; top: -0.55rem; left: 0.9rem;
  font-family: var(--serif); font-size: 2.6rem; line-height: 1; color: var(--teal);
}
.assess__symptom { display: block; font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.7rem); color: var(--forest); line-height: 1.2; }
.assess__q { display: block; margin-top: 0.4rem; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest-55); }
.assess__options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; width: 90%; }
.assess__pill {
  background: var(--paper); color: var(--forest); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.8rem 0.9rem; font-family: var(--sans); font-weight: 700; font-size: 0.9rem; text-align: center;
  box-shadow: var(--shadow-sm); transition: transform 0.22s var(--ease), background 0.22s var(--ease), color 0.22s var(--ease);
}
.assess__pill:hover { transform: translateY(-2px); }
.assess__pill:focus-visible { outline: 3px solid var(--ocean); outline-offset: 2px; }
.assess__pill.is-picked { background: var(--forest); color: var(--paper); border-color: transparent; }
.assess__pill:disabled { cursor: default; opacity: 0.85; }
.assess__progress {
  align-self: flex-end; margin-right: 5%; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--paper); background: rgba(34,61,44,0.62); padding: 0.35rem 0.85rem; border-radius: 999px; backdrop-filter: blur(3px);
}
.assess__ui.is-done .assess__symptom { font-style: italic; }

/* =============================================================
   The Turn — scroll-driven before/after reveal (grey → colour)
   ============================================================= */
.turn-reveal { position: relative; height: 100vh; min-height: 620px; overflow: hidden; background: var(--forest); --rev: 0; }
.tr__pin { position: relative; height: 100%; overflow: hidden; display: flex; }
.tr__layer { position: absolute; inset: 0; }
.tr__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tr__before .tr__img { filter: grayscale(0.9) brightness(0.72) contrast(1.04); }
.tr__after { clip-path: inset(0 calc((1 - var(--rev)) * 100%) 0 0); will-change: clip-path; }
.tr__after .tr__img { filter: saturate(1.08); }
.tr__scrim { position: absolute; inset: 0; }
.tr__scrim--cool { background:
  linear-gradient(90deg, rgba(12,26,34,0.86) 0%, rgba(14,30,26,0.58) 46%, rgba(14,30,26,0.36) 100%),
  linear-gradient(to top, rgba(10,22,16,0.5), transparent 42%); }
.tr__scrim--warm { background:
  linear-gradient(90deg, rgba(16,42,28,0.84) 0%, rgba(20,55,40,0.52) 46%, rgba(30,80,60,0.3) 100%),
  radial-gradient(60% 60% at 82% 18%, rgba(237,232,76,0.16), transparent 60%); }

.tr__divider { position: absolute; top: 0; bottom: 0; left: calc(var(--rev) * 100%); z-index: 4; pointer-events: none; will-change: left; }
.tr__divider::before { content: ""; position: absolute; top: 50%; left: 0; width: 140px; height: 140px; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(181,211,52,0.28), transparent 68%); }
.tr__divider-line { position: absolute; top: 0; bottom: 0; left: -1.5px; width: 3px; background: linear-gradient(to bottom, transparent 4%, rgba(247,246,241,0.92) 50%, transparent 96%); box-shadow: 0 0 16px rgba(247,246,241,0.4); }
.tr__fly { position: absolute; top: 50%; left: 0; width: 66px; transform: translate(-50%, -50%); filter: drop-shadow(0 6px 20px rgba(0,0,0,0.5)); animation: butterflyFloat 4.6s ease-in-out infinite; }
@keyframes butterflyFloat { 0%, 100% { transform: translate(-50%, -50%); } 50% { transform: translate(-50%, calc(-50% - 8px)) rotate(-4deg); } }

.tr__content { position: relative; z-index: 5; align-self: center; width: 100%; color: var(--paper); padding-block: 8vh; }
.tr__head { max-width: 40rem; margin-bottom: clamp(1.6rem, 4vw, 3rem); }
.tr__head .kicker { margin-bottom: 1rem; }
.tr__title { color: #fff; font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.08; text-wrap: balance; }
.tr__lists { position: relative; display: grid; max-width: 34rem; }
.tr__panel { grid-area: 1 / 1; }
.tr__panel .turn__tag { display: block; margin-bottom: 1.2rem; }
.tr__panel--now { opacity: calc(1 - var(--rev) * 2.2); }
.tr__panel--now .turn__tag { color: rgba(247,246,241,0.6); }
.tr__panel--after { opacity: calc((var(--rev) - 0.55) * 2.6); }
.turn__tag--bright { color: var(--lime); }
.tr__list li { display: flex; gap: 0.85rem; align-items: flex-start; padding: 0.7rem 0; font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.4; }
.tr__panel--now .tr__list li { color: rgba(247,246,241,0.78); }
.tr__panel--after .tr__list li { color: #fff; }
.tr__list .turn__ic { flex: none; width: 22px; height: 22px; margin-top: 2px; }

@media (max-width: 860px) {
  .tr__fly { width: 44px; }
  .tr__title { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .tr__lists { max-width: 90%; }
}
@media (prefers-reduced-motion: reduce) {
  .tr__after { clip-path: none; }
  .tr__panel--now { display: none; }
  .tr__panel--after { opacity: 1; }
  .tr__divider { display: none; }
}

/* =============================================================
   Recognition — sticky-rail scroll-spy ("You're not imagining it")
   ============================================================= */
.recog { position: relative; background: var(--paper); color: var(--forest); padding: 0 0 clamp(3.5rem, 7vw, 6rem); }
.recog__opener { position: relative; overflow: hidden; background: var(--bg-butterfly); padding-block: clamp(3.8rem, 8vw, 6.5rem); }
.recog__opener::after { content: ""; position: absolute; inset: 0; background: url("../img/mariposa-mark.png") no-repeat 95% 26%; background-size: min(28vw, 340px); opacity: 0.1; mix-blend-mode: screen; pointer-events: none; }
.recog__head { position: relative; z-index: 1; max-width: 44rem; margin: 0; }
.recog__head .kicker { color: var(--lime); margin-bottom: 1.2rem; }
.recog__title { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); text-wrap: balance; }

/* Full-bleed image scenes with sticky label rail */
.recog__body { position: relative; }
.recog__scenes { display: flex; flex-direction: column; }
.recog__scene { position: relative; min-height: 86vh; display: flex; align-items: center; overflow: hidden; scroll-margin-top: 12vh; }
.recog__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.recog__scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(247,246,241,0) 8%, rgba(247,246,241,0.06) 30%, rgba(247,246,241,0.5) 55%, rgba(247,246,241,0.92) 80%, var(--paper) 100%); }
.recog__text { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-end; text-align: right; padding-right: clamp(2rem, 13vw, 12rem); }
.recog__eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--sans); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.1rem; }
.recog__eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--wing); }
.recog__thought { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(1.7rem, 3.8vw, 3rem); line-height: 1.18; color: var(--forest); max-width: 16ch; }
.recog__say { margin-top: 1.4rem; font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.6; color: var(--forest-70); max-width: 40ch; }
.recog__say em { font-style: italic; color: var(--forest); font-weight: 600; }

.recog__railwrap { position: absolute; top: 0; right: clamp(1rem, 4vw, 3.5rem); height: 100%; z-index: 5; pointer-events: none; }
.recog__rail {
  position: sticky; top: 42vh; display: flex; flex-direction: column; pointer-events: auto;
  background: rgba(247,246,241,0.72); backdrop-filter: saturate(1.4) blur(10px);
  border-radius: 16px; padding: 0.6rem 0.2rem 0.6rem 0; box-shadow: var(--shadow-md); border-right: 2px solid var(--line);
}
.recog__label {
  position: relative; padding: 0.65rem 1.2rem 0.65rem 1rem; text-align: right; white-space: nowrap;
  font-family: var(--serif); font-weight: 600; font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  color: var(--forest-55); transition: color 0.35s var(--ease);
}
.recog__label::after {
  content: ""; position: absolute; right: -2px; top: 22%; bottom: 22%; width: 3px; border-radius: 3px;
  background: var(--wing); opacity: 0; transform: scaleY(0.4); transform-origin: center;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.recog__label:hover { color: var(--forest); }
.recog__label.is-active { color: var(--forest); }
.recog__label.is-active::after { opacity: 1; transform: scaleY(1); }

.recog__turn { max-width: 42rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
.recog__turn-line { font-family: var(--serif); font-weight: 600; font-size: clamp(1.7rem, 3.4vw, 2.6rem); line-height: 1.2; color: var(--ocean); }
.recog__turn-tag { margin-top: 0.8rem; font-weight: 600; color: var(--forest-55); }

@media (max-width: 860px) {
  .recog__railwrap { display: none; }
  .recog__scene { min-height: 66vh; }
  .recog__scrim { background: linear-gradient(180deg, rgba(247,246,241,0) 20%, rgba(247,246,241,0.7) 62%, rgba(247,246,241,0.95) 100%); }
  .recog__text { align-items: stretch; text-align: left; padding-right: 0; justify-content: flex-end; }
}
@media (prefers-reduced-motion: reduce) { .recog__label::after { transition: none; } }

/* =============================================================
   Free guide — lead magnet (email capture)
   ============================================================= */
.guide-offer { background: var(--paper); }
.guide__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }

.guide__cover-col { display: flex; justify-content: center; }
.guide__cover {
  width: min(300px, 80%); aspect-ratio: 3 / 4; border-radius: 5px 14px 14px 5px; position: relative;
  background: linear-gradient(155deg, #245842 0%, #223D2C 55%, #16321f 100%);
  box-shadow: var(--shadow-lg); transform: perspective(1100px) rotateY(-9deg); overflow: hidden;
}
.guide__cover::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 12px; background: linear-gradient(90deg, rgba(0,0,0,0.35), rgba(0,0,0,0)); }
.guide__cover::after { content: ""; position: absolute; inset: 0; background: url("../img/mariposa-mark.png") no-repeat 118% 4%; background-size: 62%; opacity: 0.12; mix-blend-mode: screen; }
.guide__cover-inner { position: relative; z-index: 1; height: 100%; padding: 1.9rem 1.6rem; display: flex; flex-direction: column; color: var(--paper); }
.guide__cover-mark { width: 58px; height: auto; }
.guide__cover-text { margin-top: auto; display: flex; flex-direction: column; }
.guide__cover-kicker { font-family: var(--sans); font-weight: 700; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lime); margin-bottom: 0.7rem; }
.guide__cover-title { font-family: var(--serif); font-weight: 600; font-size: clamp(1.6rem, 2.4vw, 2rem); line-height: 1.02; color: #fff; }
.guide__cover-sub { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: rgba(247,246,241,0.82); margin-top: 0.5rem; }
.guide__cover-rule { width: 46px; height: 3px; border-radius: 3px; background: var(--wing); margin: 1rem 0 0.9rem; }
.guide__cover-brand { font-family: var(--sans); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,246,241,0.62); }

.guide__intro .kicker { margin-bottom: 1.2rem; }
.guide__intro h2 { max-width: 18ch; }
.guide__intro .lede { margin-top: 1.2rem; max-width: 46ch; }
.guide__list { display: grid; gap: 0.5rem; margin: 1.5rem 0 0; }
.guide__list li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--forest-70); font-size: 1rem; }
.guide__list .dot { flex: none; width: 11px; height: 11px; border-radius: 50%; background: var(--wing); margin-top: 8px; }

.guide__form { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; max-width: 32rem; }
.guide__input {
  flex: 1 1 13rem; padding: 0.95rem 1.2rem; border-radius: 999px; border: 1.5px solid var(--line);
  background: #fff; font-family: var(--sans); font-size: 1rem; color: var(--forest);
}
.guide__input::placeholder { color: var(--forest-55); }
.guide__input:focus-visible { outline: 3px solid var(--ocean); outline-offset: 2px; border-color: var(--ocean); }
.guide__note { margin-top: 0.85rem; font-size: 0.82rem; color: var(--forest-55); }
.guide__success { margin-top: 1.1rem; font-weight: 700; font-size: 1.05rem; color: var(--leaf-dark); }

/* =============================================================
   Real media integration (hero video + photography)
   ============================================================= */
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__placeholder--fallback { z-index: -1; }   /* shows only if the video can't load */

/* Recognition — faint contemplative frame behind "her thoughts" */
.recognition { position: relative; overflow: hidden; }
.recognition__media {
  position: absolute; inset: 0; z-index: 0;
  background: url("../img/photos/recognition-bg.jpg") center 30% / cover no-repeat;
  opacity: 0.12; filter: saturate(0.85);
}
.recognition > .wrap { position: relative; z-index: 1; }

/* Stat cards — editorial photo behind a translucent brand tint + scrim */
.stat__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -3; }
.stat:nth-child(1) .stat__bg { background: linear-gradient(155deg, rgba(30,90,168,0.55), rgba(20,58,42,0.72)); }
.stat:nth-child(2) .stat__bg { background: linear-gradient(155deg, rgba(63,182,201,0.42), rgba(24,52,60,0.74)); }
.stat:nth-child(3) .stat__bg { background: linear-gradient(155deg, rgba(78,154,62,0.48), rgba(28,58,38,0.74)); }
.stat__scrim { background: linear-gradient(to top, rgba(7,18,12,0.88), rgba(7,18,12,0.10) 64%); }

/* Portrait / care / community — real photos replace the placeholder art */
.portrait::before, .care-visual::before, .community__visual::before { display: none; }
.portrait__img, .visual__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.portrait__img { object-position: center 20%; }
.portrait__tag {
  position: absolute; left: 14px; bottom: 14px; margin: 0; z-index: 2;
  background: rgba(34,61,44,0.78); color: rgba(247,246,241,0.94); border-color: rgba(247,246,241,0.4);
  backdrop-filter: blur(3px);
}

/* Close — joyful "dream state" photo under the wing-glow overlay */
.close__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; z-index: 0; opacity: 0.5; }
.close__bg {
  background:
    radial-gradient(60% 80% at 18% 22%, rgba(63,182,201,0.42), transparent 60%),
    radial-gradient(70% 80% at 84% 28%, rgba(181,211,52,0.34), transparent 60%),
    radial-gradient(80% 90% at 60% 105%, rgba(237,232,76,0.26), transparent 55%),
    linear-gradient(150deg, rgba(14,42,25,0.86), rgba(20,58,44,0.72) 55%, rgba(30,84,64,0.66));
}

/* ---- Cinematic full-bleed video break ---- */
.vbreak { position: relative; overflow: hidden; min-height: min(70vh, 620px); display: grid; place-items: center; }
.vbreak__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; z-index: 0; }
.vbreak__scrim { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(15,40,26,0.55), rgba(15,40,26,0.35) 45%, rgba(15,40,26,0.6)),
    radial-gradient(80% 90% at 50% 50%, transparent 30%, rgba(12,32,20,0.45));
}
.vbreak__inner { position: relative; z-index: 2; text-align: center; padding-block: clamp(3rem, 8vw, 6rem); }
.vbreak__line {
  color: #fff; font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.6rem, 4.2vw, 3rem); line-height: 1.15; letter-spacing: -0.01em;
  max-width: 20ch; margin: 0 auto; text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}

/* ---- Recognition Concept B: Maven-style expanding cards ---- */
.xcards { position: relative; background: var(--paper); color: var(--forest); padding-block: clamp(3.5rem, 7vw, 6rem); }
.xcards__head { margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.xcards__head .kicker { display: inline-block; margin-bottom: 1rem; }
.xcards__head h2 { color: var(--forest); }
.xcards__row { display: flex; gap: 14px; height: clamp(420px, 60vh, 620px); }
.xcard {
  position: relative; overflow: hidden; border-radius: 18px; flex: 1; min-width: 0;
  cursor: pointer; transition: flex 0.65s var(--ease); outline-offset: 3px;
}
.xcard:focus-visible { outline: 2px solid var(--lime); }
.xcard.is-open { flex: 3.2; cursor: default; }
.xcard__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 22% 28%; transition: transform 0.65s var(--ease); }
.xcard:not(.is-open):hover .xcard__img { transform: scale(1.04); }
.xcard__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,36,23,0.18) 0%, rgba(13,36,23,0.06) 42%, rgba(13,36,23,0.82) 100%); transition: background 0.4s ease; }
.xcard.is-open .xcard__shade { background: linear-gradient(180deg, rgba(13,36,23,0.14) 0%, rgba(13,36,23,0.3) 45%, rgba(13,36,23,0.9) 100%); }
.xcard__dot { position: absolute; top: 1.1rem; left: 1.1rem; width: 13px; height: 13px; border-radius: 50%; box-shadow: 0 0 0 6px rgba(247,246,241,0.16); z-index: 2; }
.xcard__content { position: absolute; inset: auto 0 0 0; z-index: 2; padding: clamp(1.1rem, 2vw, 1.8rem); }
.xcard__title { font-family: var(--serif); font-weight: 600; font-size: clamp(1.25rem, 2vw, 1.8rem); color: #fff; line-height: 1.1; }
.xcard__body { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.6s var(--ease), opacity 0.45s ease 0.12s; }
.xcard.is-open .xcard__body { max-height: 340px; opacity: 1; }
.xcard__quote { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(1.15rem, 1.8vw, 1.6rem); line-height: 1.25; color: #fff; margin-top: 0.7rem; max-width: 24ch; }
.xcard__say { margin-top: 0.7rem; font-size: clamp(0.92rem, 1.1vw, 1.05rem); line-height: 1.55; color: rgba(247,246,241,0.88); max-width: 44ch; }
.xcard__cta { margin-top: 1.1rem; }
.xcard:not(.is-open) .xcard__body { pointer-events: none; }
@media (max-width: 860px) {
  .xcards__row { flex-direction: column; height: auto; }
  .xcard { min-height: 120px; flex: none; }
  .xcard.is-open { min-height: 420px; }
  .xcard__img { object-position: 30% 20%; }
}

/* ---- Six tools, one plan ---- */
.tools { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin-top: 2.4rem; text-align: left; }
.tool { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1rem 1.1rem;
  opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease var(--d, 0s), transform 0.5s ease var(--d, 0s); }
.reveal.is-visible .tool { opacity: 1; transform: none; }
.tool b { display: flex; align-items: center; gap: 0.55rem; font-size: 0.98rem; color: var(--forest); }
.tool b i { width: 10px; height: 10px; border-radius: 50%; background: var(--tc, var(--teal)); flex: none; }
.tool span { display: block; margin-top: 0.3rem; font-size: 0.85rem; line-height: 1.45; color: var(--forest-70); }
.tools-flow { width: 3px; height: 0; margin: 0 auto; background: linear-gradient(180deg, #3FB6C9, #B5D334); border-radius: 3px; transition: height 0.8s var(--ease) 0.9s; }
.reveal.is-visible .tools-flow { height: 54px; }
.plan-card { max-width: 34rem; margin: 0 auto; background: var(--bg-butterfly); color: #fff; border-radius: 18px;
  padding: 1.7rem 2.1rem; position: relative; overflow: hidden; text-align: center;
  opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease 1.35s, transform 0.6s ease 1.35s; }
.reveal.is-visible .plan-card { opacity: 1; transform: none; }
.plan-card::after { content: ""; position: absolute; right: -30px; bottom: -40px; width: 170px; height: 150px;
  background: url("../img/mariposa-mark.png") no-repeat center / contain; opacity: 0.14; mix-blend-mode: screen; pointer-events: none; }
.plan-card h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.35rem, 2.2vw, 1.7rem); color: #fff; margin: 0 0 0.4rem; }
.plan-card p { color: rgba(247,246,241,0.85); font-size: 0.98rem; margin: 0; }
@media (max-width: 760px) { .tools { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .tools { grid-template-columns: 1fr; } }

/* ---- Guide offer card ---- */
.offer-card { position: relative; overflow: hidden; border-radius: 24px; color: #fff;
  background: var(--bg-butterfly);
  padding: clamp(2rem, 5vw, 3.4rem); display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.offer-card::after { content: ""; position: absolute; right: -50px; top: -40px; width: 280px; height: 250px;
  background: url("../img/mariposa-mark.png") no-repeat center / contain; opacity: 0.1; mix-blend-mode: screen; pointer-events: none; }
.offer-card h2 { color: #fff; }
.offer-card .kicker { color: var(--lime); }
.offer-card .lede { color: rgba(247,246,241,0.88); }
.offer__list { list-style: none; margin: 1.4rem 0 0; padding: 0; }
.offer__list li { display: flex; gap: 0.7rem; align-items: flex-start; padding: 0.45rem 0; color: rgba(247,246,241,0.92); font-size: 0.98rem; line-height: 1.5; }
.offer__list .tick { flex: none; width: 20px; height: 20px; border-radius: 50%; background: rgba(181,211,52,0.18); color: var(--lime);
  display: grid; place-items: center; font-size: 0.75rem; font-weight: 800; margin-top: 2px; }
.offer__panel { position: relative; z-index: 1; background: rgba(247,246,241,0.08); border: 1px solid rgba(247,246,241,0.2);
  backdrop-filter: blur(10px); border-radius: 18px; padding: clamp(1.4rem, 2.5vw, 2rem); }
.offer__panel h3 { font-family: var(--serif); font-weight: 600; color: #fff; font-size: 1.35rem; margin: 0 0 1rem; }
.offer__panel .guide__input { width: 100%; background: #fff; margin-bottom: 0.8rem; }
.offer__panel .btn { width: 100%; }
.offer__fine { margin-top: 0.9rem; font-size: 0.82rem; color: rgba(247,246,241,0.65); }
@media (max-width: 860px) { .offer-card { grid-template-columns: 1fr; } }

/* ---- Offer cover + flight path + den badge ---- */
.offer__body { display: flex; gap: clamp(1.2rem, 2.5vw, 2rem); align-items: center; margin-top: 1.4rem; }
.offer__cover { width: clamp(150px, 22vw, 200px); flex: none; border-radius: 10px; transform: rotate(-4deg);
  box-shadow: 0 24px 55px rgba(0,0,0,0.5); border: 1px solid rgba(247,246,241,0.16); }
.offer__body .offer__list { margin-top: 0; }
@media (max-width: 560px) { .offer__body { flex-direction: column; align-items: flex-start; } }

.flight { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 5vw, 4rem); }
.flight > .wrap { position: relative; z-index: 1; }
.flight__stage { position: relative; margin-top: 0.8rem; }
.flight__bgwrap { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.flight__bgwrap video { width: 100%; height: 100%; object-fit: cover; opacity: 0.32; }
.flight__bgwrap::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(247,246,241,0.5), rgba(247,246,241,0.12) 40%, rgba(247,246,241,0.55)); }
@media (max-width: 760px) { .flight__bgwrap { display: none; } }
.flight__svg { width: 100%; display: block; }
.flight__path { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 4.6s cubic-bezier(0.42, 0, 0.58, 1); }
.reveal.is-visible .flight__path { stroke-dashoffset: 0; }
.flight__bfly { transition: opacity 0.5s ease; }
.flight__node { opacity: 0; transition: opacity 0.5s ease; }
.flight__label { opacity: 0; transition: opacity 0.6s ease; }
.reveal.is-visible .flight__label--1 { opacity: 1; transition-delay: 0.3s; }
.reveal.is-visible .flight__label--2 { opacity: 1; transition-delay: 2.3s; }
.reveal.is-visible .flight__label--3 { opacity: 1; transition-delay: 4.2s; }
.reveal.is-visible .flight__node--1 { opacity: 1; transition-delay: 0.2s; }
.reveal.is-visible .flight__node--2 { opacity: 1; transition-delay: 2.2s; }
.reveal.is-visible .flight__node--3 { opacity: 1; transition-delay: 4.1s; }
.fsteps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin-top: 0.6rem; }
.fstep { background: rgba(247,246,241,0.78); backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px); border: 1px solid rgba(34,61,44,0.12); border-radius: 14px; padding: 0.85rem 1rem;
  opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease var(--d, 0s), transform 0.55s ease var(--d, 0s); }
.reveal.is-visible .fstep { opacity: 1; transform: none; }
.fstep__head { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.4rem; }
.fstep__num { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; flex: none;
  font-family: var(--serif); font-weight: 600; font-size: 0.95rem; color: #fff; background: var(--fc, var(--teal)); }
.fstep h3 { font-family: var(--serif); font-weight: 600; font-size: 1.18rem; color: var(--forest); margin: 0; }
.fstep p { font-size: 0.86rem; line-height: 1.45; color: var(--forest-70); margin: 0; }
@media (max-width: 760px) { .fsteps { grid-template-columns: 1fr; } .flight__svg { display: none; } }

.community__visual { position: relative; }
.den-badge { position: absolute; left: 14px; bottom: 14px; z-index: 3; display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(22,50,31,0.78); backdrop-filter: blur(8px); color: #fff; text-decoration: none;
  padding: 0.55rem 0.95rem; border-radius: 12px; font-size: 0.85rem; font-weight: 700; border: 1px solid rgba(247,246,241,0.18);
  transition: background 0.25s ease; }
.den-badge:hover { background: rgba(22,50,31,0.94); }
.den-badge img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }

/* ---- Community band (full-bleed den) ---- */
.commband { position: relative; overflow: hidden; padding-block: clamp(4.5rem, 9vw, 8rem); color: #fff; }
.commband__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; z-index: 0; }
.commband__scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(13,36,23,0.92) 0%, rgba(13,36,23,0.78) 34%, rgba(13,36,23,0.38) 64%, rgba(13,36,23,0.18) 100%); }
.commband__inner { position: relative; z-index: 2; max-width: 34rem; }
.commband h2 { color: #fff; }
.commband .lede { color: rgba(247,246,241,0.9); }
.commband .offer__list li { color: rgba(247,246,241,0.94); }
.commband__ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
@media (max-width: 640px) {
  .commband__scrim { background: linear-gradient(0deg, rgba(13,36,23,0.92) 30%, rgba(13,36,23,0.55) 70%, rgba(13,36,23,0.35) 100%); }
}

/* ---- Letter layout: portrait + letter ---- */
.letter2 { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(1.2rem, 2.5vw, 2rem); align-items: stretch; max-width: 64rem; margin: 2.2rem auto 0; }
.letter2__media { position: relative; border-radius: 18px; overflow: hidden; min-height: 460px; box-shadow: var(--shadow-md, 0 12px 40px rgba(0,0,0,0.08)); }
.letter2__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }
.letter2__media .tag-placeholder { position: absolute; left: 12px; bottom: 12px; z-index: 2; }
@media (max-width: 820px) {
  .letter2 { grid-template-columns: 1fr; }
  .letter2__media { min-height: 0; height: 380px; }
}

/* ---- Scroll-driven recognition cards ---- */
.xcards--scroll { height: 340vh; padding-block: 0; }
.xcards__sticky { position: sticky; top: 0; min-height: 100vh; display: flex; align-items: center; padding-block: clamp(1.5rem, 4vh, 3rem); background: var(--paper); }
@media (max-width: 860px) {
  .xcards--scroll { height: auto; padding-block: clamp(3.5rem, 7vw, 6rem); }
  .xcards__sticky { position: static; min-height: 0; padding-block: 0; }
}

/* ---- Whole-woman scroll story (Maven-style rising callouts) ---- */
.ww { position: relative; height: 380vh; }
.ww__sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden;
  background: var(--bg-butterfly); }
.ww__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; width: 100%; }
.ww__text { color: #fff; }
.ww__text h2 { color: #fff; }
.ww__text .lede { color: rgba(247,246,241,0.88); }
.ww__stage { position: relative; border-radius: 20px; overflow: hidden; height: min(74vh, 640px); box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.ww__stage video, .ww__stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.ww__stage--color::before { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: url("../img/mariposa-mark.png") no-repeat 14% 22% / min(38%, 240px); opacity: 0.16; mix-blend-mode: screen; }
.ww__layer { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s ease; }
.ww__layer.on { opacity: 1; }
.ww__layer:first-child { opacity: 1; }
.ww__layer.on ~ .ww__layer:first-child { opacity: 0; }
.ww__big { position: absolute; right: 1.6rem; top: 0.4rem; font-family: var(--serif); font-weight: 600;
  font-size: clamp(5rem, 9vw, 8.5rem); line-height: 1; color: rgba(247,246,241,0.16); }
.ww__card { position: absolute; left: clamp(0.9rem, 2vw, 1.4rem); right: clamp(0.9rem, 2vw, 1.4rem); bottom: clamp(0.9rem, 2vw, 1.4rem);
  background: rgba(30,46,36,0.55); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(247,246,241,0.22); border-radius: 16px; padding: 1.2rem 1.4rem; color: #fff;
  opacity: 0; transform: translateY(34px); transition: opacity 0.5s ease, transform 0.5s ease; pointer-events: none; }
.ww__card.is-active { opacity: 1; transform: translateY(0); }
.ww__card.is-past { opacity: 0; transform: translateY(-30px); }
.ww__card b { display: flex; align-items: center; gap: 0.6rem; font-size: 1.1rem; margin-bottom: 0.35rem; }
.ww__card b i { width: 11px; height: 11px; border-radius: 50%; background: var(--tc, var(--teal)); flex: none; }
.ww__card p { margin: 0; font-size: 0.95rem; line-height: 1.5; color: rgba(247,246,241,0.85); }
.ww__dots { position: absolute; top: 50%; right: 0.9rem; transform: translateY(-50%); display: flex; flex-direction: column; gap: 8px; }
.ww__dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(247,246,241,0.35); transition: background 0.3s, transform 0.3s; }
.ww__dots i.on { background: var(--lime); transform: scale(1.35); }
@media (max-width: 860px) {
  .ww { height: auto; }
  .ww__sticky { position: static; height: auto; padding-block: 3.5rem; }
  .ww__grid { grid-template-columns: 1fr; }
  .ww__stage { height: auto; overflow: visible; box-shadow: none; border-radius: 0; }
  .ww__stage video, .ww__stage img { position: relative; inset: auto; height: 300px; border-radius: 20px; display: block; }
  .ww__card, .ww__card.is-past, .ww__card.is-active { position: static; opacity: 1; transform: none; margin-top: 0.7rem; pointer-events: auto; }
  .ww__dots { display: none; }
}
@media (prefers-reduced-motion: reduce) { .ww__card { transition: none; } }

/* ---- Horizontal frosted card strip ---- */
.hscroll { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0.4rem 0.2rem 1.2rem; -webkit-overflow-scrolling: touch; }
.hscroll::-webkit-scrollbar { height: 8px; }
.hscroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 8px; }
.hcard { position: relative; flex: 0 0 min(300px, 76vw); aspect-ratio: 3/4; border-radius: 16px; overflow: hidden; scroll-snap-align: start; }
.hcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hcard__panel { position: absolute; left: 0.8rem; right: 0.8rem; bottom: 0.8rem; border-radius: 12px; padding: 1rem 1.1rem;
  background: rgba(30,46,36,0.55); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(247,246,241,0.22); color: #fff; }
.hcard__panel span { display: inline-block; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime); margin-bottom: 0.3rem; }
.hcard__panel h3 { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; line-height: 1.25; margin: 0; color: #fff; }

/* ---- One place options: orbit + contrast ---- */
.orbit { max-width: 560px; margin: 2rem auto 0; }
.orbit svg { width: 100%; display: block; }
.orbit__ring { animation: orbitSpin 70s linear infinite; transform-origin: 280px 280px; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .orbit__ring { animation: none; } }

.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: 2.2rem; text-align: left; }
.vs__panel { border-radius: 18px; padding: 1.6rem 1.5rem; }
.vs__panel h3 { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; margin: 0 0 1.1rem; }
.vs__panel--else { background: #EDEAE0; border: 1px dashed #C2BBAA; color: var(--forest-70); }
.vs__panel--else h3 { color: var(--forest-55); }
.scatter { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.scatter span { background: #fff; border: 1px dashed #C2BBAA; color: var(--forest-55); border-radius: 20px; padding: 0.45rem 0.9rem; font-size: 0.85rem; font-weight: 700; }
.scatter span:nth-child(1){transform:rotate(-3deg)} .scatter span:nth-child(2){transform:rotate(2deg) translateY(6px)}
.scatter span:nth-child(3){transform:rotate(-1.5deg) translateY(-3px)} .scatter span:nth-child(4){transform:rotate(3deg)}
.scatter span:nth-child(5){transform:rotate(-2deg) translateY(5px)} .scatter span:nth-child(6){transform:rotate(1.5deg)}
.vs__cap { margin-top: 1.2rem; font-size: 0.9rem; font-style: italic; }
.vs__panel--mari { background: var(--bg-butterfly); color: #fff; position: relative; overflow: hidden; }
.vs__panel--mari h3 { color: #fff; }
.vs__panel--mari::after { content:""; position:absolute; right:-26px; bottom:-34px; width:150px; height:130px; background:url("../img/mariposa-mark.png") no-repeat center/contain; opacity:0.13; mix-blend-mode:screen; }
.neat { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
.neat span { background: rgba(247,246,241,0.1); border: 1px solid rgba(247,246,241,0.2); border-radius: 10px; padding: 0.45rem 0.7rem; font-size: 0.85rem; font-weight: 700; color: rgba(247,246,241,0.95); }
.vs__one { margin-top: 1rem; text-align: center; background: rgba(181,211,52,0.14); border: 1px solid rgba(181,211,52,0.4); border-radius: 12px; padding: 0.8rem; font-weight: 800; color: var(--lime); }
.vs__panel--mari .vs__cap { color: rgba(247,246,241,0.75); }
@media (max-width: 720px) { .vs { grid-template-columns: 1fr; } }
.opt-tag { display:inline-block; font-family: var(--sans); font-weight: 800; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; background: var(--ocean); border-radius: 20px; padding: 0.3rem 0.8rem; margin-bottom: 1rem; }

/* ---- Letter from Dr. Julie ---- */
.letter { position: relative; background: #FFFDF8; border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow-md, 0 12px 40px rgba(0,0,0,0.07)); overflow: hidden; }
.letter::after { content: ""; position: absolute; right: -40px; bottom: -50px; width: 220px; height: 200px;
  background: url("../img/mariposa-mark.png") no-repeat center / contain; opacity: 0.07; pointer-events: none; }
.letter p { font-family: var(--serif); font-size: clamp(1.08rem, 1.5vw, 1.3rem); line-height: 1.7; color: var(--forest); margin: 0 0 1.2rem; }
.letter__salute { font-style: italic; font-weight: 600; font-size: clamp(1.25rem, 1.8vw, 1.5rem) !important; }
.letter__line { font-style: italic; font-weight: 600; color: var(--ocean) !important; }
.letter__sig { display: flex; align-items: center; gap: 1rem; margin-top: 1.6rem; }
.letter__sig img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; object-position: center 20%; }
.letter__sig b { display: block; font-family: var(--sans); color: var(--forest); }
.letter__sig span { font-size: 0.85rem; color: var(--forest-55); }

/* ---- Data strips (The Whole Picture — animated visualizations) ---- */
.dstrips { background: var(--bg-butterfly); color: #fff; padding-block: clamp(3.5rem, 7vw, 6rem); }
.dstrips .case__head { text-align: center; max-width: 50rem; margin: 0 auto clamp(2rem, 4vw, 3.4rem); }
.dstrip { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; padding-block: clamp(2.2rem, 4.5vw, 3.6rem); }
.dstrip + .dstrip { border-top: 1px solid rgba(247,246,241,0.14); }
.dstrip--rev .dstrip__copy { order: 2; text-align: right; }
.dstrip--rev .dstrip__viz { order: 1; }
.dstrip__label { display: inline-block; font-family: var(--sans); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lime); margin-bottom: 0.9rem; }
.dstrip__num { font-family: var(--serif); font-weight: 600; color: #fff; line-height: 0.9; letter-spacing: -0.02em; font-size: clamp(4rem, 9vw, 7.5rem); font-variant-numeric: tabular-nums; }
.dstrip__unit { font-size: 0.24em; font-style: italic; font-weight: 500; margin-left: 0.18em; }
.dstrip__pct { font-size: 0.46em; font-weight: 600; }
.dstrip__link { display: inline-block; margin-top: 0.9rem; color: var(--lime); font-weight: 700; font-size: 0.95rem;
  text-decoration: underline; text-underline-offset: 3px; }
.dstrip__link:hover { color: #fff; }
.dstrip__text { color: rgba(247,246,241,0.9); font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.6; margin-top: 1.1rem; max-width: 34ch; }
.dstrip--rev .dstrip__text { margin-left: auto; }
/* duration bars */
.dbar { margin-bottom: 1.4rem; }
.dbar__tag { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; color: rgba(247,246,241,0.75); margin-bottom: 0.45rem; }
.dbar__track { height: 26px; border-radius: 20px; background: rgba(247,246,241,0.1); overflow: hidden; }
.dbar__fill { height: 100%; width: 0; border-radius: 20px; transition: width 1.6s var(--ease) 0.2s; }
.dbar__fill--myth { background: rgba(247,246,241,0.34); }
.dbar__fill--real { background: linear-gradient(90deg, #1E5AA8, #3FB6C9, #4E9A3E, #B5D334); transition-delay: 0.55s; }
.is-live .dbar__fill { width: var(--w); }
.dbar__val { display: block; font-family: var(--serif); font-style: italic; font-size: 1.02rem; color: rgba(247,246,241,0.9); margin-top: 0.4rem; }
.dbar__axis { display: flex; justify-content: space-between; font-size: 0.72rem; letter-spacing: 0.08em; color: rgba(247,246,241,0.45); border-top: 1px solid rgba(247,246,241,0.18); padding-top: 0.5rem; }
/* care-gap butterflies */
.bflies { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(0.8rem, 2vw, 1.6rem); max-width: 30rem; }
.bfly { width: 100%; max-width: 78px; justify-self: center; filter: none; opacity: 1; transition: filter 0.7s ease var(--d, 0s), opacity 0.7s ease var(--d, 0s); }
.is-live .bfly--dim { filter: grayscale(1) brightness(1.6); opacity: 0.22; }
.dviz__caption { margin-top: 1.2rem; font-size: 0.92rem; color: rgba(247,246,241,0.7); font-style: italic; }
/* whole-body web */
.dweb { width: 100%; max-width: 32rem; display: block; }
.dweb__lines line { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.3s var(--ease); }
.is-live .dweb__lines line { stroke-dashoffset: 0; }
.is-live .dweb__lines line:nth-child(2) { transition-delay: 0.12s; } .is-live .dweb__lines line:nth-child(3) { transition-delay: 0.24s; }
.is-live .dweb__lines line:nth-child(4) { transition-delay: 0.36s; } .is-live .dweb__lines line:nth-child(5) { transition-delay: 0.48s; }
.is-live .dweb__lines line:nth-child(6) { transition-delay: 0.6s; } .is-live .dweb__lines line:nth-child(7) { transition-delay: 0.72s; }
.is-live .dweb__lines line:nth-child(8) { transition-delay: 0.84s; } .is-live .dweb__lines line:nth-child(9) { transition-delay: 0.96s; }
.is-live .dweb__lines line:nth-child(10) { transition-delay: 1.08s; } .is-live .dweb__lines line:nth-child(11) { transition-delay: 1.2s; }
.is-live .dweb__lines line:nth-child(12) { transition-delay: 1.32s; }
.dweb__nodes text { opacity: 0; transition: opacity 0.8s ease 0.5s; }
.is-live .dweb__nodes text { opacity: 1; }
@media (max-width: 820px) {
  .dstrip, .dstrip--rev { grid-template-columns: 1fr; gap: 1.6rem; }
  .dstrip--rev .dstrip__copy { order: 1; text-align: left; }
  .dstrip--rev .dstrip__text { margin-left: 0; }
  .dstrip--rev .dstrip__viz { order: 2; }
}
@media (prefers-reduced-motion: reduce) {
  .dbar__fill, .bfly, .dweb__lines line, .dweb__nodes text { transition: none; }
}

/* ---- Cinematic full-bleed stat strips (The Whole Picture) ---- */
.picstrips { background: var(--paper); color: var(--forest); padding: clamp(3.5rem,7vw,6rem) 0 clamp(2.5rem,5vw,4rem); }
.picstrips .case__head { text-align: center; max-width: 50rem; margin: 0 auto clamp(2.6rem,5vw,4rem); }
.picstrip { position: relative; min-height: min(78vh, 720px); display: grid; align-items: center; overflow: hidden; }
.picstrip + .picstrip { margin-top: 4px; }
.picstrip__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  transform: scale(1.07); transition: transform 9s ease-out;
}
.picstrip.is-visible .picstrip__bg { transform: scale(1); }
.picstrip__scrim { position: absolute; inset: 0; z-index: 1; }
.picstrip--l .picstrip__scrim {
  background: linear-gradient(90deg, rgba(13,36,23,.86) 0%, rgba(13,36,23,.6) 40%, rgba(13,36,23,.14) 74%, rgba(13,36,23,0) 100%),
              linear-gradient(0deg, rgba(13,36,23,.35), transparent 40%);
}
.picstrip--r .picstrip__scrim {
  background: linear-gradient(270deg, rgba(13,36,23,.86) 0%, rgba(13,36,23,.6) 40%, rgba(13,36,23,.14) 74%, rgba(13,36,23,0) 100%),
              linear-gradient(0deg, rgba(13,36,23,.35), transparent 40%);
}
.picstrip__inner { position: relative; z-index: 2; width: 100%; }
.picstrip__content { max-width: 34rem; }
.picstrip--r .picstrip__content { margin-left: auto; text-align: right; }
.picstrip__label {
  display: inline-block; font-family: var(--sans); font-weight: 700; font-size: .78rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--lime); margin-bottom: 1rem;
}
.picstrip__num {
  font-family: var(--serif); font-weight: 600; color: #fff; line-height: .9;
  letter-spacing: -.02em; font-size: clamp(4.5rem, 13vw, 11rem);
  text-shadow: 0 6px 44px rgba(0,0,0,.4);
}
.picstrip__unit { font-size: .24em; font-style: italic; font-weight: 500; letter-spacing: 0; margin-left: .18em; }
.picstrip__pct { font-size: .46em; font-weight: 600; letter-spacing: -.01em; }
.picstrip__copy {
  color: rgba(247,246,241,.94); font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.55; max-width: 32rem; margin-top: 1.3rem;
}
.picstrip--r .picstrip__copy { margin-left: auto; }
.picstrips .case__source { text-align: center; margin-top: clamp(2rem,4vw,3rem); }
@media (max-width: 640px) {
  .picstrip { min-height: 66vh; }
  .picstrip--r .picstrip__content { text-align: left; }
  .picstrip__scrim { background: linear-gradient(0deg, rgba(13,36,23,.9) 0%, rgba(13,36,23,.55) 55%, rgba(13,36,23,.35) 100%) !important; }
}

@media (max-width: 560px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .brand__sub { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .placeholder-tag { display: none; }
  .hero__scroll { display: none; }
  .hero__inner { padding-top: 5rem; }
}

/* ---------- Readability for a 45-65 audience ----------
   Phone minimums raised; desktop maximums deliberately unchanged. */
.lede { font-size: clamp(1.22rem, 1.4vw, 1.4rem); }
.hero__sub { font-size: clamp(1.22rem, 1.5vw, 1.35rem); }
@media (max-width: 640px) {
  body { font-size: 1.0625rem; line-height: 1.68; }
  .hero__sub { font-size: 1.25rem; line-height: 1.5; }
  .lede, .ss-lede, .xcard__say, .dstrip__text, .fstep p,
  .faq__a-inner, .letter p, .prose p, .pillar p { font-size: 1.09rem; line-height: 1.66; }
  .btn--lg { font-size: 1.06rem; padding-block: 0.95rem; }
  .faq__q, .footer__links a { font-size: 1.05rem; }
}
