:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --brand-orange: #f4a261;
  --brand-green: #2a6f4d;
  --ink: #2b1a12;
  --cream: #fff8ee;
  --cream-dark: #f4e9d8;
  --gold: #e9b44c;
  --font-display: 'Fraunces', serif;
  --font-body: 'Nunito Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 16px;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--brand-red);
  margin: 0 0 8px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Order Button ---------- */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.35);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(214, 40, 40, 0.45);
}
.btn-order-lg {
  font-size: 1.15rem;
  padding: 18px 42px;
}

.btn-secondary {
  display: inline-block;
  padding: 18px 36px;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover { background: #fff; color: var(--ink); }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--cream);
  border-bottom: 3px solid var(--gold);
}
.navbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.1;
}
.brand-mark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-red);
}
.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
}
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--brand-red); }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.navbar-actions .btn-order {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  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(20,10,5,0.55) 0%, rgba(20,10,5,0.75) 60%, rgba(20,10,5,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 20px;
}
.hero-tagline {
  font-size: 1.15rem;
  margin-bottom: 32px;
  opacity: 0.95;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  flex-wrap: wrap;
}
.stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }

/* ---------- About ---------- */
.about { padding: 96px 0; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: center;
}
.about-image img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.about-text p { margin: 0 0 18px; color: #4a3626; }

/* ---------- Menu ---------- */
.menu { padding: 96px 0; background: var(--cream-dark); }
.menu h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.menu-intro { max-width: 560px; color: #5a4432; margin-bottom: 48px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.menu-category {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.menu-category h3 {
  color: var(--brand-red);
  font-size: 1.4rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px solid #eee1cc;
}
.menu-category li:last-child { border-bottom: none; }
.item-name { font-weight: 800; font-family: var(--font-display); }
.item-desc { font-size: 0.92rem; color: #6b5642; margin-top: 4px; }
.menu-cta { text-align: center; margin-top: 56px; }

/* ---------- Gallery ---------- */
.gallery { padding: 96px 0; background: var(--cream); }
.gallery h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.04); }

/* ---------- Reviews ---------- */
.reviews { padding: 96px 0; background: var(--cream-dark); }
.reviews h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 48px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  margin: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.review-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.review-card p { font-style: italic; color: #4a3626; margin: 0 0 14px; }
.review-card cite { font-weight: 800; font-style: normal; color: var(--brand-red); }
.reviews-summary {
  margin-top: 44px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

/* ---------- Location ---------- */
.location { padding: 96px 0; background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.location-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.location-info address { font-style: normal; margin-bottom: 8px; font-size: 1.1rem; }
.phone-line { margin-bottom: 28px; }
.phone-line a { color: var(--brand-red); font-weight: 800; font-size: 1.2rem; text-decoration: none; }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid #eee1cc;
  font-weight: 600;
}
.hours-table th { color: var(--ink); font-weight: 800; width: 40%; }
.hours-table td { color: #5a4432; }
.location-map {
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.location-map iframe { width: 100%; height: 100%; min-height: 360px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #f4e9d8; padding: 56px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  align-items: start;
}
.footer-brand .brand-mark { color: var(--gold); font-size: 1.5rem; display: block; }
.footer-brand .brand-sub { display: block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; opacity: 0.8; }
.footer-brand p { margin: 4px 0; opacity: 0.85; }
.footer-brand a { color: #f4e9d8; text-decoration: none; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #f4e9d8; text-decoration: none; opacity: 0.85; }
.footer-links a:hover { opacity: 1; }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20,10,5,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  padding: 40px 36px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.modal h2 { color: var(--brand-red); font-size: 1.6rem; }
.modal p { color: #4a3626; margin-bottom: 28px; }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #999;
  padding: 4px 8px;
}
.modal-close:hover { color: var(--ink); }
.modal-call { width: 100%; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-links { align-items: center; }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    gap: 0;
    border-bottom: 3px solid var(--gold);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 320px; }
  .nav-links a {
    padding: 16px;
    width: 100%;
    text-align: center;
    border-top: 1px solid #eee1cc;
  }
  .navbar-inner { flex-wrap: wrap; }
  .hamburger { display: flex; }
  .navbar-actions .btn-order { display: none; }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 160px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hours-table th, .hours-table td { font-size: 0.9rem; }
}
