/* ---- Base ---- */
:root {
  --color-primary: #d62828;
  --color-primary-dark: #a81f1f;
  --color-dark: #1c1410;
  --color-cream: #fdf6ec;
  --color-gold: #f2a154;
  --color-text: #2c2420;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3 { font-family: var(--font-heading); margin: 0 0 0.5em; }

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

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

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

section { padding: 80px 0; }

/* ---- Order Button (striking, consistent everywhere) ---- */
.btn-order {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.02em;
  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;
}

.btn-order:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(214, 40, 40, 0.5);
}

.btn-order--nav { padding: 10px 24px; font-size: 0.95rem; }

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  margin-left: 12px;
}

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

/* ---- Navbar ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-cream);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--color-dark);
  white-space: nowrap;
}

.logo span { color: var(--color-primary); }

.nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--color-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover { color: var(--color-primary); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--color-dark);
  border-radius: 2px;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,20,16,0.55) 0%, rgba(28,20,16,0.75) 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.15em;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 28px;
  opacity: 0.95;
}

.hero-actions { margin-bottom: 24px; }

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.stars { color: var(--color-gold); font-size: 1.1rem; }

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text h2 { color: var(--color-primary-dark); }

.about-photo img {
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* ---- Menu ---- */
.menu { background: #fff; }

.menu h2 { text-align: center; color: var(--color-primary-dark); }

.section-sub {
  text-align: center;
  color: #6b6058;
  margin-bottom: 48px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.menu-category h3 {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

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

.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.menu-category li span { font-weight: 700; }

.menu-category li em {
  font-style: normal;
  color: #7a6f65;
  font-size: 0.9rem;
  margin-top: 2px;
}

.menu-note {
  text-align: center;
  margin-top: 40px;
  color: #6b6058;
}

/* ---- Gallery ---- */
.gallery h2 {
  text-align: center;
  color: var(--color-primary-dark);
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.25s ease;
}

.gallery-grid img:hover { transform: scale(1.04); }

/* ---- Reviews ---- */
.reviews { background: var(--color-dark); color: #fff; }

.reviews h2 { text-align: center; }

.reviews .section-sub { color: #d8cfc6; }

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

.review-card {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 24px;
  margin: 0;
}

.review-card .stars { display: block; margin-bottom: 10px; }

.review-card p { margin: 0 0 12px; }

.review-card cite { color: var(--color-gold); font-weight: 700; }

/* ---- Location ---- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.location h2 { color: var(--color-primary-dark); }

.hours-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.location-map {
  min-height: 320px;
  border-radius: 12px;
  overflow: hidden;
}

.location-map iframe { width: 100%; height: 100%; min-height: 320px; }

/* ---- Footer ---- */
.footer {
  background: var(--color-dark);
  color: #fff;
  padding: 40px 0 16px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand p { margin: 4px 0; color: #d8cfc6; }

.footer-brand .logo { color: #fff; }

.footer-brand a { color: #fff; }

.footer-copy {
  text-align: center;
  color: #8a8078;
  font-size: 0.85rem;
  margin: 32px 0 0;
}

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

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

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

.modal h2 { color: var(--color-primary-dark); margin-bottom: 16px; font-size: 1.5rem; }

.modal p { font-size: 1.05rem; }

.modal p a { color: var(--color-primary); font-weight: 700; }

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #999;
}

.modal-close:hover { color: var(--color-primary); }

/* ---- 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); }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    gap: 16px;
    display: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .nav-links.open { display: flex; }

  .nav-toggle { display: flex; }

  .btn-order--nav { display: none; }

  .hero h1 { font-size: 1.9rem; }

  .hero-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; }

  .btn-secondary { margin-left: 0; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
