:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --brand-orange: #f4a261;
  --brand-cream: #fff8ee;
  --brand-dark: #2b1c14;
  --brand-green: #3c6e47;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(43, 28, 20, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 0.5em;
  line-height: 1.15;
}

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

.section-eyebrow {
  color: var(--brand-red);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0 0.5em;
}
.center { text-align: center; }

/* ---------- Order Button (consistent everywhere) ---------- */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85em 1.9em;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
}
.btn-order-lg {
  font-size: 1.15rem;
  padding: 1.05em 2.4em;
}
.btn-secondary {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  padding: 0.8em 1.8em;
  border-radius: var(--radius-pill);
  margin-left: 12px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 238, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(43,28,20,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--brand-dark);
}
.logo span { color: var(--brand-red); }
.main-nav {
  display: flex;
  gap: 26px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-weight: 700;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--brand-red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--brand-dark);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url('../images/photo-07.jpg') center center / cover no-repeat, linear-gradient(135deg, #7a1f1f, #2b1c14);
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,10,8,0.55) 0%, rgba(20,10,8,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--brand-orange);
  margin-bottom: 0.8em;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 0.5em;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 1.8em;
  color: #f0e6da;
}
.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2em;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.stars { color: var(--brand-orange); letter-spacing: 2px; }

/* ---------- About ---------- */
.about { padding: 90px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.about-text p { margin: 0 0 1.1em; color: #4a3a2c; }
.about-photo img {
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* ---------- Menu ---------- */
.menu {
  padding: 90px 0;
  background: #fbeee0;
}
.menu h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1.4em; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}
.menu-category h3 {
  color: var(--brand-red);
  font-size: 1.35rem;
  border-bottom: 3px solid var(--brand-orange);
  padding-bottom: 0.4em;
  margin-bottom: 0.8em;
}
.menu-category ul { list-style: none; padding: 0; margin: 0; }
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 0.6em 0;
  border-bottom: 1px dashed rgba(43,28,20,0.15);
}
.menu-category li:last-child { border-bottom: none; }
.item-name { font-weight: 800; font-size: 1.02rem; }
.item-desc { color: #6b5c4d; font-size: 0.92rem; }
.menu-note {
  text-align: center;
  color: #8a7a6a;
  font-size: 0.85rem;
  margin-top: 2.5em;
  font-style: italic;
}

/* ---------- Gallery ---------- */
.gallery { padding: 90px 0; }
.gallery h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1.2em; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ---------- Reviews ---------- */
.reviews {
  padding: 90px 0;
  background: var(--brand-dark);
  color: #f5ece0;
}
.reviews h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1.2em; }
.reviews .section-eyebrow { color: var(--brand-orange); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px;
  margin: 0;
}
.review-card p { margin: 0.6em 0 0.8em; font-size: 0.98rem; color: #e8ddcf; }
.review-card cite { font-weight: 700; color: var(--brand-orange); font-style: normal; }
.reviews-cta {
  text-align: center;
  margin-top: 2em;
  font-weight: 700;
  color: var(--brand-orange);
}

/* ---------- Location ---------- */
.location { padding: 90px 0; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: stretch;
}
.location-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.location-info address {
  font-style: normal;
  font-size: 1.1rem;
  margin-bottom: 0.4em;
  display: block;
}
.phone-link {
  display: inline-block;
  font-weight: 800;
  color: var(--brand-red);
  font-size: 1.15rem;
  margin-bottom: 1.4em;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.2em;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 0.5em 0;
  border-bottom: 1px solid rgba(43,28,20,0.12);
  font-weight: 600;
}
.hours-table th { font-weight: 700; width: 50%; }
.drive-thru-note {
  color: var(--brand-red-dark);
  font-weight: 700;
  margin-bottom: 1.6em;
}
.location-map {
  min-height: 360px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.location-map iframe { width: 100%; height: 100%; min-height: 360px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brand-dark);
  color: #d8cabb;
  padding: 50px 0 20px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo { color: #fff; margin-bottom: 0.3em; }
.footer-brand p { margin: 0.2em 0; font-size: 0.92rem; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--brand-orange); }
.footer-bottom {
  text-align: center;
  padding-top: 18px;
  font-size: 0.85rem;
  color: #a89a8b;
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20,10,8,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  color: var(--brand-dark);
  border-radius: 18px;
  padding: 40px;
  max-width: 420px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.modal h3 { font-size: 1.5rem; margin-bottom: 0.6em; }
.modal p { color: #5a4c3d; margin-bottom: 1.6em; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #9a8a7a;
}
.modal-close:hover { color: var(--brand-dark); }
.modal-call { width: 100%; }

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

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-cream);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 16px;
    box-shadow: 0 8px 20px rgba(43,28,20,0.1);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-inner .btn-order {
    font-size: 0.85rem;
    padding: 0.65em 1.2em;
  }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .btn-secondary { margin-left: 0; }
}
