:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --gold: #e0a458;
  --charcoal: #221815;
  --cream: #fdf6ee;
  --cream-dim: #f5ebdc;
  --text-dark: #2b201a;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

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

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

.section-eyebrow {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-red);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.section-eyebrow.center, h2.center, .menu-intro.center, .reviews-summary.center { text-align: center; }

/* --- Order Online Button (consistent across site) --- */
.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-align: center;
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  letter-spacing: 0.02em;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(214, 40, 40, 0.5);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.9rem; }
.btn-order--hero { font-size: 1.1rem; padding: 16px 38px; }
.btn-order--location { margin-top: 24px; }

.btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  margin-left: 12px;
  transition: background 0.15s ease;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* --- Navbar --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--charcoal);
  white-space: nowrap;
}
.logo span { color: var(--brand-red); }
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--brand-red); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--charcoal);
  border-radius: 2px;
  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); }

.mobile-nav {
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav { display: flex; }
.mobile-nav a {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 1rem;
  padding: 4px 0;
}
.mobile-nav .btn-order { width: 100%; }

/* --- Hero --- */
.hero {
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 32px;
  opacity: 0.95;
}
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.95rem;
  opacity: 0.9;
}
.stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }

/* --- About --- */
.about { padding: 100px 0; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 { font-size: 2.2rem; margin-bottom: 20px; color: var(--charcoal); }
.about-text p { margin-bottom: 16px; color: #4a3c34; }
.about-image img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* --- Menu --- */
.menu { padding: 100px 0; background: var(--cream-dim); }
.menu h2 { font-size: 2.2rem; margin-bottom: 12px; color: var(--charcoal); }
.menu-intro { max-width: 560px; margin: 0 auto 50px; color: #4a3c34; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.menu-category h3 {
  font-size: 1.4rem;
  color: var(--brand-red);
  margin-bottom: 18px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
}
.menu-category ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.menu-category li { display: flex; flex-direction: column; }
.menu-category li span { font-weight: 800; font-size: 1.05rem; color: var(--charcoal); }
.menu-category li em { font-style: normal; color: #6b5b50; font-size: 0.92rem; }
.menu-note { text-align: center; margin-top: 50px; color: #6b5b50; font-size: 0.95rem; }
.menu-note a { color: var(--brand-red); font-weight: 700; }

/* --- Gallery --- */
.gallery { padding: 100px 0; background: var(--cream); }
.gallery h2 { font-size: 2.2rem; margin-bottom: 40px; color: var(--charcoal); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* --- Reviews --- */
.reviews { padding: 100px 0; background: var(--cream-dim); }
.reviews h2 { font-size: 2.2rem; margin-bottom: 40px; color: var(--charcoal); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.review-card p { margin-top: 14px; color: #4a3c34; font-size: 0.98rem; }
.review-author { font-weight: 800; color: var(--charcoal); margin-top: 16px !important; }
.reviews-summary { margin-top: 40px; font-weight: 700; color: var(--charcoal); }

/* --- Location --- */
.location { padding: 100px 0; background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.location-info h2 { font-size: 2.2rem; margin-bottom: 20px; color: var(--charcoal); }
.location-info address { font-size: 1.1rem; font-style: normal; margin-bottom: 12px; color: #4a3c34; line-height: 1.5; }
.phone-line { margin-bottom: 24px; }
.phone-line a { font-weight: 800; color: var(--brand-red); font-size: 1.15rem; }
.hours-table { width: 100%; max-width: 380px; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(0,0,0,0.08); }
.hours-table th, .hours-table td { text-align: left; padding: 8px 0; font-weight: 600; color: #4a3c34; }
.hours-table th { font-weight: 700; color: var(--charcoal); width: 130px; }
.location-map {
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.location-map iframe { width: 100%; height: 100%; }

/* --- Footer --- */
.footer { background: var(--charcoal); color: #f2e8dd; padding: 60px 0 24px; }
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo { margin-bottom: 12px; color: #fff; }
.footer-grid p { color: #cbb9a6; margin-top: 6px; }
.footer-grid a { color: #cbb9a6; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-weight: 700; color: #f2e8dd; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { text-align: center; margin-top: 24px; font-size: 0.85rem; color: #8a7a6c; }

/* --- Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,10,8,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: 18px;
  padding: 44px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.modal h2 { font-size: 1.6rem; color: var(--charcoal); margin-bottom: 16px; }
.modal p { color: #4a3c34; margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #8a7a6c;
}
.modal-close:hover { color: var(--brand-red); }
.btn-order--modal { width: 100%; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.3rem; }
}

@media (max-width: 720px) {
  .nav-links, .btn-order--nav { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 92vh; }
  .hero h1 { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; }
  .btn-secondary { margin-left: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 180px; }
  .footer-grid { flex-direction: column; text-align: center; }
}
