:root {
  --bg: #f8f2e9;
  --surface: #fffdf9;
  --primary: #7a3f1d;
  --primary-dark: #4d2812;
  --accent: #d8a24a;
  --text: #2f241d;
  --muted: #6c5848;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.back-link {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 20;
  text-decoration: none;
  color: var(--primary-dark);
  background: rgba(255,255,255,0.9);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.site-header { background: rgba(77,40,18,0.96); color: white; position: sticky; top: 0; z-index: 10; }
.nav-wrap { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.logo { color: white; text-decoration: none; font-weight: 700; }
.main-nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.main-nav a { color: #f8ebdc; text-decoration: none; font-weight: 600; }
.hero { padding: 4rem 0 3rem; background: linear-gradient(135deg, #6d3517 0%, #a55b2a 100%); color: white; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.8rem; font-weight: 700; color: var(--accent); margin-bottom: 0.5rem; }
h1,h2,h3 { margin-top: 0; }
h1 { font-size: clamp(2rem, 3.8vw, 3rem); margin-bottom: 1rem; }
.hero p { color: #f6e9d8; font-size: 1.05rem; }
.hero-actions { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.btn { display: inline-block; padding: 0.8rem 1.2rem; border-radius: 999px; text-decoration: none; font-weight: 700; }
.btn-primary { background: var(--accent); color: var(--primary-dark); }
.btn-secondary { border: 1px solid white; color: white; }
.hero-card { border-radius: 1.2rem; overflow: hidden; box-shadow: 0 10px 24px rgba(0,0,0,0.18); }
.hero-card img { width: 100%; height: 320px; object-fit: cover; }
.section { padding: 3rem 0; }
.section-alt { background: #f0e1ca; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.gallery-grid img { width: 100%; height: 260px; object-fit: cover; border-radius: 1rem; box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
.menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.menu-card, .info-card, .contact-form { background: var(--surface); padding: 1.25rem; border-radius: 1rem; box-shadow: 0 10px 24px rgba(0,0,0,0.06); }
.dish { display: flex; justify-content: space-between; gap: 1rem; padding: 0.55rem 0; border-bottom: 1px solid #e8dccf; }
.about-grid, .contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 0.6rem; }
.contact-form input, .contact-form textarea { padding: 0.75rem; border: 1px solid #e0d2c2; border-radius: 0.6rem; font: inherit; }
.site-footer { background: var(--primary-dark); color: white; padding: 1.2rem 0; }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-wrap a { color: white; text-decoration: none; }
@media (max-width: 900px){ .hero-grid,.about-grid,.contact-grid,.menu-grid{grid-template-columns:1fr;} }
@media (max-width: 600px){ .nav-wrap{flex-direction:column;align-items:flex-start;} .main-nav{gap:0.75rem;} .gallery-grid{grid-template-columns:1fr;} }
