:root {
  --brand-red: #c8102e;
  --brand-red-dark: #9c0c23;
  --brand-orange: #e8792c;
  --ink: #241a15;
  --cream: #fdf6ec;
  --cream-dark: #f4e8d6;
  --gold: #d9a441;
  --font-display: 'Fraunces', serif;
  --font-body: 'Nunito Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

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

/* Buttons */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(200, 16, 46, 0.35);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(200, 16, 46, 0.45);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.92rem; }
.btn-order--hero { font-size: 1.15rem; padding: 18px 40px; }

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

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(36, 26, 21, 0.96);
  backdrop-filter: blur(6px);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-right: auto;
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
}
.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: #f3e6d4;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px 28px;
  background: rgba(36, 26, 21, 0.98);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  color: #f3e6d4;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}
.mobile-nav .btn-order { text-align: center; }

/* 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, 12, 9, 0.55) 0%, rgba(20, 12, 9, 0.72) 55%, rgba(20, 12, 9, 0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  text-align: center;
  color: #fff;
}
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 900;
  margin: 0 0 20px;
  line-height: 1.05;
}
.hero-tagline {
  font-size: 1.2rem;
  color: #f3e6d4;
  max-width: 600px;
  margin: 0 auto 34px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero-rating {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #f3e6d4;
}
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }

/* Section headings */
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--brand-red);
  margin: 0 0 10px;
}
.section-kicker--center { text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 12px;
  text-align: center;
}
.section-subtitle {
  text-align: center;
  color: #6b5d51;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* About */
.about { padding: 90px 0; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-image img {
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 20px;
}
.about-text p { color: #4c4038; margin-bottom: 18px; }

/* Menu */
.menu { padding: 90px 0; background: var(--cream-dark); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.menu-category h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.menu-category h3 span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a7a6a;
  font-weight: 700;
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.12);
}
.item-name { font-weight: 800; }
.item-desc { color: #6b5d51; font-size: 0.92rem; }
.menu-cta { text-align: center; margin-top: 50px; }

/* Gallery */
.gallery { padding: 90px 0; background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews { padding: 90px 0; background: var(--cream-dark); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  margin: 0;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.review-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.review-card p { margin: 0 0 14px; color: #4c4038; }
.review-card footer { font-weight: 800; color: var(--brand-red); }

/* Location */
.location { padding: 90px 0; background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: stretch;
}
.location-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 18px;
}
.location-info address { font-style: normal; color: #4c4038; margin-bottom: 10px; line-height: 1.5; }
.location-phone a { color: var(--brand-red); font-weight: 800; text-decoration: none; font-size: 1.1rem; }
.hours-table { width: 100%; border-collapse: collapse; margin: 22px 0 28px; }
.hours-table th, .hours-table td { text-align: left; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.08); font-weight: 600; }
.hours-table th { color: #4c4038; font-weight: 700; }
.hours-table td { color: #6b5d51; text-align: right; }
.hours-table tr.closed td, .hours-table tr.closed th { color: var(--brand-red); font-weight: 800; }
.location-map {
  min-height: 340px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.location-map iframe { width: 100%; height: 100%; min-height: 340px; }

/* Footer */
.site-footer { background: var(--ink); color: #f3e6d4; padding: 50px 0 24px; }
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand p { color: #cbb9a6; max-width: 280px; margin: 8px 0 0; }
.footer-contact p { margin: 4px 0; }
.footer-contact a { text-decoration: none; color: var(--gold); font-weight: 700; }
.footer-copy { text-align: center; color: #8a7a6a; font-size: 0.85rem; margin: 22px 0 0; }

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 9, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: 18px;
  max-width: 420px;
  width: 100%;
  padding: 36px 32px;
  position: relative;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.modal h2 {
  font-family: var(--font-display);
  margin: 0 0 16px;
  color: var(--brand-red);
}
.modal p { color: #4c4038; font-size: 1.05rem; }
.modal p a { color: var(--brand-red); font-weight: 800; text-decoration: none; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #8a7a6a;
}
.modal-close:hover { color: var(--brand-red); }

/* Responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .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); }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 160px; }
  .hero-content { padding: 100px 20px 60px; }
  .footer-grid { flex-direction: column; text-align: center; }
}
