:root {
  --brand-red: #d62828;
  --brand-red-dark: #a91f1f;
  --brand-gold: #f2a541;
  --brand-green: #2a6b4f;
  --ink: #241c19;
  --cream: #fff8ef;
  --paper: #fffaf3;
  --muted: #6b5f57;
  --shadow: 0 10px 30px rgba(36, 28, 25, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Fraunces', serif; line-height: 1.15; }

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

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

/* Buttons */
.btn-order {
  background: var(--brand-red);
  color: #fff;
  border: none;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 50px;
  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 10px 24px rgba(214, 40, 40, 0.5);
}
.btn-order-lg { padding: 18px 40px; font-size: 1.1rem; }

.btn-call {
  color: #fff;
  border: 2px solid #fff;
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease;
}
.btn-call:hover { background: rgba(255,255,255,0.15); }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 239, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--brand-red);
  text-decoration: none;
  flex-shrink: 0;
}
.brand span { display: block; font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-family: 'Nunito Sans', sans-serif; font-weight: 700; }
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--brand-red); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { width: 26px; height: 3px; background: var(--ink); 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;
  padding: 100px 24px 60px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,18,15,0.55) 0%, rgba(36,18,15,0.75) 60%, rgba(36,18,15,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  color: var(--brand-gold);
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 34px;
  color: #f3e9de;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.95rem;
  color: #f3e9de;
}
.stars { color: var(--brand-gold); font-size: 1.3rem; letter-spacing: 3px; }

/* Section generic */
section { padding: 90px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  color: var(--brand-red);
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.center { text-align: center; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p { margin-bottom: 16px; color: var(--muted); }
.about-photo img { border-radius: 16px; box-shadow: var(--shadow); }

/* Menu */
.menu { background: var(--cream); }
.menu-sub { max-width: 600px; margin: 0 auto 50px; color: var(--muted); }
.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: 16px;
  border-bottom: 3px solid var(--brand-gold);
  padding-bottom: 10px;
  display: inline-block;
}
.menu-category ul { list-style: none; }
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed #e4d5c3;
}
.menu-category li span { font-weight: 700; }
.menu-category li small { color: var(--muted); margin-top: 3px; }
.menu-note { text-align: center; margin-top: 40px; color: var(--muted); font-size: 0.9rem; 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: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews { background: var(--brand-green); color: #fff; }
.reviews h2, .reviews .section-eyebrow { color: #fff; }
.reviews .section-eyebrow { color: var(--brand-gold); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.review-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 28px;
}
.review-stars { color: var(--brand-gold); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p { font-size: 0.95rem; }
.review-author { margin-top: 14px; font-weight: 800; color: var(--brand-gold); }

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.location-address { font-size: 1.1rem; font-weight: 700; margin: 14px 0 6px; }
.location-phone { color: var(--brand-red); font-weight: 800; font-size: 1.2rem; text-decoration: none; display: inline-block; margin-bottom: 24px; }
.hours-table { width: 100%; margin-bottom: 30px; border-collapse: collapse; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid #e4d5c3; }
.hours-table td:first-child { font-weight: 700; }
.hours-table td:last-child { text-align: right; color: var(--muted); }
.location-map { min-height: 340px; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.location-map iframe { width: 100%; height: 100%; min-height: 340px; }

/* Footer */
.footer { background: var(--ink); color: #f3e9de; padding: 50px 0 20px; }
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 30px;
}
.footer-brand { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.footer a { color: #f3e9de; text-decoration: none; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-copy { text-align: center; font-size: 0.85rem; color: #b3a598; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 10, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal h3 { color: var(--brand-red); margin-bottom: 16px; font-size: 1.5rem; }
.modal p { color: var(--muted); margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}
.modal-call { display: inline-block; text-decoration: none; }

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

@media (max-width: 720px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-container { flex-wrap: wrap; }
  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 20px 24px;
    box-shadow: var(--shadow);
    gap: 16px;
  }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-order-lg, .btn-call { width: 100%; text-align: center; }
}
