:root {
  --bg: #fdfaf5;
  --ink: #1f1b16;
  --muted: #5b554c;
  --accent: #2f6b3a;
  --accent-dark: #1f4a27;
  --card: #ffffff;
  --border: #e8e1d4;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.2;
  margin: 0 0 16px;
}

/* Hero */
.hero {
  padding: 96px 0 80px;
  background: linear-gradient(180deg, #f5ead4 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 24px;
}

.emphasis {
  color: #b3261e;
  font-style: italic;
}

.subtitle {
  font-size: 20px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 32px;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.15s ease;
}

.cta:hover {
  background: var(--accent-dark);
}

/* Sections */
section {
  padding: 72px 0;
}

section h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.section-intro {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 40px;
}

/* Facts */
.facts {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.fact {
  text-align: center;
  padding: 24px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.fact h3 {
  font-size: 48px;
  color: var(--accent);
  margin: 0 0 8px;
}

.fact p {
  margin: 0;
  color: var(--muted);
}

.footnote {
  color: var(--muted);
  font-style: italic;
  max-width: 720px;
}

/* Alternatives */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.protein {
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card p:last-child {
  margin: 0;
  color: var(--muted);
}

/* Restaurants */
.restaurants {
  background: #fff;
  border-top: 1px solid var(--border);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.checklist li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}

.closer {
  font-size: 22px;
  font-family: Georgia, serif;
  font-style: italic;
  margin-top: 32px;
  color: var(--ink);
}

/* Footer */
footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
}

footer p {
  margin: 4px 0;
}

.small {
  font-size: 13px;
}

/* Responsive */
@media (max-width: 720px) {
  .hero {
    padding: 64px 0 56px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .subtitle {
    font-size: 18px;
  }
  section {
    padding: 48px 0;
  }
  section h2 {
    font-size: 28px;
  }
  .fact-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }
  .fact h3 {
    font-size: 36px;
  }
}
