:root {
  --brand-red: #d62828;
  --brand-red-dark: #a8171a;
  --brand-orange: #f4a127;
  --brand-green: #2d6a4f;
  --ink: #26170f;
  --ink-soft: #5a4638;
  --cream: #fff8ee;
  --cream-dark: #f3e5d1;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(38, 23, 15, 0.15);
  --radius-lg: 20px;
  --radius-pill: 999px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--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: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 800;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn--order {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 14px 30px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(214, 40, 40, 0.4);
}
.btn--order:hover, .btn--order:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(214, 40, 40, 0.5);
}
.btn--lg { padding: 18px 40px; font-size: 1.1rem; }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: var(--radius-pill);
  padding: 16px 38px;
  font-size: 1.1rem;
}
.btn--ghost:hover { background: rgba(255,255,255,0.15); }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.navbar__brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--ink);
  white-space: nowrap;
}
.navbar__brand span { color: var(--brand-red); }
.navbar__links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.navbar__links a {
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.navbar__links a:hover { color: var(--brand-red); }
.navbar__order { flex-shrink: 0; }
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.navbar__toggle span {
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px 20px;
}
.mobile-menu a {
  padding: 12px 0;
  font-weight: 700;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--ink-soft);
}
.mobile-menu .btn { margin-top: 14px; width: 100%; }
.mobile-menu.is-open { display: flex; }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  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,5,0.55) 0%, rgba(20,10,5,0.65) 50%, rgba(20,10,5,0.85) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 100px 24px;
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--brand-orange);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  max-width: 780px;
  margin-bottom: 22px;
}
.hero__tagline {
  font-size: 1.15rem;
  max-width: 600px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Section shared */
section { padding: 90px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--brand-red);
  margin-bottom: 10px;
}
.center { text-align: center; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }

/* About */
.about { background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about__text p { color: var(--ink-soft); }
.about__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

/* Menu */
.menu { background: var(--cream); }
.menu__intro { max-width: 560px; margin: 0 auto 50px; color: var(--ink-soft); }
.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.menu__category {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.menu__category h3 {
  color: var(--brand-red);
  font-size: 1.3rem;
  border-bottom: 2px solid var(--cream-dark);
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.menu__category li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed var(--cream-dark);
}
.menu__category li:last-child { border-bottom: none; }
.menu__category li span { font-weight: 800; }
.menu__category li em {
  font-style: normal;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.menu__note { margin-top: 40px; color: var(--ink-soft); font-size: 0.9rem; }

/* Gallery */
.gallery { background: var(--white); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.gallery__grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.3s ease;
}
.gallery__grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews { background: var(--cream); }
.reviews__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  color: var(--ink-soft);
  font-weight: 700;
}
.stars { color: var(--brand-orange); font-size: 1.1rem; letter-spacing: 2px; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  margin: 0;
}
.review-card p { color: var(--ink-soft); font-size: 1rem; }
.review-card cite {
  font-weight: 800;
  font-style: normal;
  color: var(--ink);
}

/* Location */
.location { background: var(--white); }
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.location__info address { font-style: normal; color: var(--ink-soft); margin-bottom: 6px; }
.location__phone {
  display: inline-block;
  font-weight: 800;
  color: var(--brand-red);
  font-size: 1.3rem;
  margin-bottom: 24px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-weight: 600;
}
.hours-table th { color: var(--ink-soft); font-weight: 700; }
.location__map {
  min-height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.location__map iframe { width: 100%; height: 100%; min-height: 340px; }

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 20px;
}
.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
}
.footer__logo span { color: var(--brand-orange); }
.footer__brand a { color: rgba(255,255,255,0.85); }
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__links a:hover { color: var(--brand-orange); }
.footer__bottom {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  padding-top: 20px;
  margin: 0;
}

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

/* Responsive */
@media (max-width: 900px) {
  .navbar__links { display: none; }
  .navbar__toggle { display: flex; }
  .about__grid, .location__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 { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__content { padding: 70px 20px; }
  section { padding: 60px 0; }
}
