/* ===== Base ===== */
:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --brand-orange: #f4a259;
  --brand-green: #386641;
  --cream: #fff8ef;
  --charcoal: #262019;
  --text-muted: #6b5f54;
  --border: #ece1d3;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(38, 32, 25, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; margin: 0 0 0.5em; line-height: 1.15; }

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

a { color: var(--brand-red-dark); text-decoration: none; }

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

.section { padding: 88px 0; }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-red);
  margin: 0 0 10px;
}

.section-lead { color: var(--text-muted); max-width: 620px; }

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ===== Order Button (striking, consistent everywhere) ===== */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 15px 34px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(214, 40, 40, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
}

.btn-order:hover, .btn-order:focus-visible {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(214, 40, 40, 0.45);
}

.btn-order--nav { padding: 10px 24px; font-size: 0.92rem; }
.btn-order--hero { font-size: 1.1rem; padding: 18px 40px; }
.btn-order--footer { margin-top: 8px; }
.btn-order--modal { margin-top: 20px; width: 100%; }

.btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  font-weight: 700;
}

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

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 248, 239, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}

.navbar__brand {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-green);
}
.navbar__brand span { color: var(--brand-red); }

.navbar__nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  flex-wrap: wrap;
}

.navbar__nav a {
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.95rem;
}
.navbar__nav a:hover { color: var(--brand-red); }

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.navbar__toggle span { width: 24px; height: 2px; background: var(--charcoal); display: block; }

.navbar__mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
}
.navbar__mobile a { font-weight: 600; color: var(--charcoal); }
.navbar__mobile.is-open { display: flex; }

@media (max-width: 820px) {
  .navbar__nav { display: none; }
  .btn-order--nav { display: none; }
  .navbar__toggle { display: flex; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url("../images/hero-storefront.jpg") center 65% / cover no-repeat;
  color: #fff;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38,20,15,0.75) 0%, rgba(38,20,15,0.55) 45%, rgba(38,20,15,0.88) 100%);
}

.hero__content { position: relative; z-index: 2; max-width: 720px; padding: 60px 24px; }

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-orange);
  margin-bottom: 14px;
}

.hero h1 { font-size: 3rem; margin-bottom: 18px; }

.hero__tagline { font-size: 1.15rem; max-width: 560px; margin-bottom: 32px; color: #f2e9dd; }

.hero__cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }

.hero__rating { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #f2e9dd; }

.stars { color: var(--brand-orange); font-size: 1.1rem; letter-spacing: 2px; }

@media (max-width: 600px) {
  .hero h1 { font-size: 2.1rem; }
}

/* ===== About ===== */
.about__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.about__text h2 { font-size: 2.1rem; color: var(--brand-green); }
.about__text p { color: var(--text-muted); margin-bottom: 18px; }

.about__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__media img { height: 280px; }
}

/* ===== Menu ===== */
.menu { background: #fffdf9; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.menu h2 { color: var(--brand-green); font-size: 2.1rem; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.menu-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.menu-card h3 {
  color: var(--brand-red);
  font-size: 1.25rem;
  border-bottom: 3px solid var(--brand-orange);
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 6px;
}

.menu-card__note { font-size: 0.82rem; color: var(--text-muted); margin: 0 0 16px; font-style: italic; }

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

.menu-card li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.95rem;
}
.menu-card li:last-child { border-bottom: none; }
.menu-card li em { color: var(--brand-red-dark); font-style: normal; font-weight: 700; white-space: nowrap; }

@media (max-width: 1000px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* ===== Gallery ===== */
.gallery h2 { color: var(--brand-green); font-size: 2.1rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.generated-tile {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.generated-tile span { font-family: Georgia, serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.generated-tile small { opacity: 0.9; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.75rem; }

.generated-tile--1 {
  background: repeating-linear-gradient(135deg, #d62828 0 18px, #a81f1f 18px 36px);
}
.generated-tile--2 {
  background: repeating-linear-gradient(45deg, #386641 0 18px, #2c5133 18px 36px);
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ===== Reviews ===== */
.reviews { background: #fffdf9; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.reviews h2 { color: var(--brand-green); font-size: 2.1rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
  box-shadow: var(--shadow);
}

.review-card p { color: var(--charcoal); font-style: italic; margin: 14px 0 18px; }
.review-card footer { font-weight: 700; color: var(--brand-red-dark); font-style: normal; }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ===== Hours & Location ===== */
.hours__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.hours h2 { color: var(--brand-green); font-size: 2.1rem; }

address { font-style: normal; margin: 6px 0 8px; color: var(--text-muted); }

.phone-link { display: inline-block; font-weight: 700; color: var(--brand-red-dark); margin-bottom: 24px; font-size: 1.1rem; }

.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 28px; }
.hours-table th, .hours-table td { text-align: left; padding: 8px 0; border-bottom: 1px dashed var(--border); font-weight: 400; }
.hours-table th { color: var(--charcoal); font-weight: 600; width: 40%; }
.hours-table td { color: var(--text-muted); }

.hours__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 420px;
}

@media (max-width: 900px) {
  .hours__inner { grid-template-columns: 1fr; }
  .hours__map { height: 320px; }
}

/* ===== Footer ===== */
.footer { background: var(--charcoal); color: #f2e9dd; padding: 56px 0 24px; }

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.footer__logo { font-family: Georgia, serif; font-size: 1.5rem; font-weight: 700; margin: 0 0 6px; }
.footer__logo span { color: var(--brand-orange); }

.footer__brand p { margin: 0 0 4px; color: #cfc3b4; }
.footer__brand a { color: #f2e9dd; font-weight: 600; }

.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__links a { color: #e5d9c9; font-weight: 600; }
.footer__links a:hover { color: var(--brand-orange); }

.footer__copy {
  text-align: center;
  color: #8f8375;
  font-size: 0.85rem;
  margin: 24px 0 0;
  border-top: 1px solid #3a332a;
  padding-top: 20px;
}

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}

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

.modal {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  max-width: 420px;
  width: 100%;
  padding: 40px 32px 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.modal h2 { color: var(--brand-green); font-size: 1.5rem; margin-bottom: 14px; }
.modal p { color: var(--text-muted); margin-bottom: 6px; }

.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
}
.modal__close:hover { color: var(--brand-red); }
