:root {
  --color-brand-red: #d62828;
  --color-brand-red-dark: #a51f1f;
  --color-brand-gold: #f2a541;
  --color-brand-green: #1f6b3f;
  --color-ink: #241812;
  --color-ink-soft: #55453d;
  --color-cream: #fdf6ec;
  --color-cream-deep: #f5e8d3;
  --color-white: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', system-ui, -apple-system, sans-serif;
  --shadow-soft: 0 12px 30px rgba(36, 24, 18, 0.12);
  --radius-lg: 20px;
}

* { 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; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

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

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

/* ---------- Order Online Button (consistent everywhere) ---------- */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand-red);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(214, 40, 40, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-transform: uppercase;
}
.btn-order:hover, .btn-order:focus-visible {
  background: var(--color-brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(165, 31, 31, 0.4);
}
.btn-order--hero {
  font-size: 1.15rem;
  padding: 18px 42px;
}
.btn-order--modal {
  margin-top: 8px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  background: rgba(255,255,255,0.08);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); }

/* ---------- 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,18,0.08);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-ink);
}
.brand-mark {
  background: var(--color-brand-green);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
}
.brand-text em { color: var(--color-brand-red); font-style: normal; }
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-links a { opacity: 0.85; }
.nav-links a:hover { opacity: 1; color: var(--color-brand-red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--color-ink);
  border-radius: 2px;
}
.nav-links-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px 24px;
  background: var(--color-cream);
  border-top: 1px solid rgba(36,24,18,0.08);
}
.nav-links-mobile a { font-weight: 700; }
.nav-links-mobile.open { display: flex; }

@media (max-width: 860px) {
  .nav-links, .navbar-inner .btn-order--nav { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,20,14,0.75) 0%, rgba(36,20,14,0.55) 45%, rgba(36,20,14,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 100px 24px;
  max-width: 760px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--color-brand-gold);
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 560px;
  opacity: 0.95;
  margin-bottom: 32px;
}
.hero-cta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 0.95rem;
}
.hero-badges span::before { content: ''; }

/* ---------- Section shared ---------- */
section { padding: 88px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--color-brand-red);
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.center { text-align: center; }
.menu-intro { max-width: 560px; margin: 0 auto 50px; color: var(--color-ink-soft); }

/* ---------- About ---------- */
.about { background: var(--color-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.about-copy p { color: var(--color-ink-soft); }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-brand-green);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--color-ink-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ---------- Menu ---------- */
.menu { background: var(--color-cream-deep); }
.menu h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.menu-category {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.menu-category h3 {
  color: var(--color-brand-red);
  font-size: 1.3rem;
  border-bottom: 3px solid var(--color-brand-gold);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(36,24,18,0.12);
}
.menu-category li:last-child { border-bottom: none; }
.dish { font-weight: 800; font-size: 1.02rem; }
.desc { color: var(--color-ink-soft); font-size: 0.92rem; margin-top: 4px; }
.menu-cta { text-align: center; margin-top: 44px; }

@media (max-width: 860px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* ---------- Gallery ---------- */
.gallery { background: var(--color-white); }
.gallery h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 44px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ---------- Reviews ---------- */
.reviews { background: var(--color-cream-deep); }
.reviews h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 44px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
  box-shadow: var(--shadow-soft);
}
.review-stars {
  color: var(--color-brand-gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review-card p { color: var(--color-ink-soft); font-style: italic; }
.review-card footer { font-weight: 800; color: var(--color-ink); }

@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ---------- Location ---------- */
.location { background: var(--color-white); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.location h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
address { font-style: normal; margin-bottom: 12px; color: var(--color-ink-soft); font-weight: 600; }
.location-phone { font-size: 1.2rem; font-weight: 800; }
.location-phone a { color: var(--color-brand-red); }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 30px;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid rgba(36,24,18,0.1);
  font-weight: 600;
}
.hours-table th { color: var(--color-ink-soft); font-weight: 700; width: 40%; }
.location-map iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 860px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-ink);
  color: #f2e9de;
  padding: 56px 0 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}
.footer-brand .brand-text em { color: var(--color-brand-gold); font-style: normal; }
.footer-info p { margin: 0 0 6px; color: #cbbfae; }
.footer-info a { color: #fff; font-weight: 700; }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  color: #a5978a;
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(36, 24, 18, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  text-align: center;
}
.modal h2 {
  font-size: 1.5rem;
  color: var(--color-brand-red);
}
.modal p {
  color: var(--color-ink-soft);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-ink-soft);
}
.modal-close:hover { color: var(--color-brand-red); }

@media (max-width: 600px) {
  section { padding: 60px 0; }
  .hero-content { padding: 70px 20px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
}
