/* ============================================================
   STRIKER'S BOWL — style.css
   Theme: Industrial-warm. Deep charcoal base, amber accents,
   clean lanes-inspired geometry. Professional without kitsch.
   ============================================================ */

/* --- Variables -------------------------------------------- */
:root {
  --c-bg:       #18181b;
  --c-surface:  #232328;
  --c-surface2: #2e2e35;
  --c-border:   #3a3a44;
  --c-amber:    #f5a623;
  --c-amber-d:  #c4841a;
  --c-amber-l:  #fbbf5a;
  --c-white:    #f4f2ee;
  --c-muted:    #9a9899;
  --c-light-bg: #f4f2ee;
  --c-light-surface: #eae8e3;
  --c-text-on-light: #1c1b1f;

  --ff-display: 'Barlow Condensed', sans-serif;
  --ff-body:    'Barlow', sans-serif;

  --radius:     8px;
  --radius-lg:  14px;
  --container:  1140px;
  --nav-h:      68px;

  --transition: 0.22s ease;
}

/* --- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--ff-body);
  background: var(--c-bg);
  color: var(--c-white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.hidden { display: none !important; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.centered { text-align: center; }

/* --- Announcement Bar ------------------------------------- */
.announcement-bar {
  background: var(--c-amber);
  color: #18180e;
  text-align: center;
  padding: 10px 48px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  z-index: 200;
}
.announce-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  line-height: 1;
  color: #18180e;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.announce-close:hover { opacity: 1; }

/* --- Header / Nav ----------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(24,24,27,0.97);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(8px);
  height: var(--nav-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-location {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  line-height: 1.2;
  white-space: nowrap;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
  transition: color var(--transition);
}
.main-nav a:hover { color: var(--c-amber); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.1s;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--c-amber);
  color: #18180e;
}
.btn-primary:hover { background: var(--c-amber-l); }
.btn-outline {
  border: 2px solid rgba(245,166,35,0.5);
  color: var(--c-amber);
}
.btn-outline:hover { border-color: var(--c-amber); background: rgba(245,166,35,0.08); }

/* --- Section Labels & Titles ------------------------------ */
.section-label {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--c-muted);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.7;
}
.section-desc.centered { max-width: 680px; margin: 0 auto 40px; }
.section-note {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--c-muted);
  font-style: italic;
}

/* --- Hero ------------------------------------------------- */
.hero {
  position: relative;
  min-height: 65svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
/* Stylized lane lines */
.lane-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  gap: 0;
  opacity: 0.07;
}
.lane {
  flex: 1;
  max-width: 160px;
  border-right: 1px solid var(--c-white);
  animation: laneFade 1.4s var(--d, 0s) both;
}
@keyframes laneFade {
  from { opacity: 0; transform: scaleY(0.6); }
  to   { opacity: 1; transform: scaleY(1); }
}
/* Amber glow from bottom-center */
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: heroIn 0.9s 0.3s both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--ff-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin-bottom: 20px;
  color: var(--c-white);
}
.hero-tagline {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 1.8s infinite;
}
.hero-scroll-hint span {
  display: block;
  width: 22px;
  height: 22px;
  border-right: 2px solid var(--c-amber);
  border-bottom: 2px solid var(--c-amber);
  transform: rotate(45deg);
  opacity: 0.6;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* --- Info Strip ------------------------------------------- */
.info-strip {
  background: var(--c-amber);
  color: #18180e;
  padding: 14px 0;
}
.info-strip-inner {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.info-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- Attractions Overview --------------------------------- */
.attractions {
  padding: 80px 24px;
}
.attractions > .section-label { margin-bottom: 32px; text-align: center; }
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.attraction-card {
  display: block;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.attraction-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-amber);
  background: var(--c-surface2);
}
.attraction-icon { font-size: 2.4rem; margin-bottom: 14px; }
.attraction-card h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--c-white);
}
.attraction-card p {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.5;
}

/* --- Section Layouts -------------------------------------- */
.section-alt  { background: var(--c-surface);   padding: 100px 0; }
.section-dark { background: var(--c-bg);         padding: 100px 0; }
.section-light { background: var(--c-light-bg); padding: 100px 0; color: var(--c-text-on-light); }
.section-light .section-label { color: var(--c-amber-d); }
.section-light .section-desc  { color: #5c5a58; }
.section-light .section-note  { color: #888; }
.section-light h2 { color: var(--c-text-on-light); }
.section-light h3 { color: var(--c-text-on-light); }

.section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.section-inner.reverse { direction: rtl; }
.section-inner.reverse > * { direction: ltr; }

/* --- Pricing Card ----------------------------------------- */
.pricing-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.section-dark .pricing-card { background: var(--c-surface); }
.section-light .pricing-card { background: var(--c-white); border-color: #d4d2ce; }

.pricing-card-header {
  background: var(--c-amber);
  color: #18180e;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 20px;
}
.price-list { padding: 8px 0; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  border-bottom: 1px solid var(--c-border);
  gap: 16px;
}
.section-light .price-list li { border-bottom-color: #d4d2ce; }
.price-list li:last-child { border-bottom: none; }
.price-label { font-size: 0.95rem; color: var(--c-muted); }
.section-light .price-label { color: #6a6866; }
.price-value {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-amber);
  white-space: nowrap;
}

/* --- Highlights List -------------------------------------- */
.highlights-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.highlights-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #5c5a58;
}
.highlights-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-amber-d);
  flex-shrink: 0;
}

/* --- Arcade Art ------------------------------------------- */
.arcade-art {
  display: flex;
  align-items: center;
  justify-content: center;
}
.arcade-display {
  background: var(--c-text-on-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  border: 3px solid #2e2e35;
  box-shadow: 0 0 0 6px #d4d2ce;
  width: 200px;
}
.arcade-screen {
  background: #0d1f1a;
  color: #00e676;
  font-family: 'Courier New', monospace;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.3em;
  padding: 20px 16px;
  border-radius: 4px;
  border: 2px solid #1a3d30;
  margin-bottom: 20px;
}
.arcade-coins { display: flex; justify-content: center; gap: 8px; font-size: 1.5rem; }

/* --- Menu Grid -------------------------------------------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 0;
}
.menu-card {
  background: var(--c-light-surface);
  border: 1px solid #d4d2ce;
  border-radius: var(--radius-lg);
  padding: 24px;
}
.menu-card-header {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-amber-d);
  margin-bottom: 10px;
}
.menu-card p {
  font-size: 0.95rem;
  color: #5c5a58;
  line-height: 1.7;
}

/* --- Parties ---------------------------------------------- */
.section-parties { text-align: center; }
.parties-inner { max-width: 680px; margin: 0 auto; }
.parties-inner .section-desc { max-width: 100%; }
.party-contacts {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.party-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 14px 22px;
  font-size: 1rem;
  font-weight: 600;
}
.party-contact-item a { color: var(--c-amber); transition: color var(--transition); }
.party-contact-item a:hover { color: var(--c-amber-l); }

/* --- Hours ------------------------------------------------ */
.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
}
.hours-table tr {
  border-bottom: 1px solid #d4d2ce;
}
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 12px 0;
  font-size: 0.95rem;
  color: var(--c-text-on-light);
}
.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
}
.hours-table tr.today td { color: var(--c-amber-d); font-weight: 700; }

.contact-block h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 28px;
}
.contact-lines { display: flex; flex-direction: column; gap: 12px; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #5c5a58;
}
.contact-line a { color: var(--c-amber-d); font-weight: 600; }
.contact-line a:hover { color: var(--c-amber); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-light-surface);
  border: 1px solid #d4d2ce;
  color: #5c5a58;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-link:hover { background: var(--c-amber-d); color: white; border-color: var(--c-amber-d); }

/* --- Footer ----------------------------------------------- */
.site-footer {
  background: #111114;
  border-top: 1px solid var(--c-border);
  padding: 24px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-white);
}
.footer-copy {
  font-size: 0.85rem;
  color: var(--c-muted);
}

/* --- Gallery ---------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--c-surface2);
  outline: none;
}
.gallery-item:focus-visible {
  box-shadow: 0 0 0 3px var(--c-amber);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.06); }
.gallery-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 16px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.74));
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.4;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-caption-overlay,
.gallery-item:focus-visible .gallery-caption-overlay { transform: translateY(0); }

/* --- Gallery Filter & Load More --------------------------- */
.gallery-filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.gallery-filter-btn {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--c-light-surface);
  color: #6a6866;
  background: none;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.gallery-filter-btn:hover {
  border-color: var(--c-amber-d);
  color: var(--c-amber-d);
}
.gallery-filter-btn.active {
  background: var(--c-amber);
  border-color: var(--c-amber);
  color: #18180e;
}
.gallery-load-more-wrap {
  text-align: center;
  margin-top: 40px;
}
.gallery-load-more {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 13px 44px;
  border-radius: var(--radius);
  border: 2px solid var(--c-light-surface);
  color: #6a6866;
  background: none;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.gallery-load-more:hover {
  border-color: var(--c-amber-d);
  color: var(--c-amber-d);
}

/* --- Lightbox --------------------------------------------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 500;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: min(88vw, 1100px);
  text-align: center;
  padding: 0 56px;
}
.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
  margin: 0 auto;
}
.lightbox-caption {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--c-muted);
  min-height: 1.4em;
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.2rem;
  color: var(--c-white);
  opacity: 0.65;
  transition: opacity var(--transition);
  z-index: 501;
  line-height: 1;
  padding: 4px 10px;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.5rem;
  color: var(--c-white);
  opacity: 0.55;
  transition: opacity var(--transition);
  z-index: 501;
  line-height: 1;
  padding: 12px 8px;
}
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }

/* --- Gallery Preview Strip (index.html teaser row) -------- */
.gallery-preview-strip {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-preview-item {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
  position: relative;
}
.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-preview-item:hover img { transform: scale(1.05); }

/* --- Booking Tabs ----------------------------------------- */
.booking-tabs {
  margin: 32px 0 0;
}
.booking-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}
.booking-category {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--c-border);
  color: var(--c-muted);
  background: var(--c-surface);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.booking-category:hover {
  border-color: var(--c-amber);
  color: var(--c-amber);
}
.booking-category.active {
  background: var(--c-amber);
  border-color: var(--c-amber);
  color: #18180e;
}
.booking-listing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
  min-height: 44px;
}
.booking-tab {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--c-light-surface);
  color: #6a6866;
  background: none;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.booking-tab:hover {
  border-color: var(--c-amber-d);
  color: var(--c-amber-d);
}
.booking-tab.active {
  background: var(--c-amber);
  border-color: var(--c-amber);
  color: #18180e;
}
.booking-widget-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  border: 1px solid #d4d2ce;
}
.pf-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 340px;
  color: var(--c-muted);
  font-size: 0.95rem;
  background: #f9f8f5;
}

/* --- Page Hero (book.html standalone header) -------------- */
.page-hero {
  background: var(--c-bg);
  padding: 72px 0 52px;
  text-align: center;
  border-bottom: 1px solid var(--c-border);
}
.page-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.page-hero-sub {
  color: var(--c-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}
.nav-active { color: var(--c-amber) !important; }

/* --- Responsive ------------------------------------------- */
@media (max-width: 900px) {
  .section-inner, .section-inner.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
  .hours-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  /* backdrop-filter on site-header breaks position:fixed children in mobile
     browsers (especially iOS Safari) — disable it so the overlay works. */
  .site-header { backdrop-filter: none; }
  .main-nav {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(24,24,27,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 1.5rem; color: var(--c-white); }
  .main-nav a:hover { color: var(--c-amber); }
  .nav-toggle { display: flex; }
  .arcade-art { display: none; }
}
@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .info-strip-inner { flex-direction: column; gap: 10px; }
  .section-alt, .section-dark, .section-light { padding: 64px 0; }
  .gallery-preview-strip { height: 160px; }
  .gallery-preview-item:nth-child(n+3) { display: none; }
}
