:root {
  --bg: #F8F5F0;
  --fg: #1A1A1A;
  --accent: #C8603A;
  --forest: #2D4A3E;
  --forest-light: #3D5A4E;
  --muted: #6B6B6B;
  --border: #E0D9D0;
  --card-bg: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* SECTION SHARED */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 48px;
}

/* HERO */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--forest);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 460px;
}
.hero-img-container {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 60px rgba(45,74,62,0.15);
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--forest);
}
.placeholder-illustration { width: 100%; height: 100%; }

/* STATS */
.stats-row {
  background: var(--forest);
  padding: 48px 40px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: #F8F5F0;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: rgba(248,245,240,0.65);
  max-width: 180px;
  margin: 0 auto;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(248,245,240,0.2);
  margin: 0 40px;
}

/* WHAT YOU GET */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,96,58,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.feature-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* HOW IT WORKS */
.how-it-works { background: var(--card-bg); }
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.step-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.step-desc { font-size: 15px; color: var(--muted); line-height: 1.6; }
.step-connector {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin-top: 40px;
  flex-shrink: 0;
}

/* MEMBERSHIP */
.membership-section { background: var(--bg); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  position: relative;
}
.plan-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 32px rgba(200,96,58,0.12);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
}
.plan-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 4px;
}
.plan-price span { font-size: 20px; font-weight: 400; color: var(--muted); }
.plan-tagline { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* TESTIMONIALS */
.testimonials { background: var(--forest); }
.testimonials .section-label { color: rgba(248,245,240,0.6); }
.testimonials .section-headline { color: #F8F5F0; }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.testimonial-card {
  background: rgba(248,245,240,0.08);
  border: 1px solid rgba(248,245,240,0.12);
  border-radius: 10px;
  padding: 32px;
}
.testimonial-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: #F8F5F0;
  line-height: 1.6;
  margin-bottom: 16px;
}
.testimonial-attr {
  font-size: 13px;
  color: rgba(248,245,240,0.5);
}
.proof-bar {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(248,245,240,0.15);
}
.proof-stat {}
.proof-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 40px;
  font-weight: 800;
  color: #F8F5F0;
  margin-bottom: 6px;
}
.proof-label {
  font-size: 14px;
  color: rgba(248,245,240,0.6);
  max-width: 220px;
}

/* CLOSING */
.closing-statement { background: var(--bg); padding: 60px 40px; }
.closing-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  color: var(--forest);
  text-align: center;
  line-height: 1.5;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 8px;
}
.footer-tagline { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.footer-copy { font-size: 12px; color: var(--muted); }

/* MOBILE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px 40px; gap: 40px; }
  .hero-headline { font-size: 44px; }
  .hero-sub { font-size: 16px; }
  .stats-inner { grid-template-columns: 1fr; gap: 32px; }
  .stat-divider { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { order: -1; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .proof-bar { flex-direction: column; gap: 24px; }
  .section-inner { padding: 60px 24px; }
  .nav { padding: 16px 24px; }
}