:root {
  --red: #b5232a;
  --red-dark: #8f1b21;
  --green: #2f5233;
  --cream: #fdf8f0;
  --charcoal: #2b2320;
  --gold: #d4a24c;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

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

h1, h2, h3 { font-family: var(--font-head); font-weight: 700; }

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

/* Order Online Button */
.btn-order {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(181, 35, 42, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-order:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(181, 35, 42, 0.5);
}
.btn-order-lg { padding: 16px 42px; font-size: 1.1rem; }

.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-secondary:hover { background: #fff; color: var(--charcoal); }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(253, 248, 240, 0.97);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--red);
  white-space: nowrap;
}
.brand span { color: var(--green); font-weight: 600; font-size: 1rem; display: block; line-height: 1; }
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}
.nav-links a:hover { color: var(--red); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { width: 26px; height: 3px; background: var(--charcoal); border-radius: 2px; }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: 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,12,10,0.55) 0%, rgba(20,12,10,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 780px;
  padding: 0 24px;
}
.hero-eyebrow {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 34px;
  color: #f2e9de;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section generics */
section { padding: 90px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 10px;
}
.center { text-align: center; }
section h2 { font-size: 2.3rem; margin-bottom: 20px; color: var(--charcoal); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image img { border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.about-text p { margin-bottom: 18px; color: #4a3f38; }

/* Menu */
.menu { background: #fff; }
.menu-intro { max-width: 560px; margin: 0 auto 50px; color: #6b5f56; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.menu-category h3 {
  font-size: 1.35rem;
  color: var(--green);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.menu-category ul { list-style: none; }
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed #e5dcd0;
}
.menu-category li span:first-child { font-weight: 600; font-size: 1.05rem; }
.menu-category li small { color: #8a7c70; margin-top: 4px; }
.menu-note { margin-top: 40px; text-align: center; color: #8a7c70; font-size: 0.9rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews { background: var(--charcoal); color: #f2ece3; }
.reviews h2, .reviews .section-eyebrow { color: #fff; }
.reviews .section-eyebrow { color: var(--gold); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 40px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 30px;
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }
.review-card p { font-style: italic; color: #ddd3c7; margin-bottom: 16px; }
.review-author { font-weight: 600; color: var(--gold); }
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.rating-number { font-size: 2.2rem; font-family: var(--font-head); font-weight: 700; }
.rating-stars { color: var(--gold); font-size: 1.4rem; }
.rating-count { color: #b8ada0; }

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
.location-info h3 { font-size: 1.05rem; color: var(--green); margin-top: 22px; margin-bottom: 6px; }
.location-info h3:first-child { margin-top: 0; }
.location-info a { color: var(--red); font-weight: 600; }
.hours-list { list-style: none; margin: 8px 0 26px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #e5dcd0;
  font-size: 0.95rem;
}
.location-map {
  min-height: 380px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.location-map iframe { width: 100%; height: 100%; min-height: 380px; }

/* Footer */
.footer { background: var(--charcoal); color: #cfc4b8; padding-top: 60px; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand h3 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
.footer-brand a { color: var(--gold); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a:hover { color: #fff; }
.footer-bottom { text-align: center; padding: 22px 0; font-size: 0.85rem; color: #8a7f74; }

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

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

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    display: none;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .navbar-inner .btn-order { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; align-items: center; }
}
