:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --brand-orange: #f77f00;
  --dark: #241412;
  --cream: #fff8f0;
  --text: #2b1c18;
  --muted: #6b5a54;
}

* { 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;
}

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--dark);
  margin-top: 0;
}

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

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

/* Order button — the star of the show */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 18px 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 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 40px; }
.btn-order--footer { margin-top: 16px; }
.btn-order--modal { margin-top: 16px; }

.btn-secondary {
  display: inline-block;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 16px;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover { background: #fff; color: var(--dark); }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: #f1e4dc;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--brand-orange); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Hero */
.hero {
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
}
.hero-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--brand-orange);
  margin-bottom: 12px;
}
.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Sections */
section { padding: 72px 0; }
.section-sub {
  color: var(--muted);
  margin-top: -8px;
  margin-bottom: 32px;
}
h2 { font-size: 2rem; margin-bottom: 8px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-image img {
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Menu */
.menu { background: #fff; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.menu-category h3 {
  border-bottom: 3px solid var(--brand-orange);
  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;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #e5d5c8;
}
.menu-category .price {
  color: var(--brand-red);
  font-weight: 700;
  white-space: nowrap;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews { background: var(--dark); color: #fff; }
.reviews h2 { color: #fff; }
.reviews .section-sub { color: #cbb8ae; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 24px;
}
.stars { color: var(--brand-orange); font-size: 1.1rem; margin-bottom: 8px; }
.review-author { color: var(--brand-orange); font-weight: 700; margin-top: 12px; margin-bottom: 0; }

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid #e5d5c8;
}
.hours-table td:first-child { font-weight: 700; }
.location-info address { font-style: normal; margin-bottom: 8px; }
.location-map iframe { border-radius: 12px; }

/* Footer */
.site-footer {
  background: var(--dark);
  color: #f1e4dc;
  padding: 48px 0 24px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo { font-family: Georgia, serif; font-size: 1.3rem; color: #fff; margin: 0 0 8px; }
.site-footer a { color: #f1e4dc; }
.footer-copy {
  text-align: center;
  color: #a68f85;
  margin-top: 32px;
  font-size: 0.85rem;
}

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

/* Responsive */
@media (max-width: 860px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 320px; }
  .nav-links a { padding: 14px; width: 100%; text-align: center; border-top: 1px solid rgba(255,255,255,0.1); }
  .btn-order--nav { display: none; }
  .hero h1 { font-size: 2rem; }
}

@media (max-width: 500px) {
  .hero-actions { flex-direction: column; }
  .btn-secondary { margin-left: 0; }
}
