:root {
  --brand-red: #d62828;
  --brand-red-dark: #a91f1f;
  --brand-gold: #f4a300;
  --brand-green: #2c5f2d;
  --dark: #201510;
  --cream: #fff8ef;
  --text: #2b2119;
  --muted: #6b5d52;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1150px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; margin: 0 0 12px; }
h2 { font-size: 2.2rem; color: var(--brand-red-dark); }
.section-sub { color: var(--muted); margin-top: -8px; margin-bottom: 32px; }

/* Order button - consistent bold pill style */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(214, 40, 40, 0.4);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.5);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.95rem; }
.btn-order--hero { font-size: 1.15rem; padding: 18px 40px; }
.btn-order--location { margin-top: 20px; }
.btn-order--modal { margin-top: 20px; }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(32, 21, 16, 0.95);
  backdrop-filter: blur(6px);
}
.nav-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.logo span { color: var(--brand-gold); }
.nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: #f1e7db;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--brand-gold); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #7a1f1f, #4a1010), url('../images/photo-01.jpg') center/cover no-repeat;
  color: #fff;
  padding: 40px 20px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,10,8,0.55), rgba(20,10,8,0.75));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-eyebrow {
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 16px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.4);
}
.hero-tagline {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: #f5ead9;
}
.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero-rating {
  color: var(--brand-gold);
  font-size: 1.1rem;
  font-weight: 700;
}
.hero-rating span { color: #f5ead9; font-weight: 400; font-size: 0.95rem; margin-left: 6px; }

/* About */
.about { padding: 80px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-text h2 { margin-bottom: 20px; }
.about-image img {
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Menu */
.menu {
  background: var(--dark);
  color: #f1e7db;
  padding: 80px 0;
}
.menu h2 { color: var(--brand-gold); }
.menu .section-sub { color: #cbb9a4; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.menu-category h3 {
  color: #fff;
  border-bottom: 2px solid var(--brand-red);
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.menu-category ul { list-style: none; padding: 0; margin: 0; }
.menu-category li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
}
.menu-category li span:first-child { font-weight: 700; color: #fff; }
.menu-category li em {
  font-style: normal;
  color: #cbb9a4;
  font-size: 0.9rem;
  width: 100%;
  margin-top: 2px;
}
.menu-note { margin-top: 32px; text-align: center; color: #cbb9a4; }
.menu-note a { color: var(--brand-gold); font-weight: 700; }

/* Gallery */
.gallery { padding: 80px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.2s;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews {
  background: linear-gradient(135deg, #fdf1e0, #fbe6cf);
  padding: 80px 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.stars { color: var(--brand-gold); margin-bottom: 10px; letter-spacing: 2px; }
.review-card p { font-style: italic; margin-bottom: 14px; color: var(--text); }
.review-card cite { font-weight: 700; color: var(--brand-red-dark); }

/* Location */
.location { padding: 80px 0; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}
.location-info h3 { color: var(--brand-red-dark); margin-top: 24px; }
.location-info h3:first-child { margin-top: 0; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #e6d9c8;
}
.location-map {
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.location-map iframe { width: 100%; height: 100%; min-height: 380px; }

/* Footer */
.footer {
  background: var(--dark);
  color: #cbb9a4;
  padding: 48px 0 24px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
.footer-logo span { color: var(--brand-gold); }
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a:hover { color: var(--brand-gold); }
.footer-copy {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: #8a7a68;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.modal h2 { color: var(--brand-red-dark); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}
.modal-close:hover { color: var(--brand-red); }

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

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(32,21,16,0.98);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-order--nav { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 200px; }
}
