/* ─────────────────────────────────────────────
   Rockabilly Rebel Bar — Liquid Glass / iOS 26
   ───────────────────────────────────────────── */

:root {
  --bg:           #0a0606;
  --bg-2:         #140909;
  --ink:          #f5ede1;
  --ink-soft:     #d8cdb8;
  --ink-mute:     rgba(245,237,225,.55);
  --red:          #d11a2a;
  --red-deep:     #8d0f1c;
  --red-glow:     #ff3247;
  --gold:         #d4af37;
  --cream:        #f5ede1;

  --glass-bg:     rgba(255,255,255,.045);
  --glass-bg-2:   rgba(255,255,255,.08);
  --glass-stroke: rgba(255,255,255,.12);
  --glass-stroke-bright: rgba(255,255,255,.22);
  --glass-shadow: 0 30px 80px -20px rgba(0,0,0,.55), 0 2px 0 rgba(255,255,255,.04) inset;

  --radius-lg:    28px;
  --radius-xl:    36px;

  --ease:         cubic-bezier(.2,.7,.1,1);

  --container:    1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
body {
  background: transparent;
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  font-feature-settings: "ss01","cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: none;
}

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* All page content sits above bg-video + particles */
.nav, .hero, main, footer, section { position: relative; z-index: 2; }
em { font-style: italic; color: var(--red-glow); font-family: 'Caveat', cursive; font-weight: 600; font-size: 1.15em; letter-spacing: -.01em; }

/* Background video (post-hero, behind content, above body backdrop) */
.bg-video {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  will-change: opacity;
}
.bg-video.is-visible { opacity: .85; }
.bg-video__canvas { width: 100%; height: 100%; display: block; }
.bg-video__tint {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 50% 50%, transparent 0%, rgba(10,6,6,.25) 60%, rgba(10,6,6,.75) 100%),
    linear-gradient(180deg, rgba(10,6,6,.35) 0%, rgba(10,6,6,.1) 50%, rgba(10,6,6,.65) 100%);
}
@media (max-width: 820px) {
  .bg-video.is-visible { opacity: .75; }
}

/* Particles canvas (above bg-video, below content) ─── */
.particles {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: .55;
}
/* Body atmospheric backdrop ─────────────────── */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(60% 40% at 80% 10%, rgba(209,26,42,.14), transparent 70%),
    radial-gradient(50% 50% at 10% 90%, rgba(212,175,55,.06), transparent 70%),
    radial-gradient(40% 30% at 50% 50%, rgba(209,26,42,.05), transparent 80%),
    linear-gradient(180deg, #0a0606 0%, #170a0a 50%, #0a0606 100%);
  z-index: -2;
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .045 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: .9;
  pointer-events: none;
  z-index: -1;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
}

/* ─────────────── NAV ─────────────── */
.nav {
  position: fixed; top: 18px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 36px);
  max-width: 1280px;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 10px 14px 10px 18px;
  border-radius: 999px;
  background: rgba(20,9,9,.45);
  border: 1px solid var(--glass-stroke);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.06) inset,
    0 0 0 1px rgba(255,255,255,.02) inset,
    0 20px 50px -25px rgba(0,0,0,.7);
  transition: transform .5s var(--ease), background .3s var(--ease);
}
.nav.is-hidden { transform: translate(-50%, -150%); }

.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset, 0 6px 16px -4px rgba(209,26,42,.55);
  font-family: 'Alfa Slab One', serif;
  font-size: 15px; letter-spacing: .5px;
  color: #fff;
}
.nav__brand-mark.big { width: 56px; height: 56px; border-radius: 18px; font-size: 22px; }
.nav__brand-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 2.5px;
}
.nav__links { display: flex; gap: 6px; }
.nav__links a {
  padding: 8px 14px; border-radius: 999px;
  font-size: 13.5px; font-weight: 500; letter-spacing: .2px;
  color: var(--ink-soft);
  transition: background .25s, color .25s;
}
.nav__links a:hover { background: rgba(255,255,255,.06); color: var(--ink); }
.nav__cta { padding: 9px 16px; }

/* Hamburger */
.nav__toggle {
  display: none;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--glass-stroke);
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  padding: 0;
}
.nav__toggle span {
  width: 18px; height: 1.5px; background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s, width .35s var(--ease);
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; width: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav { display: none !important; }
}

/* ─────────────── BUTTONS ─────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: .3px;
  border: 1px solid var(--glass-stroke);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  transition: transform .35s var(--ease), background .25s, border-color .25s, box-shadow .35s;
  position: relative; overflow: hidden;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { transform: translateY(-2px); border-color: var(--glass-stroke-bright); background: rgba(255,255,255,.09); }
.btn--ghost { color: var(--ink); }
.btn--solid {
  background: linear-gradient(180deg, #fff 0%, #f0e5d2 100%);
  color: #1a0707; border-color: transparent;
  box-shadow: 0 10px 30px -10px rgba(245,237,225,.4), 0 1px 0 rgba(255,255,255,.6) inset;
}
.btn--solid:hover { box-shadow: 0 18px 40px -10px rgba(245,237,225,.55), 0 1px 0 rgba(255,255,255,.6) inset; }
.btn--accent {
  background: linear-gradient(180deg, var(--red-glow) 0%, var(--red) 60%, var(--red-deep) 100%);
  color: #fff; border-color: transparent;
  box-shadow: 0 12px 36px -10px rgba(209,26,42,.6), 0 1px 0 rgba(255,255,255,.18) inset;
}

/* ─────────────── HERO ─────────────── */
.hero { position: relative; height: 500vh; }
.hero__sticky {
  position: sticky; top: 0;
  height: 100vh;
  height: 100svh;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 820px) {
  .hero { height: 350vh; }
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 50%, transparent 30%, rgba(0,0,0,.55) 80%, rgba(0,0,0,.85) 100%),
    linear-gradient(180deg, rgba(10,6,6,.55) 0%, rgba(10,6,6,0) 25%, rgba(10,6,6,0) 60%, rgba(10,6,6,.85) 100%);
  pointer-events: none;
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .07 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: .8;
  pointer-events: none;
}

.hero__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0 24px;
  text-align: center;
  pointer-events: none;
}
@media (max-width: 820px) {
  .hero__content { padding: 0 18px; }
  .hero__title { font-size: clamp(48px, 16vw, 110px); }
  .hero__sub { margin-top: 18px; max-width: 420px; }
}
@media (max-width: 480px) {
  .hero__title { font-size: clamp(44px, 17vw, 96px); }
  .hero__sub { font-size: 13.5px; line-height: 1.5; margin-top: 14px; }
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px; border-radius: 999px;
  background: rgba(20,9,9,.45);
  border: 1px solid var(--glass-stroke);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
@media (max-width: 640px) {
  .hero__eyebrow { font-size: 10px; letter-spacing: 1.5px; padding: 7px 12px; margin-bottom: 22px; }
}
.hero__eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red-glow);
  box-shadow: 0 0 14px var(--red-glow);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero__title {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(52px, 14vw, 200px);
  line-height: .82;
  letter-spacing: -.02em;
  margin: 0;
  text-transform: uppercase;
  color: var(--cream);
}
.hero__title .line { display: block; }
.hero__title .line-1 {
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,.6), 0 1px 0 rgba(0,0,0,.4);
}
.hero__title .line-2 {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.92);
  font-style: italic;
  transform: translateX(.05em);
  text-shadow: none;
}
.hero__title .line-3 {
  color: #fff;
  background: linear-gradient(180deg, #ff4a5e 0%, var(--red) 55%, var(--red-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  margin-top: 28px;
  max-width: 560px;
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--ink-soft);
  letter-spacing: .2px;
  padding: 0 8px;
}

.hero__scrollhint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--ink-mute);
  animation: bob 2.4s ease-in-out infinite;
}
@media (max-width: 820px) {
  .hero__scrollhint { bottom: 22px; }
}
.hero__scrollhint svg { width: 16px; height: 16px; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* ─────────────── SECTIONS ─────────────── */
.section {
  position: relative;
  padding: 140px 0;
}
@media (max-width: 820px) {
  .section { padding: 90px 0; }
}
@media (max-width: 480px) {
  .section { padding: 70px 0; }
}
.section__head { max-width: 560px; }
.section__head--center { margin: 0 auto 70px; text-align: center; }
@media (max-width: 640px) { .section__head--center { margin-bottom: 44px; } }

.kicker {
  font-size: 12px; letter-spacing: 3.2px; text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 22px;
}
.display {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(34px, 6vw, 84px);
  line-height: .98;
  letter-spacing: -.01em;
  margin: 0 0 24px;
  text-transform: none;
}
.display em {
  font-size: 1em;
}
.section__sub {
  color: var(--ink-soft);
  font-size: clamp(15px, 1.4vw, 17px);
  max-width: 520px;
  margin: 12px auto 0;
}
.section__head:not(.section__head--center) .section__sub { margin-left: 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
}
.grid-2--reverse > :first-child { order: 2; }
@media (max-width: 880px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-2--reverse > :first-child { order: 0; }
}

/* ─────────────── GLASS (Liquid Glass) ─────────────── */
.glass {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid var(--glass-stroke);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
}
/* Liquid sheen — top highlight */
.glass::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  pointer-events: none;
}
/* Liquid sheen — soft inner glow */
.glass::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(255,255,255,.12), transparent 70%),
    radial-gradient(50% 80% at 100% 100%, rgba(209,26,42,.10), transparent 70%);
  pointer-events: none;
  border-radius: inherit;
  mix-blend-mode: screen;
  opacity: .9;
}

.glass--about {
  padding: 44px;
}
@media (max-width: 640px) { .glass--about { padding: 28px 22px; } }
.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 28px;
  position: relative;
}
.lede--small {
  font-size: clamp(15px, 1.3vw, 16.5px);
  color: var(--ink-soft);
  margin-top: -10px;
}
.meta {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 1px solid var(--glass-stroke);
  padding-top: 22px;
}
@media (max-width: 480px) {
  .meta { gap: 14px; }
  .meta strong { font-size: 18px; }
}
.meta li { display: flex; flex-direction: column; gap: 4px; }
.meta span { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink-mute); }
.meta strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 1.2px; color: var(--ink);
}

/* ─────────────── MARQUEE ─────────────── */
.marquee {
  position: relative;
  padding: 28px 0;
  border-top: 1px solid var(--glass-stroke);
  border-bottom: 1px solid var(--glass-stroke);
  background: rgba(255,255,255,.02);
  overflow: hidden;
}
.marquee__track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(24px, 4vw, 56px);
  letter-spacing: .02em;
  color: var(--ink);
}
@media (max-width: 640px) {
  .marquee__track { gap: 36px; animation-duration: 22s; }
}
.marquee__track span:nth-child(even) { color: var(--red); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────── VIBE TILES ─────────────── */
.vibe__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1000px) { .vibe__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .vibe__grid { grid-template-columns: 1fr; } }

.tile {
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 240px;
  transition: transform .45s var(--ease);
}
.tile:hover { transform: translateY(-6px); }
.tile__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 2px;
  color: var(--red);
}
.tile h3 {
  font-family: 'Alfa Slab One', serif;
  font-size: 24px; line-height: 1.05;
  margin: 0;
}
.tile p {
  margin: 0; color: var(--ink-soft); font-size: 14.5px;
}

/* ─────────────── TICKETS ─────────────── */
.tickets__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 60px;
}
.tickets__grid--duo {
  grid-template-columns: 1.05fr .95fr;
  max-width: 980px;
  margin-left: auto; margin-right: auto;
}
@media (max-width: 980px) { .tickets__grid, .tickets__grid--duo { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

.ticket {
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 22px;
  min-height: 460px;
  position: relative;
}
@media (max-width: 640px) {
  .ticket { padding: 28px 22px; min-height: 0; gap: 18px; }
  .ticket__price .amount { font-size: 52px; }
  .qr { width: 180px; height: 180px; }
}
.ticket__head { display: flex; flex-direction: column; gap: 4px; }
.ticket__type {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 2px;
}
.ticket__day {
  font-size: 12px; color: var(--ink-mute); letter-spacing: 1.5px; text-transform: uppercase;
}
.ticket__price {
  display: flex; align-items: baseline; gap: 4px;
  font-family: 'Alfa Slab One', serif;
}
.ticket__price .currency { font-size: 20px; color: var(--ink-mute); }
.ticket__price .amount   { font-size: 64px; line-height: 1; }
.ticket__price .cents    { font-size: 12px; letter-spacing: 2px; color: var(--ink-mute); margin-left: 6px; font-family: 'Inter', sans-serif; font-weight: 600; }

.ticket__perks {
  list-style: none; padding: 0; margin: 0 0 auto;
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--glass-stroke);
  padding-top: 18px;
}
.ticket__perks li {
  font-size: 14px; color: var(--ink-soft);
  padding-left: 22px; position: relative;
}
.ticket__perks li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
}
.ticket .btn { align-self: flex-start; }
.ticket__fineprint {
  margin: 0; font-size: 11.5px; letter-spacing: .8px; text-transform: uppercase;
  color: var(--ink-mute);
}

.ticket--featured {
  background:
    linear-gradient(180deg, rgba(209,26,42,.10) 0%, rgba(255,255,255,.04) 100%);
  border-color: rgba(209,26,42,.35);
}
.ticket__badge {
  position: absolute; top: 22px; right: 22px;
  padding: 6px 12px; border-radius: 999px;
  font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
  background: var(--red); color: #fff;
  box-shadow: 0 6px 20px -4px rgba(209,26,42,.6);
}

/* QR */
.ticket--qr { align-items: center; text-align: center; }
.qr {
  position: relative;
  width: 220px; height: 220px;
  padding: 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #f3e9d6 100%);
  box-shadow: 0 18px 50px -12px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.4) inset;
  overflow: hidden;
}
.qr__svg { width: 100%; height: 100%; border-radius: 12px; }
.qr__shine {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shine 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine {
  0%, 60% { transform: translateX(-100%); }
  100%    { transform: translateX(120%); }
}

.ticket__qrtext {
  margin: 0; font-size: 14px; color: var(--ink-soft); max-width: 240px;
}
.ticket__stub {
  width: 100%;
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px dashed var(--glass-stroke-bright);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-mute);
  justify-content: space-between;
}
.ticket__stub .dashed { flex: 1; height: 1px; background: repeating-linear-gradient(90deg, var(--ink-mute) 0 4px, transparent 4px 8px); }

/* How it works */
.howitworks {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 820px) { .howitworks { grid-template-columns: 1fr; } }
.step {
  padding: 26px;
  display: flex; flex-direction: column; gap: 8px;
}
.step__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 2.5px; color: var(--red);
}
.step h4 {
  font-family: 'Alfa Slab One', serif;
  font-size: 18px; margin: 0;
}
.step p { margin: 0; color: var(--ink-soft); font-size: 14px; }

/* ─────────────── INFO ─────────────── */
.info__card { padding: 36px; }
@media (max-width: 640px) { .info__card { padding: 24px 22px; } .info__actions .btn { flex: 1; justify-content: center; } }
.hours { list-style: none; margin: 0; padding: 0; }
.hours li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--glass-stroke);
  font-size: 15px;
}
.hours li:last-child { border-bottom: 0; }
.hours span { color: var(--ink-mute); letter-spacing: .5px; }
.hours strong {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1.5px; font-size: 18px;
}
.hours .hot strong { color: var(--red-glow); }

.info__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

/* ─────────────── FOOTER ─────────────── */
.footer {
  border-top: 1px solid var(--glass-stroke);
  padding-top: 70px;
  background: rgba(0,0,0,.25);
}
@media (max-width: 640px) { .footer { padding-top: 48px; } }
.footer__inner {
  display: grid; grid-template-columns: .8fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer__brand { display: flex; align-items: flex-start; gap: 16px; }
.footer__brand p { margin: 0; line-height: 1.5; color: var(--ink-soft); font-size: 14px; }

.footer__cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer__cols h5 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  font-size: 14px;
  color: var(--red);
  margin: 0 0 12px;
}
.footer__cols p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }
.footer__cols a { color: var(--ink); border-bottom: 1px solid transparent; transition: border-color .25s; }
.footer__cols a:hover { border-bottom-color: var(--red); }

.footer__bottom {
  border-top: 1px solid var(--glass-stroke);
  padding: 20px 28px;
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-mute);
  max-width: var(--container);
  margin: 0 auto;
}

@media (max-width: 820px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols  { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* Ensure content sits above particles */
.nav, .hero, .section, .marquee, .footer { position: relative; z-index: 1; }

/* Touch devices: tame the magnetic buttons + scroll hints */
@media (hover: none) and (pointer: coarse) {
  .btn:hover { transform: none; }
  .tile:hover { transform: none; }
  .hero__scrollhint { display: none; }
  .particles { opacity: .35; }
}

/* ─────────────── REVEAL ANIM ─────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
