:root {
  --brand-red: #e0122a;
  --brand-red-dark: #b10d21;
  --brand-orange: #f4a11a;
  --brand-dark: #2b1810;
  --brand-cream: #fdf6ec;
  --brand-green: #1f6e43;
  --text-dark: #241410;
  --text-muted: #6b5c53;
  --radius: 14px;
  --font-display: 'Fraunces', serif;
  --font-body: 'Nunito Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--brand-cream);
  line-height: 1.6;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

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

.section-eyebrow {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-red);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.section-eyebrow.center { text-align: center; }

.section-sub {
  color: var(--text-muted);
  max-width: 640px;
  margin: 12px auto 0;
}

.center { text-align: center; }

/* Buttons */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-red);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(224, 18, 42, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(224, 18, 42, 0.45);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.95rem; }
.btn-order--hero { font-size: 1.1rem; padding: 16px 36px; }
.btn-order--wide { width: 100%; text-align: center; margin-top: 20px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover { background: #fff; color: var(--brand-dark); }

/* 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(43, 24, 16, 0.08);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--brand-dark);
  margin-right: auto;
}
.brand-mark { font-size: 1.4rem; }
.nav-links {
  display: flex;
  gap: 26px;
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-links a { color: var(--text-dark); }
.nav-links a:hover { color: var(--brand-red); }
.nav-phone {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-dark);
  display: none;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--brand-dark);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 24px 26px;
  background: var(--brand-cream);
  border-bottom: 1px solid rgba(43, 24, 16, 0.08);
  font-weight: 700;
}
.mobile-menu a { color: var(--text-dark); }
.mobile-menu[hidden] { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  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, 6, 0.55) 0%, rgba(20, 10, 6, 0.75) 60%, rgba(20, 10, 6, 0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: center;
  color: #fff;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--brand-orange);
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.stars { color: var(--brand-orange); letter-spacing: 2px; }

/* About */
.about { padding: 90px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image { position: relative; }
.about-image img { border-radius: var(--radius); box-shadow: 0 20px 40px rgba(43, 24, 16, 0.2); }
.about-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--brand-red);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(224,18,42,0.35);
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.about-badge strong { font-family: var(--font-display); font-size: 1.05rem; }
.about-badge span { font-size: 0.85rem; opacity: 0.9; }
.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.about-copy p { color: var(--text-muted); margin-bottom: 16px; }
.link-arrow { color: var(--brand-red); font-weight: 800; display: inline-block; margin-top: 8px; }
.link-arrow:hover { text-decoration: underline; }

/* Menu */
.menu { padding: 90px 0; background: #fff; }
.menu h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 10px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 56px;
}
.menu-category h3 {
  font-size: 1.35rem;
  color: var(--brand-dark);
  border-bottom: 3px solid var(--brand-orange);
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-category h3 span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-red);
}
.menu-category ul { list-style: none; }
.menu-category li { margin-bottom: 20px; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
}
.mi-price { color: var(--brand-red); white-space: nowrap; }
.mi-desc { color: var(--text-muted); font-size: 0.92rem; margin-top: 4px; }
.menu-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 50px;
  font-style: italic;
}
.menu-note a { color: var(--brand-red); font-weight: 700; }

/* Gallery */
.gallery { padding: 90px 0; }
.gallery h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 40px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }
.gallery-generated {
  height: 240px;
  border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, var(--brand-red) 0 24px, var(--brand-orange) 24px 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
  padding: 20px;
}

/* Reviews */
.reviews { padding: 90px 0; background: var(--brand-dark); color: #fff; }
.reviews h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 40px; }
.reviews .section-eyebrow { color: var(--brand-orange); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card p { font-size: 0.95rem; color: rgba(255,255,255,0.9); }
.review-card cite { font-weight: 800; color: var(--brand-orange); font-style: normal; }
.reviews-cta { text-align: center; margin-top: 40px; font-weight: 800; color: var(--brand-orange); font-size: 1.1rem; }

/* Location */
.location { padding: 90px 0; background: #fff; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.location-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 18px; }
.location-info address { font-style: normal; margin-bottom: 6px; color: var(--text-muted); font-size: 1.05rem; }
.location-info p a { color: var(--brand-red); font-weight: 800; font-size: 1.05rem; }
.hours-table { width: 100%; margin: 26px 0 10px; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: 8px 0; border-bottom: 1px solid rgba(43,24,16,0.08); font-size: 0.95rem; }
.hours-table th { font-weight: 700; color: var(--brand-dark); width: 40%; }
.hours-table td { color: var(--text-muted); }
.location-map { min-height: 360px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 40px rgba(43,24,16,0.15); }
.location-map iframe { width: 100%; height: 100%; min-height: 360px; }

/* Footer */
.footer { background: var(--brand-dark); color: rgba(255,255,255,0.85); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-brand .brand-mark { font-size: 1.6rem; }
.footer-brand .brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 6px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-contact h4 { color: #fff; font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,0.75); font-weight: 600; }
.footer-links a:hover, .footer-contact a:hover { color: var(--brand-orange); }
.footer-contact .btn-order { align-self: flex-start; margin-top: 6px; }
.footer-bottom { text-align: center; padding: 22px 0; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 10, 6, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: var(--radius);
  max-width: 440px;
  width: 100%;
  padding: 40px 34px;
  position: relative;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.modal h2 { font-size: 1.5rem; margin-bottom: 16px; color: var(--brand-dark); }
.modal p { color: var(--text-muted); margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
}
.modal-close:hover { color: var(--brand-red); }

/* Responsive */
@media (min-width: 900px) {
  .nav-phone { display: inline-flex; }
}

@media (max-width: 899px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img, .gallery-generated { height: 160px; }
  .hero { min-height: 92vh; }
  .about-badge { position: static; margin-top: 16px; }
}
