:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --brand-orange: #f4a259;
  --dark: #241715;
  --cream: #fdf6ec;
  --cream-2: #f7ead6;
  --text: #2b1e1b;
  --muted: #6b5c56;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

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

h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; margin: 0 0 16px; line-height: 1.15; }

.section-eyebrow {
  color: var(--brand-red);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0 8px;
}
.center { text-align: center; }

/* Buttons */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 6px 16px 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 22px rgba(214, 40, 40, 0.5);
}
.btn-lg { padding: 18px 42px; font-size: 1.15rem; }

.btn-outline {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-outline:hover { background: #fff; color: var(--brand-red-dark); }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.97);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(6px);
}
.navbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--dark);
  margin-right: auto;
}
.brand span { color: var(--brand-red); }
.nav-links {
  display: flex;
  gap: 28px;
  margin-right: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--brand-red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url('../images/photo-01.jpg') center/cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,23,21,0.55) 0%, rgba(36,23,21,0.75) 60%, rgba(36,23,21,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brand-orange);
  font-weight: 700;
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 32px;
  color: #f2e6da;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-rating {
  font-size: 1rem;
  color: #f2e6da;
}
.stars { color: var(--brand-orange); letter-spacing: 2px; }

/* About */
.about { padding: 90px 0; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-text h2 { font-size: 2rem; }
.about-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

/* Menu */
.menu { padding: 90px 0; background: var(--cream-2); }
.menu h2 { font-size: 2rem; margin-bottom: 48px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.menu-category h3 {
  color: var(--brand-red-dark);
  border-bottom: 2px solid var(--brand-orange);
  padding-bottom: 10px;
  margin-bottom: 18px;
  font-size: 1.3rem;
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.12);
}
.menu-category li span { font-weight: 700; }
.menu-category li em { color: var(--muted); font-style: normal; font-size: 0.9rem; margin-top: 2px; }
.menu-note { text-align: center; margin-top: 44px; color: var(--muted); }
.menu-note a { color: var(--brand-red); font-weight: 700; text-decoration: none; }

/* Gallery */
.gallery { padding: 90px 0; background: var(--cream); }
.gallery h2 { font-size: 2rem; margin-bottom: 40px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews { padding: 90px 0; background: var(--dark); color: #f2e6da; }
.reviews h2 { font-size: 2rem; margin-bottom: 40px; color: #fff; }
.reviews .section-eyebrow { color: var(--brand-orange); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
}
.review-card .stars { display: block; margin-bottom: 14px; }
.review-card p { font-size: 0.98rem; color: #ecdfd2; }
.review-author { font-weight: 700; color: var(--brand-orange); margin-top: 14px; }

/* Location */
.location { padding: 90px 0; background: var(--cream-2); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.location-info h2 { font-size: 2rem; }
.location-info address { font-style: normal; font-size: 1.1rem; margin-bottom: 8px; display: block; }
.phone-link {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-red);
  text-decoration: none;
  margin-bottom: 24px;
}
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.hours-table td:first-child { font-weight: 700; }
.hours-table td:last-child { text-align: right; color: var(--muted); }
.location-map {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.location-map iframe { width: 100%; height: 100%; min-height: 360px; }

/* Footer */
.site-footer { background: var(--dark); color: #cbb9ae; padding: 50px 0 20px; }
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { font-size: 1.3rem; margin-bottom: 10px; color: #fff; }
.footer-brand span { color: var(--brand-orange); }
.footer-grid a { text-decoration: none; color: #cbb9ae; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-copy { text-align: center; padding-top: 20px; font-size: 0.85rem; color: #8a7a72; }

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow);
  text-align: center;
}
.modal h2 { font-size: 1.5rem; color: var(--brand-red-dark); }
.modal p { margin-bottom: 24px; color: var(--muted); }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}
.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; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    display: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}
