:root {
  --brand-red: #d62828;
  --brand-red-dark: #a91f1f;
  --brand-orange: #f4a261;
  --brand-green: #2a9d64;
  --ink: #23201d;
  --cream: #fdf6ec;
  --cream-dark: #f5e9d6;
  --font-display: 'Fraunces', serif;
  --font-body: 'Nunito Sans', 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; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

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

h1, h2, h3 { font-family: var(--font-display); margin: 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--brand-red);
  margin: 0 0 8px;
}
.center { text-align: center; }

/* Order button — shared bold pill style */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 800;
  font-family: var(--font-body);
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.4);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn-order:hover, .btn-order:focus-visible {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(169, 31, 31, 0.5);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.9rem; }
.btn-order--hero { font-size: 1.1rem; padding: 16px 38px; }
.btn-order--footer, .btn-order--location { margin-top: 8px; }

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

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(253, 246, 236, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--cream-dark);
}
.navbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--brand-red);
  margin-right: auto;
}
.brand span { color: var(--ink); font-weight: 700; font-size: 0.95rem; display: block; margin-top: -4px; font-family: var(--font-body); }
.nav-links { display: flex; gap: 24px; margin-right: 24px; }
.nav-links a { font-weight: 700; font-size: 0.95rem; }
.nav-links a:hover { color: var(--brand-red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 24px 24px;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
}
.mobile-menu a { font-weight: 700; }
.mobile-menu.open { display: flex; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .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;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35,32,29,0.55) 0%, rgba(35,32,29,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 24px;
  color: #fff;
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--brand-orange);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-sub { font-size: 1.15rem; margin-bottom: 32px; opacity: 0.95; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero-rating { display: flex; gap: 10px; justify-content: center; align-items: center; font-weight: 700; font-size: 0.95rem; }
.stars { color: var(--brand-orange); font-size: 1.2rem; }

/* About */
.about { padding: 96px 0; 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(0,0,0,0.15); }
.about-text h2 { font-size: 2.1rem; margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; color: #4a4642; }
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* Menu */
.menu { padding: 96px 0; background: var(--cream-dark); }
.menu h2 { font-size: 2.1rem; margin-bottom: 12px; }
.menu-note { max-width: 560px; margin: 0 auto 48px; color: #5a5650; }
.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(0,0,0,0.06);
}
.menu-category h3 {
  font-size: 1.4rem;
  color: var(--brand-red);
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.menu-category h3 span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-green);
  letter-spacing: 0.06em;
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li { margin-bottom: 20px; }
.menu-category li:last-child { margin-bottom: 0; }
.menu-item { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-weight: 800; font-size: 1.05rem; }
.item-price { color: var(--brand-red); white-space: nowrap; }
.item-desc { margin: 4px 0 0; color: #6b6660; font-size: 0.92rem; }
@media (max-width: 800px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* Gallery */
.gallery { padding: 96px 0; background: #fff; }
.gallery h2 { font-size: 2.1rem; margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }
@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 220px; }
}

/* Reviews */
.reviews { padding: 96px 0; background: var(--cream-dark); }
.reviews h2 { font-size: 2.1rem; margin-bottom: 48px; }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.review-stars { color: var(--brand-orange); font-size: 1.1rem; margin-bottom: 12px; }
.review-card p { color: #4a4642; margin: 0 0 12px; }
.review-author { font-weight: 800; color: var(--ink); margin: 0; }
@media (max-width: 800px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* Location */
.location { padding: 96px 0; background: #fff; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.location-info h2 { font-size: 2.1rem; margin-bottom: 20px; }
.location-info address { font-style: normal; font-size: 1.1rem; margin-bottom: 8px; display: block; }
.phone-link { display: inline-block; font-weight: 800; color: var(--brand-red); font-size: 1.15rem; margin-bottom: 28px; }
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 28px; }
.hours-table th, .hours-table td { text-align: left; padding: 10px 0; border-bottom: 1px solid var(--cream-dark); font-weight: 700; }
.hours-table td { text-align: right; font-weight: 600; color: #5a5650; }
.location-map { height: 420px; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.location-map iframe { width: 100%; height: 100%; }
@media (max-width: 800px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-map { height: 320px; }
}

/* Footer */
.site-footer { background: var(--ink); color: #f0ece5; padding: 56px 0 24px; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.footer-brand { font-size: 1.3rem; color: #fff; margin-bottom: 6px; }
.footer-brand span { color: var(--brand-orange); }
.footer-grid > div p { margin: 0 0 6px; color: #cfc9bf; }
.footer-grid > div a { color: var(--brand-orange); font-weight: 700; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: #f0ece5; font-weight: 700; }
.footer-links a:hover { color: var(--brand-orange); }
.footer-copy { text-align: center; color: #8a847a; font-size: 0.85rem; margin: 0; }

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(23, 20, 17, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.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 20px 60px rgba(0,0,0,0.3);
}
.modal h2 { font-size: 1.6rem; margin-bottom: 16px; color: var(--brand-red); }
.modal p { margin: 0 0 12px; color: #4a4642; }
.modal a { color: var(--brand-red); font-weight: 800; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.modal-close:hover { color: var(--ink); }
