:root {
  --red: #D62828;
  --red-dark: #A81E1E;
  --gold: #F2A93B;
  --gold-dark: #C97F1D;
  --dark: #221812;
  --dark-soft: #33241a;
  --cream: #FFF8EC;
  --cream-dark: #F3E6D2;
  --text: #2A1E16;
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin: 0 0 0.5em;
}

a { color: inherit; text-decoration: none; }

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

/* ---------- Order button ---------- */
.btn-order {
  display: inline-block;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 999px;
  padding: 14px 30px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(214, 40, 40, 0.55);
}
.btn-order-lg {
  font-size: 1.15rem;
  padding: 18px 42px;
}
.btn-ghost {
  display: inline-block;
  padding: 18px 36px;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-right: auto;
}
.brand-mark { font-size: 1.6rem; }
.brand-text em { color: var(--gold); font-style: normal; }
.site-nav {
  display: flex;
  gap: 24px;
}
.site-nav a {
  color: var(--cream-dark);
  font-weight: 700;
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--cream);
}

/* ---------- Hero ---------- */
.hero {
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  text-align: center;
}
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 560px;
  margin: 20px auto 32px;
  color: #f2e8da;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-rating {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: var(--cream-dark);
}
.stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.section h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--dark); }
.section-lede { max-width: 620px; margin: 0 auto 40px; color: #5a4638; }
.centered { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}
.about-copy p { margin-bottom: 18px; color: #4a382c; }
.about-photo img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(34, 24, 18, 0.25);
  display: block;
}

/* ---------- Menu ---------- */
.menu { background: var(--dark); color: var(--cream); }
.menu h2, .menu .section-kicker { color: var(--cream); }
.menu .section-kicker { color: var(--gold); }
.menu .section-lede { color: #cbb9a3; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}
.menu-category {
  background: var(--dark-soft);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid rgba(242,169,59,0.2);
}
.menu-category h3 {
  color: var(--gold);
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid rgba(242,169,59,0.3);
  padding-bottom: 10px;
  margin-bottom: 16px;
}
.menu-category h3 span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: #cbb9a3;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.menu-category ul { list-style: none; padding: 0; margin: 0; }
.menu-category li { margin-bottom: 16px; }
.item-name {
  display: block;
  font-weight: 800;
  color: #fff;
}
.item-desc {
  display: block;
  font-size: 0.92rem;
  color: #cbb9a3;
  margin-top: 2px;
}
.menu-note {
  text-align: center;
  margin-top: 36px;
  color: #cbb9a3;
}
.menu-note a { color: var(--gold); font-weight: 700; }

/* ---------- Gallery ---------- */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-grid figure:hover img { transform: scale(1.06); }

/* ---------- Reviews ---------- */
.reviews { background: var(--cream-dark); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  margin: 0;
  box-shadow: 0 10px 26px rgba(34,24,18,0.08);
}
.review-card p {
  font-size: 0.98rem;
  color: #4a382c;
  margin: 12px 0 14px;
}
.review-card cite {
  font-weight: 800;
  color: var(--red);
  font-style: normal;
}

/* ---------- Hours & Location ---------- */
.hours-location { background: var(--cream); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.hours-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(34,24,18,0.1);
}
.hours-table { width: 100%; border-collapse: collapse; margin: 20px 0 24px; }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-weight: 600;
}
.hours-table th { color: var(--dark); width: 40%; }
.hours-table td { color: #5a4638; }
.address-line { font-weight: 700; margin: 4px 0; }
.phone-line { margin-bottom: 20px; }
.phone-line a { color: var(--red); font-weight: 800; font-size: 1.1rem; }
.map-embed {
  border-radius: 18px;
  overflow: hidden;
  min-height: 340px;
  box-shadow: 0 10px 30px rgba(34,24,18,0.1);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: var(--cream-dark);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { font-size: 1.4rem; color: #fff; margin-bottom: 10px; }
.footer-brand em { color: var(--gold); font-style: normal; }
.footer-heading { font-weight: 800; color: #fff; margin-bottom: 6px; }
.site-footer a:hover { color: var(--gold); }
.footer-fine {
  text-align: center;
  font-size: 0.85rem;
  color: #a08d78;
  margin: 24px 0 0;
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,14,10,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 44px 36px;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.modal h2 { color: var(--dark); font-size: 1.6rem; }
.modal p { color: #4a382c; }
.modal-phone a { color: var(--red); font-weight: 800; font-size: 1.2rem; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #8a7a6a;
}
.modal-close:hover { color: var(--red); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid,
  .hours-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 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; }
}

@media (max-width: 720px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-inner .btn-order { display: none; }
  .site-header.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 16px 24px 24px;
    gap: 16px;
  }
  .site-header.nav-open .header-inner .btn-order {
    display: inline-block;
  }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 70px 20px 60px; }
}
