:root {
  --brand-red: #d92b2b;
  --brand-red-dark: #b31f1f;
  --ink: #26201c;
  --ink-soft: #5b5049;
  --cream: #fdf8f1;
  --cream-dark: #f4e9d8;
  --gold: #e8a13a;
  --green: #3f6b3f;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(38, 32, 28, 0.14);
  --font-display: "Fraunces", serif;
  --font-body: "Inter", 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; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

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

/* Buttons */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(217, 43, 43, 0.35);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(217, 43, 43, 0.45);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.92rem; }
.btn-order--hero { font-size: 1.1rem; padding: 16px 38px; }
.btn-order--footer { margin-top: 8px; }

.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: 600;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover { background: #fff; color: var(--ink); }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(253, 248, 241, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--ink);
  white-space: nowrap;
}
.brand span { color: var(--brand-red); }
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--brand-red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.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(20, 15, 12, 0.55) 0%, rgba(20, 15, 12, 0.72) 60%, rgba(20, 15, 12, 0.88) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 760px;
}
.hero-eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.hero-meta-sep { opacity: 0.5; }
.rating-badge {
  font-weight: 700;
  color: var(--gold);
}
.rating-badge small { color: rgba(255,255,255,0.75); font-weight: 500; }

/* Sections generic */
section { padding: 90px 0; }
.section-eyebrow {
  color: var(--brand-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.section-eyebrow--center { text-align: center; }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 50px;
}

/* About */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  position: relative;
  min-height: 420px;
}
.about-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.about-img--main {
  width: 85%;
  height: 420px;
}
.about-img--accent {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 55%;
  height: 220px;
  border: 6px solid var(--cream);
}
.about-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.about-copy p { color: var(--ink-soft); margin-bottom: 18px; }

/* Menu */
.menu { background: var(--cream-dark); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.menu-category h3 {
  font-size: 1.4rem;
  color: var(--brand-red-dark);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.menu-category ul { list-style: none; padding: 0; margin: 0; }
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(38,32,28,0.15);
}
.menu-category li:last-child { border-bottom: none; }
.item-name { font-weight: 700; font-size: 1.05rem; }
.item-desc { color: var(--ink-soft); font-size: 0.92rem; margin-top: 4px; }
.menu-note {
  text-align: center;
  margin-top: 40px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-style: italic;
}

/* Gallery */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }
.gallery-tile--cta {
  height: 220px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
}
.gallery-tile--cta p { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin: 0; }
.gallery-tile--cta .btn-order { background: #fff; color: var(--brand-red-dark); box-shadow: none; }
.gallery-tile--cta .btn-order:hover { background: var(--cream-dark); }

/* Reviews */
.reviews { background: var(--cream-dark); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; }
.review-text { color: var(--ink-soft); font-style: italic; margin-bottom: 16px; }
.review-author { font-weight: 700; margin: 0; }

/* Location */
.location { background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.location-info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.hours-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  max-width: 340px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(38,32,28,0.1);
  font-weight: 500;
}
.hours-list li.closed { color: var(--brand-red); font-weight: 700; }
.location-address { margin: 20px 0 6px; font-weight: 600; }
.location-phone {
  display: inline-block;
  color: var(--brand-red-dark);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 26px;
}
.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-brand .brand { color: #fff; }
.footer-brand p { margin: 6px 0; color: rgba(255,255,255,0.7); }
.footer-brand a { color: var(--gold); font-weight: 600; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.75); font-weight: 500; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 12, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  max-width: 440px;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal h2 {
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 14px;
}
.modal p {
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
}
.modal-close:hover { color: var(--brand-red); }
.modal-call { width: 100%; }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .about-images { min-height: 340px; margin-bottom: 20px; }
  .menu-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 300px; }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  }
  .nav-links.open { max-height: 320px; }
  .nav-links a {
    padding: 16px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(38,32,28,0.08);
  }
  .nav-toggle { display: flex; }
  .btn-order--nav { display: none; }
  .hero-content { padding-top: 60px; padding-bottom: 60px; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img, .gallery-tile--cta { height: 160px; }
  section { padding: 60px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-order, .hero-actions .btn-secondary { text-align: center; }
}
