/* ===== Base ===== */
:root {
  --brand-red: #d62828;
  --brand-red-dark: #b91c1c;
  --brand-orange: #f4a261;
  --brand-green: #2a6f4d;
  --cream: #fff8ef;
  --charcoal: #2b1f1a;
  --text: #33261f;
  --font-head: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); margin: 0 0 0.5em; color: var(--charcoal); }
ul { padding: 0; margin: 0; list-style: none; }

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

.section { padding: 72px 0; }
.section--alt { background: #fdeee0; }
.section-eyebrow {
  color: var(--brand-red);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }
.menu-intro { max-width: 600px; margin-bottom: 40px; color: #5c4a3d; }

/* ===== Order Button ===== */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.4);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  letter-spacing: 0.02em;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(214, 40, 40, 0.5);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.95rem; }
.btn-order--hero { padding: 16px 40px; font-size: 1.1rem; }
.btn-order--footer { margin-top: 24px; }

.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  background: rgba(255,255,255,0.08);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); }

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 248, 239, 0.97);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.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: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--brand-red);
  white-space: nowrap;
}
.brand span { color: var(--charcoal); font-weight: 400; font-size: 0.85em; }
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--brand-red); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,31,26,0.55) 0%, rgba(43,31,26,0.75) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-orange);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.hero h1 {
  color: #fff;
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 32px;
  color: #f5ece2;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #f5ece2;
}
.stars { color: var(--brand-orange); letter-spacing: 2px; }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-text p { margin-bottom: 18px; color: #4a3a2f; }
.about-images {
  display: grid;
  gap: 16px;
}
.about-images img {
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  height: 220px;
  width: 100%;
  object-fit: cover;
}

/* ===== Menu ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.menu-category h3 {
  color: var(--brand-red);
  border-bottom: 3px solid var(--brand-orange);
  padding-bottom: 10px;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed #e0c9ae;
}
.menu-category li span {
  font-weight: 700;
  font-size: 1.05rem;
}
.menu-category li em {
  font-style: normal;
  color: #7a6455;
  font-size: 0.9rem;
  margin-top: 2px;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.04); }
.gallery-fill { display: none; }

/* ===== Reviews ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.review-card .stars { color: var(--brand-orange); margin-bottom: 12px; display: block; }
.review-card p { color: #4a3a2f; }
.review-author {
  margin-top: 12px;
  font-weight: 700;
  color: var(--charcoal);
}

/* ===== Location ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.location-info address { font-style: normal; margin: 12px 0; font-size: 1.1rem; }
.location-phone {
  display: inline-block;
  color: var(--brand-red);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
}
.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid #e6d8c6;
}
.hours-table td:last-child { text-align: right; color: #5c4a3d; }
.location-map {
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* ===== Footer ===== */
.footer {
  background: var(--charcoal);
  color: #e9dfd3;
  padding: 56px 0 24px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { font-size: 1.3rem; margin-bottom: 8px; }
.footer-brand span { color: #e9dfd3; }
.footer-inner a:hover { color: var(--brand-orange); }
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  text-align: center;
  margin: 24px 0 0;
  font-size: 0.85rem;
  color: #a89a89;
}

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  text-align: center;
}
.modal h2 { color: var(--brand-red); margin-bottom: 16px; }
.modal p { font-size: 1.05rem; }
.modal p a { color: var(--brand-red); font-weight: 700; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.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; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.2rem; }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 18px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  .nav-links.mobile-open { display: flex; }
  .btn-order--nav { display: none; }
  .hamburger { display: flex; }
  .hero-content h1 { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; text-align: center; }
}
