:root {
  --bg: #f8f3ec;
  --surface: #ffffff;
  --primary: #8a4b25;
  --primary-soft: #f5e6d9;
  --accent: #b78a45;
  --text: #2f2317;
  --muted: #6e5a49;
  --border: #e6d7c7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header,
.site-footer {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-content,
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-nav a,
.site-footer nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-footer nav a:hover {
  color: var(--primary);
}

.hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.hero-copy p {
  max-width: 45rem;
  margin-bottom: 1.75rem;
  color: var(--muted);
}

.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 18px 50px rgba(112, 74, 44, 0.08);
}

.hero-card h2 {
  margin-top: 0;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.hero-card li::before {
  content: '•';
  color: var(--accent);
  display: inline-block;
  width: 1rem;
}

.hero-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(112, 74, 44, 0.12);
}

.restaurant-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

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

.menu-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  text-align: center;
}

.menu-card img {
  margin-bottom: 1rem;
  height: 180px;
  object-fit: contain;
}

.features,
.about-grid,
.resource-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.features article,
.resource-card,
.about-grid article {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
}

.learn-more,
.page-intro,
.contact-form-section,
.faq-section {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  margin: 2rem 0;
}

.learn-more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.learn-more h2,
.page-intro h1,
.faq-section h2 {
  margin: 0 0 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.button-primary {
  background: var(--primary);
  color: white;
}

.button-secondary {
  background: var(--primary-soft);
  color: var(--primary);
}

.page-content {
  padding: 2rem 0;
}

.page-intro p {
  color: var(--muted);
  max-width: 55rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  width: 100%;
  font: inherit;
}

.form-message {
  margin: 0;
  color: var(--primary);
  min-height: 1.5rem;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}

.faq-item:first-child {
  border-top: none;
}

.faq-toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  padding: 0;
  cursor: pointer;
}

.faq-answer {
  display: none;
  margin-top: 0.75rem;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.site-footer {
  padding: 1rem 0;
}

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

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .learn-more {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-content,
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
