:root {
  --brand-dark: #2b1c14;
  --brand-cream: #fdf6ec;
  --brand-tan: #f3e4cf;
  --brand-brown: #6b4226;
  --brand-accent: #e8491d;
  --brand-accent-dark: #c93a12;
  --brand-gold: #f2a83b;
  --text-body: #3a2b22;
  --shadow-soft: 0 8px 24px rgba(0,0,0,0.15);
  --radius-lg: 20px;
}

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

body {
  margin: 0;
  font-family: "Segoe UI", Verdana, Tahoma, sans-serif;
  color: var(--text-body);
  background: var(--brand-cream);
  line-height: 1.6;
}

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

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

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--brand-dark);
  margin-top: 0;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  color: var(--brand-brown);
  margin-top: 0;
  margin-bottom: 40px;
}

.section {
  padding: 72px 0;
}

/* Order button - the striking CTA, consistent everywhere */
.btn-order {
  display: inline-block;
  background: var(--brand-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(232, 73, 29, 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(--brand-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(232, 73, 29, 0.55);
}
.btn-order--lg {
  font-size: 1.15rem;
  padding: 18px 42px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--brand-cream);
  border-bottom: 3px solid var(--brand-accent);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.navbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  text-decoration: none;
}
.brand span { color: var(--brand-accent); }
.nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--brand-brown);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--brand-accent); }

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,12,8,0.75) 0%, rgba(20,12,8,0.55) 50%, rgba(20,12,8,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: 12px;
}
.hero h1 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero-tagline {
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: #f5ead9;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-phone-link {
  color: #f5ead9;
  text-decoration: underline;
  font-size: 0.95rem;
}
.hero-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.95rem;
  color: #f5ead9;
}
.stars { color: var(--brand-gold); font-size: 1.2rem; letter-spacing: 2px; }

/* About */
.about p {
  max-width: 760px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
}
.about h2 { margin-bottom: 32px; }

/* Menu */
.menu { background: var(--brand-tan); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.menu-category {
  background: var(--brand-cream);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-soft);
}
.menu-category h3 {
  color: var(--brand-accent);
  border-bottom: 2px solid var(--brand-accent);
  padding-bottom: 10px;
  margin-bottom: 16px;
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(107,66,38,0.25);
}
.menu-category li:last-child { border-bottom: none; margin-bottom: 0; }
.menu-category li span {
  display: block;
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 1.05rem;
}
.menu-category li em {
  font-style: normal;
  color: var(--brand-brown);
  font-size: 0.9rem;
}
.menu-note {
  text-align: center;
  color: var(--brand-brown);
  font-size: 0.85rem;
  margin-top: 32px;
}

/* Gallery */
.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;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews { background: var(--brand-tan); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--brand-cream);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
  box-shadow: var(--shadow-soft);
}
.review-card p {
  font-size: 0.95rem;
  color: var(--text-body);
}
.review-card cite {
  display: block;
  margin-top: 12px;
  font-weight: 700;
  color: var(--brand-brown);
  font-style: normal;
}

/* Hours & Location */
.hours-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hours-list { list-style: none; margin: 0 0 24px; padding: 0; max-width: 360px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(107,66,38,0.25);
}
.location-heading { margin-top: 32px; }
.address { font-size: 1.05rem; }
.phone-link {
  color: var(--brand-accent);
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
}
.hours-block .btn-order { margin-top: 20px; }
.map-block {
  min-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.map-block iframe { min-height: 400px; }

/* Footer */
.site-footer {
  background: var(--brand-dark);
  color: #f5ead9;
  padding: 48px 0 24px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
}
.footer-brand .brand { color: #fff; }
.footer-brand p { margin: 4px 0; color: #d8c6ae; }
.footer-brand a { color: #f5ead9; text-decoration: none; }
.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: #a78d6f;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20,12,8,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  position: relative;
  background: var(--brand-cream);
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.modal h2 { margin-bottom: 16px; }
.modal p { margin-bottom: 24px; font-size: 1.05rem; }
.modal p a { color: var(--brand-accent); font-weight: 700; text-decoration: none; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--brand-brown);
  cursor: pointer;
}
.modal-close:hover { color: var(--brand-accent); }

/* Responsive */
@media (max-width: 900px) {
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hours-location-grid { grid-template-columns: 1fr; }
  .map-block, .map-block iframe { min-height: 320px; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .navbar-inner { justify-content: space-between; }
  .hero h1 { font-size: 2rem; }
  .hero { min-height: 560px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 180px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
