/* ===== Variables ===== */
:root {
  --red: #c8102e;
  --red-dark: #9c0c22;
  --gold: #d4a437;
  --ink: #1c1512;
  --ink-soft: #4a3f3a;
  --cream: #fdf8f1;
  --cream-dark: #f4e9db;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(28, 21, 18, 0.12);
  --radius: 16px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}
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; line-height: 1.15; }
ul { margin: 0; padding: 0; list-style: none; }
.section-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== Order Online Button (shared) ===== */
.btn-order {
  display: inline-block;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.95rem;
  border: none;
  border-radius: 999px;
  padding: 16px 34px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(200, 16, 46, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-order:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 26px rgba(200, 16, 46, 0.5);
}
.btn-order:active { transform: translateY(0) scale(0.99); }
.btn-order--nav { padding: 12px 26px; font-size: 0.85rem; }
.btn-order--visit,
.btn-order--footer { margin-top: 8px; }

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

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(253, 248, 241, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}
.nav-inner {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-mark {
  font-size: 1.6rem;
  color: var(--red);
  background: var(--cream-dark);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.1;
}
.brand-text small { font-weight: 600; color: var(--ink-soft); font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { font-weight: 700; font-size: 0.92rem; color: var(--ink-soft); }
.nav-links a:hover { color: var(--red); }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span { display: block; height: 3px; background: var(--ink); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,12,10,0.55) 0%, rgba(20,12,10,0.75) 55%, rgba(15,9,8,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  color: #fff;
}
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto 34px;
}
.hero-cta-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.hero-rating .stars { color: var(--gold); font-size: 1.1rem; }

/* ===== About ===== */
.about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-weight: 800; font-size: 0.82rem; color: var(--red); margin-bottom: 10px; }
.eyebrow--center { text-align: center; }
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--ink); }
.about-text p { color: var(--ink-soft); margin-bottom: 1.1em; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 420px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--red);
  color: #fff;
  padding: 16px 22px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-badge strong { font-family: var(--font-head); font-size: 1.05rem; }
.about-badge span { font-size: 0.8rem; opacity: 0.9; }

/* ===== Menu ===== */
.menu { padding: 100px 0; background: var(--cream-dark); }
.section-title { text-align: center; font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: var(--ink); }
.section-sub { text-align: center; max-width: 620px; margin: 0 auto 50px; color: var(--ink-soft); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
}
.menu-card h3 { color: var(--red-dark); font-size: 1.25rem; margin-bottom: 18px; }
.menu-card li {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.menu-card li:last-child { border-bottom: none; }
.menu-card li span { font-weight: 700; color: var(--ink); }
.menu-card li em { font-style: normal; font-size: 0.85rem; color: var(--ink-soft); margin-top: 2px; }
.menu-note { text-align: center; margin-top: 40px; color: var(--ink-soft); font-size: 0.95rem; }
.menu-note a { color: var(--red); font-weight: 700; }

/* ===== Gallery ===== */
.gallery { padding: 100px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gradient-tile {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 24px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
}
.gradient-tile--1 {
  background: linear-gradient(135deg, var(--red) 0%, #7a0d1e 50%, var(--gold) 150%);
}

/* ===== Reviews ===== */
.reviews { padding: 100px 0; background: var(--cream-dark); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.review-card p { color: var(--ink-soft); font-size: 0.96rem; flex-grow: 1; }
.review-author { font-weight: 800; color: var(--ink); font-size: 0.9rem; }

/* ===== Visit ===== */
.visit { padding: 100px 0; background: var(--white); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.visit-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 30px; }
.visit-block { margin-bottom: 26px; }
.visit-block h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red-dark); margin-bottom: 12px; }
.visit-block p { color: var(--ink-soft); margin: 0; }
.visit-block a { color: var(--ink); font-weight: 700; }
.hours-list li { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--cream-dark); color: var(--ink-soft); font-size: 0.95rem; }
.hours-list li span:first-child { font-weight: 700; color: var(--ink); }
.visit-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 420px; }

/* ===== Footer ===== */
.footer { background: var(--ink); color: #f2e9e0; padding: 60px 0 20px; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand strong { font-family: var(--font-head); font-size: 1.15rem; }
.footer-brand p { margin: 4px 0 0; font-size: 0.85rem; color: rgba(242,233,224,0.65); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 0.9rem; color: rgba(242,233,224,0.8); }
.footer-links a:hover { color: var(--gold); }
.footer-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.footer-phone { font-weight: 700; color: rgba(242,233,224,0.85); }
.footer-bottom { text-align: center; font-size: 0.8rem; color: rgba(242,233,224,0.5); margin-top: 24px; }

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,12,10,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: var(--radius);
  max-width: 440px;
  width: 100%;
  padding: 40px 34px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.modal h2 { color: var(--red-dark); font-size: 1.5rem; margin-bottom: 16px; }
.modal p { color: var(--ink-soft); margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
}
.modal-close:hover { color: var(--red); }
.modal-phone {
  display: inline-block;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(200, 16, 46, 0.35);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-media img { height: 320px; }
  .visit-map { min-height: 320px; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .btn-order--nav { display: none; }
  .nav-inner.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 20px 24px 26px;
    box-shadow: var(--shadow);
    gap: 16px;
  }
  .nav-inner.is-open .btn-order--nav { display: inline-block; margin-top: 6px; width: fit-content; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-cta { align-items: flex-start; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .about-badge { position: static; margin-top: -20px; width: fit-content; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 92vh; }
}
