/* ===== Design tokens ===== */
:root {
  --color-brand-red: #d62828;
  --color-brand-red-dark: #a81f1f;
  --color-brand-orange: #f77f00;
  --color-cream: #fff8f0;
  --color-cream-dark: #f4e9db;
  --color-ink: #2b1b12;
  --color-ink-soft: #5a4638;
  --color-green: #4c6b3c;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-pill: 999px;
  --radius-md: 14px;
  --shadow-soft: 0 10px 30px rgba(43, 27, 18, 0.12);
  --shadow-order: 0 8px 22px rgba(214, 40, 40, 0.4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.6;
}
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
img { max-width: 100%; display: block; }
a { color: var(--color-brand-red-dark); }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--color-brand-red); color: #fff; padding: 10px 16px; z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

.section-kicker {
  text-transform: uppercase; letter-spacing: 0.12em; font-weight: 800;
  color: var(--color-brand-orange); font-size: 0.85rem; margin-bottom: 0.5em;
}
.section-lead { color: var(--color-ink-soft); max-width: 620px; margin: 0 auto 2.5rem; }
.center { text-align: center; }
section { padding: 5rem 0; }

/* ===== Order button ===== */
.btn-order {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--color-brand-red), var(--color-brand-orange));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.75em 1.7em;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: var(--shadow-order);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-order:hover, .btn-order:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(214, 40, 40, 0.5);
}
.btn-order--lg { font-size: 1.15rem; padding: 0.9em 2.2em; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9em 2em;
  border-radius: var(--radius-pill);
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

/* ===== Navbar ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 248, 240, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(43, 27, 18, 0.08);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0.75rem 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { text-decoration: none; color: var(--color-ink); display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--color-brand-red-dark); }
.brand-o { color: var(--color-brand-orange); }
.brand-sub { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-ink-soft); }
.nav-links { display: flex; gap: 1.75rem; }
.nav-links a {
  text-decoration: none; color: var(--color-ink); font-weight: 700; font-size: 0.95rem;
}
.nav-links a:hover { color: var(--color-brand-red); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 4px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; height: 3px; width: 100%; background: var(--color-ink); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,20,10,0.55) 0%, rgba(43,20,10,0.72) 55%, rgba(20,10,6,0.9) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px; margin: 0 auto; padding: 6rem 24px 3rem;
  text-align: center;
}
.hero-kicker {
  text-transform: uppercase; letter-spacing: 0.16em; font-weight: 800;
  color: var(--color-brand-orange); margin-bottom: 1rem; font-size: 0.9rem;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 0.75rem; }
.hero-tagline { font-size: 1.15rem; color: #f6ece0; max-width: 560px; margin: 0 auto 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.75rem; }
.hero-rating { display: flex; align-items: center; justify-content: center; gap: 0.6rem; font-weight: 700; }
.stars { color: #ffcb47; letter-spacing: 2px; }

/* ===== About ===== */
.about-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 3.5rem; align-items: center;
}
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.about-media img { border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }

/* ===== Menu ===== */
.menu { background: var(--color-cream-dark); }
.menu-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3rem;
}
.menu-category h3 {
  font-size: 1.3rem; color: var(--color-brand-red-dark);
  border-bottom: 3px solid var(--color-brand-orange); padding-bottom: 0.5rem; margin-bottom: 1rem;
}
.menu-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.9rem; }
.menu-list li { display: flex; flex-direction: column; }
.item-name { font-weight: 800; }
.item-desc { color: var(--color-ink-soft); font-size: 0.92rem; }
.menu-note { text-align: center; color: var(--color-ink-soft); font-size: 0.9rem; margin-top: 2.5rem; font-style: italic; }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-grid img {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ===== Reviews ===== */
.reviews { background: var(--color-cream-dark); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem;
}
.review-card {
  background: #fff; border-radius: var(--radius-md); padding: 1.75rem;
  box-shadow: var(--shadow-soft); margin: 0;
}
.review-card p { font-style: italic; color: var(--color-ink); }
.review-card footer { font-weight: 800; color: var(--color-brand-red-dark); }

/* ===== Location ===== */
.location-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start;
}
.location-info address { font-style: normal; margin-bottom: 0.75rem; font-size: 1.05rem; }
.phone-line a { font-size: 1.2rem; font-weight: 800; text-decoration: none; }
.hours-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0 2rem; }
.hours-table th, .hours-table td { text-align: left; padding: 0.5rem 0; border-bottom: 1px solid var(--color-cream-dark); }
.hours-table th { font-weight: 700; color: var(--color-ink-soft); width: 40%; }
.location-map { min-height: 380px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); }
.location-map iframe { height: 100%; min-height: 380px; }

/* ===== Footer ===== */
.site-footer { background: var(--color-ink); color: #f4e9db; padding: 3rem 0 1.5rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; align-items: center;
}
.footer-brand { font-size: 1.5rem; display: block; margin-bottom: 0.5rem; color: #fff; }
.site-footer a { color: #ffd7a8; }
.footer-cta { text-align: right; }
.footer-copy { text-align: center; color: #c8b7a6; font-size: 0.85rem; margin: 2rem 0 0; }

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(20, 10, 6, 0.65);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.modal {
  position: relative;
  background: #fff; border-radius: var(--radius-md);
  max-width: 440px; width: 100%;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.modal h2 { color: var(--color-brand-red-dark); font-size: 1.5rem; }
.modal-close {
  position: absolute; top: 0.75rem; right: 0.9rem;
  background: none; border: none; font-size: 1.8rem; line-height: 1;
  cursor: pointer; color: var(--color-ink-soft);
}
.modal-close:hover { color: var(--color-ink); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 1rem; }
  .footer-cta { text-align: center; }
}

@media (max-width: 640px) {
  section { padding: 3.5rem 0; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--color-cream); flex-direction: column; gap: 0;
    box-shadow: 0 12px 20px rgba(0,0,0,0.1);
    max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links a { padding: 1rem 24px; border-bottom: 1px solid var(--color-cream-dark); }
  .nav-toggle { display: flex; }
  .hero-content { padding-top: 4rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 160px; }
  .hero-actions { flex-direction: column; align-items: center; }
}
