:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --brand-dark: #1a1210;
  --brand-cream: #fdf6ec;
  --brand-gold: #e8a33d;
  --text-dark: #2b1e18;
  --font-head: 'Georgia', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-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;
}

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

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

.section-title {
  font-family: var(--font-head);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 8px;
  color: var(--brand-dark);
}

.section-sub {
  text-align: center;
  color: #6b5a50;
  margin-top: 0;
  margin-bottom: 40px;
}

/* Order button */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(214, 40, 40, 0.4);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.5);
}

.btn-order-lg {
  font-size: 1.15rem;
  padding: 16px 40px;
}

.btn-secondary {
  display: inline-block;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  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: 1000;
  background: rgba(26, 18, 16, 0.96);
  backdrop-filter: blur(6px);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  font-family: var(--font-head);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-logo span { color: var(--brand-gold); }

.nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: #f0e6dc;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--brand-gold); }

.nav-order { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  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: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: url('../images/photo-01.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,10,8,0.55), rgba(20,10,8,0.8));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-gold);
  font-weight: 700;
  margin-bottom: 10px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: 3rem;
  line-height: 1.15;
  margin: 0 0 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: #f0e6dc;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-rating {
  color: var(--brand-gold);
  font-size: 1.1rem;
}

.hero-rating span {
  color: #f0e6dc;
  font-size: 0.95rem;
  margin-left: 8px;
}

/* About */
.about { padding: 80px 0; background: var(--brand-cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text p { margin-bottom: 18px; color: #4a382f; }

.about-image img {
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Menu */
.menu { padding: 80px 0; background: #fff; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.menu-category h3 {
  font-family: var(--font-head);
  color: var(--brand-red);
  border-bottom: 2px solid var(--brand-gold);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.menu-category ul { list-style: none; padding: 0; margin: 0; }

.menu-category li {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  margin-bottom: 16px;
}

.menu-category li span {
  font-weight: 700;
  color: var(--text-dark);
}

.menu-category li b {
  font-weight: 700;
  color: var(--brand-red);
  text-align: right;
}

.menu-category li em {
  grid-column: 1 / 2;
  font-style: normal;
  color: #7a6a5f;
  font-size: 0.9rem;
}

/* Gallery */
.gallery { padding: 80px 0; background: var(--brand-cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.25s ease;
}

.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews { padding: 80px 0; background: #fff; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--brand-cream);
  border-radius: 12px;
  padding: 28px;
  border-left: 4px solid var(--brand-red);
}

.stars { color: var(--brand-gold); font-size: 1.1rem; margin-bottom: 10px; }

.review-card p { font-style: italic; color: #4a382f; margin-bottom: 12px; }

.review-author { font-weight: 700; color: var(--brand-red); }

.review-cta {
  text-align: center;
  margin-top: 32px;
  font-weight: 700;
  color: var(--brand-dark);
}

/* Location */
.location { padding: 80px 0; background: var(--brand-cream); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.location-info h3 {
  font-family: var(--font-head);
  color: var(--brand-red);
  margin-top: 0;
}

.hours-list { list-style: none; padding: 0; margin: 0 0 30px; }

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #e8d9c9;
}

.phone-link {
  display: inline-block;
  color: var(--brand-red);
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  margin-bottom: 20px;
}

.location-map {
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Footer */
.footer { background: var(--brand-dark); color: #f0e6dc; padding: 50px 0 20px; }

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin: 0 0 8px;
}

.footer-logo span { color: var(--brand-gold); }

.footer a { color: #f0e6dc; text-decoration: none; }

.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: #a89484;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid #33251f;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,10,8,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal-overlay.is-open { display: flex; }

.modal {
  background: #fff;
  border-radius: 14px;
  padding: 36px;
  max-width: 420px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.modal h2 {
  font-family: var(--font-head);
  color: var(--brand-red);
  margin-top: 0;
}

.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;
  cursor: pointer;
  color: #999;
  line-height: 1;
}

.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: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .nav-container { padding: 12px 16px; gap: 10px; }

  .nav-logo {
    font-size: 1rem;
    white-space: normal;
    line-height: 1.2;
  }

  .nav-logo span { display: block; font-size: 0.75rem; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 18, 16, 0.98);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 18px;
    display: none;
  }

  .nav-links.is-open { display: flex; }

  .nav-order { padding: 8px 14px; font-size: 0.8rem; }

  .nav-toggle { display: flex; flex-shrink: 0; }

  .hero h1 { font-size: 2.1rem; }

  .menu-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }

  .footer-grid { flex-direction: column; text-align: center; }
}
