/* ============================================================
   AvoJoy Marketing — Landing Page Styles
   Imports tokens.css — never use raw values here.
   ============================================================ */

/* --- Reset & Base ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
  background-color: var(--bg-warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* --- Typography -------------------------------------------- */
.serif { font-family: var(--font-serif); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--text-dark);
  letter-spacing: var(--tracking-tight);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p { color: var(--text-body); line-height: var(--leading-relaxed); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--green-primary);
}

.eyebrow--gold { color: var(--gold); }
.eyebrow--light { color: var(--text-on-green); opacity: 0.75; }

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

.container--content { max-width: var(--max-width-content); }
.container--narrow  { max-width: var(--max-width-narrow); }
.container--tight   { max-width: var(--max-width-tight); }

.section {
  padding-block: var(--section-pad-y);
}

/* --- Scroll Animation -------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  line-height: 1;
  border-radius: var(--radius-pill);
  transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
  white-space: nowrap;
  text-align: center;
}

.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background-color: var(--green-primary);
  color: var(--text-white);
  box-shadow: var(--shadow-green);
}
.btn--primary:hover {
  background-color: var(--green-dark);
  box-shadow: 0 6px 28px rgba(61, 84, 56, 0.30);
}
.btn--primary.nav-cta--revealed {
  background-color: var(--gold);
  color: var(--text-dark);
  box-shadow: var(--shadow-gold);
  transform: scale(1.07);
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.btn--primary.nav-cta--revealed:hover {
  background-color: var(--gold-dark, #b8954f);
  transform: scale(1.04);
}

.btn--gold {
  background-color: var(--gold);
  color: var(--text-dark);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background-color: var(--gold-dark);
  color: var(--text-white);
  box-shadow: 0 6px 28px rgba(201, 169, 110, 0.40);
}

.btn--outline {
  background-color: transparent;
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
}
.btn--outline:hover {
  background-color: var(--green-primary);
  color: var(--text-white);
}

.btn--outline-light {
  background-color: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn--outline-light:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--text-white);
}

.btn--lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
}

.btn--sm {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
}

.btn-sub {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  opacity: 0.75;
  margin-top: var(--space-1);
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: calc(var(--z-nav) + 1);
  background-color: var(--green-dark);
}

.announce-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: var(--space-2) var(--space-4);
}

.announce-bar__label {
  font-family: var(--font-serif) !important;
  font-style: italic;
  color: var(--gold) !important;
  font-size: clamp(0.7rem, 1.5vw, 0.8rem) !important;
  white-space: nowrap;
}

.announce-bar__divider {
  color: rgba(255,255,255,0.4);
  margin: 0 var(--space-1);
}

.announce-bar__inner span {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.88);
  letter-spacing: var(--tracking-wide);
}

.announce-bar__inner strong { color: var(--gold); }

.announce-bar__cta {
  font-weight: var(--weight-semibold) !important;
  color: var(--gold) !important;
  white-space: nowrap;
}

.announce-bar__inner:hover .announce-bar__cta { text-decoration: underline; }

/* Push nav + page down */
.nav { top: 0 !important; }
body { padding-top: var(--nav-height) !important; }

@media (max-width: 640px) {
  .announce-bar__inner > span:not(.announce-bar__cta):not(.announce-bar__label) { display: none; }
  .announce-bar__divider { display: none; }
}

/* Hero club logo */
.hero__club-logo {
  margin-bottom: 5px;
  text-align: center;
}
.hero__club-logo img {
  width: min(320px, 85vw);
  height: auto;
  display: inline-block;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  height: var(--nav-height);
  background-color: rgba(255, 253, 249, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--transition-base);
}

.nav.is-scrolled { box-shadow: var(--shadow-sm); }

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav__logo img {
  height: 40px;
  width: auto;
}

.nav__exclusive {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-primary);
  border-left: 1.5px solid var(--border);
  padding-left: var(--space-4);
  white-space: nowrap;
}

.nav__cta .btn { padding: var(--space-3) var(--space-6); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: 10px;
  padding-bottom: var(--space-20);
  background-color: var(--bg-warm);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero__left { padding-right: var(--space-4); }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background-color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-6);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold-dark);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero__badge-text {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold-dark);
}

.hero__headline {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: var(--space-6);
}

.hero__headline em {
  font-style: normal;
  color: var(--green-primary);
  position: relative;
  display: inline;
}

.hero__intro-tag {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  color: var(--gold);
  margin-bottom: var(--space-3);
  max-width: 44ch;
}
.hero__sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  max-width: 44ch;
}
.hero__soreness-hook {
  font-size: var(--text-base);
  font-style: italic;
  color: var(--gold);
  margin-bottom: var(--space-6);
  max-width: 40ch;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
  margin-bottom: var(--space-8);
}

.hero__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.hero__link:hover { color: var(--green-primary); }

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background-color: var(--bg-sage);
  border-radius: var(--radius-md);
  border: 1px solid var(--green-pale);
}

.hero__trust-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background-color: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__trust-icon svg { width: 16px; height: 16px; stroke: var(--text-white); }

.hero__trust-text {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: var(--leading-snug);
}

/* --- Hero Right Panel ------------------------------------- */
.hero__right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero__founder-img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  object-position: bottom center;
  position: relative;
  z-index: var(--z-base);
}

/* ============================================================
   OFFER FLOAT WIDGET
   ============================================================ */
@keyframes wiggle {
  0%   { transform: translateY(0) rotate(0deg); }
  15%  { transform: translateY(-4px) rotate(-4deg); }
  30%  { transform: translateY(-4px) rotate(4deg); }
  45%  { transform: translateY(-4px) rotate(-3deg); }
  60%  { transform: translateY(-4px) rotate(3deg); }
  75%  { transform: translateY(-2px) rotate(-1deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.offer-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 240px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  z-index: var(--z-sticky);
  transform: translateY(calc(100% + var(--space-8)));
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}
.offer-float.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.offer-float.is-collapsing {
  transform: translateY(calc(100% + var(--space-8)));
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.25s ease;
}

.offer-float__close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
}
.offer-float__close:hover {
  color: var(--text-dark);
  background-color: var(--bg-subtle);
}

.offer-float__club {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: var(--space-3);
}

.offer-float__price {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.offer-float__cadence {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.offer-float__savings {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background-color: var(--gold-light);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-4);
}
.offer-float__savings span {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--gold-dark);
}

.offer-float__batch {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border);
}
.offer-float__batch strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: var(--space-1);
}

.offer-float__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: var(--space-3) var(--space-4);
  background-color: var(--green-primary);
  color: var(--text-white);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}
.offer-float__btn:hover {
  background-color: var(--green-dark);
  transform: translateY(-1px);
}

.offer-float__pill {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  background-color: var(--green-primary);
  color: var(--text-white);
  border: none;
  border-radius: var(--radius-pill);
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  cursor: pointer;
  z-index: var(--z-sticky);
  box-shadow: var(--shadow-lg);
  transform: translateY(calc(100% + var(--space-8)));
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease, background-color var(--transition-fast);
}
.offer-float__pill.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.offer-float__pill.is-wiggling {
  animation: wiggle 0.7s ease-in-out;
}
.offer-float__pill:hover {
  background-color: var(--green-dark);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  padding-block: var(--space-10);
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.trust-item__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background-color: var(--bg-sage);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green-primary);
}

.trust-item__text strong {
  display: block;
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: var(--space-2);
}

.trust-item__text span {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   FOUNDER STORY
   ============================================================ */
.founder-story {
  background-color: var(--bg-warm);
}

.founder-story__inner {
  max-width: var(--max-width-narrow);
  margin-inline: auto;
}

.founder-story__label {
  margin-bottom: var(--space-8);
}

.founder-story__body {
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  color: var(--text-body);
}

.founder-story__body p + p { margin-top: var(--space-6); }

.founder-story__pull {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-style: italic;
  color: var(--green-primary);
  line-height: var(--leading-snug);
  margin-block: var(--space-10);
  padding-left: var(--space-8);
  border-left: 3px solid var(--gold);
}

.founder-story__sig {
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.founder-story__sig-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.founder-story__sig-name {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--text-dark);
}

.founder-story__sig-title {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ============================================================
   WHY DIFFERENT
   ============================================================ */
.why-different {
  background-color: var(--bg-sage);
}

.why-different__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.why-different__header .eyebrow { margin-bottom: var(--space-4); }

.why-different__header h2 {
  max-width: 20ch;
  margin-inline: auto;
}

.why-different__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.why-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.why-card__icon {
  width: 48px;
  height: 48px;
  background-color: var(--bg-sage);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.why-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green-primary);
}

.why-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.why-card p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

/* ============================================================
   THREE ESSENCES
   ============================================================ */
.essences {
  background-color: var(--bg-warm);
}

.essences__header {
  text-align: center;
  max-width: var(--max-width-narrow);
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

.essences__sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-top: var(--space-4);
}

.essences__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.essence-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.essence-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.essence-card__img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--bg-subtle);
}
.essence-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.essence-card:hover .essence-card__img-wrap img {
  transform: scale(1.04);
}

.essence-card__body {
  padding: var(--space-6) var(--space-8) var(--space-9);
}

.essence-card__badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: var(--space-1) var(--space-4);
  margin-bottom: var(--space-4);
}
.essence-card__badge--lavender {
  background-color: #F0EAFA;
  color: #6B3FA0;
}
.essence-card__badge--orange {
  background-color: #FEF0E4;
  color: #C2610A;
}
.essence-card__badge--lemongrass {
  background-color: var(--bg-sage);
  color: var(--green-dark);
}

.essence-card__body p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

/* ============================================================
   CLUB SELECTOR WIDGET
   ============================================================ */
.club-widget {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--green-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.22);
  max-width: 860px;
  margin-inline: auto;
}

/* LEFT — image panel */
.club-widget__visual {
  position: relative;
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 420px;
  overflow: hidden;
}
.club-widget__img-wrap {
  position: absolute;
  inset: 0;
}
.club-widget__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease;
}
.club-widget__img-wrap img.fading {
  opacity: 0;
}
.club-widget__scent-label {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--space-5) var(--space-6);
  background: linear-gradient(to top, rgba(30,50,28,0.92) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.club-widget__scent-name {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--gold);
  font-weight: var(--weight-semibold);
  line-height: 1.2;
  transition: opacity 0.25s;
}
.club-widget__scent-mood {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(255,253,249,0.75);
  font-style: italic;
  transition: opacity 0.25s;
}

/* RIGHT — config panel */
.club-widget__config {
  background: var(--bg-warm);
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.25rem, 3.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.club-widget__eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-1);
}
.club-widget__title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--text-dark);
  margin: 0;
  line-height: 1.2;
}

.club-widget__choose-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: calc(-1 * var(--space-2));
}

/* Scent pills */
.club-widget__pills {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.club-widget__pill {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-dark);
  text-align: left;
  width: 100%;
}
.club-widget__pill:hover {
  border-color: var(--green-primary);
  background: var(--bg-sage);
}
.club-widget__pill--active {
  border-color: var(--green-primary);
  background: var(--bg-sage);
  box-shadow: 0 0 0 2px rgba(91,117,83,0.18);
  font-weight: var(--weight-semibold);
}
.club-widget__pill-thumb {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  border: 1px solid rgba(0,0,0,0.06);
}

/* Scent description */
.club-widget__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin: calc(-1 * var(--space-2)) 0 0;
  min-height: 2.6em;
  transition: opacity 0.25s;
}

/* Pricing */
.club-widget__pricing {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.club-widget__price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}
.club-widget__price-club {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: var(--weight-bold);
  color: var(--text-dark);
  line-height: 1;
}
.club-widget__price-interval {
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.club-widget__price-compare {
  font-size: var(--text-xs);
  color: var(--text-muted);
}
.club-widget__price-compare s {
  color: var(--text-muted);
}

/* CTA */
.club-widget__cta {
  width: 100%;
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-6);
}

/* Trust */
.club-widget__trust {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin: 0;
}

/* Description overlay on image — hidden on desktop, shown on mobile */
.club-widget__desc-img {
  display: none;
}

/* Mobile */
@media (max-width: 680px) {
  /* Hide section heading — widget image goes straight below nav */
  .essences__header { display: none; }
  /* Remove section top padding so widget image is flush below nav */
  .essences.section { padding-top: 0; }

  .club-widget {
    grid-template-columns: 1fr;
  }
  .club-widget__visual {
    min-height: 250px;
  }

  /* cover fills edge-to-edge (no green sides), bottom anchored so bottle base stays visible */
  .club-widget__img-wrap img {
    object-fit: cover;
    object-position: center bottom;
  }

  /* Scent label: absolute overlay covering full visual, no gradient */
  .club-widget__scent-label {
    position: absolute;
    inset: 0;
    background: none;
    padding: 0;
    display: block;
  }

  /* Scent name: upper left, white + double shadow */
  .club-widget__scent-name {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 1.75rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.95);
  }

  /* Mood ("Bright & Awake"): upper right, white italic + shadow */
  .club-widget__scent-mood {
    position: absolute;
    top: 14px;
    right: 12px;
    font-size: var(--text-sm);
    color: rgba(255,253,249,0.92);
    font-style: italic;
    text-align: right;
    text-shadow: 0 1px 4px rgba(0,0,0,0.85);
  }

  /* Description: thin black strip pinned to bottom of image */
  .club-widget__desc-img {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.65);
    padding: 6px 12px;
    font-size: 12px;
    color: rgba(255,253,249,0.95);
    font-style: italic;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  }

  /* Config panel: tighter, reordered */
  .club-widget__config {
    gap: var(--space-3);
    padding: var(--space-4) var(--space-4);
  }

  /* Hide header + choose label + desc on mobile (desc moves to image) */
  .club-widget__header  { display: none; }
  .club-widget__choose-label { display: none; }
  .club-widget__desc    { display: none; }

  /* Reorder: pills → CTA → pricing → trust */
  .club-widget__pills   { order: 1; flex-direction: row; }
  .club-widget__cta     { order: 2; }
  .club-widget__pricing { order: 3; }
  .club-widget__trust   { order: 4; }

  .club-widget__pill {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-2);
    gap: var(--space-1);
    flex: 1;
  }
  .club-widget__pill-thumb {
    width: 40px;
    height: 40px;
  }
}

/* Scroll anchor: land just below sticky nav with breathing room */
#pick-your-essence {
  scroll-margin-top: calc(var(--nav-height, 68px) + 16px);
}

/* ============================================================
   CLUB REVEAL
   ============================================================ */
.club-reveal {
  background-color: var(--green-dark);
  color: var(--text-on-green);
  position: relative;
  overflow: hidden;
}

.club-reveal::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.club-reveal__inner {
  text-align: center;
  position: relative;
  z-index: var(--z-base);
}

.club-reveal__logo {
  text-align: center;
  margin-bottom: var(--space-8);
}

.club-reveal__logo img {
  max-width: min(520px, 88vw);
  height: auto;
  display: block;
  margin: 0 auto;
  background: var(--bg-warm);
  padding: var(--space-5) var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.club-reveal__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-8);
}

.club-reveal__badge-text {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold);
}

.club-reveal h2 {
  font-size: var(--text-4xl);
  color: var(--text-on-green);
  max-width: 22ch;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.club-reveal h2 em {
  font-style: normal;
  color: var(--gold);
}

.club-reveal__sub {
  font-size: var(--text-lg);
  color: rgba(247, 241, 232, 0.75);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.club-reveal__scarcity {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-6);
  background-color: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.30);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-10);
}

.club-reveal__scarcity-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.club-reveal__scarcity span {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--gold-light);
  letter-spacing: var(--tracking-wide);
}

.club-reveal__ctas {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ============================================================
   MEMBERSHIP / PRICING
   ============================================================ */
.membership {
  background-color: var(--bg-warm);
}

.membership__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.membership__benefits .eyebrow { margin-bottom: var(--space-5); }

.membership__benefits h2 { margin-bottom: var(--space-4); }

.membership__intro {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: var(--space-8);
}

.membership__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.membership__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.membership__item-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-color: var(--bg-sage);
  border: 1px solid var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.membership__item-check svg {
  width: 12px;
  height: 12px;
  stroke: var(--green-primary);
}

.membership__item-text strong {
  display: block;
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--text-dark);
  margin-bottom: var(--space-1);
}

.membership__item-text span {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* --- Price Card ------------------------------------------- */
.price-card {
  background-color: var(--green-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  color: var(--text-on-green);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.price-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.price-card__tag {
  display: block;
  text-align: center;
  margin-bottom: var(--space-4);
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.price-card__tag img {
  width: 110px;
  height: auto;
  display: inline-block;
}

.price-card__tag span {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold);
}

.price-card__name {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--text-on-green);
  margin-bottom: var(--space-6);
}

.price-card__row {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.price-card__amount {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: var(--weight-black);
  color: var(--text-on-green);
  line-height: 1;
}

.price-card__per {
  font-size: var(--text-base);
  color: rgba(247, 241, 232, 0.6);
}

.price-card__compare {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.price-card__compare-strike {
  font-size: var(--text-base);
  color: rgba(247, 241, 232, 0.40);
  text-decoration: line-through;
}

.price-card__compare-save {
  display: inline-flex;
  padding: var(--space-1) var(--space-3);
  background-color: var(--gold);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--text-dark);
}

.price-card__includes {
  margin-bottom: var(--space-8);
}

.price-card__includes li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(247, 241, 232, 0.80);
  padding-block: var(--space-2);
}

.price-card__includes li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold);
  flex-shrink: 0;
}

.price-card__btn {
  display: block;
  width: 100%;
  padding: var(--space-5);
  text-align: center;
  background-color: var(--gold);
  color: var(--text-dark);
  font-weight: var(--weight-bold);
  font-size: var(--text-lg);
  border-radius: var(--radius-pill);
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-gold);
}

.price-card__btn:hover {
  background-color: #d4b07a;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201, 169, 110, 0.45);
}

.price-card__guarantee {
  margin-top: var(--space-5);
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(247, 241, 232, 0.50);
}

/* ============================================================
   THIS IS FOR YOU
   ============================================================ */
.for-you {
  background-color: var(--bg-cream);
}

.for-you__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.for-you__header .eyebrow { margin-bottom: var(--space-4); }

.for-you__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: var(--max-width-content);
  margin-inline: auto;
}

.for-you-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.for-you-item__check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background-color: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.for-you-item__check svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
}

.for-you-item p {
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: var(--leading-snug);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background-color: var(--bg-warm);
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.testimonials__header .eyebrow { margin-bottom: var(--space-4); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-base);
}

.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-card__stars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-5);
}

.star {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  stroke: none;
}

.testimonial-card__quote {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
  font-style: italic;
  flex-grow: 1;
  margin-bottom: var(--space-6);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-bold);
  font-size: var(--text-sm);
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  color: var(--text-dark);
}

.testimonial-card__location {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ============================================================
   OFFER CLOSE
   ============================================================ */
.offer-close {
  background-color: var(--bg-gold);
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
}

.offer-close__inner {
  text-align: center;
  max-width: var(--max-width-narrow);
  margin-inline: auto;
}

.offer-close .eyebrow { margin-bottom: var(--space-4); }
.offer-close h2 { margin-bottom: var(--space-6); }

.offer-close__body {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: var(--space-10);
  max-width: 52ch;
  margin-inline: auto;
}

.offer-close__summary {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
  text-align: left;
  max-width: 420px;
  margin-inline: auto;
}

.offer-close__line {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--text-body);
}

.offer-close__line::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--green-primary);
  flex-shrink: 0;
}

.offer-close__cta { margin-inline: auto; }

/* ============================================================
   FOUNDER PROMISE / GUARANTEE
   ============================================================ */
.guarantee {
  background-color: var(--bg-warm);
}

.guarantee__card {
  max-width: var(--max-width-narrow);
  margin-inline: auto;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.guarantee__icon {
  max-width: 280px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}
.guarantee__icon img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  filter: drop-shadow(0 0 0px rgba(201,169,110,0));
  transition: opacity 1.2s ease, filter 1.6s ease 0.2s;
}
.guarantee__card.is-visible .guarantee__icon img {
  opacity: 1;
  filter: drop-shadow(0 0 18px rgba(201,169,110,0.55)) drop-shadow(0 0 40px rgba(201,169,110,0.25));
}

.guarantee__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--green-primary);
}

.guarantee__card h2 { margin-bottom: var(--space-6); }

.guarantee__card p {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: var(--leading-loose);
  max-width: 52ch;
  margin-inline: auto;
}

.guarantee__sig {
  margin-top: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.guarantee__sig img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.guarantee__sig-name {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--text-dark);
}

.guarantee__sig-title {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background-color: var(--bg-cream);
}

.faq__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.faq__header .eyebrow { margin-bottom: var(--space-4); }

.faq__list {
  max-width: var(--max-width-narrow);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.is-open { border-color: var(--green-pale); }

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-7);
  text-align: left;
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-item__trigger:hover { color: var(--green-primary); }

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-color: var(--bg-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base), background-color var(--transition-fast);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background-color: var(--green-primary);
}

.faq-item__icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--green-primary);
  transition: stroke var(--transition-fast);
}

.faq-item.is-open .faq-item__icon svg { stroke: var(--white); }

.faq-objection {
  text-align: center;
  margin-bottom: var(--space-10);
}

.faq-objection__trigger {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--green-primary);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition-fast), color var(--transition-fast);
  padding: var(--space-2) 0;
}
.faq-objection__trigger:hover {
  color: var(--green-dark);
  text-decoration-color: var(--green-dark);
}

.faq-objection__body {
  max-width: 560px;
  margin: var(--space-4) auto 0;
  background-color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  font-size: var(--text-base);
  color: var(--text-dark);
  line-height: var(--leading-relaxed);
  text-align: left;
}

/* Override native <details> visibility — JS controls open/close via max-height */
details.faq-item > .faq-item__body {
  display: block;
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item__body-inner {
  padding: var(--space-2) var(--space-7) var(--space-9);
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   FINAL CLOSE
   ============================================================ */
.final-close {
  background-color: var(--green-dark);
  color: var(--text-on-green);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-close::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.final-close__inner {
  position: relative;
  z-index: var(--z-base);
}

.final-close h2 {
  font-size: var(--text-4xl);
  color: var(--text-on-green);
  max-width: 20ch;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.final-close__body {
  font-size: var(--text-lg);
  color: var(--text-on-green);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-10);
}
.final-close__body strong { color: var(--white); }
.final-close .cta-trust { color: rgba(247, 241, 232, 0.85) !important; }
.final-close__pill { color: var(--text-on-green); }

.final-close__ctas {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

.final-close__tagline {
  font-size: var(--text-sm);
  color: rgba(247, 241, 232, 0.85);
  letter-spacing: var(--tracking-wide);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--green-deeper);
  padding-block: var(--space-10);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  text-align: center;
}

.footer__logo {
  display: inline-block;
  background: rgba(255,253,249,0.96);
  border-radius: var(--radius-lg);
  padding: 8px 16px;
}
.footer__logo img { height: 64px; width: auto; display: block; filter: none; }

.footer__links {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(247, 241, 232, 0.45);
  transition: color var(--transition-fast);
}

.footer__links a:hover { color: rgba(247, 241, 232, 0.80); }

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(247, 241, 232, 0.35);
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background-color: var(--white);
  border-top: 1px solid var(--border);
  padding: var(--space-4) var(--space-5);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  box-shadow: 0 -4px 20px rgba(45, 42, 38, 0.10);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--text-dark);
}

.sticky-cta__text span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.sticky-cta .btn { flex-shrink: 0; }

/* ============================================================
   EXIT INTENT POPUP
   ============================================================ */
.exit-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background-color: rgba(29, 26, 23, 0.70);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.exit-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.exit-modal {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-10);
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.92) translateY(16px);
  transition: transform var(--transition-spring);
  box-shadow: var(--shadow-xl);
}

.exit-overlay.is-active .exit-modal {
  transform: scale(1) translateY(0);
}

.exit-modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--bg-cream);
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
  border: none;
}

.exit-modal__close:hover {
  background-color: var(--border);
  color: var(--text-dark);
}

.exit-modal__tag {
  display: inline-flex;
  padding: var(--space-2) var(--space-5);
  background-color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-5);
}

.exit-modal h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.exit-modal__sub {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-bottom: var(--space-8);
}

.exit-modal__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.exit-modal__input {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--text-dark);
  background-color: var(--bg-warm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.exit-modal__input:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(91, 117, 83, 0.12);
}

.exit-modal__input::placeholder { color: var(--text-light); }

.exit-modal__submit {
  width: 100%;
  padding: var(--space-4);
  background-color: var(--green-primary);
  color: var(--text-white);
  border-radius: var(--radius-pill);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.exit-modal__submit:hover {
  background-color: var(--green-dark);
  transform: translateY(-1px);
}

.exit-modal__skip {
  font-size: var(--text-xs);
  color: var(--text-light);
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: underline;
  transition: color var(--transition-fast);
}
.exit-modal__skip:hover { color: var(--text-muted); }

/* --- Coupon Success State --------------------------------- */
.exit-modal__success {
  display: none;
}

.exit-modal__success.is-visible { display: block; }
.exit-modal__form.is-hidden    { display: none; }

.exit-modal__coupon-box {
  background-color: var(--bg-sage);
  border: 2px dashed var(--green-light);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  margin-block: var(--space-6);
}

.exit-modal__coupon-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: var(--space-3);
}

.exit-modal__coupon-code {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--text-dark);
  letter-spacing: var(--tracking-wide);
}

.exit-modal__coupon-note {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-3);
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 980px)
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .hero__left { padding-right: 0; text-align: center; }

  .hero__ctas { align-items: center; }

  .hero__right { justify-content: center; order: -1; }

  .hero__image-wrap { max-width: 340px; }

  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }

  .why-different__grid { grid-template-columns: 1fr; }

  .membership__grid { grid-template-columns: 1fr; gap: var(--space-10); }

  .for-you__grid { grid-template-columns: repeat(2, 1fr); }

  .testimonials__grid { grid-template-columns: 1fr; max-width: var(--max-width-narrow); margin-inline: auto; }

  .sticky-cta { display: flex; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  /* Nav */
  .nav__logo img { height: 28px; }
  .nav__tagline { display: none; }
  .nav__exclusive { display: none; }

  /* Hero */
  .hero__badge { max-width: 100%; flex-wrap: wrap; }
  .hero__badge-text { font-size: 10px; white-space: normal; }
  .hero__headline { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .hero__image-wrap { max-width: 280px; margin-inline: auto; }

  /* Buttons — full width, allow text to wrap */
  .btn--lg {
    width: 100%;
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
    white-space: normal;
  }

  /* Trust strip — stacked single column cards */
  .trust-strip__grid { grid-template-columns: 1fr; }

  /* For-you */
  .for-you__grid { grid-template-columns: 1fr; }

  /* CTAs */
  .club-reveal__ctas { flex-direction: column; align-items: center; }
  .final-close__ctas { flex-direction: column; align-items: center; }

  /* Membership / price card */
  .membership__grid { gap: var(--space-8); }
  .price-card { padding: var(--space-8); }
  .price-card__features { gap: var(--space-3); }

  /* Guarantee */
  .guarantee__card { padding: var(--space-8); }

  /* Exit modal */
  .exit-modal { padding: var(--space-8) var(--space-6); }

  /* Footer */
  .footer__links { flex-direction: column; gap: var(--space-4); }
  .footer__grid { grid-template-columns: 1fr; text-align: center; gap: var(--space-8); }

  /* Sticky CTA — ensure it stays on top */
  .sticky-cta { z-index: var(--z-popup); }

  /* Offer float: full-width card above sticky CTA bar */
  .offer-float {
    left: var(--space-4);
    right: var(--space-4);
    bottom: 80px;
    width: auto;
  }

  /* Pill: sit above sticky CTA bar */
  .offer-float__pill {
    bottom: 80px;
    right: var(--space-4);
  }
}

/* ============================================================
   Promoted from v2-2026-05-02 (Flexi-funnel integration)
   Additive overrides — does not modify any v1 selectors.
   ============================================================ */

/* --- Hero gold-block highlight ----------------------------- */
.hero__highlight {
  background: linear-gradient(180deg, transparent 55%, var(--gold-light) 55%);
  display: inline;
  padding: 0 4px;
  font-style: italic;
}

/* --- Pulsing dot (small-batch label) ----------------------- */
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.6; }
}
.hero__badge-dot {
  animation: pulse-dot 2s ease infinite;
}

/* --- Hero radial gradient blur (decorative) ---------------- */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91,117,83,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

/* --- SAVE 30% circular badge on hero photo ----------------- */
.hero__image-wrap { position: relative; }
.hero__save-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 110px;
  height: 110px;
  z-index: 3;
  display: block;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.18));
  animation: sticker-entrance 0.55s cubic-bezier(0.34,1.56,0.64,1) both;
}
.hero__save-badge img {
  width: 100%;
  height: 100%;
  display: block;
}
@keyframes sticker-entrance {
  from { opacity: 0; transform: scale(0.55) rotate(-12deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* --- Eyebrow ornaments (✦ Small Batch Access ✦) ----------- */
.eyebrow--ornament::before,
.eyebrow--ornament::after {
  content: '✦';
  margin: 0 0.5em;
  color: var(--gold);
}

/* --- Why-different: emoji icon swap ------------------------ */
.why-card__emoji {
  font-size: 40px;
  line-height: 1;
  margin-bottom: var(--space-4);
  display: block;
}

/* --- For-you list: emoji-led + bold pull-out --------------- */
.for-you-item__emoji {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.for-you-item__text strong {
  color: var(--text-dark);
  font-weight: var(--weight-semibold);
}

/* --- Testimonial avatar — letter circle -------------------- */
.testimonial-card__avatar--letter {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: var(--weight-bold);
  font-size: 20px;
}

/* --- Final-close: tagline pills ---------------------------- */
.final-close__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.final-close__pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text-on-green);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
}

/* --- Welcome-to-Club intro section ------------------------- */
.club-intro {
  background: var(--bg-cream);
  padding: var(--section-pad-y) var(--section-pad-x);
  text-align: center;
}
.club-intro__inner { max-width: var(--max-width-narrow); margin: 0 auto; }
.club-intro__badge {
  display: inline-block;
  background: var(--bg-gold);
  color: var(--gold-dark);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-6);
}
.club-intro__body {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
}
.club-intro__body p + p { margin-top: var(--space-4); }
.club-intro__body em {
  color: var(--green-dark);
  font-weight: var(--weight-semibold);
  font-style: normal;
}
.club-intro__cta { margin-top: var(--space-8); }

/* --- What You Get / Price card layout ---------------------- */
.what-you-get { padding: var(--section-pad-y) var(--section-pad-x); background: var(--bg-warm); }
.what-you-get__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}
@media (max-width: 880px) {
  .what-you-get__grid { grid-template-columns: 1fr; }
}
.what-you-get h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-8);
}
.what-you-get__list { display: flex; flex-direction: column; gap: var(--space-5); }
.what-you-get__item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
}
.what-you-get__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-bold);
  font-size: 14px;
  margin-top: 2px;
}
.what-you-get__item strong { color: var(--text-dark); font-weight: var(--weight-semibold); }

/* --- Inline price card (Flexi-style) ----------------------- */
.price-table {
  background: var(--white);
  border: 2px solid var(--gold-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}
.price-table__head h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
  color: var(--text-dark);
}
.price-table__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--text-sm);
}
.price-table__row:last-of-type { border-bottom: none; }
.price-table__label { color: var(--text-muted); }
.price-table__value { font-weight: var(--weight-semibold); color: var(--text-dark); }
.price-table__strike { text-decoration: line-through; color: var(--text-muted); }
.price-table__save {
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-weight: var(--weight-bold);
}
.price-table__total {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 2px solid var(--border);
  text-align: center;
}
.price-table__big {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: var(--weight-bold);
  color: var(--green-dark);
  line-height: 1;
}
.price-table__per {
  margin-top: var(--space-2);
  color: var(--text-muted);
  font-size: var(--text-sm);
}
.price-table__cta { margin-top: var(--space-6); }

/* --- Mobile sticky CTA bar --------------------------------- */
.sticky-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(45,42,38,0.08);
  padding: 12px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: var(--z-sticky);
}
.sticky-mobile__price {
  font-size: var(--text-sm);
  color: var(--text-body);
}
.sticky-mobile__price strong {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--green-dark);
  margin-right: 4px;
}
.sticky-mobile__was {
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: var(--weight-medium);
  opacity: 0.75;
}
@media (max-width: 720px) {
  .sticky-mobile { display: flex; }
  body { padding-bottom: 70px; }
}

/* --- Story dramatic line + closer -------------------------- */
.story-dramatic {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--green-dark);
  margin-top: var(--space-6) !important;
  margin-bottom: var(--space-4) !important;
}
.story-closer {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  font-style: italic;
  color: var(--text-dark);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
  line-height: var(--leading-snug);
}

/* ============================================================
   Promoted from v3-2026-05-02 (Misty precision spec)
   Additive overrides — does not modify any v1/v2 selectors.
   ============================================================ */
   proof, Mayan extraction, Ingredients, FDA disclaimer, popup).
   ============================================================ */

/* --- Generic narrow centered section ----------------------- */
.section--narrow { padding: var(--section-pad-y) var(--section-pad-x); }
.section--narrow .container { max-width: var(--max-width-narrow); margin: 0 auto; }

/* --- Meet Misty card --------------------------------------- */
.meet-misty {
  background: var(--bg-cream);
  padding: var(--section-pad-y) var(--section-pad-x);
}
.meet-misty__inner {
  max-width: var(--max-width-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (max-width: 760px) {
  .meet-misty__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .meet-misty__photo {
    grid-row: 1;           /* force photo to first row, no ambiguity */
    order: -1;
    max-width: min(260px, 72vw);
    margin: 0 auto;
  }
  .meet-misty__body {
    grid-row: 2;           /* force text below photo */
  }
  .meet-misty__photo--wide {
    aspect-ratio: 3 / 4;
  }
}
.meet-misty__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.meet-misty__photo img { width: 100%; display: block; }
.meet-misty__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.meet-misty__eyebrow {
  color: var(--gold-dark);
}
.meet-misty__body h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
  padding-left: var(--space-4);
  border-left: 3px solid var(--green-primary);
}
.meet-misty__credentials {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}
.meet-misty__credentials span {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--green-primary);
}
.meet-misty__credentials span + span::before {
  content: '·';
  margin-right: var(--space-3);
  color: var(--gold);
}
.meet-misty__body p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
  margin-bottom: var(--space-4);
}

/* --- Faith quote card -------------------------------------- */
.faith-quote {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--bg-warm);
}
.faith-quote__card {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  background: var(--bg-gold);
  border: 1px solid var(--green-pale);
  border-left: 4px solid var(--green-primary);
  padding: var(--space-10) var(--space-8);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.faith-quote__card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-serif);
  font-size: 96px;
  line-height: 1;
  color: var(--green-pale);
  font-style: italic;
}
.faith-quote__text {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-style: italic;
  line-height: var(--leading-snug);
  color: var(--text-dark);
  margin-bottom: var(--space-5);
}
.faith-quote__attr {
  font-size: var(--text-sm);
  color: var(--gold-dark);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
}

/* --- Dancer proof section ---------------------------------- */
.dancer-proof {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--bg-sage);
}
.dancer-proof__inner {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}
.dancer-proof__inner--split {
  max-width: var(--max-width-content);
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: var(--space-12);
  align-items: center;
}
.dancer-proof__text { min-width: 0; }
.dancer-proof__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
@media (max-width: 760px) {
  .dancer-proof__inner--split {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .dancer-proof__image {
    max-width: 220px;
    margin: 0 auto;
  }
}
.dancer-proof h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-5);
}
.dancer-proof p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
  margin-bottom: var(--space-4);
}
.dancer-proof__pull {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--green-dark);
  border-left: 3px solid var(--gold);
  padding-left: var(--space-5);
  margin: var(--space-6) 0;
}

/* --- Secondary hook section -------------------------------- */
.secondary-hook {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--bg-warm);
  text-align: center;
}
.secondary-hook__inner { max-width: var(--max-width-narrow); margin: 0 auto; }
/* Split variant — video left, text right */
.secondary-hook__inner--split {
  max-width: var(--max-width-content);
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--space-12);
  align-items: center;
  text-align: left;
}
.secondary-hook__text { min-width: 0; }
.secondary-hook__video {
  width: 100%;
}
.secondary-hook__video .bunny-player {
  max-width: 100%;
  width: 100%;
}
@media (max-width: 800px) {
  .secondary-hook__inner--split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .secondary-hook__video {
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
  }
}
.secondary-hook h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
  line-height: var(--leading-snug);
}
.secondary-hook p {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
  margin-bottom: var(--space-4);
}

/* --- Mayan extraction section ------------------------------ */
.mayan {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
  position: relative;
  overflow: hidden;
}
.mayan::before,
.mayan::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(201,169,110,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.mayan::before { top: -40px; left: -40px; }
.mayan::after  { bottom: -40px; right: -40px; }
.mayan__split {
  max-width: var(--max-width-content);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--space-12);
  align-items: center;
}
.mayan__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mayan__image img {
  width: clamp(200px, 28vw, 340px);
  height: auto;
  display: block;
}
.mayan__text {
  /* text column */
}
.mayan__badge {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--gold-light);
  color: var(--gold-dark);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-6);
}
.mayan h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
}
.mayan p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
  margin-bottom: var(--space-4);
}
/* Mayan split responsive */
@media (max-width: 900px) {
  .mayan__split {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    max-width: var(--max-width-narrow);
  }
  .mayan__video { max-width: 360px; margin: 0 auto; width: 100%; }
  .mayan__text { text-align: center; }
  .mayan__badge { display: block; text-align: center; }
}

/* --- Ingredients section ----------------------------------- */
.ingredients {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--bg-warm);
}
.ingredients__inner {
  max-width: var(--max-width-content);
  margin: 0 auto;
}
.ingredients h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}
.ingredients__lede {
  font-size: var(--text-lg);
  color: var(--text-body);
  margin-bottom: var(--space-8);
  max-width: 60ch;
}
.ingredients__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.ingredients__chip {
  background: var(--bg-sage);
  color: var(--green-dark);
  border: 1px solid var(--green-pale);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}
.ingredients__support {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
  margin-bottom: var(--space-4);
}
.ingredients__no-list {
  font-style: italic;
  color: var(--text-muted);
  font-size: var(--text-sm);
}

/* --- Footer FDA disclaimer --------------------------------- */
.footer__disclaimer {
  max-width: var(--max-width-narrow);
  margin: var(--space-6) auto 0;
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-style: italic;
  line-height: var(--leading-relaxed);
}

/* --- Pricing language helpers ------------------------------ */
.price-strike { text-decoration: line-through; color: var(--text-muted); }
.price-arrow  { color: var(--gold-dark); margin: 0 6px; }

/* --- Trust line below CTA ---------------------------------- */
.cta-trust {
  display: block;
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: var(--tracking-wide);
  text-align: center;
}

/* ============================================================
   TIGHTENING — reduce vertical space across all sections
   ============================================================ */

/* Override the token only inside v3 scope (not globally) */
.hero,
.section,
.club-intro,
.what-you-get,
.meet-misty,
.faith-quote,
.dancer-proof,
.secondary-hook,
.mayan,
.ingredients,
.essences,
.final-close {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

/* Hero: extra-tight top under nav, give bottom a little more room */
.hero { padding-top: clamp(2rem, 4vw, 3.5rem); padding-bottom: clamp(2rem, 4vw, 3.5rem); }

/* Tighter heading margins everywhere */
.meet-misty__body h2,
.dancer-proof h2,
.secondary-hook h2,
.mayan h2,
.ingredients h2,
.club-intro h2,
.what-you-get h2,
.essences h2,
.final-close h2,
.faq h2,
.testimonials h2 {
  margin-bottom: var(--space-4) !important;
}

/* Tighter paragraph stack inside body sections */
.meet-misty__body p,
.dancer-proof p,
.secondary-hook p,
.mayan p,
.ingredients__support,
.club-intro__body p,
.final-close__body p {
  margin-bottom: var(--space-3);
}
.final-close__body p { color: var(--text-on-green); }
.final-close__body p strong { color: var(--white); }
.club-intro__body p + p { margin-top: var(--space-3); }

/* Tighter founder-story story rhythm — kill the air between staccato lines */
.founder-story__body p { margin-bottom: var(--space-3); }
.founder-story__inner { padding: 0; }

/* Tighter eyebrow → headline gap */
.eyebrow { margin-bottom: var(--space-2); }

/* Tighter CTA-block stack */
.club-intro__cta { margin-top: var(--space-5); }
.hero__ctas { margin-top: var(--space-5); margin-bottom: var(--space-3); }
.cta-trust { margin-top: var(--space-2); }

/* Tighter spacing inside cards */
.why-card { padding: var(--space-6); }
.why-card h3 { margin-bottom: var(--space-2); }
.why-card p { margin-bottom: 0; }
.testimonial-card { padding: var(--space-6); }
.testimonial-card__quote { margin-bottom: var(--space-4); }
.essence-card__body { padding: var(--space-5); }
.essence-card__body h3 { margin-bottom: var(--space-2); margin-top: var(--space-2); }

/* Tighter price card */
.price-table { padding: var(--space-6); }
.price-table__head h3 { margin-bottom: var(--space-4); }
.price-table__row { padding: var(--space-2) 0; }
.price-table__total { margin-top: var(--space-3); padding-top: var(--space-3); }
.price-table__big { font-size: 44px; }
.price-table__cta { margin-top: var(--space-4); }

/* Tighter What-You-Get list */
.what-you-get__list { gap: var(--space-3); }

/* Tighter FAQ items */
.faq-item { margin-bottom: var(--space-2); }
.faq__list { gap: var(--space-2); }
.faq__header { margin-bottom: var(--space-6); }

/* Tighter Why-Different header */
.why-different__header { margin-bottom: var(--space-6); }
.why-different__header p { margin-top: var(--space-3) !important; }

/* Tighter testimonials header */
.testimonials__header { margin-bottom: var(--space-6); }

/* Tighter Meet-Misty grid gap (was 12 = 48px, now 8 = 32px) */
.meet-misty__inner { gap: var(--space-8); }

/* Tighter Faith Quote */
.faith-quote__card { padding: var(--space-6) var(--space-7); }
.faith-quote__card::before { font-size: 72px; top: -4px; }
.faith-quote__text { font-size: var(--text-lg); margin-bottom: var(--space-3); }

/* Tighter Mayan badge gap */
.mayan__badge { margin-bottom: var(--space-4); }

/* Tighter Ingredients */
.ingredients__lede { margin-bottom: var(--space-5); }
.ingredients__chips { margin-bottom: var(--space-5); }

/* Tighter Final close */
.final-close h2 { margin-bottom: var(--space-4); }
.final-close__body { margin-bottom: var(--space-6); }
.final-close__ctas { margin-bottom: var(--space-4); }
.final-close__pills { margin-top: var(--space-5); gap: var(--space-2); }
.final-close__pill { padding: 6px 14px; }

/* Tighter Guarantee */
.guarantee__card { padding: var(--space-7) var(--space-6); }
.guarantee__card h3 { margin-bottom: var(--space-3); }

/* Tighter Hero copy stack */
.hero__badge { margin-bottom: var(--space-4); }
.hero__sub { margin-top: var(--space-4); margin-bottom: var(--space-2); }


/* ============================================================
   RESPONSIVE — tablet & mobile breakpoints
   ============================================================ */

/* Tablet ≤960px */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-8); text-align: center; }
  .hero__ctas { justify-content: center; }
  .hero__image-wrap { max-width: 360px; margin: 0 auto; }
  .why-different__grid { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .testimonials__grid { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .essences__grid { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .what-you-get__grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .meet-misty__photo { max-width: 320px; margin: 0 auto; }
}

/* Phone ≤640px */
@media (max-width: 640px) {
  .hero__headline { font-size: var(--text-3xl); }
  .meet-misty__body h2,
  .dancer-proof h2,
  .secondary-hook h2,
  .mayan h2,
  .ingredients h2,
  .club-intro h2,
  .what-you-get h2,
  .essences h2,
  .final-close h2,
  .faq h2,
  .testimonials h2 { font-size: var(--text-2xl); }

  .why-different__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .essences__grid { grid-template-columns: 1fr; }

  .hero,
  .section,
  .club-intro,
  .what-you-get,
  .meet-misty,
  .faith-quote,
  .dancer-proof,
  .secondary-hook,
  .mayan,
  .ingredients,
  .essences,
  .final-close { padding-top: 2rem; padding-bottom: 2rem; }

  .hero__save-badge { width: 80px; height: 80px; top: -10px; right: -10px; }

  .price-table { padding: var(--space-5); }
  .price-table__big { font-size: 36px; }
  .faith-quote__card { padding: var(--space-5); }
  .faith-quote__text { font-size: var(--text-base); }

  .meet-misty__badge { font-size: 10px; padding: 4px 10px; }
  .footer__inner { flex-direction: column; gap: var(--space-3); text-align: center; }
}

/* Very small phones ≤380px */
@media (max-width: 380px) {
  .hero__headline { font-size: var(--text-2xl); }
  .nav__cta .btn { padding: 8px 14px; font-size: var(--text-sm); }
}

/* ============================================================
   AGGRESSIVE TIGHTENING — kill big section voids
   Override the earlier (already-tight) padding with even tighter
   to remove the perceived "blank space between sections" effect.
   ============================================================ */
.hero,
.section,
.club-intro,
.what-you-get,
.meet-misty,
.faith-quote,
.dancer-proof,
.secondary-hook,
.mayan,
.ingredients,
.essences,
.final-close,
.testimonials,
.guarantee,
.faq {
  padding-top: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: clamp(1.5rem, 3vw, 3rem);
}

/* Hero gets a touch more bottom only */
.hero { padding-top: clamp(1rem, 2.5vw, 2rem); padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }

/* Final close keeps a little more breathing for the dark-green band */
.final-close { padding-top: clamp(2.5rem, 4vw, 4rem); padding-bottom: clamp(2.5rem, 4vw, 4rem); }

/* Faith quote has the card itself doing the visual work — kill outer padding */
.faith-quote { padding-top: clamp(1rem, 2vw, 2rem); padding-bottom: clamp(1rem, 2vw, 2rem); }

/* Mayan badge already stands out — drop top air */
.mayan__badge { margin-bottom: var(--space-3); }

/* Trust line should sit right under CTA, not float */
.cta-trust { margin-top: var(--space-2); display: block; }

/* Hero CTAs: kill stretch */
.hero__ctas { margin-top: var(--space-4); margin-bottom: var(--space-2); }

/* Eyebrow tighter */
.eyebrow { margin-bottom: var(--space-1); }

/* Mobile: hero CTA stacks main label + sub-line cleanly */
@media (max-width: 640px) {
  .hero__ctas .btn--lg { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 14px 20px; line-height: 1.2; }
  .hero__ctas .btn--lg .btn-sub { font-size: var(--text-xs); opacity: 0.85; }
  .hero__ctas { flex-direction: column; align-items: stretch; gap: var(--space-3); }
  .hero__ctas .btn { width: 100%; }
}

/* Mobile: keep big fonts — undo the earlier mobile font-size reductions */
@media (max-width: 640px) {
  .hero__headline { font-size: var(--text-5xl) !important; }
  .meet-misty__body h2,
  .dancer-proof h2,
  .secondary-hook h2,
  .mayan h2,
  .ingredients h2,
  .club-intro h2,
  .what-you-get h2,
  .essences h2,
  .final-close h2,
  .faq h2,
  .testimonials h2 { font-size: var(--text-3xl) !important; }
}
@media (max-width: 380px) {
  .hero__headline { font-size: var(--text-5xl) !important; }
  .nav__cta .btn { padding: 8px 14px; font-size: var(--text-sm); }
}

/* ============================================================
   CLUB INTRO — invitation card treatment
   Override the original plain centered look. Section becomes
   a subtle sage backdrop framing a creamy invitation card with
   a gold border, larger serif headline, and ornament flourish.
   ============================================================ */
.club-intro {
  background: var(--bg-sage);
}
.club-intro__inner {
  background: var(--bg-warm);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 5vw, 4rem);
  position: relative;
}
/* Inner certificate border */
.club-intro__inner::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201,169,110,0.30);
  border-radius: calc(var(--radius-md) - 4px);
  pointer-events: none;
}
/* Corner ornaments */
.club-intro__inner::after {
  content: '✦';
  position: absolute;
  bottom: 20px;
  right: 24px;
  color: var(--gold);
  font-size: 10px;
  opacity: 0.5;
  pointer-events: none;
}

.club-intro__badge {
  background: transparent;
  border: none;
  margin-bottom: var(--space-3) !important;
  font-family: var(--font-sans);
  font-size: 10px !important;
  font-style: normal;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  padding: 0;
}

.club-intro h2 {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl)) !important;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4) !important;
}
/* Thin gold rule under headline */
.club-intro h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin: var(--space-3) auto 0;
  border-radius: 1px;
}

.club-intro__body {
  font-size: var(--text-base);
  color: var(--text-dark);
  line-height: var(--leading-normal);
  max-width: 38ch;
  margin: 0 auto;
}
.club-intro__body p { color: var(--text-dark); margin-bottom: var(--space-2); }
.club-intro__body p + p { margin-top: 0; }

/* "limited number of people" emphasis */
.club-intro__body em {
  background: linear-gradient(180deg, transparent 60%, var(--gold-light) 60%);
  padding: 0 3px;
  font-style: italic;
  color: var(--green-dark);
  font-weight: var(--weight-bold);
  font-family: var(--font-serif);
}

/* Ornamental divider */
.club-intro__divider {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: var(--space-6) auto;
  max-width: 240px;
}
.club-intro__divider span:first-child,
.club-intro__divider span:last-child {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.6));
}
.club-intro__divider span:last-child {
  background: linear-gradient(270deg, transparent, rgba(201,169,110,0.6));
}
.club-intro__divider-gem {
  flex: 0;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 4px;
}

/* Charter definition block */
.club-intro__charter {
  max-width: 36ch;
  margin: 0 auto;
}
.club-intro__charter p { color: var(--text-body); font-size: var(--text-base); line-height: var(--leading-relaxed); }
.club-intro__charter-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-lg) !important;
  color: var(--green-dark) !important;
  margin-bottom: var(--space-2) !important;
  line-height: var(--leading-snug);
}

.club-intro__cta { margin-top: var(--space-6) !important; }
.club-intro__cta .btn { padding: 16px 36px; font-size: var(--text-lg); }

/* ============================================================
   No Sore Days Club logo placements
   ============================================================ */
.club-intro__logo {
  display: block;
  margin: 0 auto var(--space-3);
}
.club-intro__logo img {
  max-width: 460px;
  width: 100%;
  height: auto;
  display: block;
}
.price-table__logo {
  display: block;
  margin: 0 auto var(--space-2);
  text-align: center;
}
.price-table__logo img {
  max-width: 340px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
.price-table__head { text-align: center; }
.price-table__head h3 {
  font-size: var(--text-base);
  font-family: var(--font-sans);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}
.final-close__logo {
  display: block;
  margin: 0 auto var(--space-5);
}
.final-close__logo img {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
  /* Render the color logo as monochrome cream on the dark-green band */
  filter: brightness(0) invert(1) opacity(0.95);
}
@media (max-width: 640px) {
  .club-intro__logo img { max-width: 320px; }
  .final-close__logo img { max-width: 200px; }
  .price-table__logo img { max-width: 260px; }
}

/* ============================================================
   INGREDIENTS — card box + bottle placeholder + smaller chips
   ============================================================ */
.ingredients__card {
  background: linear-gradient(to right, rgba(255,145,50,0.18) 0%, rgba(255,175,90,0.10) 30%, #fff 65%);
  border: 1px solid rgba(255,145,50,0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  padding-left: 0;
  margin-top: var(--space-4);
  display: flex;
  gap: var(--space-6);
  align-items: stretch;
  overflow: hidden;
  position: relative;
}
/* Green glow behind bottle — fades in when card scrolls into view */
.ingredients__card::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 220px;
  background: radial-gradient(ellipse at 20% 50%, rgba(91,117,83,0.38) 0%, rgba(91,117,83,0.12) 45%, transparent 72%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.6s ease 0.2s;
}
.ingredients__card.is-visible::before {
  opacity: 1;
}
.ingredients__bottle {
  flex: 0 0 160px;
  align-self: stretch;
  overflow: hidden;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  margin-top: calc(-0px);   /* card already has padding:0 on left */
}
.ingredients__bottle-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);  /* zoom slightly so bottle fills edge-to-edge */
  transform-origin: center center;
}
.ingredients__card-body {
  flex: 1;
  min-width: 0;
}
.ingredients__card-body .ingredients__support {
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
}
.ingredients__card-body .ingredients__no-list {
  font-size: 0.7rem;
  margin-bottom: var(--space-4);
}
.ingredients__card-body .ingredients__chips {
  margin-top: 0;
  margin-bottom: 0;
  gap: 5px;
}
.ingredients__card-body .ingredients__chip {
  font-size: 0.65rem;
  padding: 3px 9px;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .ingredients__card { flex-direction: column; padding-left: var(--space-6); padding-top: 0; }
  .ingredients__bottle {
    flex: 0 0 auto;
    width: calc(100% + var(--space-12));
    margin-left: calc(-1 * var(--space-6));
    margin-right: calc(-1 * var(--space-6));
    height: 220px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .ingredients__bottle-img { transform: scale(1.05); object-position: center 20%; }
  .ingredients__bottle-placeholder { width: 100%; aspect-ratio: 16/5; flex-direction: row; gap: var(--space-2); }
}

/* ============================================================
   FINAL-CLOSE — CTA card box
   ============================================================ */
.final-close__card {
  background: rgba(255,253,249,0.11);
  border: 1.5px solid rgba(201,169,110,0.55);
  border-radius: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 2rem);
  margin-top: var(--space-6);
  text-align: center;
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

/* ============================================================
   BUNNY STREAM — Video sections
   Protocol: 2peas IfSo Media Protocol v0.9
   ============================================================ */
.video-section {
  padding-block: var(--section-pad-y);
  background: var(--bg-warm);
}

.video-section--dark {
  background: var(--green-dark);
}

.video-section--dark .video-section__header .eyebrow {
  color: rgba(247, 241, 232, 0.55);
}

.video-section--dark .video-section__header h2 {
  color: var(--text-white);
}

.video-section__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.video-section__header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: var(--space-2);
}

/* Portrait player — clips are vertical/portrait format */
.bunny-player {
  max-width: 420px;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 56px rgba(0, 0, 0, 0.28);
  background: #111;
}

.bunny-player--loaded .bunny-player__placeholder {
  display: none;
}

/* Default: 4:5 (Misty_spray) */
.bunny-player__ratio {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  border-radius: inherit;
}

/* 9:16 vertical variant (Misty_orange) */
.bunny-player--vertical .bunny-player__ratio {
  aspect-ratio: 9 / 16;
}

/* Placeholder shown until real GUID is configured */
.bunny-player__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: linear-gradient(135deg, var(--green-dark) 0%, #2a3c28 100%);
  color: rgba(247, 241, 232, 0.55);
}

.bunny-player__placeholder-icon {
  font-size: 3rem;
  opacity: 0.4;
}

.bunny-player__placeholder-label {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   MEET MISTY — wide image variant
   ============================================================ */
.meet-misty__photo--wide {
  aspect-ratio: 4 / 3;
}
.meet-misty__photo--wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Hero price block — sits between CTA button and Meet Misty link */
.hero__price-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-5);
  background: rgba(91, 117, 83, 0.07);
  border-left: 3px solid var(--green-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: var(--space-3);
}

.hero__price-main {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  color: var(--text-dark);
  line-height: 1.4;
}

.hero__price-main strong {
  color: var(--green-dark);
  font-size: 1.2em;
  font-weight: var(--weight-bold);
}

.hero__price-compare {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.4;
}

.hero__price-compare strong {
  color: var(--green-primary);
  font-weight: var(--weight-semibold);
}

/* ============================================================
   ANIMATION SYSTEM
   ============================================================ */

/* --- Hero load-in (fires on page load, not scroll) --------- */
@keyframes heroLift {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-animate="hero"] {
  opacity: 0;
  animation: heroLift 700ms ease forwards;
  animation-delay: var(--hero-delay, 0ms);
}

/* --- Button micro-shine ------------------------------------ */
/* Subtle light sweep on primary + gold CTAs, every ~10s      */
.btn--primary,
.btn--gold {
  position: relative;
  overflow: hidden;
}

.btn--primary::after,
.btn--gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 65%
  );
  background-size: 250% 100%;
  background-position: -250% center;
  animation: btnShine 10s ease-in-out infinite;
  pointer-events: none;
  border-radius: inherit;
}

.btn--gold::after {
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 65%
  );
  background-size: 250% 100%;
  animation-delay: 2s; /* offset so primary and gold don't shine simultaneously */
}

@keyframes btnShine {
  0%   { background-position: -250% center; }
  7%   { background-position: 250% center; }
  100% { background-position: 250% center; }
}

/* --- Ingredient chips stagger ------------------------------ */
/* JS adds .chips-visible to #ingredientChips on scroll-in    */
#ingredientChips .ingredients__chip {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

#ingredientChips.chips-visible .ingredients__chip {
  opacity: 1;
  transform: translateY(0);
}

#ingredientChips.chips-visible .ingredients__chip:nth-child(1)  { transition-delay: 0ms;   }
#ingredientChips.chips-visible .ingredients__chip:nth-child(2)  { transition-delay: 60ms;  }
#ingredientChips.chips-visible .ingredients__chip:nth-child(3)  { transition-delay: 120ms; }
#ingredientChips.chips-visible .ingredients__chip:nth-child(4)  { transition-delay: 180ms; }
#ingredientChips.chips-visible .ingredients__chip:nth-child(5)  { transition-delay: 240ms; }
#ingredientChips.chips-visible .ingredients__chip:nth-child(6)  { transition-delay: 300ms; }
#ingredientChips.chips-visible .ingredients__chip:nth-child(7)  { transition-delay: 360ms; }
#ingredientChips.chips-visible .ingredients__chip:nth-child(8)  { transition-delay: 420ms; }

/* --- Testimonial soft stack ------------------------------- */
/* Very subtle card tilt for a handwritten / organic feel      */
.testimonials__grid .testimonial-card:nth-child(1) {
  transform: rotate(-0.4deg) translateY(0);
}
.testimonials__grid .testimonial-card:nth-child(2) {
  transform: rotate(0.3deg) translateY(0);
}
.testimonials__grid .testimonial-card:nth-child(3) {
  transform: rotate(-0.25deg) translateY(0);
}
.testimonials__grid .testimonial-card:hover {
  transform: rotate(0deg) translateY(-3px) !important;
}

/* ============================================================
   MOTION ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  /* Ensure hero elements are visible if animation is disabled */
  [data-animate="hero"] {
    opacity: 1;
    transform: none;
  }

  #ingredientChips .ingredients__chip {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   FREE FOUNDING MEMBERSHIP — banner + charter
   Shared across F-series (subscription) and N-series (one-time)
   Class prefix: .fm-* (founding member)
   ============================================================ */

/* Top banner — sticky strip above nav */
.fm-banner {
  position: relative;
  background: linear-gradient(90deg, #FFF8E7 0%, #FFEFCB 50%, #FFF8E7 100%);
  border-bottom: 1px solid #E8C57A;
  color: #5C3F00;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 0;
  letter-spacing: 0.01em;
  z-index: 9;
}
.fm-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
  padding: 0 1rem;
}
.fm-banner__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: #B8860B;
  color: #FFF8E7;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fm-banner__count strong {
  font-size: 1.15rem;
  color: #8B5A00;
  font-weight: 800;
  margin-right: 0.2em;
}
.fm-banner__count-label {
  opacity: 0.85;
  font-weight: 500;
}
.fm-banner__cta {
  background: #2D2A26;
  color: #FFF8E7;
  text-decoration: none;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, background 0.15s ease;
}
.fm-banner__cta:hover {
  background: #4A4540;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .fm-banner { font-size: 0.82rem; padding: 0.5rem 0; }
  .fm-banner__inner { gap: 0.5rem; }
  .fm-banner__tag { font-size: 0.7rem; padding: 0.15rem 0.55rem; }
  .fm-banner__count strong { font-size: 1rem; }
  .fm-banner__cta { font-size: 0.75rem; padding: 0.3rem 0.7rem; }
}

/* Founding Charter — callout below hero */
.fm-charter {
  max-width: 720px;
  margin: var(--space-8) auto;
  padding: var(--space-6) var(--space-6);
  background: linear-gradient(180deg, #FFFCF1 0%, #FFF6DC 100%);
  border: 2px solid #E8C57A;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(184, 134, 11, 0.12);
  position: relative;
}
.fm-charter::before {
  content: "✦ Charter ✦";
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: #B8860B;
  color: #FFF8E7;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
}
.fm-charter__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--space-5);
}
.fm-charter__icon {
  font-size: 2.5rem;
  line-height: 1;
}
.fm-charter__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8B5A00;
  margin: 0 0 0.25rem;
}
.fm-charter__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: #2D2A26;
  margin: 0;
  line-height: 1.2;
}
.fm-charter__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.fm-charter__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #3D3530;
}
.fm-charter__list li::before {
  content: "✓";
  display: inline-block;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 1.1rem;
  color: #B8860B;
  width: 1.2em;
}
.fm-charter__list strong {
  color: #2D2A26;
}
.fm-charter__count-line {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px dashed #E8C57A;
  font-size: 0.95rem;
  color: #5C3F00;
  text-align: center;
}
.fm-charter__count-line strong[data-nsd-counter] {
  display: inline-block;
  background: #B8860B;
  color: #FFF8E7;
  padding: 0.05em 0.45em;
  border-radius: 4px;
  font-weight: 800;
  font-size: 1.15em;
  margin: 0 0.15em;
}
.fm-charter__small {
  margin-top: var(--space-4);
  font-size: 0.78rem;
  color: #6B5A40;
  text-align: center;
  font-style: italic;
}
.fm-charter__cta-row {
  margin-top: var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 640px) {
  .fm-charter { margin: var(--space-6) 1rem; padding: var(--space-5) var(--space-4); }
  .fm-charter__icon { font-size: 2rem; }
  .fm-charter__title { font-size: 1.25rem; }
  .fm-charter__list li { font-size: 0.95rem; }
}

/* Hero badge dot — when used with the founding-member text, keep gold */
.hero__badge--fm .hero__badge-dot {
  background: #B8860B;
}
.hero__badge--fm strong[data-nsd-counter] {
  font-weight: 800;
  color: #B8860B;
}

/* ============================================================
   SECRET BACK BAR — only renders when ?from=secret is in URL.
   Injected by /assets/js/secret-back-bar.js at top of <body>.
   ============================================================ */
.secret-back-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  background: linear-gradient(180deg, #D32F2F 0%, #B71C1C 100%);
  color: #FFFFFF;
  font-family: var(--font-sans, 'DM Sans', system-ui, sans-serif);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-bottom: 3px solid #7B0000;
  box-shadow: 0 4px 14px rgba(183, 28, 28, 0.35);
  text-transform: uppercase;
  transition: background 0.15s ease, transform 0.1s ease;
}
/* Push everything below the back-bar down. JS sets --sbb-h with the
   measured bar height; CSS uses it for the spacer. */
body.has-secret-back-bar { padding-top: var(--sbb-h, 54px); }
body.has-secret-back-bar nav,
body.has-secret-back-bar header[role="banner"],
body.has-secret-back-bar .site-nav {
  top: var(--sbb-h, 54px) !important;
}
.secret-back-bar:hover {
  background: linear-gradient(180deg, #E53935 0%, #C62828 100%);
}
.secret-back-bar:active { transform: translateY(1px); }
.secret-back-bar__arrow {
  font-size: 1.4em;
  font-weight: 900;
  color: #FFD54F;
  line-height: 1;
}
.secret-back-bar__label {
  font-weight: 800;
}
.secret-back-bar__sub {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-left: auto;
  background: rgba(0, 0, 0, 0.22);
  padding: 0.25em 0.6em;
  border-radius: 4px;
}
@media (max-width: 640px) {
  .secret-back-bar { font-size: 0.95rem; padding: 0.7rem 0.9rem; }
  .secret-back-bar__sub { display: none; }
}

/* ============================================================
   BODYMAP MARQUEE — slim scrolling top bar linking to /bodymap.
   Injected by assets/js/main.js on every lander + the root.
   Hidden on /admin, /secret, /terms, and whenever the secret-
   back-bar is active (red bar wins).
   ============================================================ */
.bodymap-marquee {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 36px;
  z-index: 110;                /* nav sits at z-index 100; back-bar at 9990 */
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #3D5438 0%, #2A3D26 100%);
  color: #FFFDF9;
  text-decoration: none;
  border-bottom: 2px solid #C9A96E;
  cursor: pointer;
  user-select: none;
  transition: filter 0.18s ease;
}
.bodymap-marquee:hover { filter: brightness(1.08); }
.bodymap-marquee:focus-visible { outline: 2px solid #C9A96E; outline-offset: -2px; }

.bodymap-marquee__track {
  display: inline-flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  will-change: transform;
  animation: bm-scroll 26s linear infinite;
}
.bodymap-marquee:hover .bodymap-marquee__track {
  animation-play-state: paused;
}
.bodymap-marquee__msg {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding-right: 5rem;
  font-family: var(--font-sans, 'DM Sans', system-ui, sans-serif);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.bodymap-marquee__msg strong {
  color: #FFE4A3;
  font-weight: 800;
}
.bodymap-marquee__msg .bm-emoji {
  font-size: 1.05em;
}
.bodymap-marquee__msg .bm-arrow {
  color: #C9A96E;
  font-weight: 800;
}

@keyframes bm-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .bodymap-marquee__track { animation: none; }
  .bodymap-marquee__track { justify-content: center; }
}

/* Push the lander's fixed nav down by the marquee height when active. */
body.has-bodymap-marquee:not(.has-secret-back-bar) nav,
body.has-bodymap-marquee:not(.has-secret-back-bar) header[role="banner"],
body.has-bodymap-marquee:not(.has-secret-back-bar) .site-nav {
  top: 36px !important;
}
/* Body padding must account for BOTH the marquee (36px) AND the nav (--nav-height).
   The base rule `body { padding-top: var(--nav-height) !important }` only covers the
   nav. Without this override the nav sits at top: 36px + 68px = 104px but the body
   content starts at 68px, causing the nav to clip the first content element by 36px. */
body.has-bodymap-marquee:not(.has-secret-back-bar) {
  padding-top: calc(var(--nav-height) + 36px) !important;
}

/* Red back-bar wins — hide the marquee when it's active. */
body.has-secret-back-bar .bodymap-marquee {
  display: none !important;
}

@media (max-width: 520px) {
  /* On mobile the marquee shares the visual budget with the green nav
     directly below it. Give it more vertical room so the message reads
     comfortably without crowding the AvoJoy logo + Join button. */
  .bodymap-marquee { height: 44px; }
  .bodymap-marquee__msg { font-size: 0.95rem; padding-right: 3.5rem; }
  .bodymap-marquee__msg strong { font-size: 1.02em; }
  body.has-bodymap-marquee:not(.has-secret-back-bar) nav,
  body.has-bodymap-marquee:not(.has-secret-back-bar) header[role="banner"],
  body.has-bodymap-marquee:not(.has-secret-back-bar) .site-nav { top: 44px !important; }
  body.has-bodymap-marquee:not(.has-secret-back-bar) { padding-top: 44px; }
}
