:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --dark: #1f1a17;
  --cream: #fdf6ec;
  --tan: #f3e6d3;
  --text: #2b2320;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Merriweather', serif;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, .logo, nav a, button {
  font-family: var(--font-head);
}

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

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

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

/* Buttons */
.btn-order {
  display: inline-block;
  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 6px 18px rgba(214, 40, 40, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  letter-spacing: 0.3px;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(214, 40, 40, 0.5);
}
.btn-order-nav { padding: 10px 24px; font-size: 0.9rem; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  font-family: var(--font-head);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(31, 26, 23, 0.96);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo {
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
}
.logo span { color: var(--brand-red); }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  color: #fdf6ec;
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav 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: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #3a2a1e, #1f1a17), url('../images/photo-01.jpg') center/cover no-repeat;
  background-blend-mode: multiply;
  color: #fff;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.6));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: #f3c34d;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.hero h1 {
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 30px;
  opacity: 0.95;
}
.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
}
.stars { color: #f3c34d; font-size: 1.1rem; letter-spacing: 2px; }

/* Section shared */
section { padding: 90px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--brand-red);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
h2 { font-size: 2.1rem; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.center { text-align: center; }
.menu-intro { max-width: 640px; margin: 0 auto 40px; color: #5a4d43; }

/* About */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-text p { margin-bottom: 18px; color: #4a3d34; }
.about-image img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Menu */
.menu { background: var(--tan); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.menu-category {
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.menu-category h3 {
  color: var(--brand-red);
  font-size: 1.3rem;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--tan);
  padding-bottom: 10px;
}
.menu-category ul { list-style: none; }
.menu-category li { margin-bottom: 16px; }
.item-name {
  display: block;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--dark);
}
.item-desc {
  display: block;
  font-size: 0.92rem;
  color: #6b5d51;
}
.menu-note { margin-top: 36px; font-size: 0.9rem; color: #6b5d51; }
.menu-note a { color: var(--brand-red); font-weight: 600; }

/* Gallery */
.gallery { background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews { background: var(--dark); color: #fdf6ec; }
.reviews h2, .reviews .section-eyebrow { color: #fdf6ec; }
.reviews .section-eyebrow { color: #f3c34d; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px;
}
.review-card .stars { display: block; margin-bottom: 12px; }
.review-card p { font-size: 0.95rem; margin-bottom: 16px; font-style: italic; opacity: 0.92; }
.review-card cite { font-weight: 700; font-family: var(--font-head); color: #f3c34d; }

/* Location */
.location { background: #fff; }
.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.location-info address { font-size: 1.05rem; margin-bottom: 10px; font-style: normal; color: #4a3d34; }
.phone-line { margin-bottom: 24px; }
.phone-line a { color: var(--brand-red); font-weight: 700; font-size: 1.1rem; }
.hours-table { width: 100%; margin-bottom: 30px; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--tan); }
.hours-table th, .hours-table td { text-align: left; padding: 10px 0; font-weight: 600; }
.hours-table th { color: var(--dark); font-family: var(--font-head); }
.hours-table td { color: #6b5d51; text-align: right; }
.location-map iframe { border-radius: 14px; box-shadow: 0 20px 40px rgba(0,0,0,0.12); }

/* Footer */
.site-footer { background: var(--dark); color: #fdf6ec; padding: 60px 0 24px; }
.footer-inner {
  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.1);
}
.footer-brand p { margin-bottom: 6px; opacity: 0.85; font-size: 0.92rem; }
.footer-brand .logo { margin-bottom: 8px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { opacity: 0.85; font-weight: 600; }
.footer-links a:hover { color: var(--brand-red); opacity: 1; }
.footer-bottom { text-align: center; padding-top: 24px; font-size: 0.85rem; opacity: 0.6; }

/* 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: 16px;
  padding: 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.modal h2 { font-size: 1.5rem; margin-bottom: 14px; }
.modal p { color: #5a4d43; margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.modal-close:hover { color: var(--dark); }
.modal-call { width: 100%; }

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

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(31, 26, 23, 0.98);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-order-nav { display: none; }
  .hero h1 { font-size: 2.1rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 180px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
