/* ---------- Base ---------- */
:root {
  --brand-red: #e0392b;
  --brand-red-dark: #b82c20;
  --brand-yellow: #f4b53c;
  --brand-green: #1f5c47;
  --ink: #23201d;
  --cream: #fdf6ec;
  --cream-dark: #f5e9d6;
  --white: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-pill: 999px;
  --shadow-md: 0 10px 30px rgba(35, 32, 29, 0.15);
}

* { 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.6;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
a { color: inherit; }
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand-red);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--brand-red-dark);
  margin-bottom: 0.5em;
}
.eyebrow.center, .section-sub.center, h2.center { text-align: center; }
.section-sub { color: #6b625a; max-width: 620px; margin: 0 auto 2.5rem; }

/* ---------- Order Button ---------- */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.85em 2em;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 6px 18px rgba(224, 57, 43, 0.4);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(224, 57, 43, 0.45);
}
.btn-order--nav { font-size: 0.9rem; padding: 0.65em 1.5em; }
.btn-order--hero { font-size: 1.1rem; padding: 1em 2.4em; }

.btn-secondary {
  display: inline-block;
  padding: 1em 2.2em;
  border-radius: var(--radius-pill);
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 14px 24px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--brand-red-dark);
  text-decoration: none;
  flex-shrink: 0;
}
.main-nav {
  display: flex;
  gap: 1.75rem;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
.main-nav a:hover { color: var(--brand-red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  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(20,16,12,0.55) 0%, rgba(20,16,12,0.72) 55%, rgba(20,16,12,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.hero .eyebrow { color: var(--brand-yellow); }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  margin-bottom: 0.6em;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 560px;
  color: #f1ece3;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.75rem 0 2rem;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: #f1ece3;
}
.stars { color: var(--brand-yellow); letter-spacing: 2px; }

/* ---------- About ---------- */
.about { padding: 6rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.about-photo img {
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* ---------- Menu ---------- */
.menu { padding: 6rem 0; background: var(--cream-dark); }
.menu h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.menu-category h3 {
  color: var(--brand-green);
  font-size: 1.35rem;
  border-bottom: 3px solid var(--brand-yellow);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(35,32,29,0.15);
}
.menu-list li:last-child { border-bottom: none; }
.item-name { font-weight: 800; }
.item-desc { color: #6b625a; font-size: 0.92rem; }
.menu-cta { text-align: center; margin-top: 3.5rem; }

/* ---------- Gallery ---------- */
.gallery { padding: 6rem 0; }
.gallery h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 3rem;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.04); }

/* ---------- Reviews ---------- */
.reviews { padding: 6rem 0; background: var(--brand-green); color: #fff; }
.reviews h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.reviews .eyebrow { color: var(--brand-yellow); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.review-card {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.75rem;
  margin: 0;
}
.review-card p { font-style: italic; color: #f1ece3; }
.review-card cite { font-weight: 800; color: var(--brand-yellow); font-style: normal; }

/* ---------- Location ---------- */
.location { padding: 6rem 0; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
.location-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
address { font-style: normal; margin-bottom: 0.5rem; display: block; }
.phone-link {
  display: inline-block;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--brand-red);
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.location-info h3 { font-size: 1.1rem; margin-top: 1rem; }
.hours-list { list-style: none; margin: 0 0 2rem; padding: 0; max-width: 360px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(35,32,29,0.1);
  font-size: 0.95rem;
}
.location-map {
  min-height: 340px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.location-map iframe { width: 100%; height: 100%; min-height: 340px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #f1ece3; padding: 3rem 0 1.5rem; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 2rem;
}
.footer-logo { font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; color: #fff; margin: 0 0 0.3em; }
.footer-brand p { margin: 0; font-size: 0.9rem; }
.footer-brand a { text-decoration: none; font-size: 0.9rem; color: var(--brand-yellow); }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a { text-decoration: none; color: #f1ece3; font-weight: 600; font-size: 0.9rem; }
.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: #b0a89d;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20,16,12,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1000;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: var(--cream);
  border-radius: 18px;
  max-width: 420px;
  width: 100%;
  padding: 2.5rem 2rem 2rem;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.modal h2 { font-size: 1.5rem; color: var(--brand-red-dark); }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.modal-call { margin-top: 0.5rem; }

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

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 24px 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-order--nav { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
