:root {
  --cream: #FAF6F0;
  --cream-dark: #F0E8DC;
  --green-deep: #1B3D2F;
  --green-mid: #2A5941;
  --amber: #D4923A;
  --amber-light: #F0B96A;
  --brown: #3D2B1F;
  --text: #1A1A18;
  --text-muted: #6B6459;
  --white: #FFFFFF;
}

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

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

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

/* --- NAV --- */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid rgba(27, 61, 47, 0.1);
  position: sticky;
  top: 0;
  background: var(--cream);
  z-index: 100;
}
.nav__inner {
  display: flex;
  align-items: baseline;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav__logo {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.nav__tagline {
  font-size: 13px;
  color: var(--text-muted);
}

/* --- HERO --- */
.hero {
  padding: 80px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.hero__bg-shape {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 146, 58, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 20px;
}
.hero__headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  display: inline-block;
  padding: 7px 16px;
  border: 1.5px solid var(--green-mid);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-mid);
  letter-spacing: 0.04em;
}
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__product-mock {
  width: 380px;
  height: 420px;
  background: var(--green-deep);
  border-radius: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  box-shadow: 0 24px 64px rgba(27, 61, 47, 0.25);
  overflow: hidden;
}
.mock-label {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.mock-badge {
  display: inline-block;
  background: rgba(240, 185, 106, 0.2);
  border: 1px solid rgba(240, 185, 106, 0.4);
  color: var(--amber-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 6px;
  width: fit-content;
}
.mock-badge--2 { background: rgba(250, 246, 240, 0.1); border-color: rgba(250, 246, 240, 0.2); color: rgba(250, 246, 240, 0.7); }
.mock-badge--3 { background: rgba(42, 89, 65, 0.5); border-color: rgba(42, 89, 65, 0.8); color: rgba(250, 246, 240, 0.6); }
.mock-blob {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 60% 40%, rgba(212, 146, 58, 0.35) 0%, transparent 70%);
  border-radius: 50%;
}

/* --- FEATURES --- */
.features {
  padding: 96px 48px;
  background: var(--cream-dark);
}
.features__header {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.features__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.features__sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(27, 61, 47, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 61, 47, 0.1);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  margin-bottom: 20px;
}
.feature-card__title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.feature-card__body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- INGREDIENTS --- */
.ingredients {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.ingredients__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.ingredients__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 56px;
}
.ingredients__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(27, 61, 47, 0.12);
  border-radius: 20px;
  overflow: hidden;
}
.ing-card {
  display: flex;
  gap: 20px;
  padding: 36px 40px;
  border-bottom: 1px solid rgba(27, 61, 47, 0.1);
  border-right: 1px solid rgba(27, 61, 47, 0.1);
  align-items: flex-start;
}
.ing-card:nth-child(2n) { border-right: none; }
.ing-card:nth-child(3), .ing-card:nth-child(4) { border-bottom: none; }
.ing-card__dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 6px;
}
.ing-card__name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.ing-card__role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.ing-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- TESTIMONIALS --- */
.testimonials {
  padding: 96px 48px;
  background: var(--green-deep);
}
.testimonials__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 40px;
  text-align: center;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.test-card {
  background: rgba(250, 246, 240, 0.06);
  border: 1px solid rgba(250, 246, 240, 0.1);
  border-radius: 20px;
  padding: 32px;
}
.test-card__stars {
  font-size: 14px;
  color: var(--amber-light);
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.test-card__quote {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-style: italic;
  color: rgba(250, 246, 240, 0.85);
  line-height: 1.65;
  margin-bottom: 20px;
}
.test-card__author {
  font-size: 13px;
  font-weight: 600;
  color: rgba(250, 246, 240, 0.5);
  letter-spacing: 0.06em;
}

/* --- VISION --- */
.vision {
  padding: 96px 48px;
  background: var(--cream);
}
.vision__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.vision__marker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.vision__statement {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.vision__body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* --- FOOTER --- */
.footer {
  padding: 40px 48px;
  border-top: 1px solid rgba(27, 61, 47, 0.1);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__brand { display: flex; flex-direction: column; gap: 4px; }
.footer__name {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-deep);
}
.footer__tagline { font-size: 13px; color: var(--text-muted); }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; padding: 48px 24px; gap: 40px; }
  .hero__headline { font-size: 42px; }
  .hero__visual { order: -1; }
  .hero__product-mock { width: 100%; height: 280px; }
  .features { padding: 64px 24px; }
  .features__grid { grid-template-columns: 1fr; }
  .ingredients { padding: 64px 24px; }
  .ingredients__cards { grid-template-columns: 1fr; }
  .ing-card { border-right: none; }
  .ing-card:nth-child(3) { border-bottom: 1px solid rgba(27, 61, 47, 0.1); }
  .ing-card:nth-child(4) { border-bottom: none; }
  .testimonials { padding: 64px 24px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .vision { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
  .footer__inner { flex-direction: column; gap: 12px; text-align: center; }
}