:root {
  --brand-red: #d0281c;
  --brand-red-dark: #a81f16;
  --dark: #1a1310;
  --charcoal: #241a15;
  --cream: #faf3e8;
  --gold: #e8b04b;
  --text-muted: #6b5f57;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

h1, h2, h3 { font-family: var(--font-heading); margin: 0 0 12px; }

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

.center { text-align: center; }

.section-kicker {
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0 0 8px;
}

/* Order Online Button - consistent everywhere */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 14px rgba(208, 40, 28, 0.4);
}

.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
}

.btn-large {
  font-size: 1.15rem;
  padding: 18px 44px;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 999px;
}

.btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--cream);
  font-weight: bold;
  white-space: nowrap;
}

.brand span { color: var(--gold); }

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

.nav-links a {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/photo-01.jpg') center center / cover no-repeat, var(--dark);
  text-align: center;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
  padding: 40px 24px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  margin-bottom: 16px;
}

.hero-tagline {
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: #f2e8da;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #f2e8da;
}

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

/* About */
.about { padding: 90px 0; background: var(--cream); }

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

.about-text h2 { font-size: 2.2rem; color: var(--charcoal); }

.about-text p { color: var(--text-muted); margin-bottom: 16px; }

.about-photo img {
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Menu */
.menu { padding: 90px 0; background: var(--dark); color: var(--cream); }

.menu h2 { font-size: 2.2rem; }

.menu-intro {
  max-width: 600px;
  margin: 0 auto 50px;
  color: #cfc3b6;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.menu-category h3 {
  color: var(--gold);
  border-bottom: 2px solid rgba(232, 176, 75, 0.3);
  padding-bottom: 10px;
  margin-bottom: 18px;
  font-size: 1.4rem;
}

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

.menu-category li {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.item-name { font-weight: 700; font-size: 1.05rem; }

.item-desc { color: #cfc3b6; font-size: 0.92rem; }

.menu-note {
  margin-top: 50px;
  color: #8a7e72;
  font-size: 0.85rem;
}

/* Gallery */
.gallery { padding: 90px 0; background: var(--cream); }

.gallery h2 { font-size: 2.2rem; color: var(--charcoal); margin-bottom: 40px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

/* Reviews */
.reviews { padding: 90px 0; background: var(--charcoal); color: var(--cream); }

.reviews h2 { font-size: 2.2rem; margin-bottom: 40px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(232, 176, 75, 0.2);
  border-radius: 12px;
  padding: 28px;
}

.review-card p { font-size: 0.98rem; color: #e6dccd; }

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

/* Location */
.location { padding: 90px 0; background: var(--cream); }

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

.location-info h2 { font-size: 2.2rem; color: var(--charcoal); }

.info-block { margin-bottom: 24px; }

.info-block h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-red);
  margin-bottom: 6px;
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  max-width: 340px;
}

.location-map iframe {
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--cream);
  padding: 50px 0 20px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 30px;
}

.footer-brand { font-size: 1.3rem; margin-bottom: 8px; }

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a { color: #cfc3b6; }
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  text-align: center;
  color: #7a6f64;
  font-size: 0.85rem;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 8, 0.75);
  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;
  max-width: 420px;
  width: 100%;
  padding: 40px 32px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.modal h2 {
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.modal p { color: var(--text-muted); margin-bottom: 24px; }

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
}

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

.modal-call { width: 100%; }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .navbar-inner { justify-content: space-between; }
  .hero-cta-row { flex-direction: column; align-items: center; }
}
