:root {
  --bg: #faf7f2;
  --bg-alt: #f0ebe3;
  --fg: #1a1612;
  --fg-muted: #6b5f52;
  --accent: #c1440e;
  --accent-dark: #9a3509;
  --green: #5a7a5e;
  --green-light: #7a9e7e;
  --cream: #faf7f2;
  --border: #ddd4c8;
}

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

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

/* NAV */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1100px; margin: 0 auto; }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

/* HERO */
.hero {
  padding: 80px 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 440px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-tagline {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: 2px;
}

/* PRODUCT CARD */
.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.card-badge {
  display: inline-block;
  background: var(--green);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.card-description {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.card-email-form { margin-bottom: 12px; }
.card-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* PROOF */
.proof {
  background: var(--bg-alt);
  padding: 80px 40px;
}
.proof-inner { max-width: 900px; margin: 0 auto; }
.proof-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.proof-quote {
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  margin-bottom: 48px;
}
.proof-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 16px;
}
.proof-attr {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.proof-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { text-align: center; flex: 1; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin: 0 32px;
}

/* PROTOCOL */
.protocol { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--bg-alt);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--accent);
}
.step-body {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* BONUS */
.bonus {
  background: var(--fg);
  color: var(--cream);
  padding: 80px 40px;
}
.bonus-inner { max-width: 900px; margin: 0 auto; }
.bonus-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 16px;
}
.bonus-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.bonus-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
}
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.recipe {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  padding: 20px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}

/* PRICING */
.pricing { padding: 80px 40px; max-width: 900px; margin: 0 auto; text-align: center; }
.pricing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto 40px;
}
.price-card {
  background: white;
  border: 2px solid var(--accent);
  border-radius: 4px;
  padding: 40px;
  max-width: 480px;
  margin: 0 auto;
}
.price-urgency {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}
.price-compare {
  font-size: 1.8rem;
  color: var(--fg-muted);
  text-decoration: line-through;
}
.price-sale {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.price-includes { text-align: left; }
.incl-item {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-alt);
  display: flex;
  align-items: center;
  gap: 8px;
}
.incl-item::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* EMAIL FORM */
.email-form {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.email-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: white;
  color: var(--fg);
  min-width: 0;
}
.email-input:focus {
  outline: none;
  border-color: var(--accent);
}
.email-submit {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.email-submit:hover { background: var(--accent-dark); }
.email-form-closing { justify-content: center; margin-top: 20px; }

/* PRICING OPTIONS */
.pricing-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 20px;
}
.price-card-free {
  border: 1px solid var(--border);
  background: white;
}
.price-card-paid {
  border: 2px solid var(--accent);
}
.price-card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.price-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.price-card-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.pricing-gate-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* CLOSING */
.closing {
  background: var(--accent);
  color: white;
  padding: 100px 40px;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 36px;
}
.cta-tag {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* FOOTER */
.footer {
  padding: 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.footer-legal {
  font-size: 0.72rem;
  color: var(--fg-muted);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .hero-headline { font-size: 2.4rem; }
  .step-grid { grid-template-columns: 1fr; gap: 32px; }
  .recipe-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-stats { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .pricing, .protocol, .hero { padding: 60px 24px; }
  .bonus, .closing { padding: 60px 24px; }
}