/* ---------- Variables ---------- */
:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --brand-orange: #f4a300;
  --dark: #241c15;
  --cream: #fff8ee;
  --tan: #f5e6cf;
  --text: #2b241c;
  --muted: #6b5f52;
  --radius: 14px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Nunito', sans-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;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-family: var(--font-heading); margin: 0 0 16px; color: var(--dark); }
ul { padding: 0; margin: 0; list-style: none; }

.section-eyebrow {
  color: var(--brand-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.section-sub { color: var(--muted); max-width: 560px; margin: 0 auto 40px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Order Button ---------- */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  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;
  white-space: nowrap;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(214, 40, 40, 0.5);
}
.btn-order-lg { font-size: 1.15rem; padding: 18px 42px; }

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-heading);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(36, 28, 21, 0.96);
  backdrop-filter: blur(6px);
}
.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  margin-right: auto;
}
.logo-icon { font-size: 1.4rem; }
.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  color: #f1e6d8;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--brand-orange); }
.nav-order { padding: 10px 24px; font-size: 0.9rem; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #3b1f14, #1c120c), url('../images/photo-01.jpg') center/cover no-repeat;
  background-blend-mode: multiply;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
  color: #fff;
}
.hero-eyebrow {
  color: var(--brand-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.1rem;
  color: #f1e6d8;
  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;
  justify-content: center;
  gap: 10px;
  color: #f1e6d8;
  font-weight: 600;
  font-size: 0.95rem;
}
.stars { color: var(--brand-orange); font-size: 1.2rem; }

/* ---------- About ---------- */
.about { padding: 90px 0; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.about-image img {
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}
.about-text p { color: var(--muted); margin-bottom: 16px; }
.about-text h2 { font-size: 2rem; }

/* ---------- Menu ---------- */
.menu { padding: 90px 0; background: var(--tan); }
.menu h2 { font-size: 2rem; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
}
.menu-category {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.menu-category h3 {
  color: var(--brand-red);
  font-size: 1.2rem;
  border-bottom: 2px solid var(--tan);
  padding-bottom: 10px;
}
.menu-category li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-weight: 600;
}
.menu-category .price { color: var(--brand-orange); font-weight: 700; }
.menu-note {
  text-align: center;
  color: var(--muted);
  margin-top: 30px;
  font-size: 0.9rem;
}
.menu-note a { color: var(--brand-red); font-weight: 700; }

/* ---------- Gallery ---------- */
.gallery { padding: 90px 0; background: var(--cream); }
.gallery h2 { font-size: 2rem; }
.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); }

/* ---------- Reviews ---------- */
.reviews { padding: 90px 0; background: var(--tan); }
.reviews h2 { font-size: 2rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.review-stars { color: var(--brand-orange); font-size: 1.1rem; margin-bottom: 12px; }
.review-text { font-style: italic; color: var(--text); margin-bottom: 16px; }
.review-author { font-weight: 700; color: var(--brand-red); }
.reviews-total {
  text-align: center;
  margin-top: 30px;
  font-weight: 700;
  color: var(--dark);
}

/* ---------- Location ---------- */
.location { padding: 90px 0; background: var(--cream); }
.location h2 { font-size: 2rem; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  margin-top: 20px;
}
.location-info h3 {
  font-size: 1.05rem;
  color: var(--brand-red);
  margin-bottom: 6px;
  margin-top: 24px;
}
.location-info h3:first-child { margin-top: 0; }
.location-info a { font-weight: 700; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--tan);
  font-weight: 600;
}
.location-info .btn-order { margin-top: 30px; }
.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #f1e6d8; padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-brand .logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; color: #fff; margin-top: 4px;}
.footer-brand .logo-icon { font-size: 1.6rem; }
.footer-brand p { color: #cbbfae; margin: 2px 0; }
.footer-brand a:hover { color: var(--brand-orange); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-cta p { color: #fff; margin-bottom: 8px; font-family: var(--font-heading); }
.footer-links a { color: #cbbfae; }
.footer-links a:hover { color: var(--brand-orange); }
.footer-cta { display: flex; flex-direction: column; gap: 12px; }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  color: #8a7c6a;
  font-size: 0.85rem;
}

/* ---------- 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: #fff;
  border-radius: var(--radius);
  max-width: 420px;
  width: 100%;
  padding: 40px 34px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal h2 { color: var(--brand-red); font-size: 1.4rem; }
.modal p { color: var(--muted); margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}
.modal-close:hover { color: var(--brand-red); }
.modal-call { width: 100%; }

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

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(36, 28, 21, 0.98);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-order { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 180px; }
}

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