:root {
  --bg: #F7F5F0;
  --bg-alt: #EFF1EB;
  --fg: #0D1B2A;
  --fg-muted: #4A5568;
  --accent: #BAFF39;
  --accent-dark: #9DE02E;
  --ink: #1A2332;
}

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

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

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

/* ── Navigation ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  border-bottom: 1px solid rgba(13,27,42,0.08);
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.nav-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg-alt);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 80px 60px 100px;
  min-height: 80vh;
}

.hero-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent-dark);
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--fg);
  border: 1px solid rgba(13,27,42,0.2);
  padding: 7px 14px;
  border-radius: 100px;
}

.hero-attribute {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 60px;
  border-left: 1px solid rgba(13,27,42,0.1);
}

.attribute-card {
  text-align: center;
  padding: 24px 28px;
  background: var(--bg-alt);
  border-radius: 16px;
  min-width: 120px;
}

.attr-num {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
}

.attr-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── What ── */
.what {
  padding: 100px 60px;
  background: var(--fg);
  color: var(--bg);
}

.what-inner {
  max-width: 960px;
}

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.what-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--bg);
  margin-bottom: 28px;
}

.what-body {
  font-size: 17px;
  font-weight: 300;
  color: rgba(247,245,240,0.7);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 64px;
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.ingredient h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 8px;
}

.ingredient p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(247,245,240,0.6);
  line-height: 1.6;
}

.ing-icon {
  margin-bottom: 16px;
}

/* ── Stats ── */
.stats {
  padding: 80px 60px;
  background: var(--accent);
}

.stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 60px;
}

.stat-big {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 72px;
  font-weight: 500;
  color: var(--fg);
  line-height: 1;
}

.stat-unit {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 6px 0 4px;
}

.stat-desc {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 100px;
  background: rgba(13,27,42,0.15);
}

/* ── Occasions ── */
.occasions {
  padding: 100px 60px;
  background: var(--bg);
}

.occ-inner {
  max-width: 800px;
}

.occ-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 28px;
}

.occ-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.occ-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.occ-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 400;
  color: var(--fg);
}

.occ-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  flex-shrink: 0;
}

/* ── Closing ── */
.closing {
  padding: 100px 60px;
  background: var(--bg-alt);
}

.closing-inner {
  max-width: 680px;
}

.closing-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.05;
  margin-bottom: 28px;
}

.closing-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 40px;
}

.closing-cities {
  display: flex;
  align-items: center;
  gap: 16px;
}

.city {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--fg);
  letter-spacing: 0.05em;
}

.city-sep {
  font-size: 20px;
  color: var(--fg-muted);
}

/* ── Footer ── */
.footer {
  padding: 48px 60px;
  border-top: 1px solid rgba(13,27,42,0.1);
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 16px;
}

.footer-legal {
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 6px;
}

.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav { padding: 20px 28px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 28px 80px;
    min-height: auto;
  }
  .hero-attribute {
    flex-direction: row;
    border-left: none;
    border-top: 1px solid rgba(13,27,42,0.1);
    padding-left: 0;
    padding-top: 32px;
  }
  .what { padding: 80px 28px; }
  .ingredient-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats { padding: 60px 28px; }
  .stat { padding: 0 28px; }
  .stat-big { font-size: 52px; }
  .stat-divider { height: 70px; }
  .occasions { padding: 80px 28px; }
  .closing { padding: 80px 28px; }
  .footer { padding: 40px 28px; }
}

@media (max-width: 480px) {
  .hero-pills { gap: 8px; }
  .stat-row { gap: 0; }
  .stat { padding: 0 20px; }
  .stat-big { font-size: 40px; }
  .stat-divider { height: 60px; }
}