:root {
  --color-charcoal: #241712;
  --color-charcoal-light: #382419;
  --color-cream: #fff8ef;
  --color-cream-dark: #f7ecd9;
  --color-text: #2c1e17;
  --color-text-muted: #6b5849;
  --color-brand-orange: #ff5a1f;
  --color-brand-orange-dark: #e04413;
  --color-gold: #f4a300;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-pill: 999px;
  --radius-card: 16px;
  --shadow-card: 0 12px 30px -12px rgba(36, 23, 18, 0.25);
}

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

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

p { margin: 0 0 1em; }
a { color: inherit; }
img { max-width: 100%; display: block; }

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

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

/* Buttons */
.btn-order {
  display: inline-block;
  background: var(--color-brand-orange);
  color: #fff;
  font-weight: 800;
  font-family: var(--font-body);
  text-decoration: none;
  border: none;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 8px 20px -6px rgba(224, 68, 19, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
}
.btn-order:hover, .btn-order:focus-visible {
  background: var(--color-brand-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -6px rgba(224, 68, 19, 0.65);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.9rem; }
.btn-order--hero { font-size: 1.1rem; padding: 16px 38px; }
.btn-order--modal { margin-top: 8px; text-decoration: none; }

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

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(36, 23, 18, 0.96);
  backdrop-filter: blur(6px);
}
.navbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  margin-right: auto;
}
.brand-dot { color: var(--color-brand-orange); }
.nav-links {
  display: flex;
  gap: 28px;
  margin-right: auto;
}
.nav-links a {
  color: #f1e4d6;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--color-gold); }
.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: #fff;
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url('../images/photo-01.jpg');
  background-size: cover;
  background-position: center 60%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 14, 10, 0.75) 0%, rgba(24, 14, 10, 0.55) 45%, rgba(24, 14, 10, 0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  color: #fff;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-gold);
  margin-bottom: 12px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 18px;
}
.hero-tagline {
  font-size: 1.15rem;
  color: #f3e6d8;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.hero-rating {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: #f3e6d8;
  font-size: 0.95rem;
}
.stars { color: var(--color-gold); letter-spacing: 2px; }

/* Section generic */
section { padding: 90px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--color-brand-orange-dark);
  margin-bottom: 10px;
}
.section-sub {
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* About */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-photo img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.about-copy h2 { font-size: 2.1rem; }
.about-copy p { color: var(--color-text-muted); }

/* Menu */
.menu { background: var(--color-cream-dark); }
.menu h2 { font-size: 2.1rem; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 20px;
}
.menu-category {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.menu-category h3 {
  font-size: 1.3rem;
  color: var(--color-brand-orange-dark);
  border-bottom: 2px solid var(--color-cream-dark);
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.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 #e6d9c6;
}
.menu-category li:last-child { border-bottom: none; }
.item-name { font-weight: 700; }
.item-desc { color: var(--color-text-muted); font-size: 0.92rem; }
.menu-note {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin-top: 30px;
}

/* Gallery */
.gallery { background: #fff; }
.gallery h2 { font-size: 2.1rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.02); }

/* Reviews */
.reviews { background: var(--color-charcoal); color: #f3e6d8; }
.reviews h2 { color: #fff; font-size: 2.1rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.review-card {
  background: var(--color-charcoal-light);
  border-radius: var(--radius-card);
  padding: 28px;
  margin: 0;
}
.review-card p { font-style: italic; color: #f3e6d8; }
.review-card cite { color: var(--color-gold); font-weight: 700; font-style: normal; }

/* Hours & Location */
.hours-location { background: var(--color-cream-dark); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}
.hours-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.hours-card address {
  font-style: normal;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.phone-link {
  display: inline-block;
  font-weight: 800;
  color: var(--color-brand-orange-dark);
  text-decoration: none;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.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 var(--color-cream-dark);
  font-weight: 600;
  font-size: 0.95rem;
}
.hours-table td { text-align: right; color: var(--color-text-muted); font-weight: 400; }
.map-embed {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 320px;
}
.map-embed iframe { width: 100%; height: 100%; display: block; }

/* Footer */
.site-footer {
  background: var(--color-charcoal);
  color: #f3e6d8;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.phone-link--footer { color: var(--color-gold); }
.footer-hours p { margin: 0 0 6px; font-size: 0.92rem; }
.footer-cta { text-align: right; }
.footer-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(243, 230, 216, 0.6);
  margin: 24px 0 0;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(24, 14, 10, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.modal {
  position: relative;
  background: #fff;
  border-radius: var(--radius-card);
  max-width: 420px;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.4);
}
.modal h2 { font-size: 1.5rem; }
.modal p { color: var(--color-text-muted); }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 4px 8px;
}
.modal-close:hover { color: var(--color-brand-orange-dark); }

/* This must come after other rules so [hidden] reliably wins regardless of selector order */
.modal-backdrop[hidden] { display: none !important; }

/* Responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .about-grid, .hours-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); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-cta { text-align: center; }
}

@media (max-width: 900px) {
  .navbar-inner.nav-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-charcoal);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 180px; }
  section { padding: 60px 0; }
  .hero { min-height: 100vh; }
}
