@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,700&family=Barlow+Condensed:wght@500;700;900&display=swap');

:root {
  --black: #080808;
  --deep: #0e0e0e;
  --surface: #141414;
  --card: #1a1a1a;
  --border: rgba(255,255,255,.08);
  --border2: rgba(255,255,255,.14);
  --text: #f0ede8;
  --muted: #9a9490;
  --muted2: #6b6762;
  --gold: #d4a843;
  --gold-light: #e8c26a;
  --gold-dim: rgba(212,168,67,.15);
  --gold-glow: rgba(212,168,67,.08);
  --red: #c0392b;
  --green: #2ecc71;
  --max: 1140px;
  --r: 4px;
  --r2: 8px;
  --r3: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--black);
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

/* Scroll lock for mobile nav / modals */
body.scroll-locked {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -9999px; top: -9999px;
  background: var(--gold); color: var(--black);
  padding: 8px 16px; border-radius: var(--r);
  z-index: 9999; font-weight: 700;
}
.skip:focus { left: 12px; top: 12px; }


/* ─── HEADER ─── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 20px; height: 68px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.site-logo { height: 44px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: .04em; color: var(--gold);
}
.brand-sub {
  font-size: .75rem; color: var(--muted);
  font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .95rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); padding: 8px 14px;
  border-radius: var(--r);
  transition: color .15s, background .15s;
}
.nav a:hover, .nav a.active {
  color: var(--text); background: rgba(255,255,255,.06);
}
.header-cta { display: flex; gap: 10px; align-items: center; }

/* ─── HAMBURGER BUTTON (mobile only) ─── */
.nav-toggle {
  display: none; /* shown via media query */
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: var(--r);
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  transition: border-color .15s, background .15s;
  /* 3 bar icon drawn with box-shadow */
  position: relative;
}
.nav-toggle:hover { border-color: var(--gold); background: rgba(255,255,255,.04); }
.nav-toggle[aria-expanded="true"] { border-color: var(--gold); }

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .2s ease, opacity .15s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-toggle-bar { top: 50%; margin-top: -1px; }
.nav-toggle-bar::before { content: ''; top: -6px; }
.nav-toggle-bar::after  { content: ''; top: 6px; }

/* Animate to X when open */
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before {
  top: 0; transform: translateX(-50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after {
  top: 0; transform: translateX(-50%) rotate(-45deg);
}

/* ─── MOBILE NAV PANEL ─── */
.mobile-nav {
  /* Hidden on all screen sizes by default; JS adds .is-open */
  position: fixed;
  top: 68px; /* matches header height */
  left: 0; right: 0;
  z-index: 99;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border2);
  padding: 0;
  /* Use max-height for animatable hide/show */
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, opacity .2s ease;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  /* Always hidden on desktop */
  display: none;
}
/* Only activate the panel in mobile breakpoint */
@media (max-width: 960px) {
  .mobile-nav {
    display: block;
  }
}
.mobile-nav.is-open {
  max-height: 400px;
  opacity: 1;
  pointer-events: auto;
  padding: 8px 0 16px;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color .12s, background .12s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a:active { color: var(--text); background: rgba(255,255,255,.04); }
.mobile-nav a.active { color: var(--gold); }


/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center;
  justify-content: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 0 24px; height: 44px;
  border-radius: var(--r); border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: all .15s;
}
.btn-primary { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border2); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--muted); border-color: var(--border); }
.btn-ghost:hover { color: var(--text); border-color: var(--border2); }
.btn-review {
  background: transparent;
  color: var(--gold); border-color: var(--gold);
  border-width: 1px;
}
.btn-review:hover { background: var(--gold-dim); transform: translateY(-1px); }
.btn-sm { height: 38px; padding: 0 18px; font-size: .9rem; }
.btn-lg { height: 52px; padding: 0 32px; font-size: 1.1rem; }


/* ─── HERO ─── */
.hero {
  position: relative; padding: 0; overflow: hidden;
  min-height: 86vh; display: flex; align-items: center;
  background: var(--black);
  /* Prevent iOS paint jank on this large section */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  width: 100%;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; width: 100%; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: .22;
  /* No transform/parallax on mobile — causes scroll jitter */
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(8,8,8,.95) 40%, rgba(8,8,8,.5) 100%),
    linear-gradient(to top, rgba(8,8,8,.9) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; padding: 80px 0; width: 100%; }
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.eyebrow-line { width: 32px; height: 2px; background: var(--gold); }
.eyebrow-text {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: .85rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: .92; letter-spacing: .02em;
  color: var(--text); margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-lead {
  font-size: 1.1rem; color: rgba(240,237,232,.75);
  max-width: 42ch; margin-bottom: 36px; line-height: 1.65;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden;
}
.stat-item { background: var(--surface); padding: 16px 20px; text-align: left; }
.stat-label { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.stat-value { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.05rem; color: var(--text); }
.stat-value a { color: inherit; }
.stat-value a:hover { color: var(--gold); }
.status-open { color: var(--green); }
.status-closed { color: var(--red); }
.hero-media { display: flex; flex-direction: column; gap: 12px; }
.hero-img-main {
  border-radius: var(--r2); overflow: hidden;
  aspect-ratio: 4/3; background: var(--surface);
  border: 1px solid var(--border);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.hero-img-main:hover img { transform: scale(1.03); }
.hero-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-img-sm {
  border-radius: var(--r2); overflow: hidden;
  aspect-ratio: 4/3; background: var(--surface);
  border: 1px solid var(--border);
}
.hero-img-sm img { width: 100%; height: 100%; object-fit: cover; }


/* ─── PHOTO CAROUSEL ─── */
.photo-carousel {
  position: relative; height: 260px;
  overflow: hidden; background: var(--deep);
}
@media (max-width: 600px) { .photo-carousel { height: 180px; } }
.cs-track { display: flex; height: 100%; will-change: transform; }
.cs-slide {
  flex: 0 0 100%; height: 100%;
  background-size: cover; background-position: center;
  background-repeat: no-repeat; background-color: var(--surface);
}
.cs-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,.18) 0%, rgba(8,8,8,.05) 40%, rgba(8,8,8,.05) 60%, rgba(8,8,8,.32) 100%);
  pointer-events: none;
}


/* ─── SECTIONS ─── */
.section { padding: 80px 0; }
.section-alt { background: var(--deep); }
.section-label { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.section-label .line { width: 24px; height: 2px; background: var(--gold); }
.section-label span {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
}
h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: .95; letter-spacing: .02em; margin-bottom: 16px;
}
h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.2rem; letter-spacing: .03em; }
.section-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 48px;
}
.section-lead { font-size: 1.05rem; color: var(--muted); max-width: 52ch; line-height: 1.7; }


/* ─── HOURS ─── */
.hours-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.hours-table { border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; }
.hours-row {
  display: flex; justify-content: space-between;
  align-items: center; padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  transition: background .1s;
}
.hours-row:last-child { border-bottom: none; }
.hours-row:hover { background: rgba(255,255,255,.03); }
.hours-row.today { background: var(--gold-dim); }
.hours-day { font-weight: 600; color: var(--muted); font-size: .95rem; }
.hours-row.today .hours-day { color: var(--gold); font-weight: 700; }
.hours-time { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: .03em; }
.hours-closed { color: var(--muted2); }
.hours-callout {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 32px;
}
.hours-callout h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem;
  letter-spacing: .03em; margin-bottom: 16px; color: var(--text);
}
.callout-features { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.cf-item { display: flex; align-items: center; gap: 12px; font-size: .95rem; color: rgba(240,237,232,.8); }
.cf-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.callout-actions { display: flex; gap: 10px; flex-wrap: wrap; }


/* ─── MENU ─── */
.menu-controls {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.tab {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .9rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 8px 16px; border-radius: var(--r);
  border: 1px solid var(--border);
  background: transparent; color: var(--muted);
  cursor: pointer; transition: all .12s;
}
.tab:hover { color: var(--text); border-color: var(--border2); }
.tab[aria-selected="true"] { background: var(--gold); color: var(--black); border-color: var(--gold); }
.searchwrap { display: flex; gap: 8px; align-items: center; }
#menuSearch {
  font-family: 'Barlow', sans-serif; font-size: .9rem;
  padding: 8px 16px; border-radius: var(--r);
  border: 1px solid var(--border2);
  background: var(--surface); color: var(--text);
  outline: none; width: 220px;
  transition: border-color .15s;
}
#menuSearch::placeholder { color: var(--muted2); }
#menuSearch:focus { border-color: var(--gold); }
.menu-meta { font-size: .85rem; color: var(--muted2); margin-bottom: 24px; }
.menu-grid { display: flex; flex-direction: column; gap: 2px; }
.menu-section {
  border: 1px solid var(--border); border-radius: var(--r2);
  overflow: hidden; margin-bottom: 12px;
}
.menu-section-head {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  padding: 18px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.menu-section-head h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: .04em; color: var(--text);
}
.menu-sub { font-size: .85rem; color: var(--muted); margin-top: 2px; font-style: italic; }
.badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .78rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: var(--gold-dim); color: var(--gold);
  border: 1px solid rgba(212,168,67,.25); white-space: nowrap;
}
.menu-items { padding: 0 24px; }
.menu-item {
  display: grid; grid-template-columns: 1fr auto;
  gap: 20px; align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.menu-item:last-child { border-bottom: none; }
.item-name { font-weight: 700; font-size: .98rem; margin-bottom: 2px; }
.item-desc { font-size: .85rem; color: var(--muted); line-height: 1.5; }
.item-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  letter-spacing: .03em; color: var(--gold);
  text-align: right; white-space: nowrap;
}
.market-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .85rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--border2);
  padding: 3px 8px; border-radius: var(--r);
}
.menu-footnote {
  font-size: .78rem; color: var(--muted2);
  padding: 12px 24px;
  border-top: 1px solid var(--border);
  font-style: italic;
}
.menu-disclaimer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--r2);
  padding: 16px 20px;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.menu-disclaimer strong { color: var(--text); display: block; margin-bottom: 4px; }


/* ─── MENU PHOTOS ─── */
.menu-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.menu-photo-item {
  position: relative; aspect-ratio: 4/3;
  overflow: hidden; border-radius: var(--r2);
  background: var(--surface); border: 1px solid var(--border);
  cursor: pointer; padding: 0;
  transition: border-color .15s;
}
.menu-photo-item:hover { border-color: var(--gold); }
.menu-photo-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
  display: block;
}
.menu-photo-item:hover img { transform: scale(1.05); }
.menu-photo-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
  display: grid; place-items: center;
  color: var(--gold); opacity: 0;
  transition: opacity .2s;
}
.menu-photo-item:hover .menu-photo-overlay { opacity: 1; }

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
}
.lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lb-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; max-width: min(90vw, 960px);
  width: 100%; padding: 20px;
}
.lb-img-wrap {
  width: 100%;
  max-height: 75vh;
  display: flex; justify-content: center;
  border-radius: var(--r2); overflow: hidden;
}
.lb-img {
  max-width: 100%; max-height: 75vh;
  object-fit: contain; border-radius: var(--r2);
  display: block;
}
.lb-bar {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}
.lb-counter { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; color: var(--muted); font-size: .9rem; min-width: 60px; text-align: center; }
.lb-close {
  position: absolute; top: 0; right: 0;
  width: 44px; height: 44px; border-radius: var(--r);
  background: rgba(255,255,255,.1); border: 1px solid var(--border2);
  color: var(--text); cursor: pointer; font-size: 1.4rem;
  display: grid; place-items: center; transition: background .15s;
  line-height: 1;
}
.lb-close:hover { background: rgba(255,255,255,.18); }
.lb-prev, .lb-next {
  width: 44px; height: 44px; border-radius: var(--r);
  background: rgba(255,255,255,.1); border: 1px solid var(--border2);
  color: var(--text); cursor: pointer; font-size: 1.3rem;
  display: grid; place-items: center; transition: background .15s;
  flex-shrink: 0;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.18); }
.lb-download {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .9rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 8px 20px; border-radius: var(--r);
  transition: background .15s;
}
.lb-download:hover { background: var(--gold-dim); }


/* ─── EVENTS ─── */
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.event-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 28px;
  transition: border-color .15s, transform .15s;
}
.event-card:hover { border-color: rgba(212,168,67,.3); transform: translateY(-2px); }
.event-day {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem;
  line-height: 1; letter-spacing: .03em; color: var(--gold); margin-bottom: 6px;
}
.event-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 1.2rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 8px;
}
.event-desc { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.specials-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.special-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r2); padding: 24px; }
.special-tag {
  display: inline-block; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: var(--gold-dim); color: var(--gold);
  border: 1px solid rgba(212,168,67,.25); margin-bottom: 12px;
}
.special-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.3rem; letter-spacing: .03em; margin-bottom: 8px; }
.special-desc { font-size: .9rem; color: var(--muted); line-height: 1.6; }


/* ─── GALLERY ─── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gallery-item {
  aspect-ratio: 4/3; overflow: hidden;
  border-radius: var(--r2); background: var(--surface);
  border: 1px solid var(--border); position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, opacity .2s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.img-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; background: var(--surface);
  color: var(--muted2); font-size: .8rem;
  font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; text-align: center; padding: 12px;
}
.img-ph svg { opacity: .3; }


/* ─── ORDER / PICKUP CTA ─── */
.pickup-cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 40px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.pickup-cta-box .pickup-icon {
  font-size: 2.8rem; line-height: 1;
}
.pickup-cta-box h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: .03em; margin-bottom: 4px;
}
.pickup-cta-box p {
  font-size: .95rem; color: var(--muted); max-width: 36ch; line-height: 1.6;
}
.pickup-cta-box .pickup-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem; letter-spacing: .04em;
  color: var(--gold);
}
.pickup-cta-box .pickup-phone a { color: inherit; }
.pickup-cta-box .pickup-phone a:hover { color: var(--gold-light); }

.order-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.order-intro h2 { margin-bottom: 12px; }
.order-intro p { color: var(--muted); line-height: 1.7; max-width: 44ch; }
.how-it-works { margin: 28px 0; display: flex; flex-direction: column; gap: 0; }
.hiw-step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.hiw-step:last-child { border-bottom: none; }
.hiw-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--gold); line-height: 1; flex-shrink: 0; width: 28px; }
.hiw-text strong { display: block; font-weight: 700; font-size: .95rem; margin-bottom: 2px; }
.hiw-text span { font-size: .88rem; color: var(--muted); }


/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 2px; margin-bottom: 28px; }
.contact-card {
  display: flex; gap: 16px; align-items: center;
  padding: 18px 20px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r2);
  transition: border-color .15s; margin-bottom: 8px;
}
.contact-card:hover { border-color: var(--border2); }
.cc-icon {
  width: 40px; height: 40px; border-radius: var(--r);
  background: var(--gold-dim); border: 1px solid rgba(212,168,67,.2);
  display: grid; place-items: center; flex-shrink: 0; color: var(--gold);
}
.cc-label { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted2); margin-bottom: 2px; }
.cc-value { font-weight: 600; font-size: .98rem; color: var(--text); }
a.cc-value:hover { color: var(--gold); }
.map-wrap { border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: none; filter: grayscale(60%) invert(90%) hue-rotate(180deg); }
.map-footer {
  background: var(--surface); padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
}
.map-address { font-size: .88rem; color: var(--muted); }


/* ─── POLICY SECTION ─── */
.policy-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.policy-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 24px;
}
.policy-card-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.policy-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }


/* ─── FOOTER ─── */
.site-footer { background: var(--deep); border-top: 1px solid var(--border); padding: 48px 0 24px; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
  padding-bottom: 40px; border-bottom: 1px solid var(--border);
}
.footer-brand .brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: .04em; color: var(--gold); }
.footer-brand p { font-size: .9rem; color: var(--muted); margin-top: 8px; max-width: 28ch; line-height: 1.65; }
.footer-col-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted2); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .9rem; color: var(--muted); transition: color .12s; }
.footer-links a:hover { color: var(--text); }
.footer-policies {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-policy-line { font-size: .8rem; color: var(--muted2); line-height: 1.55; }
.footer-policy-line strong { color: var(--muted); font-weight: 600; }
.footer-liquor-notice {
  font-size: .8rem; color: var(--muted2);
  padding: 10px 16px;
  background: rgba(212,168,67,.05);
  border: 1px solid rgba(212,168,67,.12);
  border-radius: var(--r);
  line-height: 1.5;
  margin-bottom: 16px;
}
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.footer-copy { font-size: .82rem; color: var(--muted2); }
.footer-bottom-right { display: flex; align-items: center; gap: 16px; }
.footer-credit { font-size: .75rem; color: var(--muted2); text-decoration: none; opacity: .55; transition: opacity .15s; letter-spacing: .02em; }
.footer-credit:hover { opacity: 1; color: var(--muted); }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: var(--r);
  border: 1px solid var(--border); background: transparent;
  display: grid; place-items: center; color: var(--muted);
  transition: all .12s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }


/* ─── MOBILE ACTIONBAR ─── */
.actionbar {
  display: none;
  position: fixed; bottom: 12px; left: 50%;
  transform: translateX(-50%); z-index: 200;
  background: rgba(14,14,14,.9);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border2); border-radius: 50px;
  padding: 6px; gap: 4px;
}
.ab-btn {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: .9rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 999px;
  color: var(--muted); transition: all .12s; white-space: nowrap;
}
.ab-btn:hover { color: var(--text); background: rgba(255,255,255,.06); }
.ab-btn--gold { background: var(--gold); color: var(--black); }
.ab-btn--gold:hover { background: var(--gold-light); color: var(--black); }


/* ─── NOTICE ─── */
.notice {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r2);
}
.notice-icon { font-size: 1.1rem; flex-shrink: 0; padding-top: 2px; }
.notice-body strong { display: block; font-size: .95rem; margin-bottom: 2px; }
.notice-body p { font-size: .88rem; color: var(--muted); line-height: 1.5; }


/* ─── PAGE HERO ─── */
.page-hero {
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 800px 400px at 0% 50%, rgba(212,168,67,.06), transparent),
    var(--deep);
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  letter-spacing: .02em; line-height: .95; margin-bottom: 14px;
}
.page-hero p { font-size: 1.05rem; color: var(--muted); max-width: 56ch; }


/* ─── UTILITIES ─── */
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.flex-gap { display: flex; gap: 12px; flex-wrap: wrap; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-small { font-size: .88rem; }


/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: clamp(3rem, 8vw, 5rem); }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; }
  .hero-media { display: none; }
  .hours-section { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .specials-row { grid-template-columns: 1fr 1fr; }
  .order-section { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  /* Hide desktop nav — replaced by hamburger */
  .nav { display: none; }
  .header-cta .btn-outline { display: none; }
  /* Show hamburger */
  .nav-toggle { display: flex; }
  .actionbar { display: flex; }
  .section-intro { grid-template-columns: 1fr; gap: 12px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }
  .policy-grid { grid-template-columns: 1fr; }
  .menu-photo-grid { grid-template-columns: repeat(2, 1fr); }

  /* Prevent any section from overflowing viewport width */
  .section, .page-hero, .site-header, .site-footer { max-width: 100vw; overflow-x: hidden; }

  /* Map embed — constrain on tablet */
  .map-wrap iframe { height: 300px; }
}

@media (max-width: 600px) {
  .hero-stats { grid-template-columns: 1fr; }
  .specials-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 0; }
  .hero-content { padding: 48px 0; }
  /* Reduce hero height on small phones to avoid huge blank space */
  .hero { min-height: 70vh; }
  .menu-controls { flex-direction: column; align-items: stretch; }
  .searchwrap { width: 100%; }
  #menuSearch { width: 100%; flex: 1; }
  .menu-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .pickup-cta-box { padding: 28px 20px; }
  .pickup-cta-box .pickup-phone { font-size: 2rem; }
  .events-grid { grid-template-columns: 1fr; }

  /* Prevent wide images/embeds from causing horizontal scroll */
  .map-wrap iframe { height: 260px; }
  .contact-card { flex-wrap: wrap; }

  /* Footer bottom stack nicely */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Actionbar — shrink text slightly so it fits narrow screens */
  .ab-btn { padding: 10px 16px; font-size: .82rem; }
}

@media (max-width: 380px) {
  /* Very small phones */
  .brand-sub { display: none; }
  .hero h1 { font-size: 2.8rem; }
  .ab-btn { padding: 10px 12px; font-size: .78rem; }
}
