/* =========================================================
   Houston's Lounge — Design System
   "Follow the Red Glow."
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Bodoni+Moda:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand palette */
  --rich-black: #050505;
  --charcoal: #111111;
  --charcoal-soft: #1a1a1a;
  --neon-red: #d90429;
  --neon-red-bright: #ff173f;
  --burgundy: #5a0008;
  --soft-white: #f5f5f5;
  --muted-gray: #a3a3a3;
  --border-hair: rgba(245, 245, 245, 0.08);
  --border-hair-strong: rgba(245, 245, 245, 0.16);

  /* Semantic tokens */
  --color-bg: var(--rich-black);
  --color-surface: var(--charcoal);
  --color-surface-alt: var(--charcoal-soft);
  --color-text: var(--soft-white);
  --color-text-muted: var(--muted-gray);
  --color-accent: var(--neon-red);
  --color-accent-bright: var(--neon-red-bright);
  --color-accent-deep: var(--burgundy);

  /* Glow */
  --glow-sm: 0 0 6px rgba(217, 4, 41, 0.55);
  --glow-md: 0 0 18px rgba(217, 4, 41, 0.5), 0 0 3px rgba(255, 255, 255, 0.25);
  --glow-lg: 0 0 40px rgba(217, 4, 41, 0.45), 0 0 90px rgba(217, 4, 41, 0.2);
  --glow-text: 0 0 6px rgba(217, 4, 41, 0.8), 0 0 18px rgba(217, 4, 41, 0.55), 0 0 42px rgba(217, 4, 41, 0.35);

  /* Type */
  --font-display: 'Bodoni Moda', 'Times New Roman', serif;
  --font-bold: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-2xs: 0.75rem;
  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.875rem;
  --fs-2xl: 2.5rem;
  --fs-3xl: 3.5rem;
  --fs-4xl: 4.75rem;
  --fs-5xl: 6.5rem;

  /* Spacing (8pt rhythm) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;

  /* Layout */
  --container-w: 1240px;
  --radius-sm: 3px;
  --radius-md: 6px;
  --nav-h: 84px;

  /* z-index scale */
  --z-base: 1;
  --z-nav: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --z-toast: 400;
}

/* -----------------------------
   Reset
------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--neon-red);
  color: var(--soft-white);
}

/* Grain / noise overlay for premium texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%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");
}

/* -----------------------------
   Focus & Accessibility
------------------------------ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--neon-red-bright);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -60px;
  background: var(--neon-red);
  color: var(--soft-white);
  padding: var(--sp-3) var(--sp-5);
  z-index: var(--z-toast);
  transition: top var(--dur-base) var(--ease-out);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: var(--sp-4);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* -----------------------------
   Layout helpers
------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--sp-7);
  }
}

section {
  position: relative;
  z-index: var(--z-base);
}

.section-pad {
  padding-block: var(--sp-7);
}

@media (min-width: 700px) {
  .section-pad {
    padding-block: var(--sp-9);
  }
}

@media (min-width: 1024px) {
  .section-pad {
    padding-block: var(--sp-10);
  }
}

.section-pad-sm {
  padding-block: var(--sp-6);
}

@media (min-width: 700px) {
  .section-pad-sm {
    padding-block: var(--sp-7);
  }
}

.divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--border-hair-strong) 50%, transparent);
}

.bg-surface {
  background: var(--color-surface);
}

/* -----------------------------
   Typography
------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: var(--fs-2xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-accent-bright);
  font-weight: 700;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--color-accent-bright);
  box-shadow: var(--glow-sm);
}

h1,
.h1 {
  font-family: var(--font-bold);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.75rem, 7vw + 1rem, var(--fs-5xl));
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h2,
.h2 {
  font-family: var(--font-bold);
  font-weight: 400;
  font-size: clamp(2.1rem, 3.8vw + 1rem, var(--fs-3xl));
  line-height: 1.04;
  letter-spacing: -0.015em;
}

h3,
.h3 {
  font-family: var(--font-bold);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.4vw + 1rem, var(--fs-xl));
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.lede {
  font-size: clamp(1.0625rem, 1vw + 0.9rem, var(--fs-md));
  color: var(--color-text-muted);
  font-weight: 300;
  max-width: 54ch;
  line-height: 1.7;
}

.text-muted {
  color: var(--color-text-muted);
}

.text-accent {
  color: var(--color-accent-bright);
}

/* Logo mark (real brand asset) */
.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  display: block;
  width: auto;
  transition: height var(--dur-base) var(--ease-out);
}

.site-nav .brand-logo img {
  height: 48px;
}

@media (min-width: 900px) {
  .site-nav .brand-logo img {
    height: 58px;
  }
}

.footer-brand .brand-logo img {
  height: 46px;
}

.nav-overlay-logo img {
  height: 40px;
  margin-bottom: var(--sp-7);
}

.hero-logo {
  height: 88px;
  filter: drop-shadow(0 0 18px rgba(217, 4, 41, 0.45));
  opacity: 0;
  animation: crestIn 1s var(--ease-out) 0.15s both;
}

@media (min-width: 700px) {
  .hero-logo {
    height: 118px;
  }
}

@keyframes crestIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Legacy text wordmark (kept for contexts without the image mark) */
.brand-wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--soft-white);
  text-shadow: var(--glow-text);
}

.brand-wordmark span {
  color: var(--color-accent-bright);
}

/* -----------------------------
   Buttons
------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 1.05rem 2.3rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out),
    background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out),
    color var(--dur-base) var(--ease-out);
  min-height: 44px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--soft-white);
  border: 1px solid var(--color-accent);
  box-shadow: 0 0 0 rgba(217, 4, 41, 0);
}

.btn-primary:hover {
  background: var(--neon-red-bright);
  border-color: var(--neon-red-bright);
  box-shadow: var(--glow-md);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-outline {
  background: transparent;
  color: var(--soft-white);
  border: 1px solid var(--border-hair-strong);
}

.btn-outline:hover {
  border-color: var(--color-accent-bright);
  color: var(--color-accent-bright);
  box-shadow: var(--glow-sm);
  transform: translateY(-1px);
}

.btn-ghost {
  position: relative;
  color: var(--color-text-muted);
  padding: var(--sp-2) var(--sp-3);
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--color-accent-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}

.btn-ghost:hover {
  color: var(--soft-white);
}

.btn-ghost:hover::after {
  transform: scaleX(1);
}

.btn-ghost .arrow {
  display: inline-block;
  transition: transform var(--dur-base) var(--ease-out);
}

.btn-ghost:hover .arrow {
  transform: translateX(4px);
}

.btn-block {
  width: 100%;
}

/* -----------------------------
   Nav
------------------------------ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: height var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out);
  border-bottom: 1px solid transparent;
}

.site-nav.is-scrolled {
  height: 64px;
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border-hair);
}

.site-nav.is-scrolled .brand-logo img {
  height: 38px;
  transition: height var(--dur-base) var(--ease-out);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}

.site-nav .brand-wordmark {
  font-size: var(--fs-lg);
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-7);
}

.nav-links a {
  position: relative;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding-block: var(--sp-2);
  transition: color var(--dur-base) var(--ease-out);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--color-accent-bright);
  box-shadow: var(--glow-sm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}

.nav-links a:hover,
.nav-links a[aria-current='page'] {
  color: var(--soft-white);
}

.nav-links a:hover::after,
.nav-links a[aria-current='page']::after {
  transform: scaleX(1);
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  z-index: calc(var(--z-overlay) + 1);
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--soft-white);
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: var(--rich-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-7) var(--sp-6);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out),
    visibility 0s linear var(--dur-slow);
}

@media (max-height: 700px) {
  .nav-overlay {
    justify-content: flex-start;
    padding-block: calc(var(--nav-h) + var(--sp-4)) var(--sp-5);
  }

  .nav-overlay-logo {
    margin-bottom: var(--sp-5) !important;
  }

  .nav-overlay-links {
    gap: var(--sp-3) !important;
  }

  .nav-overlay-meta {
    margin-top: var(--sp-5) !important;
  }
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out),
    visibility 0s linear 0s;
}

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.nav-overlay-links a {
  font-family: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(2rem, 8vw, var(--fs-2xl));
  color: var(--soft-white);
  opacity: 0.85;
}

.nav-overlay-links a:hover,
.nav-overlay-links a:focus-visible {
  color: var(--color-accent-bright);
  opacity: 1;
  text-shadow: var(--glow-sm);
}

.nav-overlay-meta {
  margin-top: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}

.nav-overlay-social {
  display: flex;
  gap: var(--sp-5);
  margin-top: var(--sp-5);
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-flex;
  }
  .nav-toggle {
    display: none;
  }
}

/* -----------------------------
   Hero
------------------------------ */
.hero {
  position: relative;
  min-height: 92dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + var(--sp-6)) var(--sp-5) var(--sp-7);
  overflow: hidden;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, #180507 0%, var(--rich-black) 60%);
}

@media (min-width: 700px) {
  .hero {
    min-height: 100dvh;
    padding: calc(var(--nav-h) + var(--sp-7)) var(--sp-5) var(--sp-8);
  }
}

.hero-glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

@media (min-width: 700px) {
  .hero-glow {
    filter: blur(90px);
  }
}

.hero-glow--a {
  width: 420px;
  height: 420px;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(217, 4, 41, 0.35) 0%, rgba(217, 4, 41, 0) 70%);
  animation: emberPulse 7s ease-in-out infinite;
}

@media (min-width: 700px) {
  .hero-glow--a {
    width: 640px;
    height: 640px;
    top: -220px;
  }
}

.hero-glow--b {
  display: none;
}

@media (min-width: 700px) {
  .hero-glow--b {
    display: block;
    width: 420px;
    height: 420px;
    bottom: -160px;
    right: -100px;
    background: radial-gradient(circle, rgba(90, 0, 8, 0.55) 0%, rgba(90, 0, 8, 0) 70%);
  }
}

@keyframes emberPulse {
  0%,
  100% {
    opacity: 0.65;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  max-width: 100%;
}

@media (min-width: 700px) {
  .hero-content {
    gap: var(--sp-5);
  }
}

.hero-content > * {
  max-width: 100%;
  min-width: 0;
}

.hero-eyebrow {
  font-size: var(--fs-2xs);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

@media (max-width: 480px) {
  .hero-eyebrow {
    letter-spacing: 0.22em;
  }
}

.hero-title {
  font-size: clamp(3rem, 13vw, 9rem);
  line-height: 0.92;
  opacity: 0;
  animation: heroTitleIn 0.9s var(--ease-out) 0.35s both;
}

.hero-title .accent-word {
  display: block;
  color: var(--color-accent-bright);
  text-shadow: var(--glow-text);
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.4vw + 0.6rem, var(--fs-lg));
  color: var(--soft-white);
  letter-spacing: 0.02em;
  max-width: 34ch;
}

.hero-tagline .accent {
  color: var(--color-accent-bright);
  font-style: italic;
  font-family: var(--font-display);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
  margin-top: var(--sp-4);
}

.hero-scroll {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: var(--color-text-muted);
  font-size: var(--fs-2xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(var(--color-accent-bright), transparent);
  overflow: hidden;
  position: relative;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -36px;
  left: 0;
  width: 1px;
  height: 36px;
  background: var(--soft-white);
  animation: scrollLine 2.2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  0% {
    top: -36px;
  }
  100% {
    top: 36px;
  }
}

/* -----------------------------
   Scroll reveal
------------------------------ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-group] > * {
  transition-delay: calc(var(--stagger, 0) * 70ms);
}

/* -----------------------------
   Section header
------------------------------ */
.section-head {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
  max-width: 640px;
}

.section-head.center {
  align-items: center;
  text-align: center;
  margin-inline: auto;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}

/* -----------------------------
   Cards: Events
------------------------------ */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

@media (min-width: 700px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.event-card {
  position: relative;
  border: 1px solid var(--border-hair);
  background: linear-gradient(160deg, var(--charcoal-soft), var(--charcoal) 70%);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  overflow: hidden;
  transition: transform var(--dur-slow) var(--ease-out), border-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-slow) var(--ease-out);
}

.event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 23, 63, 0.9), rgba(217, 4, 41, 0.1) 45%, rgba(255, 23, 63, 0.6));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
  pointer-events: none;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow-md);
}

.event-card:hover::before {
  opacity: 1;
}

.event-card-day {
  font-size: var(--fs-2xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent-bright);
}

.event-card-title {
  font-family: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: var(--fs-lg);
}

.event-card-meta {
  display: flex;
  gap: var(--sp-4);
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
  flex-wrap: wrap;
}

.event-card-meta li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.event-card-meta svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--color-accent-bright);
}

.event-card-desc {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.65;
}

.event-card-foot {
  margin-top: var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  font-size: var(--fs-2xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border-hair-strong);
  border-radius: 100px;
  color: var(--color-text-muted);
}

/* -----------------------------
   Gallery
------------------------------ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}

@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-4);
  }
}

.gallery-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-hair);
}

.gallery-tile.tall {
  aspect-ratio: 1 / 1.35;
}

@media (min-width: 700px) {
  .gallery-tile.span-2 {
    grid-row: span 2;
    aspect-ratio: 1 / 2.35;
  }
}

.gallery-tile .swatch {
  position: absolute;
  inset: 0;
  transition: transform var(--dur-slow) var(--ease-out), filter var(--dur-slow) var(--ease-out);
}

.gallery-tile:hover .swatch {
  transform: scale(1.06);
  filter: brightness(1.15) saturate(1.1);
}

.gallery-tile-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--sp-4);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft-white);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}

.gallery-tile:hover .gallery-tile-label,
.gallery-tile:focus-visible .gallery-tile-label {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(5, 5, 5, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-slow) var(--ease-out), visibility 0s linear var(--dur-slow);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--dur-slow) var(--ease-out), visibility 0s linear 0s;
}

.lightbox-frame {
  width: min(720px, 100%);
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-hair-strong);
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow-lg);
  transform: scale(0.96);
  transition: transform var(--dur-slow) var(--ease-out);
}

.lightbox.is-open .lightbox-frame {
  transform: scale(1);
}

.lightbox-image {
  position: absolute;
  inset: 0;
}

.lightbox-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--sp-5);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.lightbox-close {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-hair-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-white);
  transition: border-color var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}

.lightbox-close:hover {
  border-color: var(--color-accent-bright);
  color: var(--color-accent-bright);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-hair-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-white);
  transition: border-color var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}

.lightbox-nav:hover {
  border-color: var(--color-accent-bright);
  color: var(--color-accent-bright);
}

.lightbox-nav--prev {
  left: var(--sp-6);
}

.lightbox-nav--next {
  right: var(--sp-6);
}

/* -----------------------------
   Marquee
------------------------------ */
.marquee {
  border-block: 1px solid var(--border-hair);
  padding-block: var(--sp-5);
  overflow: hidden;
  background: var(--charcoal);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
  gap: var(--sp-8);
}

.marquee-track span {
  font-family: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.marquee-track span em {
  font-style: normal;
  color: var(--color-accent-bright);
  margin-right: var(--sp-8);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
  .hero-glow--a {
    animation: none;
  }
}

/* -----------------------------
   Stats strip
------------------------------ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

@media (min-width: 700px) {
  .stats-strip {
    gap: var(--sp-6);
  }
}

.stat {
  border-left: 1px solid var(--border-hair-strong);
  padding-left: var(--sp-3);
}

@media (min-width: 700px) {
  .stat {
    padding-left: var(--sp-4);
  }
}

.stat-num {
  font-family: var(--font-bold);
  font-size: clamp(1.5rem, 7vw, var(--fs-2xl));
  color: var(--soft-white);
  white-space: nowrap;
}

.stat-plus {
  color: var(--color-accent-bright);
}

.stat-label {
  font-size: var(--fs-2xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: var(--sp-1);
}

@media (min-width: 700px) {
  .stat-label {
    letter-spacing: 0.14em;
  }
}

/* -----------------------------
   Location / Map
------------------------------ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: stretch;
}

@media (min-width: 700px) {
  .location-grid {
    gap: var(--sp-7);
  }
}

@media (min-width: 960px) {
  .location-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.info-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.info-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border-hair-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-bright);
}

.info-icon svg {
  width: 18px;
  height: 18px;
}

.info-title {
  font-size: var(--fs-2xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-1);
}

.info-value {
  font-size: var(--fs-md);
  color: var(--soft-white);
}

.info-value.placeholder {
  color: var(--color-text-muted);
  font-style: italic;
  font-size: var(--fs-sm);
}

.map-frame {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-hair-strong);
  filter: grayscale(0.35) contrast(1.05) brightness(0.85);
}

@media (min-width: 700px) {
  .map-frame {
    min-height: 340px;
  }
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  position: absolute;
  inset: 0;
}

@media (min-width: 700px) {
  .map-frame iframe {
    min-height: 340px;
  }
}

.map-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(217, 4, 41, 0.25);
  border-radius: var(--radius-md);
}

/* -----------------------------
   Forms
------------------------------ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

@media (min-width: 700px) {
  .form-grid.cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.field.span-2 {
  grid-column: 1 / -1;
}

.field label {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.field .required {
  color: var(--color-accent-bright);
}

.field input,
.field select,
.field textarea {
  background: var(--charcoal-soft);
  border: 1px solid var(--border-hair-strong);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  color: var(--soft-white);
  font-size: var(--fs-sm);
  min-height: 48px;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(163, 163, 163, 0.6);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-accent-bright);
  box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.18);
  outline: none;
}

.field small.hint {
  color: var(--color-text-muted);
  font-size: var(--fs-2xs);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #ff5c5c;
}

.field-error {
  display: none;
  color: #ff8080;
  font-size: var(--fs-2xs);
}

.field.has-error .field-error {
  display: block;
}

.form-note {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-4);
  border: 1px solid var(--border-hair-strong);
  border-radius: var(--radius-sm);
  background: rgba(217, 4, 41, 0.05);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.form-status {
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  background: rgba(43, 138, 62, 0.12);
  border: 1px solid rgba(43, 138, 62, 0.4);
  color: #8fe2a0;
}

.form-status.error {
  background: rgba(217, 4, 41, 0.1);
  border: 1px solid rgba(217, 4, 41, 0.4);
  color: #ff9c9c;
}

/* -----------------------------
   CTA band
------------------------------ */
.cta-band {
  position: relative;
  text-align: center;
  padding-block: var(--sp-9);
  background: linear-gradient(180deg, var(--rich-black), #0d0203 60%, var(--rich-black));
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(217, 4, 41, 0.28), transparent 70%);
  filter: blur(60px);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}

/* -----------------------------
   Footer
------------------------------ */
.site-footer {
  background: var(--rich-black);
  border-top: 1px solid var(--border-hair);
  padding-block: var(--sp-7) var(--sp-5);
}

@media (min-width: 700px) {
  .site-footer {
    padding-block: var(--sp-8) var(--sp-6);
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--sp-5);
  row-gap: var(--sp-6);
}

.footer-grid > div:nth-child(1),
.footer-grid > div:nth-child(4) {
  grid-column: 1 / -1;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    column-gap: var(--sp-7);
    row-gap: var(--sp-7);
  }

  .footer-grid > div:nth-child(1),
  .footer-grid > div:nth-child(4) {
    grid-column: auto;
  }
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  margin-top: var(--sp-4);
  max-width: 34ch;
}

.footer-col-title {
  font-size: var(--fs-2xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-links a {
  position: relative;
  display: inline-block;
  width: fit-content;
  color: var(--soft-white);
  font-size: var(--fs-sm);
  transition: color var(--dur-base) var(--ease-out);
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--color-accent-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}

.footer-links a:hover {
  color: var(--color-accent-bright);
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-hair-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
  color: var(--soft-white);
}

.social-icon svg {
  width: 17px;
  height: 17px;
}

.social-icon:hover {
  border-color: var(--color-accent-bright);
  color: var(--color-accent-bright);
  box-shadow: var(--glow-sm);
}

.footer-bottom {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border-hair);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-2xs);
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

@media (min-width: 700px) {
  .footer-bottom {
    margin-top: var(--sp-8);
    padding-top: var(--sp-6);
  }
}

.footer-legal-links {
  display: flex;
  gap: var(--sp-5);
}

.footer-legal-links a:hover {
  color: var(--soft-white);
}

.back-to-top {
  position: fixed;
  right: var(--sp-5);
  bottom: var(--sp-5);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--charcoal-soft);
  border: 1px solid var(--border-hair-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-white);
  z-index: var(--z-nav);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--color-accent-bright);
  color: var(--color-accent-bright);
}

/* -----------------------------
   Page header (interior pages)
------------------------------ */
.page-header {
  padding: calc(var(--nav-h) + var(--sp-8)) 0 var(--sp-8);
  text-align: center;
  background: radial-gradient(ellipse 100% 60% at 50% 0%, #180507 0%, var(--rich-black) 70%);
  position: relative;
}

.page-header .eyebrow {
  justify-content: center;
}

.page-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-2xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.breadcrumbs a:hover {
  color: var(--color-accent-bright);
}

/* -----------------------------
   Schedule table (Events)
------------------------------ */
.schedule {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-hair);
}

.schedule-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2);
  padding-block: var(--sp-5);
  padding-left: var(--sp-4);
  margin-left: calc(var(--sp-4) * -1);
  border-bottom: 1px solid var(--border-hair);
  transition: background var(--dur-base) var(--ease-out), padding-left var(--dur-base) var(--ease-out);
}

.schedule-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: var(--sp-3);
  bottom: var(--sp-3);
  width: 2px;
  background: var(--color-accent-bright);
  box-shadow: var(--glow-sm);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--dur-slow) var(--ease-out);
}

@media (min-width: 700px) {
  .schedule-row {
    grid-template-columns: 140px 1fr 200px;
    align-items: center;
    gap: var(--sp-5);
  }
}

.schedule-row:hover {
  background: rgba(217, 4, 41, 0.04);
  padding-left: var(--sp-5);
}

.schedule-row:hover::before {
  transform: scaleY(1);
}

.schedule-day {
  font-family: var(--font-bold);
  text-transform: uppercase;
  font-size: var(--fs-md);
  letter-spacing: 0.02em;
  color: var(--color-accent-bright);
}

.schedule-title {
  font-size: var(--fs-md);
  color: var(--soft-white);
}

.schedule-desc {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  margin-top: var(--sp-1);
}

.schedule-time {
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-align: left;
}

@media (min-width: 700px) {
  .schedule-time {
    text-align: right;
  }
}

/* -----------------------------
   About page specifics
------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  align-items: center;
}

@media (min-width: 960px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-9);
  }
  .split.reverse {
    direction: rtl;
  }
  .split.reverse > * {
    direction: ltr;
  }
}

.frame-art {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-hair-strong);
}

.frame-art .swatch {
  position: absolute;
  inset: 0;
}

.frame-art::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.65);
}

/* Art-directed scene illustrations (custom SVG, not stock photography) */
.swatch {
  background-color: var(--charcoal);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.swatch-1 {
  background-image: url('../assets/scenes/bar.svg');
}

.swatch-2 {
  background-image: url('../assets/scenes/vip-booth.svg');
}

.swatch-3 {
  background-image: url('../assets/scenes/dj-floor.svg');
}

.swatch-4 {
  background-image: url('../assets/scenes/cocktail.svg');
}

.swatch-5 {
  background-image: url('../assets/scenes/mezzanine.svg');
}

.swatch-6 {
  background-image: url('../assets/scenes/entrance.svg');
}

.swatch-7 {
  background-image: url('../assets/scenes/bottle-service.svg');
}

.swatch-8 {
  background-image: url('../assets/scenes/crowd.svg');
}

/* -----------------------------
   Amenities list
------------------------------ */
.amenities {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

@media (min-width: 700px) {
  .amenities {
    grid-template-columns: repeat(2, 1fr);
  }
}

.amenity {
  position: relative;
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

.amenity::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 23, 63, 0.85), rgba(217, 4, 41, 0.1) 50%, rgba(255, 23, 63, 0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
  pointer-events: none;
}

.amenity:hover {
  border-color: rgba(217, 4, 41, 0.3);
  transform: translateY(-3px);
}

.amenity:hover::before {
  opacity: 1;
}

.amenity-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(217, 4, 41, 0.1);
  display: flex;
  align-items: center;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
  justify-content: center;
  color: var(--color-accent-bright);
}

.amenity-icon svg {
  width: 20px;
  height: 20px;
}

.amenity:hover .amenity-icon {
  transform: scale(1.08);
  background: rgba(217, 4, 41, 0.18);
}

/* -----------------------------
   Quote / press
------------------------------ */
.quote-block {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.quote-block blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw + 0.8rem, var(--fs-2xl));
  line-height: 1.4;
  color: var(--soft-white);
}

.quote-block cite {
  display: block;
  margin-top: var(--sp-5);
  font-style: normal;
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* -----------------------------
   Utility
------------------------------ */
.mt-0 {
  margin-top: 0;
}
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.gap-2 {
  gap: var(--sp-2);
}
.gap-3 {
  gap: var(--sp-3);
}
.hidden {
  display: none;
}

@media (max-width: 699px) {
  .hide-mobile {
    display: none !important;
  }
}
