:root {
  --red: #c8102e;
  --red-dark: #9c0d24;
  --gold: #d4af37;
  --gold-light: #f0d372;
  --ink: #1a1210;
  --ink-soft: #2b1c16;
  --cream: #fff8ee;
  --text-muted: #6b5b52;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

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

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

/* Buttons */
.btn-order {
  display: inline-block;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(200, 16, 46, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}

.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(200, 16, 46, 0.55);
}

.btn-order--large {
  padding: 18px 42px;
  font-size: 1.1rem;
}

.btn-secondary {
  display: inline-block;
  padding: 18px 36px;
  border: 2px solid var(--gold);
  color: var(--gold-light);
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--ink);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 18, 16, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.navbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
}

.brand span {
  color: #fff;
  font-weight: 400;
  font-size: 0.95rem;
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 26px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: #f2e6d8;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--gold-light);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background: url('../images/photo-10.jpg') center 65% / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 12, 10, 0.75) 0%, rgba(20, 12, 10, 0.55) 45%, rgba(20, 12, 10, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  color: #fff;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.1rem;
  color: #f2e6d8;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section base */
section { padding: 90px 0; }

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 10px;
}

.section-tag--center { text-align: center; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 50px;
  text-align: center;
}

.menu, .reviews { text-align: center; }

/* About */
.about { background: #fff; }

.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text h2 { margin-bottom: 22px; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.about-text p { color: #4a3d36; margin-bottom: 18px; }

.about-stats {
  display: grid;
  gap: 20px;
}

.stat-card {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow);
}

.stat-number {
  display: block;
  font-family: Georgia, serif;
  font-size: 2.2rem;
  color: var(--gold-light);
  font-weight: 700;
}

.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d8c7b8;
}

/* Menu */
.menu { background: var(--ink-soft); color: #fff; }
.menu .section-tag { color: var(--gold-light); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 20px;
  text-align: left;
}

.menu-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius);
  padding: 28px 26px;
}

.menu-card h3 {
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.menu-card ul { list-style: none; padding: 0; margin: 0; }

.menu-card li {
  padding: 8px 0;
  color: #f2e6d8;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.menu-card li:last-child { border-bottom: none; }

.menu-note {
  margin-top: 30px;
  color: #b8a897;
  font-size: 0.9rem;
}

/* Gallery */
.gallery { background: #fff; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews { background: var(--cream); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 20px;
  text-align: left;
}

.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card p { color: #4a3d36; }

.review-author {
  margin-top: 14px;
  font-weight: 700;
  color: var(--red);
}

/* Hours & location */
.hours { background: var(--ink); color: #fff; }
.hours .section-tag { color: var(--gold-light); }
.hours h2 { color: #fff; margin-bottom: 26px; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #f2e6d8;
}

.hours-address, .hours-phone {
  color: #d8c7b8;
  margin-bottom: 10px;
}

.hours-phone a { color: var(--gold-light); font-weight: 700; }

.hours-map {
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hours .btn-order { margin-top: 14px; }

/* Footer */
.footer {
  background: var(--ink-soft);
  color: #d8c7b8;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand { margin-bottom: 12px; }

.footer p { margin: 4px 0; }
.footer a:hover { color: var(--gold-light); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-cta { display: flex; align-items: flex-start; }

.footer-note {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 20px;
  color: #908073;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 5, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal-overlay[hidden] { display: none; }

.modal {
  background: #fff;
  border-radius: var(--radius);
  max-width: 440px;
  width: 100%;
  padding: 40px 34px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal h2 {
  color: var(--red);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.modal p { color: #4a3d36; margin-bottom: 26px; }

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: #9a8a7d;
  cursor: pointer;
}

.modal-close:hover { color: var(--red); }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .hours-grid { grid-template-columns: 1fr; gap: 34px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hours-map { height: 300px; }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 18, 16, 0.98);
    flex-direction: column;
    align-items: center;
    padding: 18px 0;
    gap: 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .navbar-inner .btn-order { display: none; }
}

@media (max-width: 560px) {
  section { padding: 60px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 160px; }
  .hero { min-height: 92vh; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-cta { justify-content: center; }
}
