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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--beige);
  color: var(--charcoal);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  background: var(--beige);
  border-bottom: 1px solid var(--beige-dark);
  position: sticky;
  top: 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.logo {
  font-weight: 600;
  font-size: 1.25rem;
}

.main-nav a {
  margin-left: 1.25rem;
  text-decoration: none;
  color: var(--charcoal);
}

.nav-cta {
  background: var(--sage);
  color: white;
  padding: 0.5rem 0.9rem;
  border-radius: 20px;
}

/* Hero */
.hero {
  background: var(--sage);
  color: white;
  padding: 4rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: 2.75rem;
  line-height: 1.2;
}

.hero p {
  margin: 1rem 0 2rem;
}

.btn-primary {
  background: white;
  color: var(--sage-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
}

/* Featured Recipes */
.featured {
  padding: 4rem 0;
}

.featured h2 {
  margin-bottom: 2rem;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.recipe-card {
  background: white;
  height: 250px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Newsletter */
.newsletter {
  background: var(--beige-dark);
  padding: 4rem 0;
}

.newsletter-box {
  background: white;
  padding: 3rem;
  border-radius: 30px;
  text-align: center;
}

.newsletter form {
  margin-top: 1.5rem;
}

.newsletter input {
  padding: 0.75rem;
  width: 250px;
  border-radius: 20px;
  border: 1px solid var(--beige-dark);
  margin-right: 0.5rem;
}

.newsletter button {
  padding: 0.75rem 1.25rem;
  border-radius: 20px;
  border: none;
  background: var(--sage);
  color: white;
}

/* Footer */
.site-footer {
  background: var(--sage-dark);
  color: white;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.site-footer a {
  display: block;
  color: white;
  text-decoration: none;
  margin-top: 0.5rem;
}

:root {
  --sage: #8FAE9A;
  --sage-dark: #6F8F7C;
  --beige: #F6F2EC;
  --beige-dark: #E8E1D8;
  --charcoal: #2F2F2F;
  --white: #ffffff;
}

