/* =====================================================
   MONSE'S TASTE OF EL SALVADOR — Shared Stylesheet
   Design tokens + all shared components
   ===================================================== */

/* ─── GOOGLE FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300;400;500;600;700&family=Playfair+Display+SC:wght@400;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* ─── DESIGN TOKENS ─── */
:root {
  --red:        #8C1F11;
  --red-dark:   #5E1209;
  --red-light:  #B93325;
  --gold:       #C4860A;
  --gold-light: #E8A926;
  --gold-pale:  #F5D98B;
  --green:      #0C5E2E;
  --cream:      #FDF6E3;
  --cream-dark: #F5E9C8;
  --warm-white: #FEFCF7;
  --text:       #1C0A00;
  --text-muted: #5C3D2E;
  --border:     #E8D5BC;

  --font-heading: 'Playfair Display SC', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Karla', system-ui, sans-serif;

  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-6: 3rem;
  --sp-8: 4rem;
  --sp-12: 6rem;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 250ms;
  --dur-long: 400ms;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
ul { list-style: none; }

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  padding: 0.5rem 1rem; background: var(--red); color: #fff;
  border-radius: var(--radius); z-index: 9999;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--dur-long) var(--ease), box-shadow var(--dur-long) var(--ease);
}
.nav.scrolled {
  background: var(--red-dark);
  box-shadow: 0 2px 24px rgba(28,10,0,0.25);
}
.nav.solid { background: var(--red-dark); }

.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-main { font-family: var(--font-heading); font-size: 1.15rem; color: #fff; letter-spacing: 0.03em; }
.nav-logo-sub  { font-family: var(--font-body); font-size: 0.62rem; color: var(--gold-light); letter-spacing: 0.2em; text-transform: uppercase; margin-top: 2px; }

.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--dur) var(--ease);
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 1.5px; background: var(--gold-light);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  padding: 0.5rem 1.3rem !important;
  background: var(--gold) !important; color: #fff !important;
  border-radius: var(--radius); font-weight: 700;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: #fff;
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed; inset: 0;
  background: var(--red-dark); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-heading); font-size: 1.6rem;
  color: rgba(255,255,255,0.9);
  transition: color var(--dur) var(--ease);
}
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--gold-light); }
.nav-mobile .mobile-order-btn {
  background: var(--gold); padding: 0.8rem 2rem;
  border-radius: var(--radius); color: #fff !important;
  font-family: var(--font-body) !important; font-size: 0.9rem !important;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}

/* =====================================================
   PAGE HERO (interior pages)
   ===================================================== */
.page-hero {
  background: var(--red-dark);
  padding: 7rem 2rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    60deg, transparent, transparent 80px,
    rgba(196,134,10,0.07) 80px, rgba(196,134,10,0.07) 82px);
  pointer-events: none;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.75rem;
}
.page-hero-eyebrow::before, .page-hero-eyebrow::after {
  content: ''; width: 24px; height: 1px; background: var(--gold-light); opacity: 0.7;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff; line-height: 1.15;
}
.page-hero p {
  font-family: var(--font-display); font-style: italic;
  color: rgba(255,255,255,0.75); font-size: 1.05rem;
  margin-top: 0.75rem;
}

/* =====================================================
   SHARED SECTION STYLES
   ===================================================== */
section { padding: var(--sp-12) var(--sp-4); }
.container { max-width: 1200px; margin: 0 auto; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: var(--sp-2);
}
.section-eyebrow::before { content: ''; width: 24px; height: 1.5px; background: var(--gold); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700; color: var(--red-dark); line-height: 1.15;
  margin-bottom: var(--sp-2);
}
.section-body {
  font-size: 1rem; color: var(--text-muted); line-height: 1.75; max-width: 640px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; background: var(--red); color: #fff;
  font-weight: 700; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: 0 4px 20px rgba(140,31,17,0.35);
}
.btn-primary:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(140,31,17,0.45); }
.btn-primary:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2.2rem; background: var(--gold); color: #fff;
  font-weight: 700; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: 0 4px 20px rgba(196,134,10,0.35);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,134,10,0.45); }
.btn-gold:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent; color: var(--red);
  border: 2px solid var(--red); border-radius: var(--radius);
  font-weight: 700; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn-outline:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.btn-outline:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* =====================================================
   IMAGE PLACEHOLDER
   ===================================================== */
.img-placeholder {
  background: var(--cream-dark);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.82rem; font-weight: 500;
  text-align: center; padding: 1rem;
}
.img-placeholder svg { opacity: 0.4; }
.img-placeholder span { opacity: 0.65; font-size: 0.75rem; max-width: 180px; line-height: 1.4; }

/* =====================================================
   BANNER STRIP
   ===================================================== */
.banner {
  background: var(--red-dark); color: #fff;
  padding: 0.85rem 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em;
}
.banner-item { display: flex; align-items: center; gap: 0.5rem; }
.banner-item svg { color: var(--gold-light); flex-shrink: 0; }
.banner-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.2); }

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: #0F0600; color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-name { font-family: var(--font-heading); font-size: 1.25rem; color: #fff; margin-bottom: 0.3rem; }
.footer-brand-sub  { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }
.footer-brand-desc { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { font-size: 0.88rem; transition: color var(--dur) var(--ease); }
.footer-col ul li a:hover { color: #fff; }
.footer-col address { font-style: normal; font-size: 0.88rem; line-height: 1.8; }
.footer-col address a { transition: color var(--dur) var(--ease); }
.footer-col address a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.78rem; transition: color var(--dur) var(--ease); }
.footer-bottom-links a:hover { color: #fff; }

/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: var(--red); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(140,31,17,0.4);
  opacity: 0; transform: translateY(16px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  z-index: 500;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--red-light); transform: translateY(-2px); }
.back-to-top:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* =====================================================
   FADE-UP ANIMATION
   ===================================================== */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { animation: none; transition: none; opacity: 1; transform: none; }
}

/* =====================================================
   ── HOME PAGE ──
   ===================================================== */

/* Hero */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(28,10,0,0.55) 0%, rgba(140,31,17,0.35) 40%, rgba(28,10,0,0.72) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
}
/* REPLACE: hero-bg.jpg with a photo of the restaurant exterior, food, or interior */
.hero-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    60deg, transparent, transparent 80px,
    rgba(196,134,10,0.06) 80px, rgba(196,134,10,0.06) 82px);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 860px; padding: 2rem 2rem; padding-top: 6rem; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.5rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold-light); opacity: 0.7;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700; color: #fff; line-height: 1.1;
  letter-spacing: 0.02em; margin-bottom: 1rem;
}
.hero-title .accent { color: var(--gold-light); }
.hero-subtitle {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.85); margin-bottom: 2rem; line-height: 1.5;
}
.hero-tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--gold-pale); margin-bottom: 2rem; line-height: 1.4;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center; margin-bottom: 2rem;
}
.hero-badge {
  padding: 0.3rem 0.9rem;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 99px; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 2.2rem; background: var(--red); color: #fff;
  font-weight: 700; font-size: 0.92rem; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: 0 4px 20px rgba(140,31,17,0.45);
}
.btn-hero-primary:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(140,31,17,0.55); }

.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 2.2rem;
  background: rgba(255,255,255,0.1); color: #fff;
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius); border: 1.5px solid rgba(255,255,255,0.45);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.6); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* About section (home) */
.about { background: var(--cream); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-media { position: relative; }
.about-img-main {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(28,10,0,0.18);
}
.about-img-accent {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 200px; height: 200px; object-fit: cover;
  border-radius: var(--radius-lg); border: 6px solid var(--cream);
  box-shadow: 0 12px 32px rgba(28,10,0,0.2);
}
.about-flag-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--red); color: #fff; padding: 0.5rem 1rem;
  border-radius: 99px; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(140,31,17,0.4);
}
.about-text { padding-right: 2rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-value {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1rem; background: #fff;
  border-radius: var(--radius); border: 1px solid var(--border);
}
.about-value-icon {
  width: 40px; height: 40px; background: var(--red); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff;
}
.about-value-text strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--red-dark); margin-bottom: 2px; }
.about-value-text span  { font-size: 0.78rem; color: var(--text-muted); }

/* Menu highlights (home) */
.menu { background: var(--warm-white); }
.menu-header { text-align: center; margin-bottom: 4rem; }
.menu-header .section-eyebrow { justify-content: center; }
.menu-header .section-body { margin: 0 auto; text-align: center; }

.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.menu-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(28,10,0,0.12); }
.menu-card-img  { width: 100%; height: 220px; object-fit: cover; }
.menu-card-body { padding: 1.5rem; }
.menu-card-tag {
  display: inline-block; padding: 0.2rem 0.65rem; background: var(--cream);
  color: var(--red); border-radius: 99px; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.6rem;
}
.menu-card-name { font-family: var(--font-heading); font-size: 1.2rem; color: var(--red-dark); margin-bottom: 0.4rem; }
.menu-card-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.menu-card-price { font-family: var(--font-display); font-size: 0.92rem; color: var(--text-muted); margin: 0.6rem 0 1rem; }
.menu-card-price strong { font-size: 1.25rem; color: var(--red); }

.menu-card.featured {
  grid-column: span 3; display: grid; grid-template-columns: 1fr 1fr;
  border-color: var(--gold); box-shadow: 0 4px 24px rgba(196,134,10,0.15);
}
.menu-card.featured .menu-card-img { height: 100%; min-height: 300px; }
.menu-card.featured .menu-card-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.menu-card.featured .menu-card-name { font-size: 1.8rem; }
.menu-card.featured .menu-card-desc { font-size: 0.95rem; margin-bottom: 1rem; }

.menu-cta-wrap { text-align: center; margin-top: 3rem; }

/* Experience gallery strip (home) */
.experience { padding: 0; background: var(--red-dark); overflow: hidden; }
.experience-inner { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 4px; max-height: 440px; }
.experience-col { display: flex; flex-direction: column; gap: 4px; }
.experience-col .exp-img { flex: 1; overflow: hidden; }
.experience-col .exp-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--dur-long) var(--ease); }
.experience-col .exp-img:hover img { transform: scale(1.04); }
.experience-center {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 3rem 2rem; background: var(--red-dark); gap: 1rem;
}
.experience-center svg { color: var(--gold-light); }
.experience-center h2 { font-family: var(--font-heading); font-size: 2rem; color: #fff; line-height: 1.2; }
.experience-center p  { font-family: var(--font-display); font-style: italic; color: rgba(255,255,255,0.75); }

/* Reviews (home) */
.reviews { background: var(--cream); }
.reviews-header { text-align: center; margin-bottom: 3rem; }
.reviews-header .section-eyebrow { justify-content: center; }
.reviews-rating-bar { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-bottom: 3rem; }
.reviews-avg { font-family: var(--font-heading); font-size: 3.5rem; color: var(--red-dark); line-height: 1; }
.stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }
.reviews-count { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: #fff; border-radius: var(--radius-lg); padding: 1.5rem;
  border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(28,10,0,0.1); }
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; margin-bottom: 0.75rem; }
.review-text { font-family: var(--font-display); font-style: italic; font-size: 0.93rem; color: var(--text); line-height: 1.7; margin-bottom: 1rem; }
.review-author { display: flex; align-items: center; gap: 0.65rem; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.78rem; font-weight: 700; flex-shrink: 0;
}
.review-name   { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.review-source { font-size: 0.72rem; color: var(--text-muted); }

/* Location (home) */
.location { background: var(--warm-white); }
.location-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.8rem 0; font-size: 0.95rem; }
.hours-table td:first-child { font-weight: 600; color: var(--text); width: 55%; }
.hours-table td:last-child { color: var(--text-muted); text-align: right; }
.hours-table tr.today td:first-child { color: var(--red); }
.brunch-note {
  margin-top: 1rem; padding: 0.75rem 1rem;
  background: var(--cream); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.85rem; color: var(--text-muted);
}
.brunch-note strong { color: var(--red-dark); }

.location-card {
  background: var(--cream); border-radius: var(--radius-xl);
  padding: 2rem; border: 1px solid var(--border);
}
.location-map { width: 100%; height: 260px; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.5rem; border: 1px solid var(--border); }
.location-map iframe { width: 100%; height: 100%; border: none; }
.location-details { display: flex; flex-direction: column; gap: 1rem; }
.location-detail { display: flex; align-items: flex-start; gap: 0.75rem; }
.location-detail svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.location-detail-text { font-size: 0.92rem; color: var(--text); line-height: 1.5; }
.location-detail-text a { color: var(--red); font-weight: 600; transition: color var(--dur) var(--ease); }
.location-detail-text a:hover { color: var(--red-light); }

/* Policies (home) */
.policies { background: var(--cream-dark); padding: 4rem 2rem; }
.policies-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.policies-title { font-family: var(--font-heading); font-size: 1.4rem; color: var(--red-dark); margin-bottom: 2rem; }
.policies-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.policy-item {
  display: flex; align-items: flex-start; gap: 0.6rem; text-align: left;
  padding: 0.75rem; background: #fff; border-radius: var(--radius);
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.5;
  border: 1px solid var(--border);
}
.policy-item svg { color: var(--red); flex-shrink: 0; margin-top: 1px; }

/* Order CTA (home) */
.order-cta {
  background: var(--red-dark); padding: 6rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.order-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -60deg, transparent, transparent 60px,
    rgba(196,134,10,0.08) 60px, rgba(196,134,10,0.08) 62px);
  pointer-events: none;
}
.order-cta-inner { position: relative; max-width: 680px; margin: 0 auto; }
.order-cta h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 1rem; line-height: 1.2; }
.order-cta p  { font-family: var(--font-display); font-style: italic; color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2rem; }
.order-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-hero-secondary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 2rem; background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.45); border-radius: var(--radius); font-weight: 600; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; backdrop-filter: blur(8px); transition: background var(--dur) var(--ease), transform var(--dur) var(--ease); }
.btn-hero-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

/* =====================================================
   ── MENU PAGE ──
   ===================================================== */
.menu-page { background: var(--warm-white); }

.menu-notice {
  background: var(--gold-pale); border: 1px solid var(--gold);
  border-radius: var(--radius); padding: 0.85rem 1.25rem;
  font-size: 0.85rem; color: var(--text); line-height: 1.5;
  display: flex; align-items: flex-start; gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.menu-notice svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

.menu-category { margin-bottom: 3.5rem; }
.menu-category-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem; padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--cream-dark);
}
.menu-category-title {
  font-family: var(--font-heading); font-size: 1.6rem; color: var(--red-dark);
}
.menu-category-tag {
  padding: 0.2rem 0.75rem; background: var(--red); color: #fff;
  border-radius: 99px; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.menu-category-tag.vegan { background: var(--green); }
.menu-category-tag.brunch { background: var(--gold); }

.menu-items-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.menu-item {
  background: #fff; padding: 1.1rem 1.25rem;
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  transition: background var(--dur) var(--ease);
}
.menu-item:hover { background: var(--cream); }
.menu-item-left { flex: 1; }
.menu-item-name { font-weight: 600; font-size: 0.95rem; color: var(--text); margin-bottom: 0.2rem; }
.menu-item-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.45; }
.menu-item-tags { display: flex; gap: 0.3rem; margin-top: 0.3rem; flex-wrap: wrap; }
.item-tag {
  padding: 0.1rem 0.4rem; border-radius: 4px; font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.item-tag.vegan    { background: #DCFCE7; color: #166534; }
.item-tag.spicy    { background: #FEE2E2; color: #991B1B; }
.item-tag.gf       { background: #FEF3C7; color: #92400E; }
.menu-item-price { font-family: var(--font-display); font-weight: 600; color: var(--red); white-space: nowrap; font-size: 0.95rem; }

.menu-full-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.menu-full-grid .menu-item { border: none; }

.menu-gf-note {
  background: #FEF3C7; border: 1px solid var(--gold);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 2.5rem;
}
.menu-gf-note svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.menu-gf-note p { font-size: 0.9rem; color: var(--text); line-height: 1.55; }
.menu-gf-note strong { color: var(--red-dark); }

/* =====================================================
   ── ABOUT PAGE ──
   ===================================================== */
.about-page-story { background: var(--cream); }
.about-page-story .about-inner { grid-template-columns: 1fr 1fr; }

.story-img-placeholder { width: 100%; height: 480px; border-radius: var(--radius-xl); }
.about-pull-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.7rem); color: var(--red);
  line-height: 1.45; border-left: 4px solid var(--gold);
  padding-left: 1.5rem; margin: 2rem 0;
}

.about-values-full { background: var(--warm-white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
  background: var(--cream); border-radius: var(--radius-xl);
  padding: 2.5rem 2rem; text-align: center; border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(28,10,0,0.1); }
.value-icon {
  width: 56px; height: 56px; background: var(--red); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: #fff;
}
.value-card h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--red-dark); margin-bottom: 0.75rem; }
.value-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

.about-award {
  background: var(--red-dark); padding: 4rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.about-award::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-60deg, transparent, transparent 60px, rgba(196,134,10,0.08) 60px, rgba(196,134,10,0.08) 62px);
}
.award-inner { position: relative; max-width: 640px; margin: 0 auto; }
.award-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: #fff; padding: 0.5rem 1.25rem;
  border-radius: 99px; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.about-award h2 { font-family: var(--font-heading); font-size: clamp(1.6rem, 3.5vw, 2.5rem); color: #fff; margin-bottom: 1rem; line-height: 1.2; }
.about-award p  { font-family: var(--font-display); font-style: italic; color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.6; }

/* =====================================================
   ── EVENTS PAGE ──
   ===================================================== */
.events-page { background: var(--warm-white); }
.events-intro { background: var(--cream); }
.events-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.events-features { background: var(--warm-white); }
.events-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.event-feature-card {
  background: var(--cream); border-radius: var(--radius-xl);
  padding: 2rem; border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.event-feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(28,10,0,0.1); }
.event-feature-icon {
  width: 48px; height: 48px; background: var(--red);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 1.25rem;
}
.event-feature-card h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--red-dark); margin-bottom: 0.6rem; }
.event-feature-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

.events-cta-section {
  background: var(--red-dark); padding: 6rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.events-cta-section::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(-60deg, transparent, transparent 60px, rgba(196,134,10,0.08) 60px, rgba(196,134,10,0.08) 62px); }
.events-cta-inner { position: relative; max-width: 640px; margin: 0 auto; }
.events-cta-inner h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; margin-bottom: 1rem; line-height: 1.2; }
.events-cta-inner p  { font-family: var(--font-display); font-style: italic; color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.6; }

.contact-call-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-xl);
  padding: 2rem; margin-top: 2rem; max-width: 420px; margin-left: auto; margin-right: auto;
}
.contact-call-card .call-number {
  font-family: var(--font-heading); font-size: 1.8rem; color: var(--gold-light);
  letter-spacing: 0.04em; margin-bottom: 0.4rem;
}
.contact-call-card p { font-size: 0.88rem; color: rgba(255,255,255,0.75); }

/* =====================================================
   ── GALLERY PAGE ──
   ===================================================== */
.gallery-page { background: var(--warm-white); }
.gallery-intro { text-align: center; max-width: 680px; margin: 0 auto 3rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-placeholder {
  width: 100%; aspect-ratio: 1 / 1;
  background: var(--cream-dark); border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.82rem; font-weight: 500;
  text-align: center; padding: 1rem;
  transition: background var(--dur) var(--ease);
}
.gallery-placeholder:hover { background: var(--cream); }
.gallery-placeholder.tall  { aspect-ratio: 1 / 2.1; }
.gallery-placeholder.wide  { aspect-ratio: 2.1 / 1; }
.gallery-placeholder svg   { opacity: 0.35; }
.gallery-placeholder span  { opacity: 0.65; font-size: 0.73rem; max-width: 160px; line-height: 1.4; }
.gallery-placeholder .img-label {
  font-size: 0.72rem; color: var(--red); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.3rem;
}

/* =====================================================
   ── PRIVACY POLICY PAGE ──
   ===================================================== */
.privacy-page { background: var(--warm-white); }
.privacy-content {
  max-width: 780px; margin: 0 auto;
  padding: 4rem 2rem;
}
.privacy-content h2 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--red-dark); margin: 2.5rem 0 0.75rem; }
.privacy-content h2:first-child { margin-top: 0; }
.privacy-content p  { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.privacy-content ul { margin: 0.75rem 0 1rem 1.5rem; list-style: disc; }
.privacy-content ul li { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.35rem; }
.privacy-content a  { color: var(--red); font-weight: 600; }
.privacy-content a:hover { text-decoration: underline; }
.privacy-updated {
  font-size: 0.8rem; color: var(--text-muted); font-style: italic; margin-bottom: 2.5rem;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-card.featured { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .events-features-grid { grid-template-columns: 1fr 1fr; }
  .menu-full-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 4rem 1.25rem; }
  .nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .about-inner,
  .location-inner,
  .events-intro-inner { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .about-img-accent { display: none; }
  .about-text { padding-right: 0; }
  .about-values { grid-template-columns: 1fr; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .menu-card.featured .menu-card-img { height: 240px; }

  .menu-items-grid { grid-template-columns: 1fr; }
  .menu-full-grid  { grid-template-columns: repeat(2, 1fr); }

  .experience-inner { grid-template-columns: 1fr; max-height: none; }
  .experience-col { flex-direction: row; }
  .experience-col .exp-img { height: 160px; }

  .reviews-grid { grid-template-columns: 1fr; }
  .values-grid  { grid-template-columns: 1fr; }
  .events-features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-placeholder.tall { aspect-ratio: 1 / 1; }

  .footer-inner  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .banner { gap: 1rem; }
  .banner-divider { display: none; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions a, .order-cta-btns a { width: 100%; max-width: 320px; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .menu-full-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-placeholder.wide { aspect-ratio: 1 / 1; }
}

/* GALLERY FINAL — Clean Consolidated Styles */
.gallery-page { background: var(--warm-white); }
.gallery-intro { text-align: center; max-width: 680px; margin: 0 auto 3rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense !important; /* Forces backfill of that gap */
  gap: 1rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream-dark);
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: 1 / 2;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

/* Images fill boxes completely */
.gallery-item img,
.gallery-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

/* Remove placeholder backgrounds */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  display: block;
}

.gallery-placeholder span,
.img-label,
.gallery-caption {
  display: none !important;
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(15,6,0,0.92); align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.12); border: none; border-radius: 50%;
  width: 44px; height: 44px; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.gallery-item.has-image { cursor: pointer; }
.gallery-item.has-image:hover img { transform: scale(1.04); }

/* Responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: dense !important;
  }
  .gallery-item.tall { grid-row: span 2; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1 / 1;
  }
}
