:root {
  --color-brand-red: #d62828;
  --color-brand-red-dark: #a81f1f;
  --color-brand-gold: #f2a541;
  --color-ink: #241a15;
  --color-cream: #fdf6ec;
  --color-cream-dark: #f3e6d0;
  --color-green: #386641;
  --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(--color-ink);
  background: var(--color-cream);
  line-height: 1.6;
}

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

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

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

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

/* ---------- Order Button ---------- */
.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;
  text-transform: uppercase;
  letter-spacing: .03em;
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.4);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn-order:hover {
  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: .9rem; }
.btn-order--hero { padding: 18px 40px; font-size: 1.1rem; }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-cream);
  border-bottom: 3px solid var(--color-brand-gold);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--color-brand-red);
  flex-shrink: 0;
}
.logo span { color: var(--color-green); }

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-weight: 700;
  font-size: .95rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { border-color: var(--color-brand-red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--color-ink);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url('../images/photo-01.jpg') center center / cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,26,21,.55) 0%, rgba(36,26,21,.75) 60%, rgba(36,26,21,.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
  color: var(--color-brand-gold);
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 32px;
  color: #f3e6d0;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.stars { color: var(--color-brand-gold); font-size: 1.2rem; letter-spacing: 2px; }

/* ---------- Sections generic ---------- */
section { padding: 80px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
  color: var(--color-brand-red);
  margin-bottom: 8px;
}
.section-eyebrow--center { text-align: center; }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 48px;
  text-align: center;
}

/* ---------- About ---------- */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-image img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(36,26,21,.2);
}
.about-text p { margin-bottom: 1.1em; color: #4a3d34; }

/* ---------- Menu ---------- */
.menu { background: var(--color-cream-dark); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.menu-category {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(36,26,21,.08);
}
.menu-category h3 {
  color: var(--color-brand-red);
  border-bottom: 2px solid var(--color-brand-gold);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #e0d3bc;
}
.menu-category li:last-child { border-bottom: none; }
.menu-category li em { display: block; font-size: .85rem; color: #7a6c5d; font-style: normal; }
.price { font-weight: 800; color: var(--color-green); white-space: nowrap; }
.menu-note {
  text-align: center;
  margin-top: 36px;
  color: #7a6c5d;
  font-size: .9rem;
}
.menu-note a { color: var(--color-brand-red); font-weight: 700; }

/* ---------- Gallery ---------- */
.gallery { background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform .25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ---------- Reviews ---------- */
.reviews { background: var(--color-cream-dark); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  margin: 0;
  box-shadow: 0 8px 24px rgba(36,26,21,.08);
}
.review-card p { font-style: italic; color: #4a3d34; margin: 14px 0; }
.review-card cite { font-weight: 800; color: var(--color-brand-red); font-style: normal; }

/* ---------- Location ---------- */
.location { background: #fff; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.location address { font-size: 1.1rem; margin: 12px 0; font-style: normal; }
.location-phone {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-brand-red);
}
.hours-table {
  width: 100%;
  margin: 28px 0 32px;
  border-collapse: collapse;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid #eee0c8;
  font-weight: 600;
}
.hours-table th { color: var(--color-ink); font-weight: 700; }
.hours-table td { text-align: right; color: #4a3d34; }
.location-map iframe { border-radius: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-ink);
  color: #f3e6d0;
  padding-top: 56px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 40px;
}
.footer-brand .logo { color: var(--color-brand-gold); }
.footer-brand .logo span { color: #f3e6d0; }
.footer-brand p { margin: 4px 0; font-size: .95rem; }
.footer-brand a:hover { text-decoration: underline; }
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-links a:hover { color: var(--color-brand-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 0;
  font-size: .85rem;
  text-align: center;
  color: #a89685;
}

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

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

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    align-items: center;
    gap: 0;
    border-bottom: 3px solid var(--color-brand-gold);
    overflow: hidden;
    max-height: 0;
    transition: max-height .25s ease;
  }
  .main-nav.is-open { max-height: 400px; }
  .main-nav a { width: 100%; text-align: center; padding: 14px 0; border-bottom: 1px solid var(--color-cream-dark); }
  .nav-toggle { display: flex; }
  .btn-order--nav { display: none; }
  .header-inner { flex-wrap: wrap; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 160px; }
}

@media (max-width: 480px) {
  section { padding: 56px 0; }
  .hero { min-height: 100vh; }
}
