:root {
  --brand-red: #d1281b;
  --brand-red-dark: #a81e14;
  --ink: #21201d;
  --ink-soft: #55524c;
  --cream: #fbf6ee;
  --cream-dark: #f1e6d3;
  --gold: #c99a3e;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,0.12);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 0.5em;
  line-height: 1.15;
}
p { margin: 0 0 1em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--brand-red);
  margin-bottom: 0.5em;
}
.center { text-align: center; }
.menu-note.center { max-width: 560px; margin: 0 auto 3em; color: var(--ink-soft); }

/* Buttons */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: var(--white) !important;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(209, 40, 27, 0.4);
  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 24px rgba(209, 40, 27, 0.5);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.9rem; }
.btn-secondary {
  display: inline-block;
  color: var(--white);
  font-weight: 700;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  transition: background 0.15s ease;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ink);
}
.logo span { color: var(--brand-red); }
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--brand-red); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../images/photo-02.jpg') center center / cover no-repeat;
  color: var(--white);
  padding: 120px 24px 80px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,15,10,0.55) 0%, rgba(20,15,10,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 1em;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 0.6em;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  max-width: 600px;
  margin: 0 auto 2em;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* About */
.about { padding: 100px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-text h2 { font-size: 2.1rem; }
.about-text p { color: var(--ink-soft); }

/* Menu */
.menu { padding: 100px 0; background: var(--cream-dark); }
.menu h2 { font-size: 2.1rem; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 60px;
}
.menu-category h3 {
  font-size: 1.3rem;
  color: var(--brand-red);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li { margin-bottom: 18px; }
.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 { color: var(--ink-soft); font-size: 0.92rem; margin: 4px 0 0; }

/* Gallery */
.gallery { padding: 100px 0; background: var(--white); }
.gallery h2 { font-size: 2.1rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews { padding: 100px 0; background: var(--cream-dark); }
.reviews h2 { font-size: 2.1rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 10px; }
.review-card p { color: var(--ink-soft); font-size: 0.95rem; }
.review-author { font-weight: 800; color: var(--ink); margin: 0; }

/* Location */
.location { padding: 100px 0; background: var(--white); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.location-info h2 { font-size: 2.1rem; }
.location-info address { font-style: normal; font-size: 1.05rem; margin-bottom: 8px; display: block; }
.phone-link {
  display: inline-block;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--brand-red);
  margin-bottom: 24px;
}
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid var(--cream-dark); }
.hours-table td:first-child { font-weight: 700; }
.hours-table td:last-child { text-align: right; color: var(--ink-soft); }
.location-map {
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Footer */
.footer { background: var(--ink); color: rgba(255,255,255,0.85); padding: 60px 0 30px; }
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-brand .logo { color: var(--white); margin-bottom: 8px; }
.footer-brand p { margin: 0 0 4px; font-size: 0.9rem; }
.footer-brand a:hover { color: var(--gold); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-weight: 700; font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { text-align: center; font-size: 0.8rem; margin-top: 24px; color: rgba(255,255,255,0.5); }

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

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .btn-order--nav { display: none; }
  .navbar.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .navbar.open .btn-order--nav {
    display: inline-block;
    margin: 0 24px 20px;
  }
  .hero { min-height: 92vh; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 180px; }
  .footer-grid { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta-row { flex-direction: column; align-items: center; }
}
