:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --brand-orange: #f4a261;
  --brand-green: #2a6f4f;
  --cream: #fdf6ec;
  --charcoal: #2b1f1a;
  --text-body: #3a2e28;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  background: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  z-index: 999;
}

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

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-order {
  background: var(--brand-red);
  color: #fff;
  padding: 12px 28px;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(214, 40, 40, 0.4);
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.5);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 34px;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--brand-red);
  text-decoration: none;
  white-space: nowrap;
}
.logo span { color: var(--charcoal); font-weight: 600; }

.main-nav {
  display: flex;
  gap: 26px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--brand-red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--charcoal);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  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,10,8,0.55) 0%, rgba(20,10,8,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 100px 24px;
  max-width: 780px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--brand-orange);
  margin-bottom: 14px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 620px;
  margin-bottom: 32px;
  color: #f2ece4;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
}
.stars { color: var(--brand-orange); font-size: 1.1rem; letter-spacing: 2px; }

/* Sections generic */
section { padding: 90px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--brand-red);
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.section-sub { color: #6b5c53; max-width: 560px; margin: 14px auto 0; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 8px; }

/* About */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p { margin: 0 0 18px; color: #4a3b33; }
.about-photo img {
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.menu-category {
  background: #fff;
  border-radius: 14px;
  padding: 30px 26px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.menu-category h3 {
  font-size: 1.25rem;
  color: var(--brand-red);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--brand-orange);
  padding-bottom: 10px;
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
}
.menu-category li:last-child { border-bottom: none; margin-bottom: 0; }
.menu-category li span {
  display: block;
  font-weight: 800;
  color: var(--charcoal);
}
.menu-category li em {
  display: block;
  font-style: normal;
  color: #6b5c53;
  font-size: 0.9rem;
  margin-top: 3px;
}
.menu-cta { text-align: center; margin-top: 50px; }

/* Gallery */
.gallery { background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 50px;
}
.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.04); }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  margin: 0;
  border-left: 5px solid var(--brand-orange);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.review-card p { color: #4a3b33; margin: 12px 0; font-size: 1rem; }
.review-card cite { font-weight: 800; color: var(--charcoal); font-style: normal; }
.reviews-note { margin-top: 30px; color: #6b5c53; font-weight: 700; }

/* Location */
.location { background: #fff; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}
.location-info address { font-style: normal; margin: 14px 0 4px; color: #4a3b33; }
.location-info p a { color: var(--brand-red); font-weight: 700; text-decoration: none; }
.hours-table { width: 100%; border-collapse: collapse; margin: 24px 0 30px; }
.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: var(--charcoal); font-weight: 800; width: 40%; }
.location-map iframe { border-radius: 14px; }

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: #f2ece4;
  padding: 60px 0 20px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo { font-family: var(--font-display); font-size: 1.4rem; color: #fff; margin: 0 0 8px; }
.footer-logo span { color: var(--brand-orange); }
.footer-brand p { margin: 4px 0; color: #cbb9ac; }
.footer-brand a { color: #f2ece4; text-decoration: none; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: #f2ece4; text-decoration: none; font-weight: 700; }
.footer-links a:hover { color: var(--brand-orange); }
.footer-bottom { padding-top: 20px; text-align: center; color: #9c8a7e; font-size: 0.85rem; }

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

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

@media (max-width: 700px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 24px 0;
    display: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-inner .btn-order { display: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero { min-height: 100vh; }
}
