:root {
  --bean-brown: #6f4518;
  --bean-tan: #e8d5b5;
  --bean-cream: #fdf8f0;
  --bean-dark: #3a2413;
  --bean-accent: #b5651d;
  --text: #2a1d0f;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  background: var(--bean-cream);
  line-height: 1.6;
}

/* Header / Hero */
.hero {
  background: linear-gradient(135deg, var(--bean-brown), var(--bean-dark));
  color: var(--bean-cream);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.logo {
  font-size: 1.3rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--bean-cream);
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}

nav a:hover {
  opacity: 0.7;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 500px;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  background: var(--bean-accent);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s, background 0.2s;
}

.btn:hover {
  background: #9c5518;
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.section.alt {
  max-width: 100%;
  background: var(--bean-tan);
}

.section.alt > * {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--bean-brown);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}

.section.alt .card {
  background: var(--bean-cream);
}

.card:hover {
  transform: translateY(-4px);
}

.card-emoji {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.card h3 {
  color: var(--bean-brown);
  margin-bottom: 0.6rem;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat {
  text-align: center;
  background: var(--bean-cream);
  padding: 2rem 1rem;
  border-radius: 12px;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--bean-accent);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: var(--text);
}

.nutrition-note {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Facts list */
.facts-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}

.facts-list li {
  padding: 1rem 0 1rem 2rem;
  border-bottom: 1px solid var(--bean-tan);
  position: relative;
}

.facts-list li::before {
  content: "🫘";
  position: absolute;
  left: 0;
}

.facts-list li:last-child {
  border-bottom: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: var(--bean-dark);
  color: var(--bean-tan);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
}
