:root {
  --cream: #fdf6ec;
  --brown: #6b4226;
  --brown-dark: #4a2c17;
  --green: #4f7942;
  --green-light: #8bc34a;
  --pink: #f4b6c2;
  --text: #3a2a1e;
}

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

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

header {
  background: var(--brown);
  color: var(--cream);
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 10;
}

header .logo {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

header .logo span { color: var(--green-light); }

nav a {
  color: var(--cream);
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.95rem;
}

nav a:hover { color: var(--pink); }

.hero {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  color: var(--cream);
  text-align: center;
  padding: 5rem 1.5rem 4rem;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 40em;
  margin: 0 auto 1.5rem;
}

.hero-icons {
  font-size: 2.2rem;
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
}

.btn:hover { background: var(--green-light); }

section {
  max-width: 960px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

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

section .subtitle {
  text-align: center;
  color: var(--green);
  font-style: italic;
  margin-bottom: 2.5rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.pillar {
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(74, 44, 23, 0.08);
}

.pillar .icon { font-size: 2.8rem; margin-bottom: 0.75rem; }

.pillar h3 { color: var(--brown); margin-bottom: 0.5rem; }

.menu {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(74, 44, 23, 0.08);
}

.menu-category {
  margin-bottom: 2rem;
}

.menu-category:last-child { margin-bottom: 0; }

.menu-category h3 {
  color: var(--green);
  border-bottom: 2px solid var(--pink);
  padding-bottom: 0.4rem;
  margin-bottom: 0.75rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #e5d9c8;
}

.menu-item:last-child { border-bottom: none; }

.menu-item .desc {
  font-size: 0.9rem;
  color: #6b5c4d;
  display: block;
}

.menu-item .price {
  color: var(--brown);
  font-weight: bold;
  white-space: nowrap;
  margin-left: 1rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.gallery .placeholder {
  aspect-ratio: 1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

.gallery .placeholder:nth-child(4n+1) { background: var(--brown); }
.gallery .placeholder:nth-child(4n+2) { background: var(--green); }
.gallery .placeholder:nth-child(4n+3) { background: var(--pink); }
.gallery .placeholder:nth-child(4n) { background: var(--brown-dark); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.info-block h3 {
  color: var(--brown);
  margin-bottom: 0.5rem;
}

footer {
  background: var(--brown-dark);
  color: var(--cream);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.9rem;
}

footer .social { margin-top: 0.75rem; }
footer .social span { margin: 0 0.5rem; font-size: 1.3rem; }
