/* ============================================================
   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--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: 40px !important; }
body { padding-top: calc(var(--nav-height) + 40px) !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__logo img {
  height: 36px;
  width: auto;
}

.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__sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  max-width: 44ch;
}

.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);
}

@media (max-width: 980px) {
  .essences__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* ============================================================
   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 {
  width: 72px;
  height: 72px;
  background-color: var(--bg-sage);
  border: 2px solid var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.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;
}

.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: rgba(247, 241, 232, 0.75);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-10);
}

.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.40);
  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 img { height: 32px; opacity: 0.8; }

.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; }

  .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; }

  /* 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);
  }
}
