/* ===== Variables ===== */
:root {
  --color-bg: #17130f;
  --color-bg-alt: #1f1a14;
  --color-wood: #241d16;
  --color-wood-light: #3a2e22;
  --color-cream: #f3ead9;
  --color-cream-dim: #d9cbb0;
  --color-red: #b3121a;
  --color-red-dark: #7c0d12;
  --color-orange: #e8632b;
  --color-orange-light: #ff7f3f;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-pill: 999px;
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); margin: 0 0 0.5em; line-height: 1.15; }
p { margin: 0 0 1em; }
ul { list-style: none; margin: 0; padding: 0; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ===== Order Button (striking, consistent everywhere) ===== */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-orange-light), var(--color-orange));
  color: #1a0f08;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(232, 99, 43, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-transform: uppercase;
}
.btn-order:hover, .btn-order:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(232, 99, 43, 0.6);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.9rem; }
.btn-order--hero { font-size: 1.1rem; padding: 16px 38px; }
.btn-order--modal { width: 100%; margin-top: 8px; text-transform: none; }
.btn-order--footer { font-size: 1.05rem; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-cream-dim);
  color: var(--color-cream);
  font-weight: 700;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.btn-secondary:hover { border-color: var(--color-cream); background: rgba(255,255,255,0.06); }

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(23, 19, 15, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { font-size: 1.6rem; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-cream);
}
.brand-text em { color: var(--color-orange-light); font-style: normal; }
.brand-text--footer { font-size: 1.4rem; }
.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a { opacity: 0.85; transition: opacity 0.15s ease; }
.nav-links a:hover { opacity: 1; color: var(--color-orange-light); }
.navbar-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--color-cream); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,8,6,0.55) 0%, rgba(10,8,6,0.55) 30%, rgba(10,8,6,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--color-orange-light);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--color-cream-dim);
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: var(--color-cream-dim);
  font-size: 0.95rem;
}
.stars { color: var(--color-orange-light); letter-spacing: 2px; }

/* ===== Section basics ===== */
section { padding: 88px 0; }
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--color-orange-light);
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.section-kicker--center { text-align: center; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.reviews .section-title, .gallery .section-title, .menu .section-title { text-align: center; }
.section-lede {
  text-align: center;
  color: var(--color-cream-dim);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ===== About ===== */
.about { background: var(--color-bg-alt); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-image img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.about-copy h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
.about-copy p { color: var(--color-cream-dim); }

/* ===== Menu ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.menu-category {
  background: var(--color-wood);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.menu-category--featured {
  border: 1px solid var(--color-orange);
  background: linear-gradient(160deg, var(--color-wood-light), var(--color-wood));
}
.menu-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--color-orange);
  color: #1a0f08;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.menu-category h3 {
  color: #fff;
  font-size: 1.3rem;
  border-bottom: 2px solid var(--color-red);
  padding-bottom: 12px;
  margin-bottom: 18px;
}
.menu-list li {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.menu-list li:last-child { border-bottom: none; }
.menu-item-name { font-weight: 700; color: var(--color-cream); }
.menu-item-desc { color: var(--color-cream-dim); font-size: 0.92rem; }
.menu-note {
  text-align: center;
  margin-top: 36px;
  color: var(--color-cream-dim);
}
.menu-note a { color: var(--color-orange-light); font-weight: 700; }

/* ===== Gallery ===== */
.gallery { background: var(--color-bg-alt); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ===== Reviews ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: var(--color-wood);
  border-left: 4px solid var(--color-red);
  border-radius: 12px;
  padding: 28px;
  margin: 0;
}
.review-card p { color: var(--color-cream-dim); font-style: italic; }
.review-card footer { font-weight: 700; color: var(--color-cream); }
.review-card .stars { display: block; margin-bottom: 12px; }

/* ===== Location ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.location-info address { font-style: normal; color: var(--color-cream-dim); margin-bottom: 8px; }
.location-phone a { color: var(--color-orange-light); font-weight: 700; font-size: 1.1rem; }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
}
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.08); }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  font-weight: 400;
  color: var(--color-cream-dim);
}
.hours-table th { color: var(--color-cream); font-weight: 700; width: 40%; }
.location-map {
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-wood);
  padding: 56px 0 24px;
  border-top: 4px solid var(--color-red);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.footer-grid p { color: var(--color-cream-dim); margin: 4px 0; }
.footer-note {
  text-align: center;
  color: var(--color-cream-dim);
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 6, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: var(--color-wood);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.modal h2 { color: #fff; font-size: 1.5rem; }
.modal p { color: var(--color-cream-dim); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--color-cream-dim);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
}
.modal-close:hover { color: #fff; background: rgba(255,255,255,0.08); }

/* ===== 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); }
  .location-map { height: 320px; }
}

@media (max-width: 700px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-order--nav { padding: 8px 18px; font-size: 0.8rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 180px; }
  section { padding: 64px 0; }
  .hero { min-height: 100vh; }
}
