/* =========================================================================
   West 8 — DTLA Nightclub. Design system v2 (2026 facelift).
   Palette is the room itself: near-black concrete, the icy blue of the
   neon line-work, the amber of the bottle-service lounge, and the brand's
   hot magenta reserved for the mark + primary CTAs. Grain for texture.
   Mobile-first. Built for Core Web Vitals.
   ========================================================================= */

/* ---- fonts (self-hosted, latin subsets) ---- */
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/anton-latin.woff2") format("woff2");
}
/* metric-matched fallback so the swap doesn't shift layout */
@font-face {
  font-family: "Anton Fallback";
  src: local("Arial Narrow"), local("Arial");
  size-adjust: 76%;
  ascent-override: 105%;
  descent-override: 26%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/hanken-grotesk-latin.woff2") format("woff2");
}

/* ---- tokens ---- */
:root {
  color-scheme: dark;

  --ink: #08080a;
  --surface: #111016;
  --surface-2: #1a1922;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f3ef;
  --muted: #a39fad;
  --muted-2: #a6a2b1;

  /* semantic accents, from the room */
  --brand: #ff2e7e; /* the mark + primary CTA fills only */
  --brand-text: #ff6ba0; /* magenta tuned for small text on dark (AA) */
  --neon: #7fdcff; /* the room's neon line-work: eyebrows, labels, numbers */
  --gold: #e8a33d; /* bottle-service amber: VIP / tables contexts */

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.4);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  --radius: 12px;
  --radius-lg: 14px;
  --radius-sm: 8px;

  --container: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 8rem);

  --font-display:
    "Anton", "Anton Fallback", "Arial Narrow", system-ui, sans-serif;
  --font-body:
    "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* fluid type scale (mobile floors per 2026 spec: body 17px, labels 13px) */
  --fs-hero: clamp(3.4rem, 12vw, 11rem);
  --fs-h1: clamp(2.4rem, 6vw, 4.6rem);
  --fs-h2: clamp(1.9rem, 4.2vw, 3.2rem);
  --fs-h3: clamp(1.25rem, 2.4vw, 1.7rem);
  --fs-lead: clamp(1.125rem, 1.6vw, 1.3rem);
  --fs-body: 1.0625rem;
  --fs-sm: 0.875rem;
  --fs-xs: 0.8125rem;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  /* 440: light-on-dark erodes stroke weight on OLED; 400 reads thin at night */
  font-variation-settings: "wght" 440;
  line-height: 1.6;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* clip, not hidden: hidden would make body a scroll container and break
     the view() timelines below */
  overflow-x: clip;
}
/* film grain over everything: breaks the flat digital black, reads cinematic */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
ul[role="list"] {
  list-style: none;
  padding: 0;
}
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- typography ---- */
h1,
h2,
h3,
h4 {
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-wrap: balance;
}
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--neon);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--neon);
  display: inline-block;
}
.lead {
  font-size: var(--fs-lead);
  color: var(--muted);
  max-width: 60ch;
  text-wrap: pretty;
}
.text-grad {
  color: var(--neon);
}

/* ---- layout ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-wide {
  max-width: 1480px;
}
.section {
  padding-block: var(--section-y);
}
.section-head {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-head h2 {
  font-size: var(--fs-h2);
  margin-top: 0.8rem;
}
.center {
  text-align: center;
  margin-inline: auto;
}
.stack > * + * {
  margin-top: 1rem;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease);
  will-change: transform;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: scale(0.97) translateY(1px);
}
@media (prefers-reduced-motion: reduce) {
  .btn:hover,
  .btn:active {
    transform: none;
  }
}
.btn-primary {
  background: var(--brand);
  color: var(--ink);
}
.btn-primary:hover {
  background: #ff4d92;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--text);
}
.btn-block {
  width: 100%;
  justify-content: center;
}
.btn svg {
  width: 18px;
  height: 18px;
}

/* ---- header ---- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1rem;
  transition:
    background 0.3s var(--ease),
    backdrop-filter 0.3s var(--ease),
    border-color 0.3s var(--ease),
    padding 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  padding-block: 0.6rem;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.brand .mark {
  color: var(--brand);
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}
.nav-cta {
  display: none;
}
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 120;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text);
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s;
}
body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(8, 8, 10, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
  visibility: hidden;
}
body.menu-open .mobile-menu {
  transform: translateY(0);
  visibility: visible;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3.2rem);
  text-transform: uppercase;
  color: var(--text);
  padding-block: 0.3rem;
  opacity: 0.85;
}
.mobile-menu a:hover {
  color: var(--brand);
}
.mobile-menu .btn {
  margin-top: 1.5rem;
  align-self: flex-start;
}

/* ---- hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 10, 0.55) 0%,
    rgba(8, 8, 10, 0.2) 35%,
    rgba(8, 8, 10, 0.85) 88%,
    var(--ink) 100%
  );
}
.hero-glow {
  display: none; /* retired: blurred gradient orbs read as template */
}
.hero-inner {
  padding-bottom: clamp(3rem, 8vw, 6rem);
  padding-top: 8rem;
}
.hero h1 {
  font-size: var(--fs-hero);
}
.hero h1 .line {
  display: block;
}
/* the signature: "After Dark" as a neon tube switching on. One place only. */
.hero h1 .neon-word {
  white-space: nowrap; /* the tube never splits across lines */
  color: #eafaff;
  text-shadow:
    0 0 7px rgba(127, 220, 255, 0.85),
    0 0 26px rgba(127, 220, 255, 0.45),
    0 0 70px rgba(127, 220, 255, 0.25);
}
@media (prefers-reduced-motion: no-preference) {
  .hero h1 .neon-word {
    animation: neon-on 1.7s steps(1, end) 0.25s both;
  }
}
@keyframes neon-on {
  0% {
    color: #3a4148;
    text-shadow: none;
  }
  38% {
    color: #eafaff;
    text-shadow:
      0 0 7px rgba(127, 220, 255, 0.85),
      0 0 26px rgba(127, 220, 255, 0.45);
  }
  44% {
    color: #3a4148;
    text-shadow: none;
  }
  50%,
  61% {
    color: #eafaff;
    text-shadow:
      0 0 7px rgba(127, 220, 255, 0.85),
      0 0 26px rgba(127, 220, 255, 0.45);
  }
  64% {
    color: #566069;
    text-shadow: 0 0 4px rgba(127, 220, 255, 0.3);
  }
  70%,
  100% {
    color: #eafaff;
    text-shadow:
      0 0 7px rgba(127, 220, 255, 0.85),
      0 0 26px rgba(127, 220, 255, 0.45),
      0 0 70px rgba(127, 220, 255, 0.25);
  }
}
.hero .lead {
  margin-top: 1.4rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.2rem;
  margin-top: 2.4rem;
  font-size: var(--fs-sm);
  color: var(--muted);
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-meta strong {
  color: var(--text);
  font-weight: 600;
}
.scroll-cue {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 38px;
  background: linear-gradient(var(--muted), transparent);
  animation: cue 1.8s var(--ease) infinite;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue::after {
    animation: none;
  }
}
@media (max-width: 599px) {
  .scroll-cue {
    display: none; /* collides with hero-meta on phones */
  }
  .eyebrow {
    letter-spacing: 0.2em; /* keeps hero eyebrow on one line at 344px */
  }
}
@keyframes cue {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ---- marquee ---- */
.marquee {
  border-block: 1px solid var(--line);
  padding-block: 1rem;
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: scroll 28s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee span {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.marquee span::after {
  content: "✦";
  color: var(--neon);
}
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ---- stats ---- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  background: var(--surface);
  padding: clamp(1.5rem, 4vw, 2.6rem);
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1;
}
.stat .label {
  color: var(--muted);
  font-size: var(--fs-sm);
  margin-top: 0.5rem;
}

/* ---- event cards ---- */
.events-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}
.event-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.event-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.event-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-2);
}
.event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.event-card:hover .event-media img {
  transform: scale(1.06);
}
.event-media .badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--ink);
  color: var(--text);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
}
.event-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.event-genre {
  color: var(--neon);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.event-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(
    1.75rem,
    3vw,
    2rem
  ); /* Anton floor 28px: condensed caps blur below */
}
.event-when {
  color: var(--muted);
  font-size: var(--fs-sm);
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
}
.event-when strong {
  color: var(--text);
  font-weight: 600;
}
.event-vibe {
  color: var(--muted);
  font-size: 0.95rem;
}
.event-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.2rem;
}
.event-dates .chip {
  font-size: var(--fs-xs);
  padding: 0.65rem 1rem; /* >=44px tap target: these are the ticket links */
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  transition:
    border-color 0.2s,
    color 0.2s;
}
a.chip:hover {
  border-color: var(--neon);
  color: var(--text);
}
.event-dates .chip-soldout {
  opacity: 0.45;
  text-decoration: line-through;
  cursor: default;
}
.event-foot {
  margin-top: auto;
  padding-top: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.event-entry {
  font-size: var(--fs-xs);
  color: var(--muted-2);
  max-width: 22ch;
}

/* ---- gallery ---- */
.gallery-grid {
  columns: 2;
  column-gap: 1rem;
}
.gallery-grid figure {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  background: var(--surface-2);
}
.gallery-grid img {
  width: 100%;
  transition:
    transform 0.5s var(--ease),
    filter 0.3s;
}
.gallery-grid figure:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 5, 7, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lightbox-nav.prev {
  left: 1rem;
}
.lightbox-nav.next {
  right: 1rem;
}

/* ---- split / feature ---- */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  box-shadow: var(--shadow);
}
.split-media img,
.split-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-list {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.6rem;
}
.feature-item {
  display: flex;
  gap: 0.9rem;
}
.feature-item .ico {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--neon);
}
.feature-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.feature-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---- info cards / page hero ---- */
.page-hero {
  padding-top: clamp(8rem, 16vw, 12rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(127, 220, 255, 0.35),
    transparent
  );
  z-index: -1;
}
.page-hero h1 {
  font-size: var(--fs-h1);
  margin-top: 0.8rem;
}
.page-hero .lead {
  margin-top: 1.2rem;
}

.cards {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  transition:
    border-color 0.3s,
    transform 0.3s var(--ease);
}
.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0.6rem;
}
.card p {
  color: var(--muted);
}
.card .ico {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--neon);
  margin-bottom: 1.1rem;
}

/* ---- prose (legal pages) ---- */
.prose {
  max-width: 72ch;
}
.prose h2 {
  font-size: var(--fs-h3);
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
}
.prose h3 {
  font-size: 1.15rem;
  margin-top: 1.6rem;
  margin-bottom: 0.5rem;
}
.prose p,
.prose li {
  color: var(--muted);
  margin-bottom: 0.9rem;
}
.prose ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}
.prose a {
  color: var(--brand-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose strong {
  color: var(--text);
}

/* ---- forms ---- */
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.field label {
  font-size: var(--fs-sm);
  color: var(--muted);
  font-weight: 500;
}
.input,
.textarea,
.select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  border-color: var(--brand);
  background: rgba(255, 255, 255, 0.03);
}
.textarea {
  min-height: 130px;
  resize: vertical;
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--fs-sm);
  color: var(--muted);
}
.checkbox {
  padding-block: 0.4rem; /* whole label row is the tap target */
}
.checkbox input {
  margin-top: 0.15rem;
  accent-color: var(--brand);
  width: 20px;
  height: 20px;
}
.form-note {
  font-size: var(--fs-xs);
  color: var(--muted-2);
  margin-top: 0.6rem;
}
.form-status {
  font-size: var(--fs-sm);
  margin-top: 0.8rem;
  min-height: 1.2em;
}
.form-status.ok {
  color: #5fe39c;
}
.form-status.err {
  color: #ff6b88;
}

/* newsletter band */
.newsletter {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 2px solid var(--neon);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.newsletter-form {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
  max-width: 520px;
}
.newsletter-form .input {
  flex: 1 1 220px;
}

/* ---- CTA band ---- */
.cta-band {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}
.cta-band h2 {
  font-size: var(--fs-h2);
  position: relative;
}
.cta-band .btn {
  margin-top: 1.6rem;
}

/* ---- footer ---- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  background: var(--surface);
  margin-top: var(--section-y);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
.footer-brand .brand {
  font-size: 2rem;
}
.footer-brand p {
  color: var(--muted);
  margin-top: 0.8rem;
  max-width: 34ch;
  font-size: 0.95rem;
}
.footer-col h3 {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: var(--muted);
  padding-block: 0.55rem; /* ~44px rows on touch */
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--text);
}
.socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.socials a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: all 0.25s var(--ease);
}
.socials a:hover {
  color: var(--text);
  border-color: var(--brand);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}
.socials svg {
  width: 18px;
  height: 18px;
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--muted-2);
}
.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-bottom a:hover {
  color: var(--text);
}

/* ---- cookie banner ---- */
.cookie {
  position: fixed;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%) translateY(160%);
  z-index: 150;
  width: min(680px, calc(100% - 2rem));
  background: rgba(20, 19, 26, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie.show {
  transform: translateX(-50%) translateY(0);
}
.cookie p {
  font-size: var(--fs-sm);
  color: var(--muted);
  flex: 1 1 280px;
}
.cookie p a {
  color: var(--brand-text);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.cookie .btn {
  padding: 0.75rem 1.2rem; /* keeps the tap target >=44px */
  font-size: 0.8rem;
}

/* ---- sticky mobile action bar (Call / Tables / Tickets) ---- */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(12, 11, 16, 0.92);
  backdrop-filter: blur(16px) saturate(140%);
  border-top: 1px solid var(--line-strong);
  padding-bottom: env(safe-area-inset-bottom, 0);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}
.mobile-bar.show {
  transform: translateY(0);
}
.mb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0.7rem 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  position: relative;
}
.mb-item svg {
  width: 22px;
  height: 22px;
}
.mb-item:active {
  background: rgba(255, 255, 255, 0.05);
}
.mb-item + .mb-item {
  border-left: 1px solid var(--line);
}
.mb-primary {
  color: var(--text);
}
.mb-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand);
  opacity: 0.14;
}
.mb-primary svg,
.mb-primary span {
  position: relative;
  color: var(--brand-text);
}
.mb-primary span {
  color: var(--text);
}
@media (min-width: 900px) {
  .mobile-bar {
    display: none;
  }
}
@media (max-width: 899px) {
  body {
    padding-bottom: 0;
  }
  .site-footer {
    margin-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }
  .cookie {
    bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }
}

/* ---- reveal animation (scroll-driven CSS, no JS) ----
   Visible by default everywhere: browsers without animation-timeline
   (Firefox, older Safari) just see the content. Supported browsers get a
   compositor-driven rise as elements enter the viewport. Content is never
   stuck invisible waiting for an observer. */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      animation: rise linear both;
      animation-timeline: view();
      animation-range: entry 5% entry 45%;
    }
  }
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---- cross-page transitions (progressive: Chrome + Safari 18.2+) ---- */
@view-transition {
  navigation: auto;
}
@media (prefers-reduced-motion: reduce) {
  @view-transition {
    navigation: none;
  }
}

/* ---- icon sizing ---- */
.icon {
  flex: none;
  display: inline-block;
  vertical-align: -0.18em;
}
.ico .icon {
  width: 22px;
  height: 22px;
}
.btn .icon {
  width: 18px;
  height: 18px;
}
.event-when .icon,
.hero-meta .icon {
  vertical-align: -0.2em;
}

/* ---- utilities ---- */
.divider {
  height: 1px;
  background: var(--line);
  border: 0;
}
.hide {
  display: none !important;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand);
  color: var(--ink);
  font-weight: 700;
  padding: 0.6rem 1rem;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}
.muted {
  color: var(--muted);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: var(--fs-xs);
  color: var(--muted);
}
.pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px var(--brand);
}

/* ---- responsive ---- */
@media (min-width: 600px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    columns: 3;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-flex;
  }
  .nav-toggle {
    display: none;
  }
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split.reverse .split-media {
    order: 2;
  }
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid {
    columns: 4;
  }
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
  }
}
@media (max-width: 899px) {
  body.menu-open {
    overflow: hidden;
  }
}

/* ==== conversion + utility layer (2026 psychology/utility wave) ==== */

/* proximity + fill badges on event cards */
.badge-tonight {
  background: var(--brand);
  color: var(--ink);
  border-color: var(--brand);
}
.badge-fill {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(8, 8, 10, 0.85);
  color: var(--gold);
  border: 1px solid rgba(232, 163, 61, 0.5);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}

/* per-card utility row: share + add-to-calendar, quiet vs the CTA */
.util-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
}
.util-btn {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: none;
  color: var(--muted);
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.util-btn:hover {
  border-color: var(--neon);
  color: var(--text);
}
.cal-menu {
  position: relative;
}
.cal-menu > summary {
  list-style: none;
  cursor: pointer;
}
.cal-menu > summary::-webkit-details-marker {
  display: none;
}
.cal-menu[open] > .cal-pop {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  z-index: 20;
  min-width: 180px;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 0.4rem;
}
.cal-pop a {
  display: block;
  padding: 0.7rem 0.9rem;
  font-size: var(--fs-sm);
  color: var(--text);
  border-radius: 6px;
}
.cal-pop a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--neon);
}

/* shared-link landing highlight */
.event-card:target {
  border-color: var(--neon);
  box-shadow: 0 0 0 1px var(--neon);
}

/* copy-link toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(90px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%) translateY(20px);
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-size: var(--fs-sm);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  opacity: 0;
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
  z-index: 300;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* honest deadline pill: rendered by JS only on event nights before 11 PM */
.deadline {
  display: none;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(255, 46, 126, 0.45);
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text);
  width: fit-content;
}
.deadline.on {
  display: inline-flex;
}
.deadline .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}
@media (prefers-reduced-motion: no-preference) {
  .deadline .dot {
    animation: pulse 1.6s ease-in-out infinite;
  }
}
@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}

/* home editorial photo grid (replaces CSS-columns teaser) */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.photo-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
}
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition:
    transform 0.5s var(--ease),
    filter 0.3s;
}
.photo-grid figure:hover img {
  transform: scale(1.03);
  filter: brightness(1.08);
}
.photo-grid .feature {
  grid-column: span 2;
}
.photo-grid .feature img {
  aspect-ratio: 16 / 9;
}
@media (min-width: 600px) {
  .photo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .photo-grid .feature {
    grid-column: span 2;
    grid-row: span 2;
  }
  .photo-grid .feature img {
    aspect-ratio: auto;
  }
}

/* gallery page: reading-order grid (columns masonry retired) */
.gallery-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
.gallery-flow figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--surface-2);
}
.gallery-flow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  transition:
    transform 0.5s var(--ease),
    filter 0.3s;
}
.gallery-flow figure:hover img {
  transform: scale(1.03);
  filter: brightness(1.08);
}
@media (min-width: 600px) {
  .gallery-flow {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-flow .wide {
    grid-column: span 2;
  }
}

/* @west8la strip: scroll-snap tiles, shown only when /ig/feed.json exists */
.ig-strip {
  display: none;
}
.ig-strip.on {
  display: block;
}
.ig-track {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
  padding-bottom: 0.6rem;
  scrollbar-width: thin;
}
.ig-track a {
  flex: 0 0 clamp(150px, 38vw, 220px);
  scroll-snap-align: start;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface-2);
}
.ig-track img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.ig-track a:hover img {
  transform: scale(1.04);
}

/* FAQ accordion */
.faq {
  max-width: 760px;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0.2rem;
  font-weight: 600;
  font-size: var(--fs-body);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  color: var(--neon);
  font-size: 1.3rem;
  line-height: 1;
  flex: none;
}
.faq details[open] summary::after {
  content: "–";
}
.faq details p {
  color: var(--muted);
  padding: 0 0.2rem 1.2rem;
  max-width: 62ch;
}

/* getting-here map card (static SVG, no third-party iframe) */
.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: block;
  background: var(--surface);
}
.map-card svg {
  width: 100%;
  height: auto;
  display: block;
}
.go-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

/* bottle menu page */
.menu-sec {
  margin-bottom: 2.6rem;
}
.menu-sec h2 {
  border-bottom: 1px solid rgba(232, 163, 61, 0.35);
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.menu-list {
  list-style: none;
  padding: 0;
}
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px dotted var(--line);
  font-size: var(--fs-body);
}
.menu-list li > span:first-child {
  flex: 1;
}
.menu-price {
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

/* marquee pause control (WCAG 2.2.2: keyboard-operable mechanism) */
.marquee-wrap {
  position: relative;
}
.marquee-toggle {
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(8, 8, 10, 0.7);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
}
.marquee-toggle:hover {
  color: var(--text);
  border-color: var(--line-strong);
}
.marquee-wrap.paused .marquee-track {
  animation-play-state: paused;
}
