/* ---------- Base ---------- */
:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --brand-gold: #e8a13a;
  --ink: #241816;
  --ink-soft: #4a3a36;
  --cream: #fdf6ec;
  --cream-dark: #f5e9d6;
  --white: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(36, 24, 22, 0.12);
}

* { 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; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  z-index: 1000;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--brand-red);
  font-size: 0.82rem;
  margin-bottom: 0.6em;
}
.center { text-align: center; }

/* ---------- Order Button ---------- */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-red);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 20px rgba(214, 40, 40, 0.35);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-order:hover,
.btn-order:focus-visible {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(214, 40, 40, 0.45);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.92rem; }
.btn-order--footer { padding: 12px 26px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--ink);
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(253, 246, 236, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(36, 24, 22, 0.08);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--brand-red);
}
.brand-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}
.nav-links {
  display: flex;
  gap: 26px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  text-decoration: none;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--brand-red); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  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(36,20,18,0.55) 0%, rgba(36,20,18,0.65) 50%, rgba(20,12,10,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 720px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--brand-gold);
  margin-bottom: 14px;
  font-size: 0.85rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 18px;
}
.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.stars {
  color: var(--brand-gold);
  letter-spacing: 2px;
}

/* ---------- About ---------- */
.about { padding: 90px 0; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.about-text p { color: var(--ink-soft); margin-bottom: 1.1em; }
.about-photo img {
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

/* ---------- Menu ---------- */
.menu { padding: 90px 0; background: var(--cream-dark); }
.menu h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.menu-intro {
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 50px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.menu-category {
  background: var(--white);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.menu-category h3 {
  color: var(--brand-red);
  font-size: 1.4rem;
  border-bottom: 2px solid var(--cream-dark);
  padding-bottom: 14px;
  margin-bottom: 16px;
}
.menu-items { list-style: none; margin: 0; padding: 0; }
.menu-items li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px solid rgba(36,24,22,0.08);
}
.menu-items li:last-child { border-bottom: none; }
.item-name { font-weight: 800; }
.item-desc { color: var(--ink-soft); font-size: 0.92rem; }
.menu-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin-top: 40px;
}

/* ---------- Gallery ---------- */
.gallery { padding: 90px 0; background: var(--cream); }
.gallery h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 50px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  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 h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 50px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  border-radius: 18px;
  padding: 30px;
  margin: 0;
  box-shadow: var(--shadow-soft);
}
.review-card .stars { margin-bottom: 12px; display: block; }
.review-card p {
  font-style: italic;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.review-card cite { font-weight: 800; font-style: normal; }

/* ---------- Visit ---------- */
.visit { padding: 90px 0; background: var(--cream); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.visit-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.info-block { margin: 26px 0; }
.info-block h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-red);
  margin-bottom: 10px;
}
.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 340px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(36,24,22,0.08);
}
.visit-info p a { color: var(--brand-red); font-weight: 700; text-decoration: none; }
.visit-map {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 380px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 24px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand-mark { color: var(--brand-gold); }
.footer-brand .brand-sub { color: rgba(255,255,255,0.6); }
.footer-brand p { margin: 6px 0 0; font-size: 0.92rem; }
.footer-brand a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.75); font-weight: 600; font-size: 0.92rem; }
.footer-links a:hover { color: var(--brand-gold); }
.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin: 24px 0 0;
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 10, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: var(--white);
  border-radius: 18px;
  padding: 40px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  text-align: center;
}
.modal h2 {
  font-size: 1.5rem;
  color: var(--brand-red);
}
.modal p { color: var(--ink-soft); margin-bottom: 24px; }
.modal p a { color: var(--brand-red); font-weight: 700; text-decoration: none; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
}
.modal-close:hover { color: var(--brand-red); }

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

@media (max-width: 560px) {
  .hero { min-height: 100vh; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
