:root {
  --red: #d0212b;
  --red-dark: #a3151d;
  --gold: #d4a437;
  --charcoal: #221b17;
  --cream: #fbf6ee;
  --ink: #2a221c;
  --muted: #6b5f56;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(0,0,0,0.18);
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
h1, h2, h3, .brand { font-family: 'Poppins', sans-serif; }
img { max-width: 100%; display: block; }
a { color: var(--red-dark); text-decoration: none; }
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Order Button - striking, consistent everywhere */
.btn-order {
  display: inline-block;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(208, 33, 43, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-order:hover, .btn-order:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(208, 33, 43, 0.55);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.92rem; }
.btn-order--hero { font-size: 1.15rem; padding: 18px 40px; }
.btn-order--menu, .btn-order--visit { margin-top: 8px; }

.btn-secondary {
  display: inline-block;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: 999px;
  padding: 16px 34px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(34, 27, 23, 0.94);
  backdrop-filter: blur(6px);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.brand {
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}
.brand span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: #f1e8dc;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--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;
  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,14,12,0.55) 0%, rgba(20,14,12,0.75) 60%, rgba(20,14,12,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-eyebrow {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin: 0 0 12px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin: 0 0 18px;
  font-weight: 800;
  line-height: 1.1;
}
.hero-sub {
  max-width: 560px;
  font-size: 1.15rem;
  color: #f0e8de;
  margin: 0 0 32px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f0e8de;
  font-weight: 600;
}
.stars { color: var(--gold); font-size: 1.2rem; }

/* Section shared */
section { padding: 88px 0; }
.section-eyebrow {
  color: var(--red-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin: 0 0 10px;
}
.center { text-align: center; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 0 0 20px; color: var(--charcoal); }

/* About */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-text p { color: var(--muted); margin: 0 0 18px; }
.about-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* Menu */
.menu { background: var(--cream); }
.menu-note { color: var(--muted); margin-top: -8px; margin-bottom: 48px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.menu-category {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border-top: 4px solid var(--red);
}
.menu-category h3 {
  margin: 0 0 16px;
  color: var(--red-dark);
  font-size: 1.2rem;
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #e6dccb;
}
.menu-category li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.menu-category li span {
  display: block;
  font-weight: 700;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
}
.menu-category li em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.88rem;
}
.menu-cta { text-align: center; margin-top: 44px; }

/* Gallery */
.gallery { background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* Reviews */
.reviews { background: var(--charcoal); color: #f5ede0; }
.reviews h2, .reviews .section-eyebrow { color: #fff; }
.reviews .section-eyebrow { color: var(--gold); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.review-stars { color: var(--gold); letter-spacing: 0.1em; margin-bottom: 14px; }
.review-quote { color: #ece3d6; font-size: 0.98rem; margin: 0 0 16px; }
.review-author { font-weight: 700; color: var(--gold); margin: 0; }

/* Visit */
.visit { background: #fff; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.visit-info address {
  font-style: normal;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.visit-phone {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--red-dark);
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
}
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; }
.hours-table td {
  padding: 9px 0;
  border-bottom: 1px solid #eee0cb;
  color: var(--muted);
}
.hours-table td:first-child { font-weight: 700; color: var(--ink); width: 40%; }
.visit-map {
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: #d9cdbc;
  padding: 48px 0 24px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { margin: 0 0 8px; font-size: 1.4rem; }
.footer-brand p { margin: 4px 0; }
.footer-brand a { color: var(--gold); font-weight: 700; }
.footer-note {
  text-align: center;
  font-size: 0.85rem;
  color: #8d8175;
  margin: 20px 0 0;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20,14,12,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: var(--radius);
  max-width: 440px;
  width: 100%;
  padding: 40px 34px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  text-align: center;
}
.modal h2 { font-size: 1.5rem; margin-bottom: 16px; color: var(--red-dark); }
.modal p { color: var(--muted); margin: 0 0 12px; }
.modal p a { color: var(--red-dark); 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: var(--muted);
}
.modal-close:hover { color: var(--red-dark); }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-photo img { aspect-ratio: 16/9; }
}
@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(34,27,23,0.98);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-order--nav { display: none; }
  .menu-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-order, .hero-actions .btn-secondary { text-align: center; }
}
