:root {
  --red: #d62828;
  --red-dark: #a81f1f;
  --orange: #f4a261;
  --cream: #fff8ee;
  --dark: #2b1c15;
  --green: #386641;
  --text: #3a2c22;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Merriweather', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
h1, h2, h3, .brand, .btn-order, .btn-secondary, .nav-links a, .nav-links-mobile a {
  font-family: var(--font-head);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 8px 16px;
  z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Buttons */
.btn-order {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  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;
  letter-spacing: 0.02em;
}
.btn-order:hover, .btn-order:focus-visible {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(168, 31, 31, 0.5);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.9rem; }
.btn-order--hero { padding: 16px 38px; font-size: 1.1rem; }
.btn-order--location { margin-top: 24px; }
.btn-order--modal { margin-top: 12px; }

.btn-secondary {
  display: inline-block;
  border: 2px solid var(--dark);
  color: var(--dark);
  font-weight: 700;
  font-family: var(--font-head);
  border-radius: 999px;
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover { background: var(--dark); color: #fff; }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 238, 0.97);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.navbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--dark);
  text-decoration: none;
  white-space: nowrap;
}
.brand span { color: var(--red); }
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--red); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
}
.nav-links-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 24px 24px;
  background: var(--cream);
}
.nav-links-mobile a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,28,21,0.75) 0%, rgba(43,28,21,0.55) 40%, rgba(43,28,21,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin: 0 0 18px;
  line-height: 1.15;
}
.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 28px;
  opacity: 0.95;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-actions .btn-secondary {
  border-color: #fff;
  color: #fff;
}
.hero-actions .btn-secondary:hover { background: #fff; color: var(--dark); }
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
}
.stars { color: var(--orange); font-size: 1.1rem; letter-spacing: 2px; }

/* Sections */
.section { padding: 80px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 16px;
}
.center { text-align: center; }
.section-sub {
  max-width: 640px;
  margin: 0 auto 40px;
  color: #6b5b4d;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-text p { margin-bottom: 16px; }
.about-photo img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
}

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.menu-category h3 {
  font-size: 1.3rem;
  color: var(--red);
  border-bottom: 3px solid var(--orange);
  padding-bottom: 10px;
  margin-bottom: 16px;
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.12);
}
.menu-category .price {
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}
.menu-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: #7a6a5c;
  font-style: italic;
}
@media (max-width: 700px) {
  .menu-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Gallery */
.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 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .gallery-grid img { height: 180px; }
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  margin: 0;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.review-card p {
  font-style: italic;
  margin: 12px 0;
}
.review-card cite {
  font-weight: 700;
  font-family: var(--font-head);
  font-style: normal;
  color: var(--red);
}
.reviews-overall {
  text-align: center;
  margin-top: 32px;
  font-size: 1.05rem;
}
@media (max-width: 700px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.location-info address { font-style: normal; margin-bottom: 8px; line-height: 1.5; }
.location-info a[href^="tel:"] {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
}
.hours-table {
  border-collapse: collapse;
  margin: 20px 0;
  width: 100%;
  max-width: 360px;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  font-weight: 400;
}
.hours-table th { font-weight: 600; color: var(--dark); }
.location-map iframe {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
@media (max-width: 820px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* Footer */
.footer {
  background: var(--dark);
  color: #f0e6db;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.footer-brand { font-size: 1.3rem; margin-bottom: 8px; }
.footer a[href^="tel:"] { color: var(--orange); text-decoration: none; font-weight: 700; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a { text-decoration: none; color: #f0e6db; opacity: 0.85; }
.footer-links a:hover { opacity: 1; color: var(--orange); }
.footer-cta { text-align: right; }
.footer-copy {
  text-align: center;
  margin: 40px 0 0;
  font-size: 0.85rem;
  opacity: 0.6;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-cta { text-align: center; }
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 8, 0.7);
  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 30px 60px rgba(0,0,0,0.3);
  animation: modalPop 0.2s ease;
}
@keyframes modalPop {
  from { transform: scale(0.94); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.modal p { color: #5a4c40; margin-bottom: 8px; }
.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(--dark); }
