/* ============================================================
   FIT MANTRA — DIWALI SHRED FEST
   Premium campaign landing page
   Fonts: Fraunces (editorial serif) · Manrope (modern sans)
   ============================================================ */

:root {
  --forest-950: #071f1a;
  --forest-900: #0b2f28;
  --forest-850: #0e3a31;
  --forest-800: #12453a;
  --brand: #166358;
  --brand-600: #1d7568;
  --sage-400: #9db5a4;
  --sage-200: #d5e0d2;
  --sage-100: #e9efe5;
  --ivory: #f8f4ea;
  --cream: #f2ecdd;
  --sand: #e9dfc7;
  --gold: #c69c52;
  --gold-deep: #a87f3a;
  --gold-glow: #eac177;
  --ink: #152420;
  --ink-soft: #4d6159;
  --line: rgba(21, 36, 31, .14);
  --line-soft: rgba(21, 36, 31, .08);
  --line-light: rgba(248, 244, 234, .16);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-luxe: cubic-bezier(.65, .05, 0, 1);
  --nav-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: rgba(198, 156, 82, .35); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Shared type ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
}
.eyebrow--light { color: var(--gold-glow); }

.h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--ink);
  text-wrap: balance;
}
.h2 em, .offer__title em, .finale__title em, .hero__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}
.h2--light { color: var(--ivory); }

.lead {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-top: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s, color .35s, border-color .35s;
  white-space: nowrap;
}
.btn__arrow { transition: transform .35s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-glow), var(--gold) 55%, var(--gold-deep));
  color: var(--forest-950);
  box-shadow: 0 10px 30px -12px rgba(198, 156, 82, .55);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -12px rgba(198, 156, 82, .65); }

.btn--dark { background: var(--forest-900); color: var(--ivory); }
.btn--dark:hover { background: var(--forest-800); transform: translateY(-2px); }

.btn--ivory { background: var(--ivory); color: var(--forest-900); }
.btn--ivory:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(0,0,0,.4); }

.btn--ghost {
  border-color: rgba(248, 244, 234, .35);
  color: var(--ivory);
}
.btn--ghost:hover { border-color: var(--gold-glow); color: var(--gold-glow); }

.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn--xl { padding: 20px 44px; font-size: 17px; }
.btn--block { width: 100%; }

/* ---------- Media slots (easy image replacement) ---------- */
.media-slot {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}
.media-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-slot__ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(198, 156, 82, .12), transparent 55%),
    linear-gradient(160deg, var(--sage-200), var(--sage-100) 55%, var(--cream));
}
.media-slot__ph::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(21, 36, 31, .22);
  border-radius: 12px;
  pointer-events: none;
}
.media-slot__ph-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(21, 36, 31, .3);
  display: grid;
  place-items: center;
  color: var(--brand);
}
.media-slot__ph-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.media-slot__ph-sub {
  font-size: 11px;
  color: var(--ink-soft);
  opacity: .75;
}
/* dark variant (used on deep-green sections) */
.media-slot--on-dark .media-slot__ph {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(234, 193, 119, .14), transparent 55%),
    linear-gradient(160deg, var(--forest-800), var(--forest-850) 60%, var(--forest-900));
}
.media-slot--on-dark .media-slot__ph::before { border-color: rgba(248, 244, 234, .28); }
.media-slot--on-dark .media-slot__ph-label { color: rgba(248, 244, 234, .8); }
.media-slot--on-dark .media-slot__ph-sub { color: rgba(248, 244, 234, .55); }
.media-slot--on-dark .media-slot__ph-icon { border-color: rgba(234, 193, 119, .5); color: var(--gold-glow); }

/* ---------- Festive particles ---------- */
.glow-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.glow-field .spark {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 193, 119, .95), rgba(234, 193, 119, 0) 70%);
  animation: drift var(--dur, 14s) ease-in-out var(--delay, 0s) infinite alternate;
  opacity: var(--op, .55);
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(var(--dx, 14px), var(--dy, -26px), 0); }
}

/* ---------- Reveal animations ---------- */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.rv.is-inview { opacity: 1; transform: none; }

.hero .reveal-line {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.hero.is-loaded .reveal-line { opacity: 1; transform: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background .45s var(--ease-out), box-shadow .45s, border-color .45s;
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand { display: inline-flex; align-items: center; gap: 12px; }
.nav__logo-chip {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ivory);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, .35);
  overflow: hidden;
  flex: none;
}
.nav__logo-chip img { width: 40px; height: 40px; }
.nav__brand-text {
  font-weight: 800;
  letter-spacing: .02em;
  font-size: 17px;
  color: var(--ivory);
  transition: color .45s;
}
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(248, 244, 234, .82);
  position: relative;
  padding: 6px 0;
  transition: color .3s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold-glow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: 14px; }

.nav.is-scrolled {
  background: rgba(248, 244, 234, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 10px 40px -22px rgba(21, 36, 31, .3);
}
.nav.is-scrolled .nav__brand-text,
.nav.is-scrolled .nav__links a { color: var(--ink); }
.nav.is-scrolled .nav__links a:hover { color: var(--brand); }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(248, 244, 234, .35);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav__burger span {
  width: 18px; height: 1.6px;
  background: var(--ivory);
  transition: transform .35s var(--ease-out), background .35s;
}
.nav.is-scrolled .nav__burger { border-color: var(--line); }
.nav.is-scrolled .nav__burger span { background: var(--ink); }
.nav__burger.is-open span:first-child { transform: translateY(3.8px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-3.8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: linear-gradient(165deg, var(--forest-900), var(--forest-950));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
  padding: 100px 32px 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease-out), visibility .45s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu__links a {
  font-family: var(--serif);
  font-size: clamp(30px, 8vw, 40px);
  font-weight: 400;
  color: var(--ivory);
  padding: 10px 0;
  border-bottom: 1px solid var(--line-light);
  transition: color .3s, padding-left .3s;
}
.mobile-menu__links a:hover { color: var(--gold-glow); padding-left: 8px; }
.mobile-menu__meta { font-size: 13px; letter-spacing: .08em; color: rgba(248, 244, 234, .6); text-transform: uppercase; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(90% 70% at 78% 30%, rgba(29, 117, 104, .5), transparent 60%),
    linear-gradient(160deg, var(--forest-850) 0%, var(--forest-900) 45%, var(--forest-950) 100%);
  color: var(--ivory);
  overflow: hidden;
  padding: calc(var(--nav-h) + 48px) 0 72px;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}
.hero__glow--a {
  width: 480px; height: 480px;
  right: 6%; top: 12%;
  background: radial-gradient(circle, rgba(234, 193, 119, .22), transparent 65%);
  animation: glowFloat 11s ease-in-out infinite alternate;
}
.hero__glow--b {
  width: 380px; height: 380px;
  left: -6%; bottom: -10%;
  background: radial-gradient(circle, rgba(29, 117, 104, .5), transparent 65%);
  animation: glowFloat 13s ease-in-out infinite alternate-reverse;
}
@keyframes glowFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(24px, -20px, 0) scale(1.06); }
}
.hero__rings {
  position: absolute;
  right: -140px; top: 4%;
  width: min(780px, 60vw);
  color: rgba(248, 244, 234, .14);
}

.hero__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero__eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-glow);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.hero__eyebrow .dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-glow);
  box-shadow: 0 0 12px 3px rgba(234, 193, 119, .6);
}
.hero__eyebrow-sep { opacity: .5; }

.hero__title {
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.hero__title .reveal-line { display: block; }
.hero__title em { color: var(--gold-glow); font-weight: 300; }
.hero__title .reveal-line:nth-child(1) { transition-delay: .08s; }
.hero__title .reveal-line:nth-child(2) { transition-delay: .18s; }
.hero__title .reveal-line:nth-child(3) { transition-delay: .28s; }
.hero__title .reveal-line:nth-child(4) { transition-delay: .38s; }

.hero__sub {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(248, 244, 234, .78);
  max-width: 46ch;
  transition-delay: .5s;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  transition-delay: .62s;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 16px;
  margin-top: 44px;
  transition-delay: .74s;
}
.hero__batches {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 22px;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  background: rgba(248, 244, 234, .05);
  backdrop-filter: blur(6px);
}
.hero__batch { display: flex; flex-direction: column; gap: 2px; }
.hero__batch-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(248, 244, 234, .55);
}
.hero__batch-date {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ivory);
}
.hero__batch-sep { width: 1px; align-self: stretch; background: var(--line-light); }

.hero__price-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 16px;
  border: 1px solid rgba(234, 193, 119, .4);
  background: linear-gradient(135deg, rgba(234, 193, 119, .14), rgba(234, 193, 119, .05));
}
.hero__price-chip s { color: rgba(248, 244, 234, .5); font-size: 14px; }
.hero__price-chip strong { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--gold-glow); }
.hero__price-chip span {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--forest-950);
  background: var(--gold-glow);
  padding: 4px 9px;
  border-radius: 999px;
}

/* Hero visual */
.hero__visual { position: relative; justify-self: end; width: 100%; max-width: 480px; }
.hero__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 46% 54% 52% 48% / 42% 44% 56% 58%;
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .55);
  transform: scale(1.03);
  opacity: 0;
  transition: transform 1.6s var(--ease-luxe), opacity 1.2s var(--ease-out);
}
.hero.is-loaded .hero__frame { transform: scale(1); opacity: 1; }
.hero__frame-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(200deg, rgba(234, 193, 119, .18), transparent 40%);
  mix-blend-mode: screen;
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: -8% -12%;
  background: radial-gradient(50% 50% at 55% 45%, rgba(234, 193, 119, .25), transparent 70%);
  filter: blur(30px);
  z-index: -1;
}

.hero__badge {
  position: absolute;
  left: -34px; bottom: 8%;
  width: 124px; height: 124px;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1s var(--ease-out) .9s, transform 1s var(--ease-out) .9s;
}
.hero.is-loaded .hero__badge { opacity: 1; transform: none; }
.hero__badge-ring {
  position: absolute;
  inset: 0;
  animation: spin 26s linear infinite;
}
.hero__badge-ring text {
  font-size: 10.4px;
  font-weight: 700;
  letter-spacing: .22em;
  fill: var(--gold-glow);
  text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero__badge-core {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: rgba(7, 31, 26, .72);
  border: 1px solid rgba(234, 193, 119, .45);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  color: var(--ivory);
}
.hero__badge-core small {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-glow);
}

.hero__scrollcue {
  position: absolute;
  left: 50%; bottom: 26px;
  width: 1px; height: 54px;
  background: rgba(248, 244, 234, .18);
  overflow: hidden;
}
.hero__scrollcue span {
  position: absolute;
  left: 0; top: -50%;
  width: 100%; height: 50%;
  background: var(--gold-glow);
  animation: cue 2.2s var(--ease-luxe) infinite;
}
@keyframes cue { to { top: 110%; } }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  background: var(--ivory);
  border-bottom: 1px solid var(--line-soft);
}
.trust__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}
.trust__item { display: flex; flex-direction: column; gap: 2px; position: relative; padding-right: clamp(20px, 3vw, 40px); }
.trust__item::after {
  content: "";
  position: absolute;
  right: 0; top: 12%;
  height: 76%; width: 1px;
  background: var(--line);
}
.trust__num {
  font-family: var(--serif);
  font-size: clamp(34px, 3.4vw, 46px);
  font-weight: 500;
  color: var(--forest-900);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.trust__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.trust__note {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 42ch;
  justify-self: end;
}

/* ============================================================
   FOUNDER
   ============================================================ */
.founder {
  background:
    radial-gradient(70% 60% at 12% 20%, rgba(198, 156, 82, .08), transparent 60%),
    var(--cream);
  padding: clamp(90px, 11vw, 150px) 0;
  overflow: hidden;
}
.founder__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.founder__visual { position: relative; }
.media-slot--founder {
  aspect-ratio: 4 / 5;
  border-radius: 220px 220px 22px 22px;
  box-shadow: 0 40px 80px -34px rgba(21, 36, 31, .45);
}
.founder__cred {
  position: absolute;
  right: -8px;
  bottom: 36px;
  width: min(262px, 72%);
  background: rgba(248, 244, 234, .94);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 24px 50px -24px rgba(21, 36, 31, .35);
}
.founder__cred-tag {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid rgba(198, 156, 82, .5);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.founder__cred strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--forest-900);
}
.founder__cred > span:not(.founder__cred-tag) { font-size: 13px; color: var(--ink-soft); }
.founder__cred-line {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  font-size: 12.5px !important;
  line-height: 1.5;
}

.founder__quote {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 33px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--forest-900);
  margin-bottom: 28px;
  text-wrap: balance;
}
.founder__quote em { font-style: italic; color: var(--brand); }
.founder__text { color: var(--ink-soft); margin-bottom: 16px; max-width: 56ch; }
.founder__promise {
  border-left: 2px solid var(--gold);
  padding-left: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--forest-800);
  margin: 26px 0 32px;
  max-width: 52ch;
}

/* ============================================================
   PROGRAM
   ============================================================ */
.program {
  background: var(--ivory);
  padding: clamp(90px, 11vw, 150px) 0;
}
.program__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.program__intro { position: sticky; top: calc(var(--nav-h) + 32px); }
.program__intro .btn { margin-top: 30px; }

.program__features { display: flex; flex-direction: column; }
.feature {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  transition: background .4s, padding-left .4s var(--ease-out);
}
.feature:last-child { border-bottom: 1px solid var(--line); }
.feature:hover { padding-left: 8px; }
.feature__num {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 300;
  color: var(--gold-deep);
  line-height: 1.1;
}
.feature__body h3 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 8px;
  color: var(--forest-900);
}
.feature__body p { color: var(--ink-soft); max-width: 54ch; }

.feature--app {
  background: linear-gradient(150deg, var(--forest-800), var(--forest-900));
  border-radius: 22px;
  padding: 34px 30px;
  border-top: 0;
  margin: 14px 0;
}
.feature--app:hover { padding-left: 30px; transform: translateY(-3px); }
.feature--app .feature__num { color: var(--gold-glow); }
.feature--app h3 { color: var(--ivory); }
.feature--app p { color: rgba(248, 244, 234, .72); }
.feature__list {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.feature__list li {
  font-size: 13px;
  font-weight: 600;
  color: var(--ivory);
  border: 1px solid var(--line-light);
  background: rgba(248, 244, 234, .06);
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.feature__list li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-glow);
}

.feature--bonus {
  background: linear-gradient(150deg, rgba(233, 223, 199, .8), rgba(233, 223, 199, .35));
  border: 1px solid rgba(198, 156, 82, .35);
  border-radius: 22px;
  padding: 34px 30px;
}
.feature--bonus:hover { padding-left: 30px; transform: translateY(-3px); }
.feature--bonus strong { color: var(--gold-deep); }

/* ============================================================
   OFFER + COUNTDOWN
   ============================================================ */
.offer {
  position: relative;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(29, 117, 104, .35), transparent 60%),
    linear-gradient(170deg, var(--forest-900), var(--forest-950));
  color: var(--ivory);
  padding: clamp(100px, 12vw, 160px) 0;
  overflow: hidden;
}
.offer__glow {
  position: absolute;
  top: -140px; left: 50%;
  transform: translateX(-50%);
  width: 720px; height: 420px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(234, 193, 119, .16), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.offer__inner {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.offer__head .eyebrow { justify-content: center; }
.offer__head .eyebrow::before { display: none; }
.offer__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.15;
}
.offer__price { display: inline-flex; align-items: baseline; gap: 16px; margin-top: 10px; }
.offer__price s {
  font-size: clamp(22px, 2.4vw, 30px);
  color: rgba(248, 244, 234, .45);
  font-weight: 500;
}
.offer__price strong {
  font-family: var(--serif);
  font-size: clamp(52px, 6.4vw, 88px);
  font-weight: 500;
  line-height: 1;
  color: var(--gold-glow);
  text-shadow: 0 0 46px rgba(234, 193, 119, .35);
}
.offer__sub {
  margin: 18px auto 0;
  color: rgba(248, 244, 234, .7);
  max-width: 54ch;
  font-size: 15.5px;
}

/* Countdown */
.countdown { margin: 54px auto 0; max-width: 720px; }
.countdown__toggle {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: rgba(248, 244, 234, .05);
}
.countdown__tab {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(248, 244, 234, .65);
  transition: background .35s, color .35s;
}
.countdown__tab.is-active {
  background: var(--gold-glow);
  color: var(--forest-950);
}
.countdown__label {
  margin-top: 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(248, 244, 234, .55);
}
.countdown__grid {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3.4vw, 34px);
}
.countdown__cell { display: flex; flex-direction: column; gap: 6px; min-width: clamp(64px, 10vw, 110px); }
.countdown__num {
  font-family: var(--serif);
  font-size: clamp(46px, 7vw, 84px);
  font-weight: 300;
  line-height: 1;
  color: var(--ivory);
  font-variant-numeric: tabular-nums;
}
.countdown__unit {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-glow);
}
.countdown__sep {
  width: 1px;
  height: clamp(48px, 6vw, 72px);
  background: linear-gradient(to bottom, transparent, rgba(234, 193, 119, .5), transparent);
  animation: sepPulse 2.6s ease-in-out infinite;
}
@keyframes sepPulse { 50% { opacity: .35; } }

/* Batch cards */
.batches {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}
.batch-card {
  border: 1px solid var(--line-light);
  background: rgba(248, 244, 234, .05);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .45s var(--ease-out), border-color .45s, background .45s;
}
.batch-card:hover { transform: translateY(-5px); border-color: rgba(234, 193, 119, .45); background: rgba(248, 244, 234, .08); }
.batch-card--alt { border-color: rgba(234, 193, 119, .4); background: linear-gradient(160deg, rgba(234, 193, 119, .12), rgba(248, 244, 234, .05)); }
.batch-card__top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.batch-card__tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-glow);
}
.batch-card__note {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(248, 244, 234, .55);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  padding: 4px 10px;
}
.batch-card__date { font-size: 19px; color: rgba(248, 244, 234, .8); }
.batch-card__date strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--ivory);
  display: block;
  margin-top: 2px;
}
.batch-card__meta { font-size: 13.5px; color: rgba(248, 244, 234, .55); }
.batch-card .btn { margin-top: 8px; }

.offer__hamper {
  margin-top: 40px;
  font-size: 14px;
  color: rgba(248, 244, 234, .65);
}
.offer__hamper strong { color: var(--gold-glow); }

/* ============================================================
   6-WEEK JOURNEY
   ============================================================ */
.journey {
  background:
    radial-gradient(60% 50% at 90% 10%, rgba(157, 181, 164, .25), transparent 60%),
    linear-gradient(180deg, var(--sage-100), var(--ivory) 70%);
  padding: clamp(90px, 11vw, 150px) 0 clamp(80px, 9vw, 120px);
}
.journey__head {
  max-width: 1280px;
  margin: 0 auto 60px;
  padding: 0 32px;
  max-width: 1280px;
}
.journey__track {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.journey__line {
  position: absolute;
  top: 33px;
  left: 32px;
  right: 32px;
  height: 1px;
  background: var(--line);
}
.journey__line-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(to right, var(--brand), var(--gold));
  transition: width 2.2s var(--ease-luxe) .3s;
}
.journey__track.is-inview .journey__line-fill { width: 100%; }

.journey__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.jstep { position: relative; }
.jstep__head {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}
.jstep__num {
  width: 66px; height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ivory);
  border: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--forest-900);
  margin-bottom: 12px;
  transition: background .45s, color .45s, border-color .45s, box-shadow .45s, transform .45s var(--ease-out);
}
.jstep__week {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  white-space: nowrap;
}
.jstep__title {
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--forest-900);
  letter-spacing: -.01em;
}
.jstep__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .7s var(--ease-luxe), opacity .6s var(--ease-out);
}
.jstep__body p { font-size: 13.5px; line-height: 1.65; color: var(--ink-soft); }
.jstep__quote {
  margin-top: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13.5px !important;
  color: var(--brand) !important;
}
.jstep.is-active .jstep__num {
  background: var(--forest-900);
  color: var(--gold-glow);
  border-color: var(--forest-900);
  box-shadow: 0 14px 30px -14px rgba(11, 47, 40, .6);
  transform: translateY(-4px);
}
.jstep.is-active .jstep__body { max-height: 340px; opacity: 1; margin-top: 14px; }

/* ============================================================
   S.H.R.E.D. PROTOCOL
   ============================================================ */
.shred {
  position: relative;
  background:
    radial-gradient(70% 55% at 85% 0%, rgba(29, 117, 104, .4), transparent 60%),
    linear-gradient(180deg, var(--forest-950), var(--forest-900) 80%);
  color: var(--ivory);
  padding: clamp(100px, 12vw, 160px) 0;
  overflow: hidden;
}
.shred__head {
  position: relative;
  max-width: 1280px;
  margin: 0 auto 60px;
  padding: 0 32px;
}
.shred__head .h2 em { color: var(--gold-glow); }

.shred__panels {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 14px;
  min-height: 480px;
}
.spanel {
  position: relative;
  flex: 1;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  background: rgba(248, 244, 234, .04);
  overflow: hidden;
  transition: flex .8s var(--ease-luxe), background .6s, border-color .6s;
  display: flex;
  flex-direction: column;
}
.spanel:hover { border-color: rgba(234, 193, 119, .35); }
.spanel.is-open {
  flex: 2.8;
  background: linear-gradient(165deg, rgba(234, 193, 119, .12), rgba(248, 244, 234, .05) 55%);
  border-color: rgba(234, 193, 119, .5);
}
.spanel__head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 26px;
  text-align: left;
}
.spanel__letter {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  line-height: 1;
  color: rgba(248, 244, 234, .35);
  transition: color .6s, text-shadow .6s;
}
.spanel.is-open .spanel__letter {
  color: var(--gold-glow);
  text-shadow: 0 0 40px rgba(234, 193, 119, .45);
}
.spanel__title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1.5;
  color: rgba(248, 244, 234, .85);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: opacity .4s;
}
.spanel.is-open .spanel__title {
  writing-mode: horizontal-tb;
  transform: none;
  color: var(--ivory);
  font-size: 15px;
}
.spanel__chev { display: none; }
.spanel__body {
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .8s var(--ease-luxe), opacity .55s var(--ease-out) .12s, padding .6s;
}
.spanel.is-open .spanel__body {
  max-height: 320px;
  opacity: 1;
  padding: 4px 26px 30px;
}
.spanel__body p { font-size: 14.5px; line-height: 1.7; color: rgba(248, 244, 234, .72); max-width: 40ch; }
.spanel__punch {
  margin-top: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px !important;
  color: var(--gold-glow) !important;
}

/* ============================================================
   WHO SHOULD JOIN
   ============================================================ */
.who {
  background: var(--ivory);
  padding: clamp(90px, 11vw, 140px) 0;
}
.who__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.who__list { border-top: 1px solid var(--line); }
.who__list li {
  position: relative;
  padding: 22px 4px 22px 42px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  color: var(--ink);
}
.who__list strong { color: var(--forest-800); }
.who__check {
  position: absolute;
  left: 0; top: 20px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--forest-900);
}
.who__check::after {
  content: "";
  position: absolute;
  left: 8px; top: 7px;
  width: 8px; height: 5px;
  border-left: 2px solid var(--gold-glow);
  border-bottom: 2px solid var(--gold-glow);
  transform: rotate(-45deg) translateY(-1px);
}
.who__disclaimer {
  margin-top: 26px;
  background: var(--cream);
  border: 1px solid rgba(198, 156, 82, .4);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.who__disclaimer strong { color: var(--forest-900); display: block; margin-bottom: 4px; }

/* ============================================================
   TRANSFORMATIONS (before / after)
   ============================================================ */
.transform {
  background:
    radial-gradient(50% 40% at 8% 90%, rgba(198, 156, 82, .1), transparent 60%),
    var(--cream);
  padding: clamp(90px, 11vw, 150px) 0;
}
.transform__head {
  max-width: 1280px;
  margin: 0 auto 56px;
  padding: 0 32px;
  max-width: 1280px;
}
.transform__quote {
  margin-top: 26px;
  max-width: 620px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  color: var(--forest-800);
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}
.transform__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 10px;
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.transform__grid::-webkit-scrollbar { display: none; }
.transform__grid .ba { flex: 0 0 calc((100% - 52px) / 3); scroll-snap-align: start; }
.transform__controls {
  max-width: 1280px;
  margin: 20px auto 0;
  padding: 0 32px;
  display: flex;
  gap: 10px;
}
.ba { display: flex; flex-direction: column; gap: 14px; }
.ba__stage {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(21, 36, 31, .4);
  --pos: 50%;
}
.ba__stage .media-slot { position: absolute; inset: 0; }
.ba__after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--pos));
}
.ba__after .media-slot__ph {
  background:
    radial-gradient(120% 90% at 50% 100%, rgba(234, 193, 119, .25), transparent 55%),
    linear-gradient(160deg, var(--sand), var(--cream) 60%, var(--ivory));
}
.ba__tag {
  position: absolute;
  top: 14px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  z-index: 3;
  pointer-events: none;
}
.ba__tag--before { left: 14px; background: rgba(21, 36, 31, .55); color: var(--ivory); }
.ba__tag--after { right: 14px; background: rgba(234, 193, 119, .9); color: var(--forest-950); }
.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  background: rgba(248, 244, 234, .95);
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 0 16px rgba(0, 0, 0, .3);
}
.ba__handle span {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px -6px rgba(21, 36, 31, .45);
}
.ba__handle span::before,
.ba__handle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px; height: 7px;
  border-top: 2px solid var(--forest-900);
  border-left: 2px solid var(--forest-900);
}
.ba__handle span::before { left: 10px; transform: translateY(-50%) rotate(-45deg); }
.ba__handle span::after { right: 10px; transform: translateY(-50%) rotate(135deg); }
.ba__range {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  -webkit-appearance: none;
  appearance: none;
}
.ba figcaption { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.ba figcaption strong { font-size: 15px; letter-spacing: .02em; color: var(--forest-900); }
.ba figcaption span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi {
  background:
    radial-gradient(60% 50% at 95% 20%, rgba(29, 117, 104, .14), transparent 60%),
    var(--sage-100);
  padding: clamp(90px, 11vw, 150px) 0;
  overflow: hidden;
}
.testi__head { max-width: 1280px; margin: 0 auto 52px; padding: 0 32px; }
.testi__layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: stretch;
}
.testi__featured .media-slot {
  aspect-ratio: 4 / 3.4;
  border-radius: 24px;
  box-shadow: 0 30px 60px -26px rgba(21, 36, 31, .35);
}
.testi__rail-wrap { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.testi__rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.testi__rail::-webkit-scrollbar { display: none; }
.testi__card {
  flex: 0 0 min(78%, 300px);
  scroll-snap-align: start;
}
.testi__card .media-slot {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  box-shadow: 0 18px 40px -22px rgba(21, 36, 31, .3);
  transition: transform .45s var(--ease-out);
}
.testi__card:hover .media-slot { transform: translateY(-4px); }
.testi__controls { display: flex; gap: 10px; }
.testi__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--forest-900);
  font-size: 17px;
  display: grid;
  place-items: center;
  transition: background .35s, color .35s, transform .35s var(--ease-out);
}
.testi__btn:hover { background: var(--forest-900); color: var(--gold-glow); transform: translateY(-2px); }

/* ============================================================
   TEAM
   ============================================================ */
.team {
  background: var(--cream);
  padding: clamp(90px, 11vw, 150px) 0;
}
.team__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.team__points { margin-top: 26px; display: flex; flex-direction: column; gap: 0; }
.team__points li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--forest-900);
  display: flex;
  align-items: center;
  gap: 12px;
}
.team__points li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}
.team__visual { position: relative; }
.media-slot--team {
  aspect-ratio: 16 / 11;
  border-radius: 24px;
  box-shadow: 0 40px 80px -34px rgba(21, 36, 31, .45);
}
.team__caption {
  position: absolute;
  left: 18px; bottom: 18px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(7, 31, 26, .68);
  backdrop-filter: blur(8px);
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(248, 244, 234, .2);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--ivory);
  padding: clamp(90px, 11vw, 150px) 0;
  border-top: 1px solid var(--line-soft);
}
.about__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.about__left { position: sticky; top: calc(var(--nav-h) + 32px); }
.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.pillar {
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .4s;
}
.pillar:hover { background: rgba(157, 181, 164, .12); }
.pillar h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--forest-900);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.pillar p { font-size: 14px; line-height: 1.65; color: var(--ink-soft); }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats {
  position: relative;
  background:
    radial-gradient(70% 90% at 50% 110%, rgba(198, 156, 82, .14), transparent 60%),
    linear-gradient(180deg, var(--forest-900), var(--forest-950));
  color: var(--ivory);
  padding: clamp(80px, 9vw, 120px) 0;
  overflow: hidden;
}
.stats__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  text-align: center;
}
.stats__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 300;
  line-height: 1;
  color: var(--ivory);
  font-variant-numeric: tabular-nums;
}
.stats__num em { font-style: normal; color: var(--gold-glow); }
.stats__label {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(248, 244, 234, .6);
}
.stats__divider {
  width: 1px;
  height: 90px;
  background: linear-gradient(to bottom, transparent, rgba(234, 193, 119, .4), transparent);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--ivory);
  padding: clamp(90px, 11vw, 150px) 0;
}
.faq__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.faq__intro { position: sticky; top: calc(var(--nav-h) + 32px); }
.faq__intro a { color: var(--brand); font-weight: 700; border-bottom: 1px solid rgba(22, 99, 88, .35); }

.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--forest-900);
  cursor: pointer;
  transition: color .3s;
  letter-spacing: -.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--brand); }
.faq__icon {
  flex: none;
  position: relative;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: background .4s, border-color .4s, transform .5s var(--ease-out);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--forest-900);
  transition: background .4s, transform .5s var(--ease-out);
}
.faq__icon::before { width: 12px; height: 1.6px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 1.6px; height: 12px; transform: translate(-50%, -50%); }
.faq__item.is-open .faq__icon { background: var(--forest-900); border-color: var(--forest-900); transform: rotate(135deg); }
.faq__item.is-open .faq__icon::before, .faq__item.is-open .faq__icon::after { background: var(--gold-glow); }
.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .6s var(--ease-luxe);
}
.faq__answer p {
  padding: 0 44px 26px 4px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 64ch;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.finale {
  position: relative;
  background:
    radial-gradient(60% 50% at 50% 100%, rgba(29, 117, 104, .45), transparent 65%),
    linear-gradient(180deg, var(--forest-950), #051712);
  color: var(--ivory);
  text-align: center;
  padding: clamp(110px, 13vw, 180px) 0;
  overflow: hidden;
}
.finale__glow {
  position: absolute;
  left: 50%; bottom: -180px;
  transform: translateX(-50%);
  width: 860px; height: 520px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(234, 193, 119, .2), transparent 70%);
  filter: blur(36px);
  pointer-events: none;
  animation: glowFloat 12s ease-in-out infinite alternate;
}
.finale__inner { position: relative; max-width: 900px; margin: 0 auto; padding: 0 32px; }
.finale__inner .eyebrow { justify-content: center; }
.finale__inner .eyebrow::before { display: none; }
.finale__title {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.finale__title span { display: block; }
.finale__title em { color: var(--gold-glow); font-weight: 300; }
.finale__sub {
  margin-top: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(248, 244, 234, .75);
}
.finale__facts {
  margin: 46px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--line-light);
  border-radius: 20px;
  background: rgba(248, 244, 234, .04);
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.finale__fact {
  padding: 20px 34px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--line-light);
}
.finale__fact:last-child { border-right: 0; }
.finale__fact span {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(248, 244, 234, .55);
}
.finale__fact strong { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ivory); }
.finale__fact--price strong { color: var(--gold-glow); }
.finale__fact--price s { font-size: 15px; color: rgba(248, 244, 234, .45); margin-right: 6px; }
.finale .btn--xl { margin-top: 44px; }
.finale__note {
  margin-top: 22px;
  font-size: 12.5px;
  letter-spacing: .04em;
  color: rgba(248, 244, 234, .45);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #051712;
  color: var(--ivory);
  border-top: 1px solid var(--line-light);
  padding: 70px 0 40px;
}
.footer__inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.footer__brand { display: flex; align-items: center; gap: 18px; margin-bottom: 44px; }
.footer__logo-chip {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--ivory);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: none;
}
.footer__logo-chip img { width: 66px; height: 66px; }
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: rgba(248, 244, 234, .75);
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.footer__label {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-glow);
  margin-bottom: 8px;
}
.footer__col a, .footer__col p { font-size: 15px; color: rgba(248, 244, 234, .8); line-height: 1.6; }
.footer__col a:hover { color: var(--gold-glow); }
.footer__base {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 30px;
  font-size: 12.5px;
  color: rgba(248, 244, 234, .45);
}
.footer__legal { max-width: 62ch; line-height: 1.6; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 12px 12px 18px;
  background: rgba(7, 31, 26, .92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(234, 193, 119, .3);
  border-radius: 18px;
  box-shadow: 0 20px 50px -18px rgba(0, 0, 0, .6);
  transform: translateY(140%);
  transition: transform .55s var(--ease-luxe);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__info { display: flex; flex-direction: column; line-height: 1.3; }
.sticky-cta__info strong { font-size: 14px; color: var(--ivory); }
.sticky-cta__info span { font-size: 12px; color: rgba(248, 244, 234, .65); }
.sticky-cta__info s { opacity: .6; margin-right: 4px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav__links { gap: 22px; }
  .hero__inner { gap: 40px; }
  .spanel__title { font-size: 12px; }
}

@media (max-width: 980px) {
  :root { --nav-h: 72px; }

  /* Hero stacks: copy → meta → visual */
  .hero { padding-top: calc(var(--nav-h) + 40px); min-height: 0; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { justify-self: center; max-width: 420px; margin-top: 12px; }
  .hero__badge { left: auto; right: -8px; bottom: -14px; width: 104px; height: 104px; }
  .hero__badge-core { width: 62px; height: 62px; font-size: 20px; }
  .hero__rings { right: -40%; opacity: .6; }
  .hero__scrollcue { display: none; }

  .founder__inner,
  .program__inner,
  .who__inner,
  .team__inner,
  .about__inner,
  .faq__inner { grid-template-columns: 1fr; }

  .program__intro,
  .about__left,
  .faq__intro { position: static; }

  .founder__visual { max-width: 460px; margin: 0 auto; }
  .founder__cred { right: 0; }

  .testi__layout { grid-template-columns: 1fr; }
  .testi__featured .media-slot { aspect-ratio: 4 / 3; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  /* Journey → vertical timeline */
  .journey__line {
    top: 0; bottom: 0;
    left: calc(32px + 24px);
    right: auto;
    width: 1px;
    height: auto;
  }
  .journey__line-fill {
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, var(--brand), var(--gold));
    transition: height 2.2s var(--ease-luxe) .3s;
  }
  .journey__track.is-inview .journey__line-fill { height: 100%; width: 100%; }
  .journey__steps { grid-template-columns: 1fr; gap: 10px; }
  .jstep { padding-left: 0; }
  .jstep__head {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
  }
  .jstep__num { width: 48px; height: 48px; font-size: 17px; margin-bottom: 0; flex: none; }
  .jstep__week { order: 3; margin-left: auto; }
  .jstep__title { font-size: 16px; }
  .jstep__body { padding-left: 66px; }
  .jstep.is-active .jstep__body { margin-top: 0; padding-bottom: 12px; }

  /* SHRED → stacked accordion */
  .shred__panels { flex-direction: column; min-height: 0; }
  .spanel { flex: none; }
  .spanel__head {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 22px;
  }
  .spanel__letter { font-size: 40px; flex: none; }
  .spanel__title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 14px;
  }
  .spanel.is-open .spanel__title { font-size: 14px; }
  .spanel__chev {
    display: block;
    margin-left: auto;
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1px solid var(--line-light);
    position: relative;
    flex: none;
    transition: transform .5s var(--ease-out), background .4s;
  }
  .spanel__chev::before, .spanel__chev::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    background: var(--ivory);
  }
  .spanel__chev::before { width: 10px; height: 1.4px; transform: translate(-50%, -50%); }
  .spanel__chev::after { width: 1.4px; height: 10px; transform: translate(-50%, -50%); transition: transform .5s var(--ease-out); }
  .spanel.is-open .spanel__chev { transform: rotate(135deg); background: rgba(234, 193, 119, .15); }
  .spanel.is-open .spanel__body { max-height: 400px; padding: 0 22px 24px; }
  .spanel__body p { max-width: none; }

  /* Stats */
  .stats__inner { grid-template-columns: 1fr; gap: 34px; }
  .stats__divider { width: 120px; height: 1px; margin: 0 auto; background: linear-gradient(to right, transparent, rgba(234,193,119,.4), transparent); }

  /* Sticky CTA shows on mobile */
  .sticky-cta { display: flex; }
}

@media (max-width: 760px) {
  .trust__inner { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .trust__item { padding-right: 0; align-items: center; text-align: center; }
  .trust__item::after { display: none; }
  .trust__note { grid-column: 1 / -1; justify-self: center; text-align: center; margin-top: 6px; }

  .batches { grid-template-columns: 1fr; }
  .transform__grid .ba { flex-basis: min(84%, 400px); }
  .about__pillars { grid-template-columns: 1fr; }

  .finale__facts { flex-direction: column; }
  .finale__fact { border-right: 0; border-bottom: 1px solid var(--line-light); align-items: center; }
  .finale__fact:last-child { border-bottom: 0; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__base { flex-direction: column; gap: 12px; }
}

@media (max-width: 560px) {
  .nav__inner { padding: 0 18px; }
  .nav__brand-text { display: none; }
  .nav__actions .btn { display: none; }

  .hero__inner,
  .trust__inner,
  .founder__inner,
  .program__inner,
  .offer__inner,
  .journey__head,
  .journey__track,
  .shred__head,
  .shred__panels,
  .who__inner,
  .transform__head,
  .transform__grid,
  .testi__head,
  .testi__layout,
  .team__inner,
  .about__inner,
  .stats__inner,
  .faq__inner,
  .finale__inner,
  .footer__inner { padding-left: 20px; padding-right: 20px; }

  .hero__cta-row .btn { width: 100%; }
  .hero__eyebrow { display: block; line-height: 2; letter-spacing: .18em; }
  .hero__meta { flex-direction: column; align-items: stretch; }
  .hero__batches { justify-content: space-between; }
  .hero__price-chip { justify-content: center; }

  .countdown__grid { gap: 8px; }
  .countdown__cell { min-width: 60px; }

  .feature { grid-template-columns: 1fr; gap: 8px; }
  .feature--app, .feature--bonus { padding: 28px 22px; }
  .feature--app:hover, .feature--bonus:hover { padding-left: 22px; }

  .founder__cred { position: relative; width: 100%; right: auto; bottom: auto; margin-top: -34px; margin-left: auto; margin-right: auto; }
  .media-slot--founder { border-radius: 160px 160px 20px 20px; }

  .team__caption { left: 12px; bottom: 12px; font-size: 10.5px; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }
  .rv, .hero .reveal-line, .hero__frame, .hero__badge { opacity: 1 !important; transform: none !important; }
  .glow-field { display: none; }
  .journey__line-fill { width: 100% !important; height: 100% !important; }
}

/* ============================================================
   FESTIVE LAYER — diyas, arcs, twinkle, shine
   ============================================================ */

/* Sections hosting decorations need positioning context */
.founder, .program, .who, .transform, .testi, .team, .about, .faq { position: relative; }
.who, .team, .transform { overflow: hidden; }

/* ---------- Diya motif (line-art, flickering flame) ---------- */
.diya {
  position: absolute;
  color: var(--gold);
  filter: drop-shadow(0 0 16px rgba(234, 193, 119, .45));
  pointer-events: none;
  z-index: 2;
}
.diya__flame {
  fill: var(--gold-glow);
  transform-origin: 60px 46px;
  animation: flicker 2.6s ease-in-out infinite;
}
.diya__bowl, .diya__rim {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes flicker {
  0%, 100% { transform: scaleY(1) rotate(-2deg); }
  30%      { transform: scaleY(1.1) rotate(1.6deg); }
  60%      { transform: scaleY(.94) rotate(-1deg); }
}
@keyframes diyaFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-9px); }
}
.diya--hero {
  left: 34px; bottom: 46px;
  width: 86px;
  opacity: .95;
  animation: diyaFloat 7s ease-in-out infinite alternate;
}
.diya--offer { width: 66px; bottom: 60px; opacity: .6; animation: diyaFloat 8s ease-in-out infinite alternate; }
.diya--offer-l { left: 5%; }
.diya--offer-r { right: 5%; animation-delay: -3.5s; }
.diya--finale {
  position: relative;
  display: block;
  width: 92px;
  margin: 0 auto 28px;
  opacity: .95;
  animation: diyaFloat 6.5s ease-in-out infinite alternate;
}
.diya--footer {
  position: relative;
  display: inline-block;
  width: 26px;
  vertical-align: -7px;
  margin-right: 12px;
  filter: drop-shadow(0 0 8px rgba(234, 193, 119, .55));
}

/* ---------- Decorative festive arcs (slow-spinning dotted rings) ---------- */
.deco-arcs {
  position: absolute;
  color: var(--gold);
  opacity: .26;
  pointer-events: none;
  animation: spin 90s linear infinite;
}
.deco-arcs--founder { width: 430px; right: -90px; top: -70px; }
.deco-arcs--program { width: 380px; left: -130px; bottom: -90px; color: var(--brand); opacity: .18; animation-direction: reverse; }
.deco-arcs--who     { width: 330px; right: -110px; top: 10%; }
.deco-arcs--testi   { width: 390px; left: -130px; top: -70px; color: var(--brand); opacity: .16; }
.deco-arcs--faq     { width: 320px; left: -120px; bottom: 4%; animation-direction: reverse; }

/* ---------- Light-section particles (muted gold confetti dots) ---------- */
.glow-field--light .spark {
  background: radial-gradient(circle, rgba(198, 156, 82, .9), rgba(198, 156, 82, 0) 70%);
}

/* ---------- Twinkle (opacity pulse layered on drift) ---------- */
.glow-field .spark.twinkle {
  animation:
    drift var(--dur, 14s) ease-in-out var(--delay, 0s) infinite alternate,
    twinkle var(--tw, 5s) ease-in-out var(--delay, 0s) infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: var(--op, .5); }
  50%      { opacity: .08; }
}

/* ---------- Gold CTA shine sweep ---------- */
.btn--gold { position: relative; overflow: hidden; }
.btn--gold::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -70%;
  width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-20deg);
  animation: shineSweep 5.5s var(--ease-luxe) infinite;
  pointer-events: none;
}
@keyframes shineSweep {
  0%, 55% { left: -70%; }
  90%, 100% { left: 135%; }
}

/* ---------- Lively accents ---------- */
.hero__price-chip { animation: chipPulse 3.4s ease-in-out infinite; }
@keyframes chipPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(234, 193, 119, 0); }
  50%      { box-shadow: 0 0 28px 2px rgba(234, 193, 119, .28); }
}
.hero__badge { animation: badgeFloat 6.5s ease-in-out infinite alternate; }
@keyframes badgeFloat { to { transform: translateY(-10px); } }

.stats__num em { animation: plusGlow 2.8s ease-in-out infinite; }
@keyframes plusGlow { 50% { text-shadow: 0 0 26px rgba(234, 193, 119, .85); } }

.batch-card:hover .batch-card__tag { text-shadow: 0 0 18px rgba(234, 193, 119, .7); }
.feature:hover .feature__num { text-shadow: 0 0 22px rgba(198, 156, 82, .55); }

/* ---------- Responsive festive tweaks ---------- */
@media (max-width: 900px) {
  .diya--offer { display: none; }
  .deco-arcs--founder { width: 300px; right: -120px; }
  .deco-arcs--program { width: 260px; left: -140px; }
  .deco-arcs--who     { width: 240px; right: -130px; }
  .deco-arcs--testi   { width: 260px; left: -140px; }
  .deco-arcs--faq     { width: 230px; left: -130px; }
}
@media (max-width: 560px) {
  .diya--hero { width: 58px; left: 20px; bottom: 18px; }
  .diya--finale { width: 70px; margin-bottom: 22px; }
}

/* ============================================================
   V2 UPDATES — logo ring removal · static 4-week journey
   credential tags · CTA hamper notes
   ============================================================ */

/* Logo without the white ring (nav + footer) */
.nav__logo-chip { background: transparent; box-shadow: none; }
.nav__logo-chip img { width: 46px; height: 46px; }
.footer__logo-chip { background: transparent; box-shadow: none; }
.footer__logo-chip img { width: 74px; height: 74px; }

/* 4-week journey — always visible, no clicking required */
.journey__steps--4 { grid-template-columns: repeat(4, 1fr); }
.journey__track--static .jstep__head { cursor: default; }
.journey__track--static .jstep__body { max-height: none; opacity: 1; margin-top: 14px; }
.journey__track--static .jstep__num {
  background: var(--forest-900);
  color: var(--gold-glow);
  border-color: var(--forest-900);
  box-shadow: 0 14px 30px -14px rgba(11, 47, 40, .55);
}
@media (max-width: 900px) {
  .journey__steps--4 { grid-template-columns: 1fr; }
  .journey__track--static .jstep__body { margin-top: 0; padding-bottom: 12px; }
}

/* Hamper note under section CTAs */
.btn-note {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-note::before { content: ""; width: 18px; height: 1px; background: var(--gold); flex: none; }
.hero .btn-note, .btn-note--light { color: var(--gold-glow); }
.btn-note--light { justify-content: center; }
.btn-note--card {
  justify-content: center;
  margin-top: 2px;
  font-size: 12px;
  color: var(--gold-glow);
  text-align: center;
}
.btn-note--card::before { display: none; }
.mobile-menu .btn-note { color: var(--gold-glow); margin-top: -14px; }

/* Designed-by credit line */
.lead-credit {
  margin-top: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--forest-800);
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}

/* Founder credentials + awards photo */
.founder__cred-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.founder__cred-tags i {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  border: 1px solid rgba(22, 99, 88, .35);
  padding: 4px 9px;
  border-radius: 999px;
}
.founder__awards {
  position: absolute;
  left: -14px;
  bottom: -24px;
  width: 168px;
  transform: rotate(-3deg);
  z-index: 3;
}
.media-slot--awards {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  border: 3px solid var(--ivory);
  box-shadow: 0 18px 40px -18px rgba(21, 36, 31, .4);
}
.founder__awards figcaption {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-align: center;
}
@media (max-width: 560px) {
  .founder__awards { position: relative; left: auto; bottom: auto; margin: 16px auto 0; transform: rotate(-2deg); }
}

/* ============================================================
   V3 — real images wired · uniform swipeable feedback rail
   ============================================================ */
.testi__layout { grid-template-columns: 1fr; }
.testi__featured { display: none; }
.testi__rail--uniform { gap: 22px; padding: 6px 2px 10px; }
.testi__rail--uniform .testi__card { flex: 0 0 min(86%, 340px); }
.testi__rail--uniform .media-slot--testi { border: 1px solid var(--line-soft); aspect-ratio: 450 / 893; }
.media-slot--testi { aspect-ratio: 450 / 893; border-radius: 16px; }
.media-slot--founder img { object-position: 50% 22%; }
.media-slot--team { aspect-ratio: 4 / 3; }
.media-slot--team img { object-fit: cover; }
.hero__price-chip span { font-size: 9.5px; padding: 4px 8px; letter-spacing: .12em; }
.hero__sub strong { color: var(--ivory); font-weight: 700; }

/* ============================================================
   V4 — hero hook line · awards photo · GST notes
   ============================================================ */
.hero__hook {
  margin-top: 26px;
  font-family: var(--serif);
  font-size: clamp(23px, 2.7vw, 32px);
  line-height: 1.32;
  font-weight: 600;
  color: var(--ivory);
  max-width: 24ch;
  transition-delay: .45s;
}
.hero__hook em {
  font-style: italic;
  color: var(--gold-glow);
  white-space: nowrap;
  border-bottom: 2px solid rgba(212, 175, 55, .55);
}
.hero__sub { margin-top: 14px; transition-delay: .55s; }

.gst-note {
  margin-top: 6px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .05em;
  color: rgba(59, 74, 66, .72);
}
.hero .gst-note, .gst-note--light { color: rgba(248, 244, 234, .6); }
.gst-note--center { text-align: center; }
.gst-note--card {
  text-align: center;
  margin-top: 4px;
  font-size: 11px;
  color: rgba(248, 244, 234, .6);
}
.sticky-cta__info small { font-size: 10px; opacity: .85; }

.founder__awards { width: 196px; }
.media-slot--awards { aspect-ratio: 3 / 4; }
.media-slot--awards img { object-position: 50% 30%; }
.media-slot--founder img { object-position: 50% 20%; }
@media (max-width: 560px) { .testi__rail--uniform .testi__card { flex-basis: min(86%, 300px); } }

/* V3.1 — per-photo framing for real transformation shots */
[data-asset="before1"] img { object-position: 50% 72%; }
[data-asset="after1"] img { object-position: 50% 30%; }
[data-asset="before2"] img { object-position: 50% 16%; }
[data-asset="after2"] img { object-position: 50% 30%; }
[data-asset="before3"] img { object-position: 50% 60%; }
[data-asset="after3"] img { object-position: 50% 30%; }
