:root {
  --brand-red: #d62828;
  --brand-orange: #f77f00;
  --brand-dark: #1b1b1b;
  --brand-cream: #fff8f0;
  --brand-green: #2a7a4b;
  --text-dark: #22201e;
  --text-light: #6b6560;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background: var(--brand-cream);
  line-height: 1.6;
}

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

/* Buttons */
.btn-order {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(214, 40, 40, 0.5);
}
.btn-order-lg {
  font-size: 1.1rem;
  padding: 16px 40px;
}
.btn-secondary {
  color: #fff;
  border: 2px solid #fff;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover {
  background: #fff;
  color: var(--brand-dark);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--brand-red);
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo span { color: var(--text-dark); font-weight: 500; font-size: 0.95rem; display: block; }
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.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(--text-dark);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: url('../images/photo-01.jpg') center/cover no-repeat, linear-gradient(135deg, #7a1f1f, #1b1b1b);
  padding: 100px 24px 60px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.75));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--brand-orange);
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero-tagline {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: #f1e9e2;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-rating {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #f1e9e2;
}
.stars { color: var(--brand-orange); letter-spacing: 2px; }

/* Section headers */
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

section { padding: 80px 0; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-text p { margin-bottom: 18px; color: var(--text-dark); }
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-height: 480px;
}

/* Menu */
.menu { background: #fff; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.menu-category h3 {
  color: var(--brand-red);
  font-size: 1.3rem;
  margin-bottom: 18px;
  border-bottom: 3px solid var(--brand-orange);
  display: inline-block;
  padding-bottom: 6px;
}
.menu-list { list-style: none; }
.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed #e5d9cd;
}
.item-name { font-weight: 700; }
.item-desc { color: var(--text-light); text-align: right; font-size: 0.92rem; }
.menu-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 36px;
  font-style: italic;
}

/* Gallery */
.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);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews { background: #fff; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--brand-cream);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.review-card p { margin: 14px 0 0; color: var(--text-dark); font-size: 0.97rem; }
.review-author { font-weight: 700; color: var(--brand-red); margin-top: 16px !important; }

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
.location-info h3 {
  color: var(--brand-red);
  margin-top: 22px;
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.location-info h3:first-child { margin-top: 0; }
.location-info a { color: var(--text-dark); text-decoration: none; font-weight: 600; }
.hours-list { list-style: none; margin-top: 6px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #e5d9cd;
  font-size: 0.95rem;
  max-width: 320px;
}
.location-map {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Footer */
.footer {
  background: var(--brand-dark);
  color: #f1e9e2;
  padding: 50px 0 20px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 30px;
}
.footer-logo { font-size: 1.3rem; margin-bottom: 8px; color: #fff; }
.footer a { color: #f1e9e2; text-decoration: none; }
.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: #b8b0a8;
  border-top: 1px solid #3a3835;
  padding-top: 18px;
}

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

/* 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) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-cream);
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 18px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-container .btn-order { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hours-list { max-width: 100%; }
}
