/* ---- Base & Variables ---- */
:root {
  --color-brand-red: #d62828;
  --color-brand-red-dark: #a91f1f;
  --color-brand-gold: #f2a900;
  --color-cream: #fdf6ec;
  --color-charcoal: #2b1b17;
  --color-text: #3a2a26;
  --color-text-light: #6b5750;
  --font-display: 'Fraunces', serif;
  --font-body: 'Nunito Sans', sans-serif;
  --radius-lg: 18px;
  --shadow-md: 0 10px 30px rgba(43, 27, 23, 0.15);
}

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

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

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

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

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--color-charcoal); margin: 0 0 0.5em; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-brand-red);
  color: #fff;
  padding: 8px 16px;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---- Order Button (shared) ---- */
.btn-order {
  display: inline-block;
  background: var(--color-brand-red);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  letter-spacing: 0.02em;
  text-align: center;
}
.btn-order:hover, .btn-order:focus-visible {
  background: var(--color-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.95rem; }
.btn-order--hero { font-size: 1.1rem; padding: 16px 38px; }
.btn-order--footer, .btn-order--location { width: 100%; }
.btn-order--modal { margin-top: 20px; width: 100%; text-align: center; }

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-cream);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--color-brand-red);
  white-space: nowrap;
}
.logo span { display: block; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-charcoal); font-family: var(--font-body); font-weight: 700; }

.main-nav ul { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.main-nav a { font-weight: 700; font-size: 0.95rem; color: var(--color-charcoal); }
.main-nav a:hover { color: var(--color-brand-red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--color-charcoal); border-radius: 2px; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,27,23,0.55) 0%, rgba(43,27,23,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-gold, #f2a900);
  margin-bottom: 12px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 18px;
  line-height: 1.1;
}
.hero-tagline { font-size: 1.15rem; margin-bottom: 32px; opacity: 0.95; }
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero-rating { display: flex; align-items: center; gap: 10px; justify-content: center; font-weight: 700; }
.stars { color: var(--color-brand-gold); font-size: 1.1rem; }

/* ---- Section Generic ---- */
section { padding: 90px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--color-brand-red);
  margin-bottom: 8px;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 12px; }
.section-sub { color: var(--color-text-light); max-width: 560px; margin: 0 auto 40px; }
.center { text-align: center; }

/* ---- About ---- */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-copy p { margin-bottom: 18px; color: var(--color-text-light); }

/* ---- Menu ---- */
.menu { background: var(--color-cream); }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; }
.menu-category h3 {
  font-size: 1.4rem;
  border-bottom: 3px solid var(--color-brand-gold);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li { margin-bottom: 20px; }
.menu-item { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-weight: 800; font-size: 1.05rem; }
.item-price { color: var(--color-brand-red); white-space: nowrap; }
.item-desc { margin: 4px 0 0; color: var(--color-text-light); font-size: 0.92rem; }

/* ---- Gallery ---- */
.gallery { background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.07); }

/* ---- Reviews ---- */
.reviews { background: var(--color-charcoal); color: #fff; }
.reviews .section-title, .reviews .section-eyebrow { color: #fff; }
.reviews .section-eyebrow { color: var(--color-brand-gold); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
}
.review-card p { font-style: italic; margin: 14px 0; color: #efe4de; }
.review-card cite { font-weight: 700; color: var(--color-brand-gold); font-style: normal; }
.reviews-overall { text-align: center; margin-top: 36px; font-weight: 800; font-size: 1.1rem; color: var(--color-brand-gold); }

/* ---- Location ---- */
.location { background: #fff; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.location-info address { font-style: normal; font-size: 1.1rem; margin-bottom: 8px; }
.location-phone { margin-bottom: 24px; }
.location-phone a { color: var(--color-brand-red); font-weight: 800; font-size: 1.2rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 28px; }
.hours-table th, .hours-table td { text-align: left; padding: 8px 0; border-bottom: 1px solid #eee0d3; font-weight: 600; }
.hours-table th { color: var(--color-charcoal); width: 40%; }
.closed-row td, .closed-row th { color: var(--color-brand-red); font-weight: 800; }
.location-map { min-height: 380px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.location-map iframe { width: 100%; height: 100%; min-height: 380px; }

/* ---- Footer ---- */
.site-footer { background: var(--color-charcoal); color: #f0e5df; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; align-items: start; }
.footer-brand .logo { color: #fff; }
.footer-brand .logo span { color: var(--color-brand-gold); }
.footer-brand p, .footer-hours p { margin: 6px 0; color: #cbb9b1; }
.footer-brand a, .footer-hours a { color: #f0e5df; }
.footer-hours h4 { color: #fff; margin-bottom: 10px; }
.footer-copy { text-align: center; color: #8a7168; margin-top: 40px; font-size: 0.85rem; }

/* ---- Modal ---- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 10, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  text-align: center;
}
.modal h2 { margin-bottom: 16px; color: var(--color-brand-red); font-size: 1.5rem; }
.modal p { color: var(--color-text-light); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text-light);
}
.modal-close:hover { color: var(--color-brand-red); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; gap: 36px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 24px; }
}

@media (max-width: 720px) {
  .main-nav { position: fixed; top: 68px; left: 0; right: 0; background: var(--color-cream); box-shadow: 0 8px 16px rgba(0,0,0,0.08); transform: translateY(-120%); opacity: 0; transition: transform 0.25s ease, opacity 0.25s ease; pointer-events: none; }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 12px 24px; }
  .main-nav li { border-bottom: 1px solid #f0e4d8; }
  .main-nav a { display: block; padding: 14px 0; }
  .nav-toggle { display: flex; }
  .btn-order--nav { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 60px 20px; }
  section { padding: 60px 0; }
}
