:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --brand-orange: #f4a259;
  --ink: #241a15;
  --cream: #fdf6ec;
  --tan: #f1e2c9;
  --line: #e6d8bc;
  --shadow: 0 10px 30px rgba(36, 26, 21, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  margin: 0 0 0.5em;
}

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

/* Buttons */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(214, 40, 40, 0.4);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  letter-spacing: 0.02em;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(214, 40, 40, 0.5);
}
.btn-order-lg {
  font-size: 1.15rem;
  padding: 18px 40px;
}
.btn-secondary {
  display: inline-block;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 14px;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover {
  background: #fff;
  color: var(--brand-red-dark);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  margin-right: auto;
}
.nav-logo span { color: var(--brand-red); }
.nav-links {
  display: flex;
  gap: 22px;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--brand-red); }
.nav-order { padding: 10px 22px; font-size: 0.9rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #7a1f1f 0%, #b83227 45%, #e08a3e 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.15) 0, transparent 45%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 8, 0.35);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  color: #fff;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-orange);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 32px;
  color: #f6e8d8;
}
.hero-actions { margin-bottom: 26px; }
.hero-rating {
  font-size: 0.95rem;
  color: #ffe3b0;
  letter-spacing: 0.03em;
}

/* About */
.about { padding: 90px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-text h2 { color: var(--brand-red-dark); font-size: 2.2rem; }
.about-photo img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Menu */
.menu { padding: 90px 0; background: var(--tan); }
.menu h2 { text-align: center; color: var(--brand-red-dark); font-size: 2.2rem; }
.section-sub { text-align: center; max-width: 560px; margin: 0 auto 46px; color: #5c4a3a; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.menu-category {
  background: var(--cream);
  border-radius: 14px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.menu-category h3 {
  color: var(--brand-red);
  border-bottom: 2px solid var(--brand-orange);
  padding-bottom: 10px;
  margin-bottom: 16px;
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.menu-category li:last-child { border-bottom: none; }
.menu-category li span { font-weight: 700; }
.menu-category li em { font-style: normal; color: #6b5a48; font-size: 0.9rem; }

/* Gallery */
.gallery { padding: 90px 0; }
.gallery h2 { text-align: center; color: var(--brand-red-dark); font-size: 2.2rem; margin-bottom: 40px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-gen-1 { background: linear-gradient(135deg, #b83227, #7a1f1f); }
.gallery-gen-2 { background: linear-gradient(135deg, #e0a458, #b8722c); }
.gallery-gen-3 { background: linear-gradient(135deg, #8a4b32, #4f2a1c); }
.gallery-gen-4 { background: linear-gradient(135deg, #d9c58f, #a9862f); }
.gallery-gen-5 { background: linear-gradient(135deg, #c94f4f, #8a2a2a); }

/* Reviews */
.reviews { padding: 90px 0; background: var(--tan); }
.reviews h2 { text-align: center; color: var(--brand-red-dark); font-size: 2.2rem; }
.reviews .section-sub { margin-bottom: 46px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.review-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 28px;
  margin: 0;
  box-shadow: var(--shadow);
}
.review-card p { margin: 0 0 14px; font-style: italic; }
.review-card footer { font-weight: 700; color: var(--brand-red); font-style: normal; }
.review-card .stars { color: var(--brand-orange); margin-left: 8px; }

/* Location */
.location { padding: 90px 0; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}
.location-info h2 { color: var(--brand-red-dark); font-size: 2.2rem; }
.hours-block, .contact-block { margin-bottom: 26px; }
.hours-list { list-style: none; padding: 0; margin: 0; max-width: 360px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.hours-list li.open { color: var(--brand-red-dark); font-weight: 700; }
.contact-block a { color: var(--brand-red); font-weight: 700; text-decoration: none; }
.location-map {
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer { background: var(--ink); color: #f1e2c9; padding: 50px 0 24px; }
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-logo { font-family: Georgia, serif; font-size: 1.5rem; margin: 0 0 8px; }
.footer-logo span { color: var(--brand-orange); }
.site-footer a { color: var(--brand-orange); text-decoration: none; }
.footer-hours p { margin: 4px 0; }
.footer-copy { text-align: center; margin: 20px 0 0; font-size: 0.85rem; color: #b8a488; }

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 8, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: var(--cream);
  border-radius: 16px;
  padding: 36px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  text-align: center;
}
.modal h2 { color: var(--brand-red-dark); }
.modal a { color: var(--brand-red); font-weight: 700; text-decoration: none; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}

/* Responsive */
@media (max-width: 860px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .menu-grid, .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.2rem; }
  .nav-order {
    white-space: nowrap;
    padding: 9px 16px;
    font-size: 0.82rem;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-order.desktop-only { display: none; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { display: flex; flex-direction: column; gap: 14px; align-items: center; }
  .btn-secondary { margin-left: 0; }
}
