/* ===== Tokens ===== */
:root {
  --charcoal: #1b1a17;
  --charcoal-2: #262420;
  --cream: #f7f2e7;
  --cream-2: #efe6d3;
  --gold: #c9a35c;
  --gold-light: #e0c084;
  --ink: #2c2620;
  --muted: #6b6357;
  --order-red: #d1442f;
  --order-red-dark: #a8331f;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Jost", "Segoe UI", sans-serif;
  --radius: 10px;
  --radius-pill: 999px;
  --shadow: 0 12px 30px rgba(0,0,0,0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); margin: 0 0 0.5em; color: var(--charcoal); line-height: 1.2; }
p { margin: 0 0 1em; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--charcoal);
  padding: 10px 16px; z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ===== Order Button (CTA) ===== */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--order-red), var(--order-red-dark));
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(209, 68, 47, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-order:hover, .btn-order:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(209, 68, 47, 0.55);
}
.btn-order--lg { padding: 18px 42px; font-size: 1rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 34px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: background 0.15s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(27, 26, 23, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201,163,92,0.25);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo span {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.main-nav ul {
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav a {
  color: var(--cream-2);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--gold-light); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); display: block; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  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(20,18,14,0.55) 0%, rgba(20,18,14,0.55) 40%, rgba(15,13,10,0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  text-align: center;
  color: #fff;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin-bottom: 20px;
}
.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.hero-rating { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.stars { color: var(--gold-light); letter-spacing: 2px; }

/* ===== Section shared ===== */
section { padding: 96px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--order-red-dark);
  font-weight: 600;
  margin-bottom: 10px;
}
.section-lead { color: var(--muted); max-width: 560px; margin: 0 auto 50px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ===== About ===== */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.about-copy h2 { font-size: 2.2rem; margin-bottom: 22px; }
.about-copy p { color: #4a433a; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ===== Menu ===== */
.menu { background: var(--charcoal); color: var(--cream-2); }
.menu h2 { color: var(--cream); }
.menu .section-eyebrow { color: var(--gold-light); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 60px;
  margin-top: 20px;
}
.menu-category h3 {
  color: var(--gold-light);
  font-size: 1.35rem;
  border-bottom: 1px solid rgba(201,163,92,0.3);
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li { margin-bottom: 20px; }
.menu-item-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.menu-item-name { font-family: var(--font-serif); font-size: 1.05rem; color: var(--cream); }
.menu-item-price { color: var(--gold-light); font-weight: 600; white-space: nowrap; }
.menu-item-desc { color: #b9b1a2; font-size: 0.92rem; margin: 4px 0 0; }
.menu-note { text-align: center; margin-top: 50px; color: #a49c8d; font-size: 0.9rem; }
.menu-note a { color: var(--gold-light); text-decoration: underline; }

/* ===== Gallery ===== */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }

/* ===== Reviews ===== */
.reviews { background: var(--cream-2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  margin: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.review-card p { font-style: italic; color: #4a433a; font-size: 0.95rem; margin: 14px 0 16px; }
.review-card cite { font-weight: 600; color: var(--charcoal); font-style: normal; font-size: 0.9rem; }
.review-card .stars { color: var(--order-red); }

/* ===== Visit ===== */
.visit { background: var(--cream); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.visit-info address { font-style: normal; color: var(--ink); margin-bottom: 6px; font-size: 1.05rem; }
.visit-phone { margin-bottom: 24px; }
.visit-phone a { color: var(--order-red-dark); font-weight: 600; font-size: 1.15rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; }
.hours-table tr { border-bottom: 1px solid rgba(0,0,0,0.08); }
.hours-table th, .hours-table td { text-align: left; padding: 10px 0; font-weight: 400; }
.hours-table th { color: var(--muted); font-weight: 500; width: 40%; }
.visit-map { min-height: 380px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.visit-map iframe { min-height: 380px; }

/* ===== Footer ===== */
.site-footer { background: var(--charcoal); color: var(--cream-2); padding-top: 70px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: var(--cream); margin-bottom: 12px; }
.footer-brand p { color: #b9b1a2; margin-bottom: 6px; }
.footer-brand a { color: var(--gold-light); }
.footer-hours h4 { color: var(--gold-light); font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem; margin-bottom: 12px; }
.footer-hours p { color: #b9b1a2; margin-bottom: 6px; font-size: 0.92rem; }
.footer-cta { display: flex; align-items: flex-start; justify-content: flex-start; }
.footer-bottom { text-align: center; padding: 24px 0; font-size: 0.82rem; color: #8a8377; }

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15,13,10,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: var(--radius);
  max-width: 440px;
  width: 100%;
  padding: 44px 36px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.modal h2 { font-size: 1.5rem; margin-bottom: 14px; }
.modal p { color: var(--muted); margin-bottom: 26px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  padding: 4px 8px;
}
.modal-close:hover { color: var(--ink); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(27,26,23,0.98);
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.open { max-height: 320px; }
  .main-nav ul { flex-direction: column; padding: 20px 24px; gap: 18px; }
  .nav-toggle { display: flex; }
  .header-actions .btn-order { display: none; }
  .hero-content { padding: 100px 20px 60px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 64px 0; }
}

@media (min-width: 721px) {
  .nav-toggle { display: none; }
}
