:root {
  --red: #7a1e17;
  --red-dark: #58120d;
  --cream: #f7efdf;
  --cream-dark: #ece0c6;
  --dark: #221712;
  --orange: #ff6a1a;
  --orange-dark: #e0550c;
  --gold: #d9a441;
  --font-head: Georgia, 'Times New Roman', serif;
  --font-body: 'Segoe UI', Tahoma, Verdana, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

h1, h2, h3 { font-family: var(--font-head); margin: 0 0 0.5em; }

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

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.eyebrow {
  display: block;
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.eyebrow.center, h2.center, .menu-intro.center, .review-source.center { text-align: center; }

/* Buttons */
.btn-order {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 106, 26, 0.45);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn-order:hover, .btn-order:focus-visible {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 106, 26, 0.55);
}

.btn-order-lg {
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
}

.btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
}

.btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  font-family: var(--font-head);
  color: var(--cream);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

.nav-logo span { color: var(--orange); }
.nav-logo em { font-style: normal; color: var(--gold); }

.nav-links {
  display: flex;
  gap: 1.5rem;
  flex-grow: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.15s ease;
}

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

.nav-order-btn { 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: var(--cream);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: url('../images/photo_9.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34,23,18,0.55) 0%, rgba(34,23,18,0.75) 60%, rgba(34,23,18,0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
  color: #fff;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
  text-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

.hero-tagline {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: var(--cream);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p { margin-bottom: 1rem; }

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

/* Menu */
.menu { background: var(--cream-dark); }

.menu-intro { max-width: 620px; margin: 0 auto 2.5rem; color: #4a3a30; }

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

.menu-category {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border-top: 4px solid var(--orange);
}

.menu-category h3 {
  font-size: 1.15rem;
  color: var(--red);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid var(--cream-dark);
  padding-bottom: 0.6rem;
  margin-bottom: 0.8rem;
}

.menu-category h3 span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

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

.menu-category li {
  padding: 0.4rem 0;
  border-bottom: 1px dashed #e5d9c3;
}

.menu-category li:last-child { border-bottom: none; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

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

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

/* Reviews */
.reviews { background: var(--red); color: var(--cream); }

.reviews h2, .reviews .eyebrow { color: var(--cream); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 1.5rem;
}

.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.6rem; letter-spacing: 2px; }

.review-card p { margin: 0 0 0.75rem; }

.reviewer { font-weight: 700; color: var(--gold); margin-bottom: 0 !important; }

.review-source { margin-top: 2rem; color: var(--cream-dark); font-size: 0.9rem; }

/* Hours */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.hours-table td {
  padding: 0.5rem 0.25rem;
  border-bottom: 1px solid #e0d3b8;
}

.hours-table td:first-child { font-weight: 700; }
.hours-table td:last-child { text-align: right; }

.address, .phone { margin: 0.3rem 0; }
.phone a { color: var(--orange-dark); font-weight: 700; }

.hours-map iframe { border-radius: 10px; }

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--cream-dark);
  padding-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-logo span { color: var(--orange); }
.footer-logo em { font-style: normal; color: var(--gold); }

.footer-grid a { color: var(--gold); }

.footer-cta { text-align: right; }

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #8a7c6e;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 1.5rem;
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  position: relative;
  background: var(--cream);
  border-radius: 14px;
  max-width: 420px;
  width: 100%;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.modal h2 { color: var(--red); font-size: 1.5rem; }

.modal-phone { font-size: 1.2rem; margin-top: 1rem; }
.modal-phone a { color: var(--orange-dark); font-weight: 700; }

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--dark);
}

.modal-close:hover { color: var(--orange-dark); }

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

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    gap: 0.9rem;
    display: none;
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-order-btn { display: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
