:root {
  --bg: #FBF7F0;
  --bg-dark: #F0EBE0;
  --accent: #E8A317;
  --accent-dark: #C4850A;
  --text: #1C1C1C;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --white: #FFFFFF;
  --border: rgba(28, 28, 28, 0.12);
  --radius: 6px;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 10;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 48px 80px;
  min-height: 580px;
}
.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent-dark);
}
.hero-sub {
  font-size: 19px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.stat {}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-stack {
  position: relative;
  width: 280px;
  height: 340px;
}
.reel-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  width: 220px;
}
.reel-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  flex-shrink: 0;
}
.reel-card span { font-size: 14px; font-weight: 500; color: var(--text); }
.reel-card-1 { top: 0; left: 0; transform: rotate(-4deg); z-index: 3; }
.reel-card-2 { top: 60px; left: 40px; transform: rotate(2deg); z-index: 2; }
.reel-card-3 { top: 130px; left: 0; transform: rotate(-2deg); z-index: 1; }

/* WHAT */
.what {
  background: var(--white);
  padding: 80px 48px;
}
.what-header { margin-bottom: 56px; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 560px;
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.what-card {
  background: var(--bg);
  padding: 40px 36px;
  border-radius: 0;
}
.what-icon {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.what-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.what-card p { font-size: 15px; color: var(--text-mid); line-height: 1.65; }

/* NICHE LIST */
.niches {
  background: var(--text);
  padding: 80px 48px;
}
.niches-inner { max-width: 800px; }
.niches-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}
.niche-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.niche-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s;
}
.niche-tag:hover { background: rgba(255,255,255,0.18); }
.niches-note {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  line-height: 1.65;
}

/* HOW */
.how {
  background: var(--bg);
  padding: 80px 48px;
}
.how .section-title { margin-bottom: 56px; }
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.how-step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  padding-top: 4px;
}
.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.step-content p { font-size: 16px; color: var(--text-mid); line-height: 1.65; }

/* PRICING */
.pricing {
  background: var(--accent);
  padding: 80px 48px;
}
.pricing-inner { max-width: 640px; }
.pricing-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(0,0,0,0.5);
  font-weight: 600;
  margin-bottom: 20px;
}
.pricing-price { margin-bottom: 20px; }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.price-period { font-size: 20px; color: rgba(0,0,0,0.6); margin-left: 8px; }
.pricing-note { font-size: 16px; color: rgba(0,0,0,0.65); line-height: 1.6; margin-bottom: 40px; }
.pricing-math { display: flex; flex-direction: column; gap: 8px; }
.math-line { font-size: 18px; color: rgba(0,0,0,0.8); }
.math-line strong { font-weight: 700; color: var(--text); }

/* CLOSING */
.closing {
  background: var(--white);
  padding: 80px 48px;
}
.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 760px;
  font-style: italic;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
}
.footer-copy { font-size: 14px; color: var(--text-light); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 60px 24px; }
  .hero-visual { display: none; }
  .what-grid { grid-template-columns: 1fr; }
  .what { padding: 60px 24px; }
  .niches { padding: 60px 24px; }
  .how { padding: 60px 24px; }
  .pricing { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
  .nav { padding: 20px 24px; }
  .footer { padding: 32px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { gap: 28px; }
  .how-step { grid-template-columns: 60px 1fr; gap: 20px; }
  .step-num { font-size: 36px; }
}