:root {
  --red: #d81324;
  --red-dark: #a80f1c;
  --gold: #d4a017;
  --ink: #1c1410;
  --cream: #fff8ef;
  --cream-dark: #f4e9d8;
  --text: #2a2019;
  --muted: #6b5f56;
  --radius: 999px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0;
  color: var(--ink);
}

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

a { color: inherit; text-decoration: none; }

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.eyebrow {
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0 0.5rem;
}

.eyebrow--center { text-align: center; }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.section-inner > .section-title,
.section-inner > .eyebrow--center {
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 3rem;
}

/* Order button — the single most eye-catching element on the page */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--radius);
  padding: 0.9rem 2rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(216, 19, 36, 0.45);
  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(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(216, 19, 36, 0.55);
}

.btn-order--nav { padding: 0.65rem 1.5rem; font-size: 0.9rem; }
.btn-order--hero { font-size: 1.1rem; padding: 1.1rem 2.5rem; }
.btn-order--modal { width: 100%; margin-top: 1.5rem; padding: 1rem; font-size: 1.05rem; }
.btn-order--hours { margin-top: 1.5rem; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 0.85rem 2rem;
  background: transparent;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-secondary:hover { background: #fff; color: var(--ink); }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(28, 20, 16, 0.96);
  backdrop-filter: blur(6px);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  margin-right: auto;
}

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

.nav-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: #f1e6d8;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

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

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(20,12,10,0.55), rgba(20,12,10,0.75)), url('../images/photo-06.jpg') center 30% / cover no-repeat;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(216,19,36,0.25), transparent 60%);
}

.hero-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-size: 1.15rem;
  color: #f1e6d8;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: #f1e6d8;
  font-size: 0.95rem;
}

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

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

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

.about-text p { color: var(--muted); margin: 0 0 1rem; }
.about-text h2 { margin-bottom: 1.25rem; }

/* Menu */
.menu { background: var(--cream-dark); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.menu-category {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.menu-category h3 {
  font-size: 1.25rem;
  color: var(--red);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--cream-dark);
  padding-bottom: 0.5rem;
}

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

.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 0.6rem 0;
  border-bottom: 1px dashed #e6d9c2;
}

.menu-category li:last-child { border-bottom: none; }

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

.menu-category li small { color: var(--muted); font-size: 0.85rem; }

.menu-note {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--muted);
}

.menu-note a { color: var(--red); font-weight: 700; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

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

/* Reviews */
.reviews { background: var(--ink); color: #f1e6d8; }
.reviews .section-title { color: #fff; }
.reviews .eyebrow { color: var(--gold); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1.75rem;
  margin: 0;
}

.review-card p {
  font-style: italic;
  margin: 0.85rem 0 1rem;
  color: #f1e6d8;
}

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

/* Hours & Location */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.hours-card h2 { margin-bottom: 1.5rem; }

.hours-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  border-top: 1px solid var(--cream-dark);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-weight: 600;
}

.contact-block p { margin: 0.4rem 0; }
.contact-block a { color: var(--red); font-weight: 700; }

.map-card {
  min-height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #f1e6d8;
  padding: 3rem 1.5rem 1.5rem;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-brand p { margin: 0.3rem 0; color: #cbb8a0; }
.footer-brand a { color: #f1e6d8; }

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a { color: #f1e6d8; font-weight: 600; }
.footer-links a:hover { color: var(--gold); }

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

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 200;
}

.modal-backdrop.is-open { display: flex; }

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

.modal h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.modal p { color: var(--muted); }

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

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

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .hours-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(28, 20, 16, 0.98);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 1rem;
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-order--nav { display: none; }
  .section-inner { padding: 3.5rem 1.25rem; }
}

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 160px; }
  .hero { min-height: 100vh; }
}
