/* === BASE === */
:root {
  --bg: #F7F3ED;
  --fg: #1A1A1A;
  --accent: #C67D4E;
  --green: #2D4A3E;
  --cream: #EDE8DF;
  --muted: #7A7A72;
  --border: #D4CFC5;
  --radius: 12px;
}

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

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

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }

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

.section-headline {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--green);
  margin-bottom: 20px;
}

/* === NAV === */
.nav {
  padding: 24px 40px;
  display: flex;
  align-items: center;
}
.nav-inner { display: flex; align-items: center; gap: 16px; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* === HERO === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 40px 100px;
  min-height: 70vh;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.hero-headline {
  font-size: clamp(36px, 5vw, 62px);
  color: var(--green);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline em { font-style: italic; color: var(--accent); }
.hero-body {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}
.hero-right { display: flex; justify-content: center; align-items: center; }
.hero-visual {
  position: relative;
  width: 320px; height: 320px;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.hero-circle-1 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, #2D4A3E18 0%, transparent 70%);
  top: 0; left: 0;
}
.hero-circle-2 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, #C67D4E20 0%, transparent 70%);
  top: 50px; left: 50px;
  animation-delay: -2s;
}
.hero-circle-3 {
  width: 140px; height: 140px;
  background: radial-gradient(circle, #2D4A3E30 0%, transparent 70%);
  top: 90px; left: 90px;
  animation-delay: -4s;
}
.hero-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
}
.hero-cat-art {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* === HOW === */
.how { padding: 80px 40px; background: var(--cream); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 48px auto 0;
}
.step-card {
  padding: 32px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--green);
  opacity: 0.2;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 20px; color: var(--green); margin-bottom: 10px; }
.step-card p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* === INGREDIENTS === */
.ingredients {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.ingredients-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ingredient-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  background: var(--cream);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  border: 1px solid var(--border);
}
.tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.tag-blue { background: #4A7FA5; }
.tag-orange { background: #E8914A; }
.tag-green { background: #6B9E6B; }
.ingredient-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ingredient-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--fg);
}
.ingredient-list li::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* === OUTCOMES === */
.outcomes { padding: 80px 40px; background: var(--green); }
.outcomes .section-label { color: var(--accent); }
.outcomes .section-headline { color: var(--bg); }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin-top: 48px;
}
.outcome {
  padding: 28px 32px;
  background: rgba(247,243,237,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(247,243,237,0.12);
}
.outcome-icon {
  width: 40px; height: 40px;
  background: rgba(198,125,78,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.outcomes h3 { font-size: 18px; color: var(--bg); margin-bottom: 8px; }
.outcomes p { font-size: 14px; color: rgba(247,243,237,0.6); line-height: 1.6; }

/* === PRICING === */
.pricing { padding: 100px 40px; text-align: center; }
.pricing-sub { font-size: 16px; color: var(--muted); margin-bottom: 48px; }
.pricing-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.price-card {
  flex: 1;
  padding: 40px 36px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: left;
  position: relative;
}
.price-card-featured {
  background: var(--green);
  border-color: var(--green);
}
.price-card-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-card-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.price-card-featured .price-card-label { color: rgba(247,243,237,0.6); }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}
.price-card-featured .price-amount { color: var(--bg); }
.price-unit { font-size: 16px; font-weight: 400; }
.price-note { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }
.price-card-featured .price-note { color: rgba(247,243,237,0.6); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-features li { font-size: 14px; color: var(--fg); }
.price-card-featured .price-features li { color: rgba(247,243,237,0.85); }
.price-cta {
  display: block;
  text-align: center;
  margin-top: 20px;
  padding: 12px;
  background: var(--green);
  color: white;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.price-cta:hover { background: #234036; }
.price-cta-featured { background: rgba(247,243,237,0.15); }
.price-cta-featured:hover { background: rgba(247,243,237,0.25); }

/* === CLOSING === */
.closing {
  padding: 100px 40px;
  text-align: center;
  background: var(--cream);
}
.closing-headline {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--green);
  max-width: 700px;
  margin: 0 auto 24px;
}
.closing-body {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--accent);
  margin-top: 8px;
}
.closing-cta {
  display: inline-block;
  padding: 16px 48px;
  background: var(--green);
  color: white;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 8px;
  transition: background 0.2s;
}
.closing-cta:hover { background: #234036; }

/* === FOOTER === */
.footer {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
}
.footer-note { font-size: 13px; color: var(--muted); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 60px 24px 80px; }
  .hero-right { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .ingredients { grid-template-columns: 1fr; gap: 40px; }
  .ingredients-visual { order: 2; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .pricing-grid { flex-direction: column; }
}
@media (max-width: 600px) {
  .nav { padding: 20px 24px; }
  .nav-tagline { display: none; }
}