:root {
  --sage: #4A7C59;
  --sage-light: #6A9E78;
  --sage-dark: #355A3F;
  --cream: #FBF9F3;
  --charcoal: #1C1C1C;
  --warm-gray: #6B6B6B;
  --light-tan: #F0EBE1;
  --terracotta: #C8602A;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  background: var(--cream);
  padding: 80px 24px 96px;
  overflow: hidden;
  position: relative;
}

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

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-kicker {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  color: var(--warm-gray);
  max-width: 480px;
  margin-bottom: 16px;
  line-height: 1.65;
}

.hero-detail {
  font-size: 14px;
  color: var(--sage);
  font-weight: 500;
  font-family: var(--font-body);
}

/* Fridge illustration */
.fridge-scene {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.fridge-body {
  background: #E8F0E9;
  border-radius: 16px;
  padding: 20px 24px 20px 20px;
  width: 220px;
  border: 2px solid var(--sage);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.fridge-body::before {
  content: 'FRIDGE';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--sage);
  background: var(--cream);
  padding: 0 8px;
  font-weight: 500;
}

.fridge-shelf {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(74,124,89,0.2);
}

.fridge-shelf:last-child { border-bottom: none; }

.food-item {
  border-radius: 6px;
  position: relative;
}

.basil {
  width: 28px; height: 40px;
  background: #5A8F5C;
  border-radius: 4px 4px 2px 2px;
}
.basil::after {
  content: '';
  position: absolute;
  top: -6px; left: 50%; transform: translateX(-50%);
  width: 2px; height: 8px;
  background: #4A7C4A;
  border-radius: 2px;
}

.apple {
  width: 26px; height: 28px;
  background: #E8453C;
  border-radius: 50%;
}
.apple::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px;
  background: #6B4226;
  border-radius: 2px;
}

.carrot {
  width: 8px; height: 34px;
  background: linear-gradient(to bottom, #F59E0B, #E8790A);
  border-radius: 4px 4px 8px 8px;
  transform: rotate(-5deg);
}

.milk {
  width: 22px; height: 38px;
  background: #FFFFFF;
  border: 1.5px solid #D0D7D2;
  border-radius: 4px;
}
.milk::after {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 14px; height: 8px;
  background: #4A7C59;
  border-radius: 0 0 4px 4px;
}

.eggs {
  width: 34px; height: 26px;
  background: #FFF5E6;
  border: 1.5px solid #E8D8C0;
  border-radius: 4px;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.eggs::before, .eggs::after {
  content: '';
  width: 12px; height: 16px;
  background: #F5E6C8;
  border-radius: 50%;
  border: 1px solid #E0D0B0;
}

.cheese {
  width: 32px; height: 22px;
  background: #F5C842;
  border-radius: 4px;
  border: 1px solid #E0B030;
}
.cheese::before {
  content: '';
  position: absolute;
  top: 2px; left: 4px;
  width: 6px; height: 6px;
  background: #E0B030;
  border-radius: 50%;
}

/* Text bubble */
.text-bubble {
  background: white;
  border: 1.5px solid var(--sage);
  border-radius: 16px;
  padding: 16px 20px;
  width: 280px;
  box-shadow: 0 8px 32px rgba(74,124,89,0.12);
  position: relative;
}

.text-bubble::before {
  content: '';
  position: absolute;
  top: -10px;
  right: 40px;
  width: 16px; height: 16px;
  background: white;
  border-left: 1.5px solid var(--sage);
  border-top: 1.5px solid var(--sage);
  transform: rotate(45deg);
}

.bubble-label {
  font-size: 11px;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  font-weight: 500;
}

.bubble-line {
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.bubble-line.accent {
  color: var(--terracotta);
  font-weight: 500;
}

/* ── SECTION SHARED ── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 96px 24px;
  background: var(--light-tan);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.step-body p {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  padding: 20px 8px 0;
}

/* ── FEATURES ── */
.features {
  padding: 96px 24px;
  background: var(--cream);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: var(--charcoal);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: var(--cream);
  padding: 36px 32px;
  transition: background 0.2s;
}

.feature-card:hover {
  background: var(--light-tan);
}

.feature-card.feature-wide {
  grid-column: span 2;
}

.feature-card.feature-accent {
  background: var(--sage);
}

.feature-card.feature-accent h3,
.feature-card.feature-accent p {
  color: white;
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.65;
}

/* ── WHO IT'S FOR ── */
.who-for {
  padding: 96px 24px;
  background: var(--light-tan);
}

.audience-split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-card {
  padding: 32px;
  background: var(--cream);
  border-radius: 12px;
  border: 1.5px solid rgba(74,124,89,0.2);
}

.audience-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.25;
}

.audience-card p {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.65;
}

/* ── PRINCIPLES ── */
.principles {
  padding: 96px 24px;
  background: var(--sage);
}

.principles-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.principles-text .section-label {
  color: rgba(255,255,255,0.7);
}

.principles-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.principles-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 12px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 900;
  color: white;
  line-height: 1;
  white-space: nowrap;
}

.stat-number span {
  font-size: 48px;
  font-weight: 700;
}

.stat-caption {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  max-width: 200px;
  margin-top: 12px;
  line-height: 1.5;
}

/* ── CLOSING ── */
.closing {
  padding: 96px 24px;
  background: var(--cream);
  text-align: center;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.closing p {
  font-size: 18px;
  color: var(--warm-gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-meta p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    display: flex;
    justify-content: center;
  }
  .fridge-scene {
    align-items: center;
  }
  .steps-row {
    flex-direction: column;
    gap: 32px;
  }
  .step-connector {
    display: none;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card.feature-wide {
    grid-column: span 1;
  }
  .audience-split {
    grid-template-columns: 1fr;
  }
  .principles-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stat-number {
    font-size: 72px;
  }
}

@media (max-width: 600px) {
  .hero { padding: 56px 20px 72px; }
  .features, .how-it-works, .who-for, .principles, .closing { padding: 64px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}