/* ---------- Base ---------- */
:root {
  --brand-red: #c0392b;
  --brand-red-dark: #a02d21;
  --brand-navy: #1c2b3a;
  --brand-cream: #fdf6ec;
  --brand-gold: #d9a441;
  --text-dark: #23262b;
  --text-light: #fdf6ec;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Lora', serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3 {
  font-family: var(--font-head);
  margin: 0 0 .5em;
  letter-spacing: .02em;
}

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

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

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

.section-eyebrow {
  font-family: var(--font-head);
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: .5em;
}
.section-eyebrow.center, h2.center { text-align: center; }

/* ---------- Order Button ---------- */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .9rem;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
  box-shadow: 0 4px 14px rgba(192, 57, 43, .35);
}
.btn-order:hover { background: var(--brand-red-dark); transform: translateY(-1px); }
.btn-order--lg { padding: 16px 40px; font-size: 1.05rem; margin-top: 8px; }

.btn-call {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .03em;
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-navy);
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  margin-right: auto;
}
.nav-links {
  display: flex;
  gap: 22px;
}
.nav-links a {
  color: #eee;
  font-size: .92rem;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--brand-gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(20,20,20,.35), rgba(20,20,20,.55)), url('../images/photo-01.jpg') center/cover no-repeat;
}
.hero-overlay { display: none; }
.hero-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px;
  color: #fff;
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--brand-gold);
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: 10px;
}
.hero h1 {
  font-size: 2.9rem;
  line-height: 1.15;
  margin-bottom: .5em;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.hero-tagline {
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 1.6em;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.hero-cta-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.6em;
}
.hero-rating {
  font-family: var(--font-head);
  letter-spacing: .05em;
  color: var(--brand-gold);
}
.hero-rating span { color: #fff; margin-left: 8px; font-size: .9rem; }

/* ---------- About ---------- */
.about { padding: 90px 0; background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
}
.about-text h2 { font-size: 2.1rem; }
.about-text p { margin-bottom: 1.1em; }
.about-image img {
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

/* ---------- Menu ---------- */
.menu { padding: 90px 0; background: var(--brand-cream); }
.menu h2 { font-size: 2.1rem; margin-bottom: 40px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}
.menu-category h3 {
  color: var(--brand-navy);
  font-size: 1.25rem;
  border-bottom: 2px solid var(--brand-gold);
  padding-bottom: 8px;
  margin-bottom: 14px;
}
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed #ddd;
}
.menu-list .price { color: var(--brand-red); font-weight: 600; }
.menu-note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #666;
  font-size: .9rem;
}

/* ---------- Gallery ---------- */
.gallery { padding: 90px 0; background: #fff; }
.gallery h2 { font-size: 2.1rem; margin-bottom: 40px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform .3s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ---------- Reviews ---------- */
.reviews { padding: 90px 0; background: var(--brand-navy); color: #fff; }
.reviews h2 { font-size: 2.1rem; margin-bottom: 40px; color: #fff; }
.reviews .section-eyebrow { color: var(--brand-gold); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 24px;
  margin: 0;
}
.review-card .stars { color: var(--brand-gold); margin-bottom: 10px; }
.review-card p { font-style: italic; margin-bottom: 14px; }
.review-card cite { font-family: var(--font-head); font-weight: 600; font-style: normal; }

/* ---------- Location ---------- */
.location { padding: 90px 0; background: var(--brand-cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.location-info h2 { font-size: 2.1rem; }
.location-info address { font-style: normal; margin-bottom: 10px; display: block; }
.location-phone { font-weight: 700; color: var(--brand-red); font-size: 1.1rem; }
.hours-table { width: 100%; margin: 24px 0; border-collapse: collapse; }
.hours-table td { padding: 6px 0; border-bottom: 1px solid #e2d8c3; }
.hours-table td:first-child { font-weight: 600; font-family: var(--font-head); }
.hours-table td:last-child { text-align: right; }
.location-map { min-height: 320px; border-radius: 12px; overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,.15); }
.location-map iframe { width: 100%; height: 100%; min-height: 320px; }

/* ---------- Footer ---------- */
.footer { background: var(--brand-navy); color: #eee; padding: 50px 0 30px; text-align: center; }
.footer-brand { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer-inner p { margin: 6px 0; }
.footer .btn-order { margin: 16px 0; }
.footer-copy { font-size: .8rem; color: #999; margin-top: 20px; }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: 14px;
  padding: 40px;
  max-width: 420px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.modal h2 { color: var(--brand-navy); margin-bottom: .6em; }
.modal p { font-size: 1.05rem; }
.modal a { color: var(--brand-red); font-weight: 700; }
.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(--brand-red); }

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

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-navy);
    flex-direction: column;
    padding: 16px 24px;
    display: none;
    gap: 14px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 2.1rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

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