:root {
  --bg: #F7F4F0;
  --fg: #1A1917;
  --accent: #C8963E;
  --accent-light: rgba(200, 150, 62, 0.12);
  --muted: #7A7570;
  --border: rgba(26, 25, 23, 0.12);
  --cream-dark: #EDE9E2;
}

*, *::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, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 80px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 40px;
  max-width: 700px;
}

.hero-line {
  display: block;
}

.hero-lede {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* MANIFESTO */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 120px 80px;
}

.manifesto-inner {
  max-width: 680px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}

.manifesto-body {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 32px;
  color: var(--bg);
}

/* HOW IT WORKS */
.how-it-works {
  padding: 120px 80px;
  background: var(--bg);
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 56px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 960px;
}

.step {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.step-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 24px;
  -webkit-text-stroke: 1px var(--accent);
}

.step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--fg);
}

.step-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* FEATURED BUNDLE */
.bundle-featured {
  background: var(--fg);
  color: var(--bg);
  padding: 80px;
  margin-bottom: 60px;
  max-width: 960px;
}

.bundle-featured-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.bundle-featured-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 20px;
  line-height: 1.15;
}

.bundle-featured-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(247, 244, 240, 0.6);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.bundle-featured-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--fg);
  text-decoration: none;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.3s ease;
  margin-bottom: 12px;
}

.bundle-featured-cta:hover {
  background: #d4a84a;
}

.bundle-featured-tagline {
  font-size: 12px;
  font-weight: 300;
  color: rgba(247, 244, 240, 0.4);
}

/* PRODUCTS */
.products {
  padding: 120px 80px;
  background: var(--cream-dark);
}

.products-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  margin-bottom: 64px;
  max-width: 560px;
  line-height: 1.2;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 960px;
}

.product-card {
  padding: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.product-card:hover {
  border-color: var(--accent);
}

.product-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.product-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--fg);
}

.product-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 140px 80px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 680px;
}

.closing-statement {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 48px;
  color: var(--fg);
}

.closing-sub {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* FOOTER */
.footer {
  padding: 60px 80px;
  background: var(--fg);
  color: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 24px;
}

.footer-note {
  font-size: 12px;
  color: rgba(247, 244, 240, 0.4);
  font-weight: 300;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 80px 32px 80px;
  }

  .manifesto {
    padding: 80px 32px;
  }

  .how-it-works {
    padding: 80px 32px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .products {
    padding: 80px 32px;
  }

  .bundle-featured {
    padding: 60px 32px;
    margin-bottom: 40px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .closing {
    padding: 80px 32px;
  }

  .footer {
    padding: 48px 32px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 48px;
  }

  .manifesto-body {
    font-size: 20px;
  }

  .closing-statement {
    font-size: 20px;
  }
}