/* ==========================================================================
   High Frequency Living with Mari — Home page stylesheet (Round 2)
   Tokens are pixel-picked from BRAND SPEC v2. Do not approximate.
   Black Diamond appears ONLY at: hero "Welcome Home", the five section
   anchors (Listen In / Learn More / Join Mari / The Mastermind / Retreats),
   the closing "— Mari" signature, and the logo lockup "Mari".
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Black Diamond";
  src: url("fonts/BlackDiamond.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --white: #FDFCFA;        /* Whisper-Warm White — base */
  --pure-white: #FFFFFF;   /* occasional cards / contrast panels */
  --peach: #FBE2CC;        /* Warm Peach — sparingly */
  --blush: #F2D1D0;        /* Pink Blush — soft sections */
  --periwinkle: #646093;   /* Dusty Periwinkle — primary jewel tone */
  --magenta: #A2217F;      /* Bold Magenta — CTA + emphasis */
  --charcoal: #6A6C70;     /* body text */
  --hairline: #E8E4DD;     /* dividers / card outlines */
  --plum: #2D1B24;         /* footer only */

  --font-display: "Black Diamond", cursive;
  /* Futura Light stand-in until the Adobe Fonts kit is wired in (see WALKTHROUGH.md).
     'futura-pt' is listed first so activating the kit swaps it in with no CSS change. */
  --font-body: "futura-pt", "Jost", "Futura", "Century Gothic", sans-serif;
  --font-quote: "Playfair Display", Georgia, serif; /* closing quote only */

  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px; --s5: 48px;
  --s6: 64px; --s7: 96px; --s8: 128px; --s9: 160px;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-pad: clamp(64px, 10vw, 128px);
  --radius: 2px;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, p, ul { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }
strong { font-weight: 500; color: #4E5054; }
em { font-style: italic; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
:focus-visible { outline: 2px solid var(--magenta); outline-offset: 3px; }

/* ---------- Type scale ---------- */
.script {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  color: var(--periwinkle);
  letter-spacing: 0;
}
.anchor {               /* section anchor word — stands alone, no label above */
  font-size: clamp(64px, 8vw, 116px);
  margin-bottom: var(--s5);
}
.heading {              /* long-form headings (sentences) — Futura Light */
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.18;
  color: var(--periwinkle);
  margin-bottom: var(--s4);
}
.card-title {           /* card-level titles — Futura, no script */
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.2;
  color: var(--periwinkle);
  margin-bottom: 8px;
}
.lead { font-size: 20px; line-height: 32px; }
.small { font-size: 14px; line-height: 22px; }
.measure { max-width: 62ch; }
.stack > * + * { margin-top: var(--s3); }
.placeholder-copy { font-style: italic; color: rgba(106,108,112,.75); }

/* ---------- Layout helpers ---------- */
.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: var(--section-pad); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.split--img-narrow { grid-template-columns: 1fr 1.4fr; }
@media (max-width: 860px) {
  .split, .split--img-narrow { grid-template-columns: 1fr; }
  .split .order-first-mobile { order: -1; }
}

/* ---------- Buttons + links ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 34px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: opacity .2s ease, background-color .2s ease, color .2s ease;
  cursor: pointer;
}
.btn--primary { background: var(--magenta); color: var(--white); border-color: var(--magenta); }
.btn--primary:hover { opacity: .9; }
.btn--outline { background: transparent; color: var(--periwinkle); border-color: var(--periwinkle); }
.btn--outline:hover { background: var(--periwinkle); color: var(--white); }
.btn--small { padding: 12px 22px; font-size: 13px; }
.link {
  font-style: italic;
  color: var(--periwinkle);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.link:hover { border-bottom-color: var(--periwinkle); }
.cta-row { margin-top: var(--s5); display: flex; flex-wrap: wrap; gap: var(--s2) var(--s3); align-items: center; }

/* ---------- Frames + placeholders ---------- */
.frame { border-radius: var(--radius); overflow: hidden; }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.ph {
  position: relative;
  background-color: #F8F0EE;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  display: grid; place-items: center; text-align: center;
  padding: var(--s3);
  color: var(--periwinkle); font-style: italic; font-size: 14px; line-height: 22px;
  overflow: hidden;
}
.ph::before { content: ""; position: absolute; inset: 10px; border: 1px dashed rgba(100,96,147,.35); border-radius: var(--radius); pointer-events: none; }
.ph span { position: relative; max-width: 22ch; }

/* ---------- Reveal motion ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(253, 252, 250, 0.94);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--hairline);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s3); height: 76px; }
.brand { display: inline-flex; align-items: baseline; gap: 10px; text-decoration: none; color: var(--charcoal); white-space: nowrap; }
.brand__text { font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400; }
.brand__script { font-family: var(--font-display); font-size: 40px; line-height: 1; color: var(--periwinkle); transform: translateY(4px); }
.nav__links { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.nav__links a:not(.btn) {
  font-size: 14px; line-height: 16px; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; font-weight: 400; color: var(--charcoal);
  padding: 6px 0; border-bottom: 1px solid transparent; transition: border-color .2s ease;
}
.nav__links a:not(.btn):hover { border-bottom-color: var(--periwinkle); }
.nav__toggle {
  display: none; background: none; border: 1px solid var(--hairline); border-radius: var(--radius);
  width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; color: var(--charcoal);
}
@media (max-width: 1080px) {
  .nav__toggle { display: inline-flex; flex: none; }
  .brand { min-width: 0; }
  .brand__text { font-size: 12px; letter-spacing: .1em; }
  .brand__script { font-size: 34px; }
  .nav__links {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--hairline);
    padding: var(--s2) var(--gutter) var(--s4);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a:not(.btn) { padding: 14px 0; font-size: 15px; width: 100%; border-bottom: 1px solid var(--hairline); }
  .nav__links .btn { margin-top: var(--s3); }
}

/* ==========================================================================
   HERO — Mari-forward split (flowerfield 40% | Mari 60%), fixed scroll-over
   ========================================================================== */
.hero {
  position: sticky; top: 0; z-index: 0;
  height: 100svh; min-height: 640px;
  display: grid;
  grid-template-columns: 2fr 3fr;   /* La Jolla 40% · Mari 60% */
  grid-template-rows: 100%;
  overflow: hidden;
  background: var(--white);
}
.hero__img { position: relative; height: 100%; min-height: 0; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
.hero__img--coast img { object-position: 48% 65%; }
.hero__img--mari img { object-position: 50% 20%; background: #FFFFFF; }
.hero__card {
  position: absolute; z-index: 2;
  left: clamp(20px, 5vw, 80px);
  bottom: clamp(24px, 7vh, 88px);
  width: min(560px, calc(100% - 2 * clamp(20px, 5vw, 80px)));
  background: rgba(253, 252, 250, 0.92);
  border: 1px solid rgba(232, 228, 221, 0.9);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 52px);
}
.hero__welcome { font-size: clamp(60px, 7vw, 104px); color: var(--periwinkle); margin-bottom: 6px; }
.hero__welcome-rest { font-size: clamp(20px, 2vw, 26px); line-height: 1.3; color: var(--periwinkle); margin-bottom: var(--s4); }
.hero__anchor { font-family: var(--font-body); font-weight: 300; font-size: clamp(19px, 1.7vw, 22px); line-height: 1.5; color: var(--charcoal); max-width: 34ch; }
.hero__anchor .accent { color: var(--magenta); font-style: italic; font-weight: 400; }
.hero__ctas { margin-top: var(--s4); display: flex; flex-wrap: wrap; gap: var(--s2) var(--s3); align-items: center; }
.hero__tagline { margin-top: var(--s3); font-style: italic; font-size: clamp(19px, 1.7vw, 22px); line-height: 1.5; color: var(--periwinkle); }
.hero__scroll { position: absolute; right: clamp(20px, 4vw, 48px); bottom: 28px; z-index: 2; font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--white); text-shadow: 0 1px 12px rgba(0,0,0,.3); }

@media (max-width: 860px) {
  /* Mari on top, copy card between, coast below — nothing hidden behind text */
  .hero {
    position: relative; height: auto; min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .hero__img--mari { order: 1; height: 58vh; }
  .hero__img--mari img { object-position: 50% 24%; }
  .hero__card { order: 2; position: static; width: auto; margin: 0; border-left: 0; border-right: 0; background: var(--white); }
  .hero__img--coast { order: 3; height: 38vh; }
  .hero__img--coast img { object-position: 50% 70%; }
  .hero__scroll { display: none; }
}

/* Everything after the hero scrolls over it */
.page { position: relative; z-index: 1; background: var(--white); }

/* ==========================================================================
   FEATURED IN — individual full-color logos
   ========================================================================== */
.logo-bar { padding-block: clamp(40px, 6vw, 72px); border-bottom: 1px solid var(--hairline); }
.logo-bar__label { font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase; text-align: center; margin-bottom: var(--s4); font-weight: 400; }
.logo-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(20px, 3vw, 44px) clamp(28px, 4vw, 56px);
}
.logo-row img { width: auto; height: auto; max-height: 40px; }
.logo-row img[height="40"] { height: 40px; }
.logo-row img[height="34"] { height: 34px; }
.logo-row img[height="32"] { height: 32px; }
.logo-row img[height="30"] { height: 30px; }
.logo-row img[height="24"] { height: 24px; }
.logo-word { font-family: var(--font-body); font-weight: 500; font-size: 26px; line-height: 1; color: #C6002B; letter-spacing: -0.01em; }
.logo-word span { font-weight: 300; color: #333; }
@media (max-width: 640px) {
  .logo-row { gap: 18px 26px; }
  .logo-row img[height="40"] { height: 32px; }
  .logo-row img[height="34"] { height: 27px; }
  .logo-row img[height="32"] { height: 26px; }
  .logo-row img[height="30"] { height: 24px; }
  .logo-row img[height="24"] { height: 19px; }
  .logo-word { font-size: 21px; }
}

/* Listen On — platform logos on a soft band */
.platforms__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.platforms__scroll::-webkit-scrollbar { display: none; }
.platforms {
  display: flex; justify-content: center; align-items: center;
  gap: clamp(40px, 3.5vw, 48px);
  background: rgba(251, 226, 204, 0.32);
  border-radius: var(--radius);
  padding: 28px clamp(24px, 4vw, 48px);
  width: max-content; min-width: 100%;
}
.platforms li { flex: none; display: grid; place-items: center; }
.platforms img { width: auto; }
.platforms__hint { text-align: center; font-style: italic; font-size: 14px; margin-top: var(--s2); color: var(--charcoal); display: none; }
@media (max-width: 760px) { .platforms { justify-content: flex-start; } .platforms__hint { display: block; } }

/* ==========================================================================
   TEASER — Take a closer look at 5D Frequency
   ========================================================================== */
.teaser { background: var(--blush); border-bottom: 1px solid var(--hairline); }
.teaser__inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 96px); align-items: start;
}
.teaser__heading { margin-bottom: 0; }
.teaser .cta-row { margin-top: var(--s4); }
@media (max-width: 860px) { .teaser__inner { grid-template-columns: 1fr; gap: var(--s3); } }

/* ==========================================================================
   LISTEN IN
   ========================================================================== */
.podcasts { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); }
.podcast { display: grid; grid-template-columns: minmax(150px, 240px) 1fr; gap: clamp(20px, 3vw, 36px); align-items: start; }
.podcast__cover { aspect-ratio: 1; background: var(--pure-white); border: 1px solid var(--hairline); }
.podcast__meta { font-size: 15px; line-height: 24px; font-style: italic; color: var(--periwinkle); margin-bottom: var(--s2); }
.podcast__body { font-size: 17px; line-height: 28px; }
.podcast .btn { margin-top: var(--s3); }
@media (max-width: 1000px) { .podcasts { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .podcast { grid-template-columns: 1fr; } .podcast__cover { max-width: 240px; } }
.listen-on { margin-top: var(--s7); padding-top: var(--s5); border-top: 1px solid var(--hairline); }

/* ==========================================================================
   FREE 5-PART PRIVATE PODCAST — OPT-IN STRIP
   ========================================================================== */
.optin { background: var(--periwinkle); color: rgba(253, 252, 250, 0.92); }
.optin__inner {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 5vw, 80px); align-items: center;
  padding-block: clamp(56px, 7vw, 96px);
}
.optin__heading { font-family: var(--font-body); font-weight: 300; font-size: clamp(28px, 3vw, 40px); line-height: 1.2; color: #FDFCFA; margin-bottom: var(--s3); }
.optin__sub { font-size: 18px; line-height: 30px; max-width: 54ch; margin-bottom: var(--s4); }
.optin__form { display: flex; flex-wrap: wrap; gap: 12px; }
.optin__form input {
  flex: 1 1 180px; min-width: 0; height: 54px; padding: 0 18px; font: inherit; font-size: 16px;
  background: rgba(253, 252, 250, 0.97); border: 1px solid transparent; color: var(--charcoal); border-radius: var(--radius);
}
.optin__form input::placeholder { color: rgba(106, 108, 112, 0.65); }
.optin__form .btn { flex: 0 0 auto; }
.optin__cover { max-width: 340px; justify-self: center; }
.optin__cover img { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid rgba(253, 252, 250, 0.35); }
@media (max-width: 860px) {
  .optin__inner { grid-template-columns: 1fr; }
  .optin__cover { order: -1; max-width: 240px; }
}

/* ==========================================================================
   LISTEN IN — AHA! MOMENTS FEATURE
   ========================================================================== */
.aha { display: grid; grid-template-columns: minmax(220px, 380px) 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.aha__cover { aspect-ratio: 1; border: 1px solid var(--hairline); background: var(--pure-white); }
.aha__body .card-title { font-size: clamp(26px, 2.6vw, 34px); }
.aha__body .btn { margin-top: var(--s4); }
@media (max-width: 760px) { .aha { grid-template-columns: 1fr; } .aha__cover { max-width: 300px; } }

/* ==========================================================================
   LEARN MORE — THE BOOKS
   ========================================================================== */
.books { position: relative; overflow: hidden; }
.books__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); margin-top: var(--s6); position: relative; }
.books__grid::before {
  content: ""; position: absolute; z-index: -1;
  left: 50%; transform: translateX(-50%); width: 100vw;
  top: calc(-1 * var(--s5));
  bottom: calc(-1 * var(--section-pad));
  background: var(--blush);
}
.book { display: grid; grid-template-columns: minmax(150px, 220px) 1fr; gap: clamp(20px, 3vw, 40px); align-items: start; }
.book__cover { border-radius: var(--radius); overflow: hidden; aspect-ratio: 2 / 3; background: var(--white); }
.book__cover img { width: 100%; height: 100%; object-fit: cover; }
.book__subtitle { font-size: 17px; line-height: 26px; color: var(--periwinkle); margin-bottom: var(--s3); font-style: italic; }
.book__desc { font-size: 17px; line-height: 28px; }
.book .link { display: inline-block; margin-top: var(--s3); }
@media (max-width: 1000px) { .books__grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .book { grid-template-columns: 1fr; } .book__cover { max-width: 220px; } }

/* ==========================================================================
   JOIN MARI — SUBSTACK
   ========================================================================== */
.join { position: relative; overflow: hidden; padding-block: clamp(96px, 12vw, 180px); }
.join__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.join__inner { position: relative; }
.join__card {
  width: min(560px, 100%);
  background: rgba(253, 252, 250, 0.78);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  border: 1px solid rgba(232, 228, 221, 0.7);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 52px);
}
@media (max-width: 640px) {
  .join { padding-block: 0; }
  .join__bg { position: static; display: block; height: 46vh; object-position: 72% 70%; }
  .join__inner { padding-block: var(--s6); }
  .join__card { width: 100%; background: var(--white); border: 0; padding: 0; }
}

/* ==========================================================================
   THE MASTERMIND
   ========================================================================== */
.mastermind { margin-top: var(--s6); border: 1px solid var(--hairline); border-radius: var(--radius); background: var(--pure-white); padding: clamp(28px, 5vw, 72px); }
.mastermind__head { max-width: 820px; }
.mastermind__title { font-family: var(--font-body); font-weight: 300; font-size: clamp(30px, 3.4vw, 44px); line-height: 1.15; color: var(--periwinkle); margin-bottom: 10px; }
.mastermind__meta { font-size: 18px; line-height: 28px; font-style: italic; color: var(--periwinkle); }
.mm-levels { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); margin-top: var(--s5); }
.mm-level { padding-top: var(--s3); border-top: 2px solid var(--periwinkle); }
.mm-level--two { border-top-color: var(--magenta); }
.mm-level__tag { font-size: 14px; line-height: 22px; color: var(--charcoal); }
.mm-level__name { font-family: var(--font-body); font-weight: 400; font-size: clamp(22px, 2vw, 27px); line-height: 1.25; color: var(--periwinkle); margin: 6px 0 var(--s2); }
.mm-level--two .mm-level__name { color: var(--magenta); }
.mm-level__body { font-size: 16px; line-height: 26px; }
.mastermind__cta { margin-top: var(--s5); }
@media (max-width: 860px) { .mm-levels { grid-template-columns: 1fr; } }

/* ==========================================================================
   RETREATS
   ========================================================================== */
.experience__gallery { display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; height: clamp(360px, 46vw, 620px); }
.experience__gallery .frame:first-child { grid-row: 1 / span 2; }
.experience__gallery .frame img { height: 100%; }
.experience__card { border: 1px solid var(--hairline); background: var(--pure-white); padding: clamp(28px, 4vw, 56px); }
.experience__meta { font-size: 15px; font-style: italic; color: var(--periwinkle); margin-bottom: var(--s3); }
@media (max-width: 860px) {
  .experience__gallery { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .experience__gallery .frame { aspect-ratio: 4/3; }
  .experience__gallery .frame:first-child { grid-row: auto; grid-column: 1 / -1; aspect-ratio: 16/9; }
}

/* ==========================================================================
   CLIENT STORIES (slider)
   ========================================================================== */
.stories { background: var(--blush); }
.slider { position: relative; margin-top: var(--s5); }
.slider__track { position: relative; min-height: 320px; }
.slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .6s ease, visibility .6s; margin: 0; }
.slide.is-active { opacity: 1; visibility: visible; position: relative; }
.slide blockquote { margin: 0; }
.slide__avatar {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--white); margin-bottom: var(--s3);
}
.slide__quote { font-size: clamp(20px, 2vw, 24px); line-height: 1.55; font-style: italic; color: var(--charcoal); max-width: 60ch; }
.slide__who { margin-top: var(--s3); font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--magenta); font-weight: 400; font-style: normal; }
.slider__nav { display: flex; align-items: center; gap: var(--s3); margin-top: var(--s5); }
.slider__dots { display: flex; gap: 10px; }
.slider__dots button { width: 12px; height: 12px; border-radius: 50%; border: 1px solid var(--periwinkle); background: transparent; cursor: pointer; padding: 0; }
.slider__dots button[aria-current="true"] { background: var(--periwinkle); }
.slider__arrow { background: transparent; border: 1px solid var(--periwinkle); color: var(--periwinkle); width: 44px; height: 44px; border-radius: var(--radius); cursor: pointer; font-size: 18px; display: inline-grid; place-items: center; }
.slider__arrow:hover { background: var(--periwinkle); color: var(--white); }

/* ==========================================================================
   MEET MARI
   ========================================================================== */
.about__portrait { aspect-ratio: 3 / 4; max-width: 440px; }
.about__lead { font-size: 20px; line-height: 32px; font-style: italic; color: var(--periwinkle); margin-bottom: var(--s3); }
.about .measure + .measure { margin-top: var(--s3); }
.about__quote { margin-top: var(--s5); padding-top: var(--s4); border-top: 1px solid var(--hairline); font-style: italic; font-size: 19px; line-height: 31px; color: var(--periwinkle); }

/* ==========================================================================
   CLOSING QUOTE
   ========================================================================== */
.closing { position: relative; overflow: hidden; padding-block: clamp(120px, 18vw, 260px); text-align: center; }
.closing__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.closing::after { content: ""; position: absolute; inset: 0; background: rgba(45, 27, 36, 0.38); }
.closing__inner { position: relative; z-index: 1; }
.closing__quote { font-family: var(--font-quote); font-style: italic; font-weight: 400; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.35; color: #FDFCFA; max-width: 30ch; margin-inline: auto; text-shadow: 0 2px 24px rgba(45,27,36,.55); }
.closing__by { margin-top: var(--s4); font-size: clamp(40px, 4vw, 56px); color: #FDFCFA; text-shadow: 0 2px 24px rgba(45,27,36,.55); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { position: relative; z-index: 1; background: var(--plum); color: rgba(253, 252, 250, 0.86); padding-block: clamp(64px, 8vw, 112px) var(--s4); }
.footer a { color: inherit; text-decoration: none; }
.footer__grid { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: clamp(32px, 5vw, 80px); }
.footer h3 { font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 400; color: var(--white); margin-bottom: var(--s3); }
.footer__list li + li { margin-top: 10px; }
.footer__list a { font-size: 15px; border-bottom: 1px solid transparent; }
.footer__list a:hover { border-bottom-color: rgba(253,252,250,.5); }
.footer__news p { font-size: 15px; line-height: 24px; }
.footer__news strong { color: var(--white); font-weight: 400; font-size: 20px; display: block; margin-bottom: 8px; }
.newsletter { margin-top: var(--s3); display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter input {
  flex: 1 1 220px; min-width: 0; height: 50px; padding: 0 16px; font: inherit; font-size: 15px;
  background: rgba(253,252,250,.08); border: 1px solid rgba(253,252,250,.35); color: var(--white); border-radius: var(--radius);
}
.newsletter input::placeholder { color: rgba(253,252,250,.6); }
.footer__tag { margin-top: var(--s7); text-align: center; font-style: italic; font-size: 17px; color: var(--white); }
.footer__bottom { margin-top: var(--s4); padding-top: var(--s3); border-top: 1px solid rgba(253,252,250,.14); font-size: 14px; line-height: 22px; text-align: center; color: rgba(253,252,250,.6); }
.footer__bottom a { border-bottom: 1px solid transparent; white-space: nowrap; }
.footer__bottom a:hover { border-bottom-color: currentColor; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   ROUND 5 — Interior pages, HFL Lab, application wizard
   ========================================================================== */

/* ---------- Interior page frame ---------- */
.interior { padding-top: 76px; background: var(--white); position: relative; z-index: 1; }
.page-hero { padding: clamp(56px, 9vw, 112px) 0 clamp(32px, 5vw, 56px); text-align: center; }
.page-hero__kicker {
  font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--magenta); font-weight: 400; margin-bottom: var(--s3);
}
.page-hero .anchor { display: block; margin-bottom: var(--s2); }
.page-hero__heading { margin-inline: auto; max-width: 22ch; }
.page-hero__sub {
  font-size: 17px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--charcoal); margin-top: var(--s2);
}
.page-hero .lead { margin-top: var(--s3); }
.section--tight { padding-block: clamp(40px, 6vw, 80px); }

/* ---------- Bands ---------- */
.band-blush { background: var(--blush); }
.band-white { background: var(--pure-white); border-block: 1px solid var(--hairline); }
.band-blush .heading, .band-white .heading { margin-bottom: var(--s3); }
.band-blush .cta-row, .band-white .cta-row { margin-top: var(--s4); }

/* ---------- Prose ---------- */
.prose > * + * { margin-top: var(--s3); }
.prose .lead { color: #55575B; }
.prose ul { list-style: none; }

/* ---------- Lab title (Black Diamond "Lab") ---------- */
.lab-title {
  font-family: var(--font-body); font-weight: 300;
  font-size: clamp(32px, 4.6vw, 58px); line-height: 1.15; color: var(--periwinkle);
}
.lab-title__script {
  font-size: clamp(56px, 8.4vw, 118px);
  color: var(--periwinkle); display: inline-block;
  transform: translateY(0.08em); margin-left: 0.06em;
}
.page-hero--lab .cta-row { margin-top: var(--s4); }

/* ---------- Lists ---------- */
.check-list { display: grid; gap: var(--s2); }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 12px; height: 7px;
  border-left: 2px solid var(--magenta); border-bottom: 2px solid var(--magenta);
  transform: rotate(-45deg);
}
.check-list--2col { grid-template-columns: 1fr 1fr; gap: var(--s3) var(--s5); }
@media (max-width: 780px) { .check-list--2col { grid-template-columns: 1fr; } }

.steps-list { counter-reset: step; display: grid; gap: var(--s3); }
.steps-list li { position: relative; padding-left: 52px; counter-increment: step; }
.steps-list li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 34px; height: 34px; display: grid; place-items: center;
  border: 1px solid var(--periwinkle); border-radius: 50%;
  color: var(--periwinkle); font-size: 15px;
}

.possible-list { display: grid; gap: var(--s3); margin-top: var(--s4); }
.possible-close {
  margin-top: var(--s5); font-family: var(--font-quote); font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px); line-height: 1.4; color: var(--magenta);
}

/* ---------- Lab split + cohort card ---------- */
.split-lab { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 860px) { .split-lab { grid-template-columns: 1fr; } }
.cohort-card {
  background: var(--pure-white); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
}
.cohort-card__line { margin-top: var(--s2); }
.cohort-card__small { font-size: 14px; letter-spacing: 0.06em; }
.cohort-dates { margin-top: var(--s3); display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; font-size: 15px; }
.cohort-dates__off { color: var(--magenta); }
.cohort-card .cta-row { margin-top: var(--s4); }

/* ---------- About Mari ---------- */
.about-story { display: grid; grid-template-columns: minmax(260px, 420px) 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 860px) { .about-story { grid-template-columns: 1fr; } .about-story__portrait { max-width: 420px; } }
.about-story__portrait img { border-radius: var(--radius); position: sticky; top: 108px; }
.about-story__go { font-size: clamp(40px, 5vw, 64px); color: var(--magenta); }

/* ---------- 5 Levels ---------- */
.levels { display: grid; gap: clamp(28px, 4vw, 44px); max-width: 760px; margin-inline: auto; }
.level { border-top: 1px solid var(--hairline); padding-top: clamp(24px, 3vw, 36px); }
.level__tag { font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--magenta); }
.level__name { font-size: clamp(44px, 5.4vw, 72px); margin: var(--s2) 0; }
.level__body { max-width: 62ch; }

/* ---------- Lifestyle tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.6vw, 36px); }
@media (max-width: 1080px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .tiles { grid-template-columns: 1fr; } }
.tile__ph {
  aspect-ratio: 4 / 5; background: var(--blush); border-radius: var(--radius);
  display: grid; place-items: center;
}
.tile__ph span { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(106,108,112,.55); }
.tile__title { font-family: var(--font-body); font-weight: 400; font-size: 18px; letter-spacing: 0.04em; color: var(--periwinkle); margin-top: var(--s2); line-height: 1.3; }
.tile__script { font-size: 30px; margin-left: 4px; }
.tile__hook { font-size: 15px; line-height: 24px; margin-top: 6px; }

/* ---------- Podcast hub ---------- */
.show { display: grid; grid-template-columns: minmax(180px, 300px) 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.show > * { min-width: 0; }
.show + .show { margin-top: clamp(48px, 7vw, 88px); padding-top: clamp(40px, 6vw, 72px); border-top: 1px solid var(--hairline); }
@media (max-width: 700px) { .show { grid-template-columns: 1fr; } .show__cover { max-width: 260px; } }
.show__cover { border-radius: var(--radius); }
.show__cover--ph { aspect-ratio: 1; background: var(--blush); display: grid; place-items: center; max-width: 300px; }
.show__cover--ph span { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; text-align: center; color: rgba(106,108,112,.55); line-height: 2; }
.show__meta { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--magenta); margin-bottom: var(--s2); }
.show__body .heading { margin-bottom: 6px; font-size: clamp(26px, 2.8vw, 36px); }
.show__body .cta-row { margin-top: var(--s3); }
.show .platforms__scroll { margin-top: var(--s3); }

/* ---------- Legal prose ---------- */
.prose--legal { max-width: 760px; margin-inline: auto; }
.prose--legal h2 {
  font-family: var(--font-body); font-weight: 400; font-size: 22px; line-height: 1.3;
  color: var(--periwinkle); margin-top: var(--s5);
}
.prose--legal h3 {
  font-size: 14px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--magenta); margin-top: var(--s3);
}
.prose--legal ul { display: grid; gap: 10px; padding-left: 22px; list-style: disc; }
.prose--legal ul li::marker { color: var(--magenta); }
.prose--legal a { color: var(--magenta); text-decoration: none; border-bottom: 1px solid rgba(162,33,127,.3); }
.prose--legal a:hover { border-bottom-color: currentColor; }
.legal-updated { margin-top: var(--s6); font-size: 14px; font-style: italic; text-align: center; color: rgba(106,108,112,.7); }

/* ---------- Mini course episodes ---------- */
.episodes { display: grid; gap: clamp(24px, 3.4vw, 40px); max-width: 820px; margin-inline: auto; }
.episode {
  display: grid; grid-template-columns: 120px 1fr; gap: clamp(16px, 3vw, 32px); align-items: center;
  background: var(--pure-white); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: clamp(16px, 3vw, 28px);
}
@media (max-width: 520px) { .episode { grid-template-columns: 1fr; } .episode__cover { max-width: 120px; } }
.episode__cover { border-radius: var(--radius); }
.episode__num { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--magenta); }
.episode__title { font-family: var(--font-body); font-weight: 400; font-size: 20px; color: var(--periwinkle); margin: 4px 0 12px; }
.episode audio { width: 100%; }

/* ---------- Application wizard ---------- */
.wizard-section .anchor { text-align: center; display: block; margin-bottom: var(--s4); }
.wizard { max-width: 680px; margin-inline: auto; background: var(--pure-white); border: 1px solid var(--hairline); border-radius: var(--radius); padding: clamp(24px, 5vw, 56px); }
.band-blush + .wizard-section { background: var(--white); }
.wizard__progress { margin-bottom: var(--s4); }
.wizard__count { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--magenta); margin-bottom: 10px; }
.wizard__bar { height: 3px; background: var(--hairline); border-radius: 2px; overflow: hidden; }
.wizard__bar span { display: block; height: 100%; background: var(--magenta); transition: width 0.35s ease; }
@media (prefers-reduced-motion: reduce) { .wizard__bar span { transition: none; } }
.wizard__q {
  display: block; font-family: var(--font-body); font-weight: 300;
  font-size: clamp(21px, 2.4vw, 27px); line-height: 1.35; color: var(--periwinkle);
  margin-bottom: var(--s3);
}
.wizard input[type="text"], .wizard input[type="email"], .wizard input[type="tel"], .wizard textarea {
  width: 100%; font-family: var(--font-body); font-weight: 300; font-size: 18px; line-height: 1.6;
  color: var(--charcoal); background: var(--white);
  border: 1px solid var(--hairline); border-radius: var(--radius); padding: 14px 16px;
}
.wizard input:focus, .wizard textarea:focus { outline: 2px solid var(--magenta); outline-offset: 1px; }
.wizard textarea { resize: vertical; min-height: 140px; }
.wizard [hidden] { display: none !important; }
.wizard__nav { display: flex; gap: var(--s2); justify-content: space-between; align-items: center; margin-top: var(--s4); flex-wrap: wrap; }
.wizard__nav [data-next], .wizard__nav [data-submit] { margin-left: auto; }
.wizard__hint { margin-top: var(--s2); font-size: 13px; letter-spacing: 0.08em; color: rgba(106,108,112,.6); text-align: right; }
.wizard__error { margin-top: var(--s2); font-size: 14px; color: var(--magenta); }
.wizard__thanks { text-align: center; padding: clamp(16px, 3vw, 32px) 0; }
.wizard__thanks-head { font-family: var(--font-body); font-weight: 300; font-size: clamp(26px, 3vw, 36px); color: var(--periwinkle); }
.wizard__thanks-body { margin-top: var(--s3); max-width: 42ch; margin-inline: auto; }
.wizard__thanks-sig { margin-top: var(--s4); font-size: clamp(40px, 5vw, 56px); color: var(--periwinkle); }

/* =============================================================================
   ROUND 8 — Opt-in band (home) + Media page
   ============================================================================= */

/* ---------- Mini Course opt-in: narrow horizontal band ---------- */
.optin-band { background: rgba(251, 226, 204, 0.42); border-block: 1px solid var(--hairline); }
.optin-band__inner {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: var(--s2) clamp(18px, 3vw, 40px);
  padding-block: clamp(28px, 4vw, 48px);
}
.optin-band__thumb { width: clamp(110px, 12vw, 150px); height: clamp(110px, 12vw, 150px); flex: none; border-radius: var(--radius); border: 1px solid var(--hairline); object-fit: cover; box-shadow: 0 8px 24px rgba(45, 27, 36, 0.12); }
.optin-band__copy { flex: 1 1 340px; min-width: 0; }
.optin-band__title { font-size: 17px; line-height: 26px; color: var(--periwinkle); }
.optin-band__title strong { color: var(--periwinkle); font-weight: 500; }
.optin-band__sub { font-size: 14px; line-height: 22px; margin-top: 2px; }
.optin-band__form { flex: 1 1 400px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.optin-band__form input {
  flex: 1 1 140px; min-width: 0; height: 48px; padding: 0 14px; font: inherit; font-size: 15px;
  background: var(--pure-white); border: 1px solid var(--hairline); color: var(--charcoal); border-radius: var(--radius);
}
.optin-band__form input::placeholder { color: rgba(106, 108, 112, 0.6); }
.optin-band__form .btn { flex: 0 0 auto; padding: 14px 24px; }
@media (max-width: 860px) {
  .optin-band__inner { flex-direction: column; align-items: flex-start; }
  .optin-band__thumb { width: 128px; height: 128px; }
  .optin-band__copy { flex: 1 1 auto; }
  .optin-band__form { flex: 1 1 auto; width: 100%; justify-content: flex-start; }
}

/* ---------- Media page ---------- */
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 32px); margin-top: var(--s4); }
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--pure-white); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: clamp(24px, 3.4vw, 40px); margin: 0;
}
.review-card blockquote { margin: 0; font-style: italic; font-size: 17px; line-height: 28px; color: var(--charcoal); }
.review-card figcaption { margin-top: var(--s3); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--magenta); font-weight: 400; }
.review-card figcaption em { display: block; text-transform: none; letter-spacing: 0.02em; font-size: 13px; color: var(--charcoal); margin-top: 4px; }
.review-card--wide { grid-column: 1 / -1; }
.roster-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px var(--s5); margin-top: var(--s4); font-size: 16px; }
@media (max-width: 640px) { .roster-list { grid-template-columns: 1fr; } }
.roster-list li strong { font-weight: 400; color: #4E5054; }
.roster-list li span { color: rgba(106, 108, 112, 0.65); font-size: 14px; }

.stat-callout { text-align: center; }
.stat-callout__num { font-size: clamp(80px, 11vw, 160px); color: var(--magenta); }
.stat-callout .lead { max-width: 46ch; margin-inline: auto; margin-top: var(--s3); }

.interviews { display: grid; gap: clamp(20px, 3vw, 32px); margin-top: var(--s4); }
.interview {
  background: var(--pure-white); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: clamp(20px, 3vw, 32px);
}
.interview__num { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--magenta); }
.interview__title { font-family: var(--font-body); font-weight: 400; font-size: clamp(19px, 1.8vw, 23px); line-height: 1.3; color: var(--periwinkle); margin: 6px 0 8px; }
.interview__desc { font-size: 16px; line-height: 26px; }
.interview__note { font-size: 14px; font-style: italic; color: rgba(106, 108, 112, 0.75); margin-top: 8px; }
.interview audio { width: 100%; margin-top: var(--s3); }

.media-sig { font-size: clamp(40px, 4vw, 56px); color: var(--periwinkle); margin-top: var(--s4); }
.logo-bar__caption { text-align: center; font-style: italic; font-size: 14px; margin-top: var(--s3); color: var(--charcoal); }

/* Featured host reviews — larger visual weight */
.review-card--featured { border-top: 2px solid var(--magenta); }
.review-card--featured blockquote { font-size: clamp(18px, 1.8vw, 22px); line-height: 1.55; color: #55575B; }
.reviews-note { margin-top: var(--s4); font-size: 15px; color: rgba(106, 108, 112, 0.8); }

/* ---------- ROUND 10: Kit opt-in honeypot ---------- */
.y5d-hp { position: absolute !important; left: -9999px !important; top: -9999px !important; height: 1px; width: 1px; overflow: hidden; }

/* =============================================================================
   ROUND 11 — Level CTAs + testimonial video thumbnail
   ============================================================================= */
.level__more { margin-top: var(--s3); font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--magenta); font-weight: 500; }
.cta-row--level { margin-top: var(--s2); }

.video-thumb { position: relative; display: block; max-width: 720px; margin: var(--s5) auto 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hairline); box-shadow: 0 12px 32px rgba(45, 27, 36, 0.14); }
.video-thumb img { width: 100%; height: auto; display: block; }
.video-thumb__play { position: absolute; inset: 0; display: grid; place-items: center; transition: transform 0.25s ease; }
.video-thumb:hover .video-thumb__play { transform: scale(1.07); }
.video-thumb__cta { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 16px 14px; text-align: center; background: linear-gradient(transparent, rgba(45, 27, 36, 0.62)); color: #FFFFFF; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
