/* ========================================
   Bizzy Nights — design system
   Brand: black + white + champagne gold, uppercase, minimalist
   ======================================== */

/* === Animation system === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes goldShimmer {
  0%   { background-position: -200% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 20px 60px -20px rgba(212,175,55,0.35); }
  50%      { box-shadow: 0 25px 80px -15px rgba(212,175,55,0.55); }
}
@keyframes scrollIndicator {
  0%   { transform: translateY(0); opacity: 0.6; }
  50%  { transform: translateY(8px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.6; }
}

/* Scroll-triggered reveals */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children — set on grid containers */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in > *:nth-child(1)  { transition-delay: 0.00s; }
.reveal-stagger.in > *:nth-child(2)  { transition-delay: 0.06s; }
.reveal-stagger.in > *:nth-child(3)  { transition-delay: 0.12s; }
.reveal-stagger.in > *:nth-child(4)  { transition-delay: 0.18s; }
.reveal-stagger.in > *:nth-child(5)  { transition-delay: 0.24s; }
.reveal-stagger.in > *:nth-child(6)  { transition-delay: 0.30s; }
.reveal-stagger.in > *:nth-child(7)  { transition-delay: 0.36s; }
.reveal-stagger.in > *:nth-child(8)  { transition-delay: 0.42s; }
.reveal-stagger.in > *:nth-child(9)  { transition-delay: 0.48s; }
.reveal-stagger.in > *:nth-child(10) { transition-delay: 0.54s; }
.reveal-stagger.in > *:nth-child(11) { transition-delay: 0.60s; }
.reveal-stagger.in > *:nth-child(12) { transition-delay: 0.66s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


:root {
  /* Tinted neutrals — warm umbra, no pure #000 / #fff */
  --bg: #0a0805;
  --bg-soft: #110d08;
  --bg-elev: #1a1510;
  --line: rgba(250, 240, 220, 0.08);
  --text: #faf3e2;
  --text-dim: #a39884;
  --gold: #d4a531;
  --gold-light: #efc868;
  --gold-deep: #9a781f;
  --grad: linear-gradient(135deg, #9a781f 0%, #d4a531 40%, #efc868 70%, #d4a531 100%);
  --grad-soft: linear-gradient(135deg, rgba(212,165,49,0.14), rgba(239,200,104,0.05));
  --radius: 4px;
  --shadow: 0 20px 60px -20px rgba(212,165,49,0.3);
  --max: 1240px;
}

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

/* Screen-reader-only utility — visually hidden, still in DOM for a11y + SEO */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Headings — Big Shoulders Display, Chicago-made.
   Tall + condensed; needs negative tracking to feel poster-strong. */
h1, h2, h3, h4 {
  font-family: 'Big Shoulders Display', 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 0.92;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(3rem, 9vw, 7rem);
  letter-spacing: -0.025em;
  font-weight: 800;
}
h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 0.95;
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
}
.section-h { text-align: center; margin: 0 auto 48px; max-width: 18ch; }

/* Hero second line: a single oversize statement.
   Brand register's typographic-risk permission, not gradient text. */
.hero h1 .grad,
.about-hero h1 .grad,
.venues-hero h1 .grad {
  display: block;
  font-size: 1.18em;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
  margin-top: 0.05em;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: var(--gold);
  padding: 5px 0;
  border: none;
  background: transparent;
  margin-bottom: 18px;
  position: relative;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
}
.eyebrow.center { display: block; width: fit-content; margin: 0 auto 18px; }

/* Solid accent color. Gradient-text was an absolute ban.
   Emphasis lives in color + the 900-weight oversize rule above. */
.grad { color: var(--gold); }

/* Buttons — squared, uppercase, brand-style */
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s;
  text-align: center;
}
.btn-primary {
  background: var(--grad);
  color: #000;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.7s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 25px 70px -15px rgba(212,175,55,0.5); }
.btn-primary:hover::before { left: 100%; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: var(--gold); color: var(--gold); }
.lg { padding: 18px 32px; font-size: 0.88rem; }

/* Promo bar */
.promo-bar {
  background: var(--grad);
  color: #000;
  text-align: center;
  padding: 11px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  position: sticky;
  top: 0;
  z-index: 60;
  overflow: hidden;
}
.promo-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: promoShine 5s ease-in-out infinite;
}
.promo-text { position: relative; z-index: 1; }
.promo-text-link {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.6);
  padding-bottom: 1px;
  transition: border-color 0.2s, opacity 0.2s;
  margin-left: 4px;
}
.promo-text-link:hover { border-color: #000; opacity: 0.8; }
.promo-text strong {
  background: #000;
  color: var(--gold);
  padding: 3px 10px;
  margin: 0 4px;
  border-radius: 2px;
  letter-spacing: 0.2em;
}
@keyframes promoShine {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}
@media (max-width: 600px) {
  .promo-bar { font-size: 0.68rem; letter-spacing: 0.15em; padding: 9px 12px; }
  .promo-text strong { padding: 2px 8px; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  background: rgba(15,13,26,0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 100;
  font-size: 0.9rem;
}
.cookie-banner.hidden { display: none; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-banner .btn-primary, .cookie-banner .btn-ghost { padding: 8px 16px; font-size: 0.85rem; }

/* Header */
.site-header {
  position: sticky; top: 40px; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(0,0,0,0.55);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(0,0,0,0.85);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 30px -10px rgba(0,0,0,0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 108px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img {
  height: 88px;
  width: auto;
  display: block;
  border-radius: 4px;
  /* Anchor in the corner — allow slight visual extension out of the header bar */
  margin-left: -8px;
}
.footer-logo-img {
  height: 96px;
  margin-left: -10px;
}
.logo-mark {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 2px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1rem;
}
.logo-text {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text small {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a {
  font-size: 0.92rem;
  color: var(--text-dim);
  transition: color 0.15s;
}
.primary-nav a:hover { color: var(--text); }
.nav-cta {
  border: 1px solid rgba(255,255,255,0.18);
  padding: 9px 16px;
  border-radius: 99px;
  color: var(--text) !important;
}
.nav-cta:hover { background: rgba(255,255,255,0.05); }

.city-dropdown { position: relative; }
.city-trigger, .book-trigger {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 99px;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
}
.book-trigger {
  background: rgba(212,165,49,0.10);
  border-color: rgba(212,165,49,0.4);
  color: var(--gold);
  font-weight: 700;
}
.city-menu, .book-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.6);
  z-index: 60;
  /* Soft fade in/out — visibility lets us delay close without staying interactive */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.45s;
}
/* Invisible hover-bridge so the cursor doesn't lose contact crossing the 10px gap */
.city-menu::before, .book-menu::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 16px;
  background: transparent;
}
.city-dropdown:hover > .city-menu,
.city-dropdown:focus-within > .city-menu,
.city-menu:hover,
.city-dropdown:hover > .book-menu,
.city-dropdown:focus-within > .book-menu,
.book-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}
.city-menu a, .book-menu a {
  padding: 9px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text);
}
.city-menu a:hover, .book-menu a:hover { background: rgba(212,165,49,0.10); color: var(--gold); }
.book-menu { left: 0; right: auto; }
.book-menu a::after { content: '→'; color: var(--gold); opacity: 0; transition: opacity 0.15s ease, transform 0.15s ease; }
.book-menu a:hover::after { opacity: 1; transform: translateX(2px); }
.soon { font-size: 0.65rem; color: var(--gold); }

/* Contact page */
.contact-section { padding: clamp(70px, 9vw, 110px) 0; background: var(--bg-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 5vw, 70px);
  align-items: start;
}
.contact-meta h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 24px; }
.contact-meta-list { list-style: none; padding: 0; margin: 0; }
.contact-meta-list li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-meta-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-meta-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.contact-meta-list a { color: var(--text); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s ease; }
.contact-meta-list a:hover { border-bottom-color: var(--gold); }
.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 36px);
  min-height: 480px;
}
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.mobile-toggle span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.2s; }

/* Hero */
.hero {
  position: relative;
  padding: 140px 0 110px;
  overflow: hidden;
  isolation: isolate;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}
.hero-bg {
  position: absolute; inset: 0;
  /* Tinted darken so the headline reads on top of the video */
  background:
    linear-gradient(180deg, rgba(10,8,5,0.45) 0%, rgba(10,8,5,0.55) 55%, rgba(10,8,5,0.75) 100%);
  z-index: -2;
  overflow: hidden;
}
/* Slow-drifting mesh gradient — feels alive without being distracting */
.hero-bg::before, .hero-bg::after {
  content: '';
  position: absolute;
  inset: -20%;
  z-index: 0;
  will-change: transform;
}
.hero-bg::before {
  background:
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(212,165,49,0.30), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(212,165,49,0.18), transparent 60%);
  animation: heroMeshDrift 18s ease-in-out infinite alternate;
}
.hero-bg::after {
  background:
    radial-gradient(ellipse 40% 30% at 70% 10%, rgba(244,215,123,0.16), transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 90%, rgba(212,165,49,0.14), transparent 60%);
  animation: heroMeshDrift 24s ease-in-out infinite alternate-reverse;
}
@keyframes heroMeshDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(4%, -3%) scale(1.05); }
  100% { transform: translate(-3%, 4%) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg::before, .hero-bg::after { animation: none; }
}
.hero-inner { position: relative; text-align: center; }
.hero .eyebrow  { animation: fadeIn 0.6s ease 0.05s both; }
.hero h1        { animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both; margin-bottom: 24px; }
.hero .lede     { animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both; }
.hero-cta       { animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both; }
.hero-trust     { animation: fadeIn 1s ease 0.85s both; }
.hero-trust strong { animation: softFloat 5s ease-in-out infinite; }
.hero-trust div:nth-child(2) strong { animation-delay: 0.6s; }
.hero-trust div:nth-child(3) strong { animation-delay: 1.2s; }
.lede {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 1.15rem;
  color: var(--text-dim);
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
/* Horizontal marks strip — replaces the SaaS hero-metric template.
   Reads as a matchbook tagline, not a dashboard. */
.hero-marks {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 18px 22px;
  padding-top: 40px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.hero-marks b {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: -0.01em;
  margin-right: 4px;
}
.hero-mark-sep {
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0.7;
}

/* Feature cards — sits tight under the hero, no big top gap */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: clamp(50px, 7vw, 80px) 24px clamp(40px, 6vw, 70px);
}
.feature-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  color: var(--text);
  text-decoration: none;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 30px 70px -25px rgba(212,175,55,0.35);
}
.feature-arrow {
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--gold);
  transition: transform 0.2s ease;
}
.feature-card:hover .feature-arrow {
  transform: translateX(4px);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 8px;
  margin-bottom: 18px;
  background: var(--grad-soft);
  border: 1px solid rgba(212,175,55,0.25);
  display: grid; place-items: center;
  color: var(--gold);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.feature-icon svg {
  width: 26px;
  height: 26px;
}
.feature-card:hover .feature-icon {
  background: rgba(212,175,55,0.14);
  border-color: var(--gold);
  transform: rotate(-3deg) scale(1.05);
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { color: var(--text-dim); font-size: 0.95rem; }

/* Split sections */
.split { padding: 80px 0; }
.split.alt { background: var(--bg-soft); }
.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-inner.reverse { direction: rtl; }
.split-inner.reverse > * { direction: ltr; }
.split-media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: var(--grad-soft);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.split-media {
  background-size: cover;
  background-position: center;
}
.split-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.15), rgba(0,0,0,0.55));
  transition: background 0.4s ease;
}
.split:hover .split-media::after {
  background: linear-gradient(135deg, rgba(0,0,0,0.05), rgba(0,0,0,0.35));
}
.split-media[data-img="discovery"] { background-image: url('../images/venues/galeria.png'); }
.split-media[data-img="bottle"]    { background-image: url('../images/venues/esco.webp'); }
.split-media[data-img="guestlist"] { background-image: url('../images/venues/icon.png'); }
.split-copy h2 { margin: 0 0 24px; }
.checklist { list-style: none; margin: 0 0 32px; }
.checklist li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--text-dim);
  border-bottom: 1px solid var(--line);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '';
  position: absolute;
  left: 4px; top: 18px;
  width: 14px; height: 1px;
  background: var(--gold);
}

/* Live event countdown — punchy, just above the neighborhoods marquee */
.countdown {
  padding: clamp(50px, 7vw, 80px) 0 clamp(30px, 4vw, 50px);
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(212,165,49,0.10), transparent 70%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.countdown-inner { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.countdown-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}
.countdown-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  margin-bottom: 28px;
}
.countdown-clock {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.countdown-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 70px;
}
.countdown-cell b {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-cell span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  font-weight: 600;
}
.countdown-colon {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 18px;
}
.countdown.is-past .countdown-clock { display: none; }
.countdown.is-past .countdown-title::after { content: ' — happening now.'; color: var(--gold); }

/* Bizzy Vibes — Spotify embed section */
.vibes { padding: clamp(80px, 10vw, 120px) 0; background: var(--bg-soft); }
.vibes-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 70px);
  align-items: center;
}
.vibes-copy h2 { margin: 12px 0 18px; }
.vibes-copy p { color: var(--text-dim); font-size: 1.1rem; line-height: 1.55; max-width: 460px; }
.vibes-player { width: 100%; }
.vibes-note { font-size: 0.78rem; color: var(--text-dim); opacity: 0.7; margin-top: 12px; text-align: center; }
@media (max-width: 820px) {
  .vibes-inner { grid-template-columns: 1fr; }
  .vibes-copy p { margin: 0 auto; }
  .vibes-copy { text-align: center; }
}

/* Reviews widget slot — under testimonial section */
.reviews-widget-wrap {
  max-width: 1100px;
  margin: clamp(50px, 6vw, 70px) auto 0;
  padding-top: clamp(40px, 5vw, 60px);
  border-top: 1px solid var(--line);
}
.reviews-widget-title {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  text-align: center;
  margin-bottom: 28px;
  color: var(--text-dim);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: 'Manrope', sans-serif;
}
.reviews-widget-slot {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews-widget-placeholder {
  text-align: center;
  padding: 36px;
  color: var(--text-dim);
}
.reviews-widget-placeholder span {
  display: block;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 10px;
}

/* Map section on venues page */
.venues-map-section {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--bg);
}
.venues-map-section h2 { text-align: center; margin-bottom: 14px; }
.venues-map-note {
  text-align: center;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 1rem;
}
.venues-map-frame {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212,165,49,0.5);
  box-shadow: 0 30px 80px -25px rgba(212,165,49,0.25);
  aspect-ratio: 16 / 9;
  background: var(--bg-soft);
}
#venues-map { width: 100%; height: 100%; background: var(--bg-soft); }

/* Custom gold pins for Leaflet */
.venue-pin { background: transparent; border: none; }
.venue-pin-inner {
  display: block;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,165,49,0.25), 0 0 12px rgba(212,165,49,0.65);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.venue-pin--partner .venue-pin-inner {
  background: var(--gold);
  box-shadow:
    0 0 0 3px rgba(212,165,49,0.3),
    0 0 16px rgba(212,165,49,0.8);
}
.venue-pin--request .venue-pin-inner {
  background: transparent;
  border: 2px solid var(--gold);
  box-shadow: 0 0 8px rgba(212,165,49,0.5);
}
.venue-pin:hover .venue-pin-inner { transform: scale(1.4); }

/* Brand-themed Leaflet popups */
.venue-popup-wrap .leaflet-popup-content-wrapper {
  background: var(--bg-elev);
  color: var(--text);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 0;
}
.venue-popup-wrap .leaflet-popup-content { margin: 0; }
.venue-popup-wrap .leaflet-popup-tip { background: var(--bg-elev); border: 1px solid var(--gold); }
.venue-popup { padding: 16px 18px; min-width: 180px; }
.venue-popup-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 10px;
  background: var(--gold);
  color: #000;
}
.venue-popup-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 1.15rem;
  margin: 0 0 4px;
  color: var(--text);
  line-height: 1;
}
.venue-popup-hood {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.venue-popup-cta {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.venue-popup-cta:hover { color: var(--gold-light); }

/* Map legend */
.venues-map-legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-dim);
  flex-wrap: wrap;
}
.venues-map-dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 8px;
}
.venues-map-dot--partner { background: var(--gold); box-shadow: 0 0 8px rgba(212,165,49,0.6); }
.venues-map-dot--request { background: transparent; border: 2px solid var(--gold); }

/* Leaflet controls — tone down to fit brand */
.leaflet-control-attribution {
  background: rgba(0,0,0,0.6) !important;
  color: var(--text-dim) !important;
  font-size: 0.65rem !important;
}
.leaflet-control-attribution a { color: var(--gold) !important; }
.leaflet-bar a {
  background: var(--bg-elev) !important;
  color: var(--gold) !important;
  border-color: var(--line) !important;
}

/* Neighborhoods marquee — horizontal scroll, Chicago loud */
.neighborhoods-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden;
  padding: clamp(20px, 2.5vw, 32px) 0;
  position: relative;
}
.neighborhoods-marquee::before,
.neighborhoods-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(60px, 10vw, 140px);
  z-index: 2;
  pointer-events: none;
}
.neighborhoods-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-soft) 0%, transparent 100%);
}
.neighborhoods-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-soft) 0%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: clamp(20px, 3vw, 38px);
  align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 45s linear infinite;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--text);
  width: max-content;
}
.marquee-track span { transition: color 0.2s ease; }
.marquee-track span:not(.marquee-dot):hover { color: var(--gold); }
.marquee-dot {
  color: var(--gold);
  font-size: 0.7em;
  position: relative;
  top: -0.05em;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* Venue logo marquee — partner logos + text wordmarks scrolling */
.venue-marquee {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: clamp(36px, 5vw, 56px) 0 clamp(40px, 5vw, 60px);
  overflow: hidden;
  position: relative;
}
.venue-marquee-head {
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 32px);
}
.venue-marquee-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--text-dim);
}
.venue-marquee::before,
.venue-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(80px, 12vw, 180px);
  z-index: 2;
  pointer-events: none;
}
.venue-marquee::before { left: 0;  background: linear-gradient(90deg,  var(--bg) 0%, transparent 100%); }
.venue-marquee::after  { right: 0; background: linear-gradient(270deg, var(--bg) 0%, transparent 100%); }
.venue-marquee-track {
  display: flex;
  gap: clamp(36px, 5vw, 60px);
  align-items: center;
  width: max-content;
  animation: venueMarqueeScroll 90s linear infinite;
  padding: 0 30px;
}
.venue-marquee-logo {
  height: clamp(36px, 4vw, 56px);
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: brightness(0) invert(0.92);
  opacity: 0.7;
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}
.venue-marquee-logo--square {
  /* square logos read smaller; bump them up to balance */
  height: clamp(52px, 6vw, 78px);
}
.venue-marquee-logo:hover {
  opacity: 1;
  filter: brightness(0) invert(0.85) sepia(1) hue-rotate(15deg) saturate(2.5);
  transform: scale(1.06);
}
.venue-marquee-text {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--text);
  opacity: 0.75;
  transition: color 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
}
.venue-marquee-text:hover { color: var(--gold); opacity: 1; }
.venue-marquee-star {
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0.55;
  flex-shrink: 0;
}
@keyframes venueMarqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .venue-marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* Testimonial — a deliberate pause. Larger padding, breath. */
.testimonial {
  padding: clamp(120px, 14vw, 180px) 0;
  background:
    radial-gradient(ellipse at top, rgba(212,165,49,0.10), transparent 60%),
    var(--bg);
  text-align: center;
}

/* Three-up quote grid */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.quote {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 40px);
  text-align: left;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.quote:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.quote::before {
  content: '"';
  position: absolute;
  top: -8px; left: 22px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.quote blockquote {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 24px;
  letter-spacing: -0.005em;
  text-transform: none;
}
.quote figcaption {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.quote cite {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.quote-meta {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}
@media (max-width: 900px) {
  .quote-grid { grid-template-columns: 1fr; }
}
.testimonial blockquote {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.3;
}
.testimonial cite {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--text-dim);
  margin-top: 12px;
  font-weight: 500;
}
.logo-row {
  display: flex; gap: 36px; justify-content: center; flex-wrap: wrap;
  margin-top: 60px; padding-top: 40px;
  border-top: 1px solid var(--line);
  align-items: center;
}
.logo-row span { color: var(--text-dim); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; }
.logo-row strong { font-family: 'Big Shoulders Display', sans-serif; font-size: 1rem; color: var(--text-dim); opacity: 0.7; }

/* Cities */
.cities { padding: 80px 24px; }
.city-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.city-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  transition: transform 0.2s, border-color 0.2s;
}
.city-tile:hover { transform: translateY(-4px); border-color: var(--gold); }
.city-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: filter 0.4s ease, transform 0.5s ease;
}
.city-tile:not(.live) .city-img {
  filter: grayscale(0.55) brightness(0.5) contrast(1.05);
}
.city-tile:hover .city-img {
  filter: grayscale(0) brightness(0.85);
  transform: scale(1.06);
}
.city-img[data-city="chicago"]    { background-image: url('../images/cities/chicago.jpg'); }
.city-img[data-city="miami"]      { background-image: url('../images/cities/miami.jpg'); }
.city-img[data-city="vegas"]      { background-image: url('../images/cities/vegas.jpg'); }
.city-img[data-city="la"]         { background-image: url('../images/cities/la.jpg'); }
.city-img[data-city="nyc"]        { background-image: url('../images/cities/nyc.jpg'); }
.city-img[data-city="nashville"]  { background-image: url('../images/cities/nashville.jpg'); }
.city-img[data-city="austin"]     { background-image: url('../images/cities/austin.jpg'); }
.city-img[data-city="scottsdale"] { background-image: url('../images/cities/scottsdale.jpg'); }
.city-img[data-city="sf"]         { background-image: url('../images/cities/sf.jpg'); }
.city-img[data-city="dallas"]     { background-image: url('../images/cities/dallas.jpg'); }
.city-img[data-city="atl"]        { background-image: url('../images/cities/atl.jpg'); }
.city-img[data-city="denver"]     { background-image: url('../images/cities/denver.jpg'); }
.city-name {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  display: flex; align-items: center; justify-content: space-between;
}
.badge {
  font-size: 0.62rem;
  background: rgba(212,175,55,0.15);
  color: var(--gold);
  padding: 3px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.live-badge {
  background: var(--gold);
  color: #000;
  font-weight: 800;
  animation: ctaPulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(212,175,55,0.6);
}

/* Articles */
.articles {
  padding: 100px 0;
  background: var(--bg-soft);
}
.filters {
  display: flex; gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
  transition: 0.15s;
}
.filter:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }
.filter.active { background: var(--grad); border-color: transparent; color: #000; }
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.article {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
}
.article:hover { transform: translateY(-4px); border-color: var(--gold); }
/* Featured article card — gold ring + lift so it reads as the priority event */
.article--featured {
  border-color: rgba(212,165,49,0.55);
  box-shadow: 0 0 0 1px rgba(212,165,49,0.35), 0 18px 40px -22px rgba(212,165,49,0.5);
}
.article-img {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.5s ease;
}
.article-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
}
.article:hover .article-img { transform: scale(1.04); }
.article { overflow: hidden; }

.article-img[data-art="galeria"]   { background-image: url('../images/venues/galeria.png'); }
.article-img[data-art="hideaway"]  { background-image: url('../images/venues/hideaway.webp'); }
.article-img[data-art="goldcoastsocial"] { background-image: url('../images/venues/gold-coast-social.png'); }
.article-img[data-art="icon"]      { background-image: url('../images/venues/icon.png'); }
.article-img[data-art="tunnel"]    { background-image: url('../images/venues/tunnel.png'); }
.article-img[data-art="lakeshore"] { background-image: url('../images/venues/lakeshore-music-festival.png'); }
.article-img[data-art="joy"] {
  background: linear-gradient(135deg, #1a1505 0%, #2a2010 50%, #1a1505 100%);
  display: grid;
  place-items: center;
}
.article-img[data-art="joy"]::before {
  content: 'Joy District';
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--gold);
  z-index: 1;
}
.article-img[data-art="promo"] {
  background: linear-gradient(135deg, #a8861f 0%, #d4af37 30%, #f4d77b 50%, #d4af37 70%, #a8861f 100%);
  background-size: 200% 100%;
  animation: goldShimmer 4s ease-in-out infinite;
  display: grid;
  place-items: center;
}
.article-img[data-art="promo"]::before {
  content: 'BIZZY · 10% OFF';
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #000;
  z-index: 1;
  text-shadow: 0 2px 12px rgba(255,255,255,0.4);
}
.article.featured {
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 30px 70px -25px rgba(212,175,55,0.4);
}
.article-body { padding: 20px; }
.tag {
  display: inline-block;
  font-size: 0.68rem;
  background: rgba(212,175,55,0.12);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  font-weight: 700;
}
.article h3 { margin-bottom: 8px; font-size: 1.1rem; }
.article p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 12px; }
.meta { font-size: 0.78rem; color: var(--text-dim); opacity: 0.7; }
.hidden-article { display: none; }
.hidden-article.shown { display: block; }
.load-more-wrap { text-align: center; margin-top: 40px; }

/* Recap section — copy + phone-framed vertical video */
.recap {
  padding: clamp(80px, 10vw, 130px) 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(212,165,49,0.10), transparent 60%),
    var(--bg);
}
.recap-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.recap-copy h2 { margin: 0 0 20px; }
.recap-copy p {
  color: var(--text-dim);
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 480px;
  margin-bottom: 28px;
}
.recap-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: baseline;
  font-size: 0.9rem;
  color: var(--text-dim);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.recap-meta b {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  color: var(--gold);
  font-size: 1.3rem;
  margin-right: 4px;
}
.recap-sep { color: var(--gold); opacity: 0.6; }

.recap-phone {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(160deg, #2a2010 0%, #0a0805 50%, #2a2010 100%);
  border: 1px solid rgba(212,165,49,0.4);
  position: relative;
  box-shadow:
    0 40px 100px -20px rgba(0,0,0,0.7),
    0 0 0 1px rgba(212,165,49,0.15),
    0 20px 60px -10px rgba(212,165,49,0.25);
  overflow: hidden;
}
.recap-phone::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 5px;
  background: var(--bg);
  border-radius: 5px;
  z-index: 2;
}
.recap-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  background: #000;
}
@media (max-width: 820px) {
  .recap-inner { grid-template-columns: 1fr; text-align: center; }
  .recap-copy p { margin-left: auto; margin-right: auto; }
  .recap-meta { justify-content: center; }
}

/* Recent Nights — masonry gallery from real event photos */
.recent-nights {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--bg-soft);
}
.recent-nights-sub {
  text-align: center;
  color: var(--text-dim);
  max-width: 620px;
  margin: -28px auto 40px;
  font-size: 1rem;
}
.masonry {
  column-count: 4;
  column-gap: 14px;
  max-width: 1300px;
  margin: 0 auto;
}
.masonry-item {
  display: block;
  margin-bottom: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  break-inside: avoid;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease, filter 0.3s ease;
}
.masonry-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.masonry-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -10px rgba(212,165,49,0.35);
}
.masonry-item:hover img {
  transform: scale(1.04);
}
.masonry-item:hover::after { opacity: 1; }
.recent-nights-cta {
  text-align: center;
  margin-top: 36px;
  color: var(--text-dim);
  font-size: 0.95rem;
}
.recent-nights-cta a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid var(--gold);
}
@media (max-width: 1000px) { .masonry { column-count: 3; } }
@media (max-width: 700px)  { .masonry { column-count: 2; } }
@media (max-width: 460px)  { .masonry { column-count: 1; } }

/* Live Social — widget slots for IG + TikTok (graceful placeholder until activated) */
.live-social { padding: clamp(80px, 10vw, 110px) 0; background: var(--bg); }
.live-social-sub {
  text-align: center;
  color: var(--text-dim);
  max-width: 620px;
  margin: -28px auto 40px;
  font-size: 1rem;
}
.live-social-sub a { color: var(--gold); border-bottom: 1px solid var(--gold); text-decoration: none; font-weight: 600; }
.live-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.live-social-slot {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.live-social-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.live-social-platform {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
}
.live-social-handle {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: transform 0.2s ease;
}
.live-social-handle:hover { transform: translateX(3px); }
.live-social-widget {
  min-height: 460px;
  /* Block layout so Elfsight widgets fill the container; placeholder centers itself */
  display: block;
  padding: 0;
}
.live-social-widget > .elfsight-app-237562c6-885a-450e-8713-f09216ae3494,
.live-social-widget > [class^="elfsight-app-"] {
  display: block;
  width: 100%;
}
.live-social-placeholder {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 28px;
  gap: 14px;
  color: var(--text-dim);
}
.live-social-placeholder-icon {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}
.live-social-placeholder p { max-width: 280px; font-size: 0.95rem; }
@media (max-width: 820px) {
  .live-social-grid { grid-template-columns: 1fr; }
  .live-social-widget { min-height: 360px; }
}

/* Find Your Vibe — venue matcher quiz */
.vibe-intro {
  padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 8vw, 100px);
  text-align: center;
  background:
    radial-gradient(ellipse at center top, rgba(212,165,49,0.16), transparent 60%),
    var(--bg);
}
.vibe-intro h1 { font-size: clamp(3rem, 8vw, 6rem); margin: 8px 0 22px; }
.vibe-intro .lede { max-width: 580px; margin: 0 auto 36px; color: var(--text-dim); font-size: 1.15rem; line-height: 1.5; }
.vibe-intro-note { margin-top: 18px; font-size: 0.85rem; color: var(--text-dim); }

.vibe-quiz { padding: clamp(60px, 9vw, 110px) 0; background: var(--bg); min-height: 70vh; }
.vibe-quiz-inner { max-width: 820px; margin: 0 auto; padding: 0 24px; }

.vibe-progress {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: clamp(40px, 6vw, 70px);
}
.vibe-progress-step {
  width: 38px;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  transition: background 0.3s ease;
}
.vibe-progress-step.is-current { background: var(--gold); }
.vibe-progress-step.is-done    { background: rgba(212,165,49,0.45); }

.vibe-step {
  display: none;
  animation: vibeStepIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.vibe-step[data-active] { display: block; }
@keyframes vibeStepIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.vibe-step-num {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
}
.vibe-step h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0 0 36px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.vibe-options {
  display: grid;
  gap: 10px;
}
.vibe-option {
  text-align: left;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease, color 0.2s ease;
}
.vibe-option:hover {
  border-color: var(--gold);
  background: var(--bg-elev);
  transform: translateX(4px);
  color: var(--gold);
}
.vibe-option.is-selected {
  border-color: var(--gold);
  background: rgba(212,165,49,0.12);
  color: var(--gold);
}

.vibe-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.vibe-nav button { background: transparent; }
.vibe-nav button:disabled { opacity: 0.3; cursor: not-allowed; }

.vibe-results {
  padding: clamp(70px, 10vw, 130px) 0;
  background:
    radial-gradient(ellipse at center top, rgba(212,165,49,0.12), transparent 60%),
    var(--bg);
}
.vibe-results-sub {
  text-align: center;
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.vibe-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.vibe-result-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.vibe-result-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -25px rgba(212,165,49,0.4);
}
.vibe-result-rank {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--gold);
  color: #000;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 2px;
}
.vibe-result-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-elev);
}
.vibe-result-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.vibe-result-hood {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--gold);
}
.vibe-result-card h3 { font-size: 1.3rem; margin: 0; letter-spacing: -0.01em; }
.vibe-result-card p { color: var(--text-dim); font-size: 0.92rem; line-height: 1.5; margin: 0; flex: 1; }
.vibe-result-ctas { display: flex; gap: 8px; margin-top: 14px; }
.vibe-result-ctas .btn-primary, .vibe-result-ctas .btn-ghost { padding: 10px 16px; font-size: 0.72rem; flex: 1; }

.vibe-results-cta {
  text-align: center;
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.vibe-results-cta p { color: var(--text-dim); }
.vibe-results-cta a { color: var(--gold); border-bottom: 1px solid var(--gold); text-decoration: none; font-weight: 700; }
@media (max-width: 820px) {
  .vibe-results-grid { grid-template-columns: 1fr; }
}

/* $25 Gift Card popup */
.gift-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.gift-popup.is-open { opacity: 1; pointer-events: auto; }
.gift-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 2, 0.78);
  backdrop-filter: blur(8px);
}
.gift-popup-card {
  position: relative;
  background: linear-gradient(160deg, var(--bg-soft) 0%, #1a1510 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 44px);
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 100px -20px rgba(212,165,49,0.5), 0 0 0 1px rgba(212,165,49,0.2);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gift-popup.is-open .gift-popup-card { transform: translateY(0) scale(1); }
.gift-popup-close {
  position: absolute;
  top: 14px; right: 16px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s ease;
}
.gift-popup-close:hover { color: var(--gold); }
.gift-popup-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
}
.gift-popup-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin: 0 0 16px;
  color: var(--gold);
  text-transform: uppercase;
}
.gift-popup-copy {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 24px;
}
.gift-popup-cta { width: 100%; }
.gift-popup-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 14px;
  letter-spacing: 0.05em;
}

/* DJ detail page */
.dj-detail-hero {
  padding: clamp(70px, 9vw, 110px) 0 clamp(50px, 7vw, 80px);
  background:
    radial-gradient(ellipse at 70% 30%, rgba(212,165,49,0.14), transparent 60%),
    var(--bg);
}
.dj-detail-hero-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(40px, 5vw, 70px);
  align-items: center;
}
.dj-detail-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center top;
  border: 1px solid rgba(212,165,49,0.4);
  box-shadow: 0 30px 80px -25px rgba(212,165,49,0.4);
}
.dj-detail-textmark {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1a1510 0%, #0a0805 50%, #1a1510 100%);
  border: 1px solid rgba(212,165,49,0.5);
  border-radius: var(--radius);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 8vw, 6rem);
  color: var(--gold);
  letter-spacing: -0.02em;
}
.dj-detail-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 18px;
}
.dj-detail-text h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin: 0 0 18px;
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.dj-detail-lede {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.55;
  margin-bottom: 26px;
  max-width: 520px;
}
.dj-detail-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.dj-detail-social {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.dj-detail-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,165,49,0.08);
}
.dj-detail-social--primary {
  background: var(--grad);
  color: #000;
  border-color: transparent;
}
.dj-detail-social--primary:hover { color: #000; background: var(--grad); transform: translateY(-2px); }

.dj-detail-form-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg-soft);
}
.dj-detail-form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 5vw, 70px);
  align-items: start;
}
.dj-detail-form-intro h2 { margin: 0 0 18px; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.dj-detail-form-intro p { color: var(--text-dim); margin-bottom: 24px; line-height: 1.55; }
.dj-detail-form-bullets { list-style: none; padding: 0; margin: 0; }
.dj-detail-form-bullets li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-dim);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
}
.dj-detail-form-bullets li:last-child { border-bottom: none; }
.dj-detail-form-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 19px;
  width: 14px; height: 1px;
  background: var(--gold);
}

.dj-booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
}
.dj-booking-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--gold);
}
.dj-booking-form-wide { grid-column: 1 / -1; }
.dj-booking-form input,
.dj-booking-form select,
.dj-booking-form textarea {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  transition: border-color 0.2s ease;
}
.dj-booking-form input:focus,
.dj-booking-form select:focus,
.dj-booking-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-elev);
}
.dj-booking-form input::placeholder,
.dj-booking-form textarea::placeholder {
  color: var(--text-dim);
  opacity: 0.6;
}
.dj-booking-form button { grid-column: 1 / -1; margin-top: 8px; }
.dj-booking-form-note {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.dj-detail-related { padding: clamp(60px, 7vw, 90px) 0; background: var(--bg); }

@media (max-width: 900px) {
  .dj-detail-hero-inner { grid-template-columns: 1fr; }
  .dj-detail-form-wrap { grid-template-columns: 1fr; }
  .dj-booking-form { grid-template-columns: 1fr; }
}

/* Concierge floating button — fixed bottom-left, SMS/email/WhatsApp launcher */
.concierge-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  background: var(--grad);
  color: #000;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  box-shadow: 0 15px 40px -10px rgba(212,165,49,0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.concierge-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -10px rgba(212,165,49,0.7);
}
.concierge-btn-icon {
  width: 28px; height: 28px;
  background: #000;
  color: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 800;
}
.concierge-btn-label { display: inline; }
@media (max-width: 600px) {
  .concierge-btn { padding: 12px; }
  .concierge-btn-label { display: none; }
}

/* Follow-along social band — two large CTA tiles, IG + TikTok */
.follow-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.follow-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(50px, 8vw, 90px) 24px;
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  border-right: 1px solid var(--line);
}
.follow-band-inner.alt { border-right: none; }
.follow-band-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212,165,49,0.18), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(244,215,123,0.10), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.follow-band-inner:hover::before { opacity: 1; }
.follow-band-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.follow-band-handle {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 5rem);
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.follow-band-inner:hover .follow-band-handle { color: var(--gold); }
.follow-band-cta {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--text-dim);
  position: relative; z-index: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}
.follow-band-inner:hover .follow-band-cta {
  color: var(--gold);
  transform: translateX(4px);
}
@media (max-width: 720px) {
  .follow-band { grid-template-columns: 1fr; }
  .follow-band-inner { border-right: none; border-bottom: 1px solid var(--line); }
  .follow-band-inner.alt { border-bottom: none; }
}

/* Affiliate program band — high-visibility homepage push */
.affiliate-band {
  padding: 96px 0;
  background:
    radial-gradient(ellipse at 12% 18%, rgba(212,165,49,0.20) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-elev) 0%, var(--bg) 100%);
  border-top: 1px solid rgba(212,165,49,0.28);
  border-bottom: 1px solid rgba(212,165,49,0.28);
}
.affiliate-band-inner {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 48px;
  align-items: center;
}
.affiliate-band-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.affiliate-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.04;
  margin: 0 0 18px;
}
.affiliate-band p {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 0 28px;
}
.affiliate-band p strong { color: var(--gold); }
.affiliate-band-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.affiliate-band-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.affiliate-band-stats > div {
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  background: rgba(212,165,49,0.06);
  border: 1px solid rgba(212,165,49,0.22);
  border-radius: var(--radius);
}
.affiliate-band-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.affiliate-band-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  margin-top: 6px;
}
@media (max-width: 768px) {
  .affiliate-band { padding: 64px 0; }
  .affiliate-band-inner { grid-template-columns: 1fr; gap: 32px; }
  .affiliate-band-stats { flex-direction: row; flex-wrap: wrap; }
  .affiliate-band-stats > div { flex: 1; min-width: 140px; }
}

/* Comparison section (used on /discotech-alternative.html) */
.vs-section { padding: clamp(70px, 9vw, 110px) 0; background: var(--bg-soft); }
.vs-grid {
  display: grid;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.vs-row {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1.3fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.vs-row:first-child { border-top: none; }
.vs-claim {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text);
}
.vs-bizzy, .vs-other {
  color: var(--text-dim);
  font-size: 0.98rem;
  line-height: 1.55;
}
.vs-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
  background: var(--gold);
  color: #000;
}
.vs-tag.alt {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--line);
}
@media (max-width: 820px) {
  .vs-row { grid-template-columns: 1fr; gap: 12px; }
}

/* Partners */
.partners { padding: 100px 0; }
.venue-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.venue {
  aspect-ratio: 3 / 2;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid; place-items: center;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dim);
  text-align: center;
  padding: 12px;
  transition: 0.2s;
}
.venue:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--bg-elev);
}

/* Lead-magnet landing page (Bachelorette Playbook) */
.lead-magnet-hero {
  padding: clamp(70px, 9vw, 120px) 0 clamp(60px, 7vw, 100px);
  background:
    radial-gradient(ellipse at 70% 30%, rgba(212,165,49,0.15), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(212,165,49,0.08), transparent 55%),
    var(--bg);
}
.lead-magnet-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 70px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.lead-magnet-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
}
.lead-magnet-copy h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  margin: 0 0 22px;
  letter-spacing: -0.025em;
  line-height: 0.95;
}
.lead-magnet-copy .lede {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 28px;
}
.lead-magnet-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.lead-magnet-bullets li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--text);
  font-size: 1rem;
  border-bottom: 1px solid var(--line);
}
.lead-magnet-bullets li:last-child { border-bottom: none; }
.lead-magnet-bullets li::before {
  content: '';
  position: absolute;
  left: 4px; top: 22px;
  width: 14px; height: 1px;
  background: var(--gold);
}

.lead-magnet-form {
  position: sticky;
  top: 120px;
}
.lead-magnet-form-inner {
  background: var(--bg-soft);
  border: 1px solid rgba(212,165,49,0.5);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 40px);
  box-shadow: 0 30px 80px -25px rgba(212,165,49,0.3);
}
.lead-magnet-form-inner h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 8px;
}
.lead-magnet-form-inner > p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 22px;
}
.lead-magnet-fallback {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lead-magnet-fallback input {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 14px 16px;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lead-magnet-fallback input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-elev);
}
.lead-magnet-fallback input::placeholder { color: var(--text-dim); opacity: 0.7; }
.lead-magnet-fallback button { margin-top: 8px; }
.lead-magnet-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 16px;
  text-align: center;
}
.lead-magnet-note a { color: var(--gold); border-bottom: 1px solid var(--gold); text-decoration: none; }

.lead-magnet-features {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--bg);
}
.lead-magnet-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.lead-magnet-feature {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.lead-magnet-feature:hover { border-color: var(--gold); transform: translateY(-4px); }
.lead-magnet-feature-num {
  position: absolute;
  top: 22px; right: 28px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.lead-magnet-feature h3 { font-size: 1.3rem; margin: 0 0 12px; max-width: 70%; }
.lead-magnet-feature p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.55; margin: 0; }

.lead-magnet-stats { padding: clamp(50px, 6vw, 80px) 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

@media (max-width: 900px) {
  .lead-magnet-hero-inner { grid-template-columns: 1fr; }
  .lead-magnet-form { position: static; }
  .lead-magnet-features-grid { grid-template-columns: 1fr; }
}

/* Article page — venue editorial template */
.article-page-hero {
  position: relative;
  height: clamp(420px, 60vw, 640px);
  overflow: hidden;
  background: var(--bg-soft);
}
.article-page-hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.article-page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,5,0.3) 0%, rgba(10,8,5,0.55) 60%, rgba(10,8,5,0.95) 100%);
  display: flex;
  align-items: flex-end;
}
.article-page-hero-text {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px clamp(40px, 6vw, 70px);
  width: 100%;
}
.article-page-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 18px;
  background: var(--gold);
  color: #000;
}
.article-page-hero-text h1 {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 14px;
  max-width: 24ch;
}
.article-page-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--text-dim);
}
.article-page-meta a { color: var(--gold); border-bottom: 1px solid var(--gold); text-decoration: none; }

.article-page-body {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(280px, 1fr);
  gap: clamp(40px, 5vw, 80px);
  padding: clamp(60px, 8vw, 100px) 24px clamp(80px, 10vw, 120px);
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}
.article-page-content { color: var(--text); }
.article-page-content .article-lede {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 36px;
  font-weight: 500;
}
.article-page-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin: clamp(36px, 4vw, 50px) 0 18px;
  letter-spacing: -0.02em;
}
.article-page-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.article-page-content p strong { color: var(--text); font-weight: 700; }
.article-page-content ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.article-page-content ul li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
}
.article-page-content ul li:last-child { border-bottom: none; }
.article-page-content ul li::before {
  content: '';
  position: absolute;
  left: 4px; top: 21px;
  width: 14px; height: 1px;
  background: var(--gold);
}

.article-page-sidebar {
  position: sticky;
  top: clamp(140px, 16vh, 180px);
  background: var(--bg-soft);
  border: 1px solid rgba(212,165,49,0.4);
  border-radius: var(--radius);
  padding: 28px;
}
.article-page-sidebar-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.article-page-sidebar h3 {
  font-size: 1.5rem;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.article-page-sidebar-address {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.article-page-sidebar-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.article-page-sidebar-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}
.article-page-sidebar-list li:last-child { border-bottom: 1px solid var(--line); }
.article-page-sidebar-list li span:first-child {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  font-weight: 600;
}
.article-page-sidebar-list li span:last-child { color: var(--text); font-weight: 600; }
.article-page-sidebar .btn-primary { width: 100%; margin-bottom: 8px; }
.article-page-sidebar .btn-ghost { width: 100%; }

.article-page-related {
  padding: clamp(60px, 7vw, 90px) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.article-page-related h2 {
  text-align: center;
  margin-bottom: 36px;
}
.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.article-related-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.article-related-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.article-related-card-img {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}
.article-related-card-body { padding: 20px; }
.article-related-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 8px;
}
.article-related-card h3 { font-size: 1.1rem; margin: 0 0 8px; }
.article-related-card p { font-size: 0.88rem; color: var(--text-dim); margin: 0; }

@media (max-width: 900px) {
  .article-page-body { grid-template-columns: 1fr; }
  .article-page-sidebar { position: static; }
  .article-related-grid { grid-template-columns: 1fr; }
}

/* Brand activations stat strip */
.brand-stats { padding: clamp(40px, 5vw, 60px) 0; background: var(--bg-soft); border-top: 1px solid var(--line); }
.brand-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 36px);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.brand-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.brand-stat b {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand-stat span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  font-weight: 600;
}
.brand-section-sub {
  text-align: center;
  color: var(--text-dim);
  max-width: 640px;
  margin: -28px auto 50px;
  font-size: 1rem;
  line-height: 1.55;
}
@media (max-width: 720px) {
  .brand-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Activation cards (6 ways we run for brands) */
.activation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.activation-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.activation-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 30px 70px -25px rgba(212,165,49,0.3);
}
.activation-num {
  position: absolute;
  top: 22px; right: 28px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.activation-card h3 { font-size: 1.3rem; margin: 0; max-width: 80%; }
.activation-card p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.55; margin: 0; flex: 1; }
.activation-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--gold);
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}
@media (max-width: 900px) {
  .activation-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .activation-grid { grid-template-columns: 1fr; }
}

/* Brand categories grid */
.brand-categories { padding: clamp(80px, 10vw, 120px) 0; background: var(--bg); }
.brand-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.brand-category {
  padding: 22px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-size: 1.05rem;
  color: var(--text);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.brand-category:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--bg-elev);
}

/* Past work case study cards */
.past-work { padding: clamp(80px, 10vw, 120px) 0; background: var(--bg-soft); }
.past-work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.past-work-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.past-work-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.past-work-img {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}
.past-work-meta { padding: 28px; }
.past-work-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
  background: rgba(212,165,49,0.12);
  color: var(--gold);
  border: 1px solid rgba(212,165,49,0.3);
}
.past-work-meta h3 { font-size: 1.4rem; margin: 0 0 10px; }
.past-work-meta p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.55; margin-bottom: 16px; }
.past-work-stats {
  font-size: 0.82rem;
  color: var(--text-dim);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: block;
}
.past-work-stats b { color: var(--gold); font-weight: 800; }
@media (max-width: 820px) { .past-work-grid { grid-template-columns: 1fr; } }

/* Brand activations — event photo albums */
.activation-gallery { padding: clamp(80px, 10vw, 110px) 0; background: var(--bg); }
.album { max-width: 1200px; margin: 0 auto clamp(50px, 6vw, 80px); }
.album:last-of-type { margin-bottom: 0; }
.album-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.album-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}
.album-head h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); margin: 0; letter-spacing: -0.01em; }
.album-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  font-weight: 600;
}
.album-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.activation-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.activation-photo {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.activation-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: grayscale(0.2) brightness(0.92);
}
.activation-photo:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -15px rgba(212,165,49,0.5);
}
.activation-photo:hover img {
  transform: scale(1.06);
  filter: grayscale(0) brightness(1);
}
.activation-gallery-note {
  text-align: center;
  margin-top: 36px;
  color: var(--text-dim);
  font-size: 1rem;
}
.activation-gallery-note a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  text-decoration: none;
  font-weight: 700;
}
@media (max-width: 900px) {
  .activation-photo-grid { grid-template-columns: repeat(3, 1fr); }
  .album-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .activation-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .album-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Brand process — reuses .vs-grid styles, just tweaks for this page */
.brand-process { padding: clamp(80px, 10vw, 120px) 0; background: var(--bg); }
.brand-process .vs-row { grid-template-columns: 0.4fr 1.6fr; }

/* DJ roster — photo cards with IG/SoundCloud + book CTA */
.dj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 60px;
}
.dj-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.dj-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -25px rgba(212,165,49,0.35);
}
.dj-card-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 320px; /* fallback for browsers where aspect-ratio collapses inside grid */
  background-size: cover;
  background-position: center top;
  background-color: var(--bg);
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}
.dj-card:hover .dj-card-img { transform: scale(1.04); }

/* On mobile, lock in an explicit height — guarantees the photo box has dimensions */
@media (max-width: 768px) {
  .dj-card-img {
    aspect-ratio: auto;
    height: 360px;
    min-height: 360px;
  }
}
@media (max-width: 480px) {
  .dj-card-img {
    height: 320px;
    min-height: 320px;
  }
}
.dj-card-textmark {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1a1510 0%, #0a0805 50%, #1a1510 100%);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 3.2rem;
  color: var(--gold);
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--line);
}
.dj-card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.dj-card h3 {
  font-size: 1.2rem;
  margin: 0;
  letter-spacing: -0.01em;
}
.dj-card-socials {
  display: flex;
  gap: 8px;
}
.dj-card-socials a {
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.dj-card-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,165,49,0.08);
}
.dj-card-book {
  margin-top: auto;
  text-decoration: none;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--gold);
  transition: transform 0.2s ease;
  display: inline-block;
}
.dj-card:hover .dj-card-book { transform: translateX(4px); }

/* About page */
.about-hero {
  padding: 100px 0 60px;
  text-align: center;
  background:
    radial-gradient(ellipse at center top, rgba(212,175,55,0.15), transparent 60%),
    var(--bg);
}
.about-hero h1 { font-size: clamp(2.4rem, 6.5vw, 5rem); margin: 8px 0 22px; }
.about-hero .lede { max-width: 680px; margin: 0 auto; color: var(--text-dim); font-size: 1.1rem; }

.about-mission { padding: 80px 0; background: var(--bg-soft); }
.about-mission-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.about-mission-grid h2 { margin: 8px 0 0; }
.about-mission-copy p {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 18px;
  line-height: 1.65;
}
.about-mission-copy p:last-child { margin-bottom: 0; }

.founders { padding: 100px 0; }
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.founder-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  align-items: start;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.founder-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 30px 70px -25px rgba(212,175,55,0.35);
}
.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: #000;
  letter-spacing: -0.02em;
  box-shadow: 0 20px 50px -15px rgba(212,175,55,0.55);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
}
.founder-avatar--photo {
  background-color: var(--bg-soft);
  border: 2px solid var(--gold);
}
.founder-avatar--photo .founder-initials--fallback {
  display: none;
}
.founder-card h3 { font-size: 1.4rem; margin: 0 0 6px; }
.founder-role {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 18px;
}
.founder-card p { color: var(--text-dim); font-size: 0.98rem; margin-bottom: 20px; line-height: 1.6; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.founder-tags span {
  font-size: 0.7rem;
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  border: 1px solid rgba(212,175,55,0.25);
}

.services { padding: 100px 0; background: var(--bg-soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 30px 70px -25px rgba(212,175,55,0.3);
}
.service-num {
  position: absolute;
  top: 28px; right: 32px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.service-card h3 { font-size: 1.2rem; margin: 0 0 10px; max-width: 80%; }
.service-card p { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 20px; flex: 1; }
.service-arrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--gold);
  transition: transform 0.2s ease;
}
.service-card:hover .service-arrow { transform: translateX(4px); }

@media (max-width: 900px) {
  .about-mission-grid { grid-template-columns: 1fr; gap: 20px; }
  .founder-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .founder-card { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .founder-avatar { width: 90px; height: 90px; font-size: 1.6rem; }
}

/* Venues page */
.venues-hero {
  padding: 100px 0 50px;
  text-align: center;
  background:
    radial-gradient(ellipse at center top, rgba(212,175,55,0.15), transparent 60%),
    var(--bg);
}
.venues-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin: 8px 0 22px;
}
.venues-hero .lede {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-dim);
  font-size: 1.1rem;
}
.venues-list { padding: 50px 0 120px; }

.venue-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.venue-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: block;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  background: var(--bg-soft);
}
.venue-card-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.venue-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 45%, rgba(0,0,0,0.1) 70%, transparent 100%);
  z-index: 1;
}
.venue-card-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 24px 20px;
  z-index: 2;
}
.venue-card-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 4px;
}
.venue-card-cta {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--gold);
  transition: transform 0.2s ease;
}
.venue-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 30px 70px -20px rgba(212,175,55,0.4);
}
.venue-card:hover .venue-card-img {
  transform: scale(1.08);
}
.venue-card:hover .venue-card-cta {
  transform: translateX(4px);
}

/* No-image fallback card (Joy, Lakeshore) */
.venue-card.no-image {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1505 50%, #0a0a0a 100%);
  border-color: rgba(212,175,55,0.4);
}
.venue-card-textmark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 0.95;
  padding-bottom: 60px;
}

/* Divider between partner grid and request-only venues */
.venues-divider {
  text-align: center;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.venues-divider h2 { margin-bottom: 16px; }
.venues-divider-note {
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.55;
}

/* Request-to-book cards (non-partner venues) — text-only, lighter weight */
.venue-request-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.venue-request-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 130px;
}
.venue-request-card:hover {
  border-color: var(--gold);
  background: var(--bg-soft);
  transform: translateY(-3px);
}
.venue-request-card h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
  margin: 0;
}
.venue-request-hood {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--text-dim);
}
.venue-request-cta {
  margin-top: auto;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--gold);
  transition: transform 0.2s ease;
}
.venue-request-card:hover .venue-request-cta { transform: translateX(4px); }

.venues-cta {
  text-align: center;
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
}
.venues-cta p {
  color: var(--text-dim);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.nav-active {
  color: var(--gold) !important;
  position: relative;
}
.nav-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 900px) {
  .venue-page-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 600px) {
  .venue-page-grid { grid-template-columns: 1fr; }
}

/* Reservation form section */
.reservation {
  padding: 100px 0;
  background: var(--bg-soft);
}
.reservation-callout {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.reservation-callout p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 14px;
  line-height: 1.55;
}
.callout-strong {
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 4px;
  padding: 16px 22px;
  margin-top: 18px;
}
.callout-strong strong {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  display: inline;
}
/* Action cards (Tables / Guest List) */
.action-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .action-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .action-cards { grid-template-columns: 1fr; }
}
.action-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 40px 36px;
  border-radius: 6px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.action-card.primary {
  background: var(--grad);
  color: #000;
  box-shadow: 0 30px 70px -25px rgba(212,175,55,0.55);
}
.action-card.ghost {
  background: var(--bg);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--text);
}
.action-card:hover {
  transform: translateY(-4px);
}
.action-card.primary:hover {
  box-shadow: 0 40px 90px -20px rgba(212,175,55,0.7);
}
.action-card.ghost:hover {
  border-color: var(--gold);
  box-shadow: 0 30px 70px -25px rgba(212,175,55,0.25);
}
.card-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  opacity: 0.75;
}
.action-card h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: 0.01em;
  margin: 0;
}
.action-card.primary h3 { color: #000; }
.action-card p {
  font-size: 0.98rem;
  line-height: 1.5;
  opacity: 0.85;
  margin: 0;
}
.action-card.ghost p { color: var(--text-dim); opacity: 1; }
.card-arrow {
  margin-top: auto;
  padding-top: 18px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.action-card.ghost .card-arrow { color: var(--gold); }
@media (max-width: 720px) {
  .action-cards { grid-template-columns: 1fr; }
  .action-card { padding: 32px 26px; }
}

/* Final CTA section (was app-cta) */
.final-cta {
  padding: 140px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(212,175,55,0.14), transparent 60%),
    var(--bg);
  position: relative;
}
.final-cta::before, .final-cta::after {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 80px; height: 1px;
  background: var(--gold);
}
.final-cta::before { top: 60px; }
.final-cta::after { bottom: 60px; }
.final-cta h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: 0 0 20px;
}
.final-cta p {
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
}
.final-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.site-footer {
  background: #050409;
  border-top: 1px solid var(--line);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 40px 30px;
  margin-bottom: 60px;
}
.footer-grid h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-grid a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dim);
  padding: 5px 0;
  transition: color 0.15s;
}
.footer-grid a:hover { color: var(--text); }
.footer-logo .logo-text { font-size: 1.1rem; }
.footer-tag { color: var(--text-dim); font-size: 0.9rem; margin-top: 12px; max-width: 240px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* Scroll-to-top */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 2px;
  background: var(--grad);
  border: none;
  color: #000;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  z-index: 40;
  box-shadow: 0 10px 30px -10px rgba(212,175,55,0.6);
}
.scroll-top.show { opacity: 1; pointer-events: auto; }

/* Responsive */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(4, 1fr); }
  .venue-grid { grid-template-columns: repeat(4, 1fr); }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  }
@media (max-width: 1024px) {
  /* Header must sit above the open nav panel so logo + hamburger remain tappable */
  .site-header { z-index: 100; }

  .primary-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* dynamic viewport for mobile Safari address bar */
    background: #0a0805;
    flex-direction: column;
    align-items: stretch;
    padding: 160px 20px 140px;
    gap: 0;
    transform: translateY(-100%);
    transition: transform 0.32s cubic-bezier(0.16,1,0.3,1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 90;
    pointer-events: none;
  }
  .primary-nav.open { transform: translateY(0); pointer-events: auto; }
  .primary-nav a {
    font-size: 1.05rem;
    padding: 14px 6px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
  }
  .primary-nav a.nav-cta,
  .primary-nav a.nav-vip {
    margin-top: 12px;
    text-align: center;
    border-bottom: none;
  }
  .primary-nav a.nav-vip {
    border: 1px solid var(--gold);
    border-radius: 999px;
    padding: 12px 16px;
  }

  /* Book dropdown becomes a tap-to-expand accordion on mobile */
  .book-dropdown { width: 100%; border-bottom: 1px solid var(--line); padding-bottom: 4px; }
  .book-trigger {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    text-align: left;
    padding: 14px 6px;
    font-size: 1.05rem;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .book-menu {
    position: static;
    display: none;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 6px;
    margin: 6px 0 10px;
    padding: 6px 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    min-width: 0;
  }
  .book-dropdown.is-open .book-menu { display: flex; flex-direction: column; }
  .book-menu a {
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    font-size: 0.96rem;
  }
  .book-menu a:last-child { border-bottom: none; }
  .book-dropdown.is-open .book-trigger::after { transform: rotate(180deg); }
  .book-dropdown::before { display: none; }

  /* Hide the rarely-used Chicago city dropdown on mobile (still in desktop) */
  .primary-nav > .city-dropdown:not(.book-dropdown) { display: none; }

  .mobile-toggle { display: flex; }
  /* Lock the body when menu is open. position:fixed (with the inline top offset
     set in JS) is the iOS-safe lock — plain overflow:hidden leaks scroll on Safari. */
  body.nav-open {
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
  }
  .city-menu { position: static; display: flex; margin-top: 8px; width: 100%; }
  .split-inner { grid-template-columns: 1fr; }
  .split-inner.reverse { direction: ltr; }
  .features { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .venue-grid { grid-template-columns: repeat(3, 1fr); }
  .article-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 60px 0 80px; }
  .hero-trust { gap: 24px; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
}

/* ============================================================
   New service pages: bar-crawls, corporate-buyouts, bachelor-bachelorette, travel
   ============================================================ */

.section-sub {
  text-align: center;
  max-width: 62ch;
  margin: -32px auto 56px;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: 0.01em;
  margin: 0 0 12px;
  color: var(--text);
}
.contact-form-sub {
  margin: 0 0 28px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ============================================================
   Bar Crawls
   ============================================================ */

.crawl-grid-section { padding: 96px 0 64px; }
.crawl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 24px;
}
.crawl-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s;
}
.crawl-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.crawl-card-img {
  aspect-ratio: 5/3;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}
.crawl-card-body { padding: 28px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.crawl-card-tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.crawl-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  margin: 0;
  line-height: 1;
  letter-spacing: 0.005em;
}
.crawl-card p { color: var(--text-muted); font-size: 0.96rem; line-height: 1.55; margin: 0; }

.crawl-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.crawl-countdown-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6px 4px;
}
.crawl-countdown-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.crawl-countdown-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

.crawl-card-meta { display: flex; flex-direction: column; gap: 6px; font-size: 0.88rem; color: var(--text-muted); }
.crawl-card-meta strong { color: var(--text); font-weight: 600; margin-right: 6px; }
.crawl-card-actions { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.crawl-card-actions .btn-primary,
.crawl-card-actions .btn-ghost { font-size: 0.85rem; padding: 12px 18px; flex: 1; text-align: center; min-width: 120px; }

.crawl-includes { padding: 64px 0 96px; background: var(--bg); }
.crawl-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}
.crawl-include {
  padding: 32px 24px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 0.3s;
}
.crawl-include:hover { border-color: var(--gold); }
.crawl-include-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}
.crawl-include h3 { font-family: var(--font-display); font-size: 1.4rem; margin: 0 0 10px; line-height: 1.1; }
.crawl-include p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.55; margin: 0; }

/* ============================================================
   Corporate Buyouts
   ============================================================ */

.corp-hero {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.corp-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(1.05);
  transform: scale(1.04);
}
.corp-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10,8,5,0.45) 70%);
}
.corp-hero-text { max-width: 760px; }
.corp-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 18px;
}
.corp-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.corp-hero-text .lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--text-muted); line-height: 1.55; max-width: 56ch; margin: 0 0 28px; }
.corp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.corp-strip {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.corp-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.corp-strip-grid > div { display: flex; flex-direction: column; gap: 6px; align-items: center; text-align: center; }
.corp-strip-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.corp-strip-label {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.corp-handle { padding: 96px 0; }
.corp-handle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.corp-handle-card {
  padding: 32px 28px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.corp-handle-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.corp-handle-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 10px;
}
.corp-handle-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin: 0 0 12px; line-height: 1.1; }
.corp-handle-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin: 0; }

.corp-photos { padding: 64px 0 96px; }
.corp-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.corp-photo {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  border: 1px solid var(--line);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), filter 0.5s;
  filter: saturate(0.92);
}
.corp-photo:hover { transform: scale(1.015); filter: saturate(1.05); }

.corp-process { padding: 64px 0 96px; background: var(--bg-elev); }
.corp-process-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: corp-step;
}
.corp-process-list li {
  padding: 28px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.corp-process-num {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.corp-process-list h3 { font-family: var(--font-display); font-size: 1.35rem; margin: 0 0 10px; line-height: 1.1; }
.corp-process-list p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.55; margin: 0; }

/* ============================================================
   Bachelor / Bachelorette
   ============================================================ */

.bach-split { padding: 96px 0 64px; }
.bach-split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.bach-card {
  padding: 40px 36px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bach-card-tag {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: flex-start;
  padding: 6px 12px;
  border: 1px solid var(--gold);
  border-radius: 999px;
}
.bach-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 2.8rem);
  margin: 0;
  line-height: 1;
}
.bach-card > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
.bach-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin: 6px 0 0;
  color: var(--text);
}
.bach-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bach-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.bach-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}
.bach-card .btn-primary,
.bach-card .btn-ghost { margin-top: auto; align-self: flex-start; }
.bach-card .btn-primary { margin-top: 12px; }

.bach-itinerary { padding: 64px 0 96px; background: var(--bg); }
.bach-day {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.bach-day:last-of-type { border-bottom: none; }
.bach-day-label {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--gold);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.bach-day-items { display: flex; flex-direction: column; gap: 12px; }
.bach-day-items > div {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}
.bach-day-items strong {
  color: var(--text);
  font-weight: 600;
  margin-right: 12px;
  display: inline-block;
  min-width: 70px;
  font-variant-numeric: tabular-nums;
}

.bach-perks { padding: 64px 0 96px; background: var(--bg-elev); }
.bach-perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.bach-perk {
  padding: 26px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 0.3s;
}
.bach-perk:hover { border-color: var(--gold); }
.bach-perk h3 { font-family: var(--font-display); font-size: 1.25rem; margin: 0 0 8px; color: var(--gold); }
.bach-perk p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.55; margin: 0; }

/* ============================================================
   Travel
   ============================================================ */

.travel-pillars { padding: 96px 0 64px; }
.travel-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}
.travel-pillar {
  padding: 36px 32px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.travel-pillar:hover { border-color: var(--gold); transform: translateY(-3px); }
.travel-pillar-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.travel-pillar h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  margin: 0;
  line-height: 1;
}
.travel-pillar > p { color: var(--text-muted); font-size: 0.98rem; line-height: 1.6; margin: 0; }
.travel-pillar h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin: 6px 0 0;
}
.travel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.travel-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}
.travel-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}
.travel-list strong { color: var(--text); font-weight: 600; }

.travel-trust { padding: 64px 0 96px; background: var(--bg-elev); }

/* ============================================================
   Responsive (≤900px)
   ============================================================ */

@media (max-width: 900px) {
  .crawl-grid,
  .crawl-includes-grid,
  .corp-handle-grid,
  .corp-photo-grid,
  .bach-split-grid,
  .bach-perks-grid,
  .travel-pillar-grid {
    grid-template-columns: 1fr;
  }
  .corp-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .corp-process-list { grid-template-columns: 1fr; }
  .bach-day { grid-template-columns: 1fr; gap: 12px; }
  .bach-day-label { font-size: 1.8rem; }
}

@media (max-width: 600px) {
  .crawl-countdown { gap: 4px; }
  .crawl-countdown-cell { padding: 4px 2px; }
  .crawl-countdown-num { font-size: 1.5rem; }
  .crawl-countdown-label { font-size: 0.6rem; }
  .corp-hero { min-height: 56vh; }
}

/* ============================================================
   DJ extended network (cuethedj.ai roster) + genres tag
   ============================================================ */

.dj-card-genres {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 4px 0 12px;
  opacity: 0.85;
}

.dj-network-header {
  text-align: center;
  margin: 96px auto 48px;
  max-width: 60ch;
  padding: 0 24px;
}
.dj-network-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid var(--gold);
  border-radius: 999px;
}
.dj-network-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin: 0 0 14px;
  line-height: 1.05;
}
.dj-network-header p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
.dj-network-header a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}
.dj-network-header a:hover { opacity: 0.85; }

.dj-grid--network { margin-top: 8px; }

/* ============================================================
   Rich DJ profile (cuethedj-style layout)
   ============================================================ */

.dj-rich-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--line);
}
.dj-rich-hero-bg {
  position: absolute;
  inset: -40px;
  background-size: cover;
  background-position: center;
  filter: blur(50px) brightness(0.35) saturate(1.1);
  opacity: 0.6;
  transform: scale(1.1);
  z-index: 0;
}
.dj-rich-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,8,5,0.4) 0%, rgba(10,8,5,0.85) 100%);
  z-index: 0;
}
.dj-rich-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: center;
}
.dj-rich-hero-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center top;
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,165,49,0.12);
}
.dj-rich-hero-text { display: flex; flex-direction: column; gap: 18px; }
.dj-rich-availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 8px 14px;
  border: 1px solid #4ade80;
  border-radius: 999px;
  color: #4ade80;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.dj-rich-pulse {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.6);
  animation: dj-rich-pulse 2s infinite;
}
@keyframes dj-rich-pulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.dj-rich-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.4rem);
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.dj-rich-location {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.dj-rich-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.dj-rich-chip {
  padding: 6px 14px;
  background: rgba(212,165,49,0.1);
  border: 1px solid rgba(212,165,49,0.3);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text);
  font-weight: 500;
}
.dj-rich-lede {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0;
  max-width: 60ch;
}
.dj-rich-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.dj-rich-stats {
  background: var(--bg-elev);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.dj-rich-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.dj-rich-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 0 16px;
  border-left: 1px solid var(--line);
}
.dj-rich-stat:first-child { border-left: none; padding-left: 0; }
.dj-rich-stat-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.dj-rich-stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  font-weight: 800;
  line-height: 1;
}

.dj-rich-demo {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--line);
}
.dj-rich-demo-embed {
  margin-top: 32px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elev);
}

.dj-rich-about { padding: 96px 0; }
.dj-rich-about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}
.dj-rich-about-main p {
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.7;
  margin: 0 0 18px;
}
.dj-rich-about-side h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin: 0 0 14px;
}
.dj-rich-socials {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dj-rich-social {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s, padding-left 0.3s cubic-bezier(0.16,1,0.3,1);
}
.dj-rich-social:last-child { border-bottom: 1px solid var(--line); }
.dj-rich-social:hover { color: var(--gold); padding-left: 6px; }
.dj-rich-social-empty {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin: 0;
}
.dj-rich-booking-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dj-rich-booking-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.dj-rich-booking-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 900px) {
  .dj-rich-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .dj-rich-hero-photo { max-width: 280px; }
  .dj-rich-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .dj-rich-stat { border-left: none; padding: 12px 0; border-top: 1px solid var(--line); }
  .dj-rich-stat:first-child { border-top: none; padding-top: 0; }
  .dj-rich-about-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   Floating Spotify mini-widget (bottom-left, pairs with concierge button bottom-right)
   ============================================================ */

.spotify-mini {
  position: fixed;
  bottom: 24px;
  right: 88px;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1), transform 0.5s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.spotify-mini.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.spotify-mini-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #1DB954 0%, #169c46 100%);
  border: none;
  border-radius: 999px;
  color: #0a0805;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(29,185,84,0.35), 0 2px 8px rgba(0,0,0,0.5);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
}
.spotify-mini-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(29,185,84,0.45), 0 2px 8px rgba(0,0,0,0.5);
}
.spotify-mini-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}
.spotify-mini-bars span {
  display: block;
  width: 3px;
  background: #0a0805;
  border-radius: 1px;
  animation: spotifyBars 1s ease-in-out infinite;
}
.spotify-mini-bars span:nth-child(1) { height: 60%; animation-delay: 0s; }
.spotify-mini-bars span:nth-child(2) { height: 100%; animation-delay: 0.15s; }
.spotify-mini-bars span:nth-child(3) { height: 40%; animation-delay: 0.3s; }
.spotify-mini-bars span:nth-child(4) { height: 80%; animation-delay: 0.45s; }
@keyframes spotifyBars {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

.spotify-mini-frame {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 340px;
  max-width: 80vw;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.35s cubic-bezier(0.16,1,0.3,1), transform 0.35s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.spotify-mini.is-expanded .spotify-mini-frame {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.spotify-mini-close {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 2;
  width: 28px;
  height: 28px;
  background: rgba(10,8,5,0.85);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.spotify-mini-close:hover { background: var(--gold); color: #0a0805; }
.spotify-mini-frame iframe { display: block; border: none; background: var(--bg-elev); }

@media (max-width: 520px) {
  .spotify-mini { display: none; }
}

/* Venue card logo chip (small overlay on partner cards in venues.html) */
.venue-card { position: relative; }
.venue-card-logo {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 56px;
  height: 56px;
  background-color: rgba(10, 8, 5, 0.78);
  background-size: 72%;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(212,165,49,0.35);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s;
}
.venue-card:hover .venue-card-logo {
  transform: scale(1.06);
  border-color: var(--gold);
}
@media (max-width: 600px) {
  .venue-card-logo { width: 44px; height: 44px; top: 10px; right: 10px; }
}

/* ============================================================
   Venue cards: logo-first redesign (logo replaces the photo as centerpiece)
   ============================================================ */

/* Override the old small chip layout — we now show the logo as the big square image */
.venue-card .venue-card-logo { display: none; }
.venue-card .venue-card-img  { display: none; }

.venue-card-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(18px) brightness(0.4) saturate(1.05);
  transform: scale(1.15);
  z-index: 0;
}

.venue-card-logo-large {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20% 18% 36%;
  background-color: #18120a;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 40%;
  background-origin: content-box;
  box-shadow:
    inset 0 0 140px -20px rgba(212,165,49,0.18),
    inset 0 0 0 1px rgba(212,165,49,0.08);
  transition: background-color 0.4s ease, box-shadow 0.4s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.venue-card:hover .venue-card-logo-large {
  background-color: rgba(20, 14, 8, 0.55);
  box-shadow:
    inset 0 0 160px -20px rgba(212,165,49,0.28),
    inset 0 0 0 1px rgba(212,165,49,0.35);
}
.venue-card:hover .venue-card-photo {
  filter: blur(8px) brightness(0.7) saturate(1.2);
}

/* Text monogram fallback for venues without an image logo */
.venue-card-logo-large--text {
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12% 14% 32%;
}
.venue-card-logo-large--text span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  letter-spacing: -0.005em;
  line-height: 0.95;
  text-transform: uppercase;
  text-align: center;
  color: var(--gold);
  max-width: 8ch;
}

/* Overlay gradient so the meta text reads cleanly at the bottom */
.venue-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,8,5,0.85) 100%);
  z-index: 2;
}

.venue-card-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.venue-card-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
}
.venue-card-cta {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ============================================================
   Birthdays page — flagship CTA, open-bar wristband packages
   ============================================================ */

.bday-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.bday-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(1.1);
  transform: scale(1.05);
}
.bday-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(212,165,49,0.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,8,5,0.55) 0%, rgba(10,8,5,0.92) 100%);
}
.bday-hero-text {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.bday-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid var(--gold);
  border-radius: 999px;
}
.bday-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.96;
  margin: 0 0 22px;
  letter-spacing: -0.012em;
}
.bday-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 32px;
  max-width: 58ch;
}
.bday-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.bday-packages { padding: 96px 0; }
.bday-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}
.bday-pkg {
  position: relative;
  padding: 38px 32px 36px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.bday-pkg:hover { border-color: var(--gold); transform: translateY(-4px); }
.bday-pkg--feature {
  background: linear-gradient(180deg, rgba(212,165,49,0.06) 0%, var(--bg-elev) 100%);
  border-color: rgba(212,165,49,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,165,49,0.1);
  transform: translateY(-12px);
}
.bday-pkg--feature:hover { transform: translateY(-16px); }
.bday-pkg-tag {
  position: absolute;
  top: -14px;
  left: 32px;
  padding: 6px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.bday-pkg-tag--gold { background: var(--gold); color: #0a0805; border-color: var(--gold); }
.bday-pkg-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.bday-pkg-headline {
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 4px;
}
.bday-pkg-hours {
  font-family: var(--font-display);
  font-size: clamp(4rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.85;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.bday-pkg-hours-unit {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.bday-pkg h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  margin: 0;
  line-height: 1.05;
}
.bday-pkg-blurb { color: var(--text-muted); font-size: 0.96rem; line-height: 1.55; margin: 0; }
.bday-pkg-includes {
  list-style: none;
  padding: 14px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--line);
}
.bday-pkg-includes li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.bday-pkg-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}
.bday-pkg-includes strong { color: var(--text); font-weight: 600; }
.bday-pkg-fineprint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.bday-pkg-fineprint a { color: var(--gold); border-bottom: 1px solid var(--gold); text-decoration: none; }
.bday-pkg .btn-primary { margin-top: auto; }

.bday-venues { padding: 64px 0 96px; background: var(--bg-elev); }
.bday-venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.bday-venue {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.bday-venue:hover { border-color: var(--gold); transform: translateY(-3px); }
.bday-venue-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
  filter: brightness(0.6) saturate(1.05);
}
.bday-venue:hover .bday-venue-img { transform: scale(1.05); filter: brightness(0.7); }
.bday-venue-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,8,5,0.92) 100%);
}
.bday-venue-meta h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 4px;
  color: var(--text);
  letter-spacing: 0.01em;
}
.bday-venue-meta span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.bday-process { padding: 96px 0; }
.bday-process-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.bday-process-list li {
  padding: 28px 22px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.bday-process-num {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  font-weight: 800;
}
.bday-process-list h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 10px;
  line-height: 1.1;
}
.bday-process-list p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.55; margin: 0; }

.bday-faq { padding: 64px 0 96px; background: var(--bg-elev); }
.bday-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  margin-top: 32px;
}
.bday-faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 8px;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.bday-faq-item p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin: 0; }

.bday-final-cta {
  padding: 120px 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(212,165,49,0.12) 0%, transparent 70%),
    var(--bg);
  text-align: center;
}
.bday-final-cta-inner { max-width: 640px; margin: 0 auto; }
.bday-final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0 0 18px;
  line-height: 1;
  letter-spacing: -0.005em;
}
.bday-final-cta > div > p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.55; margin: 0 0 32px; }
.bday-final-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.bday-final-cta-note {
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.bday-final-cta-note strong { color: var(--gold); }

@media (max-width: 900px) {
  .bday-pkg-grid { grid-template-columns: 1fr; }
  .bday-pkg--feature { transform: none; }
  .bday-pkg--feature:hover { transform: translateY(-4px); }
  .bday-venues-grid { grid-template-columns: 1fr; }
  .bday-process-list { grid-template-columns: 1fr; }
  .bday-faq-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Birthday spotlight (homepage flagship CTA)
   ============================================================ */

.bday-spotlight {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(212,165,49,0.10) 0%, transparent 60%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.bday-spotlight-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.bday-spotlight-copy { max-width: 60ch; }
.bday-spotlight-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid var(--gold);
  border-radius: 999px;
}
.bday-spotlight-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  margin: 0 0 22px;
  line-height: 1.02;
  letter-spacing: -0.008em;
}
.bday-spotlight-copy > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 24px;
}
.bday-spotlight-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bday-spotlight-list li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}
.bday-spotlight-list li:last-child { border-bottom: none; }
.bday-spotlight-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--gold);
  font-weight: 700;
}
.bday-spotlight-list strong { color: var(--text); font-weight: 600; }
.bday-spotlight-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.bday-spotlight-note {
  margin-top: 20px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.bday-spotlight-note strong { color: var(--gold); }

.bday-spotlight-art {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.bday-spotlight-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7) saturate(1.1);
  transform: scale(1.02);
}
.bday-spotlight-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 22px 24px;
  background: rgba(10,8,5,0.86);
  border: 1px solid rgba(212,165,49,0.4);
  border-radius: 6px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bday-spotlight-badge-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.bday-spotlight-badge-label {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
}

.btn-bday-hero {
  position: relative;
  background: var(--gold);
  color: #0a0805;
  box-shadow: 0 0 0 0 rgba(212,165,49,0.5);
  animation: btnBdayPulse 2.4s ease-out infinite;
}
@keyframes btnBdayPulse {
  0% { box-shadow: 0 0 0 0 rgba(212,165,49,0.6); }
  70% { box-shadow: 0 0 0 14px rgba(212,165,49,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,165,49,0); }
}

@media (max-width: 900px) {
  .bday-spotlight-inner { grid-template-columns: 1fr; gap: 40px; }
  .bday-spotlight-art { max-width: 420px; margin: 0 auto; }
}

/* Birthday action card variant (sits next to Reserve a Table + Join Guest List) */
.action-card--bday {
  background: var(--bg);
  border: 1px solid rgba(212,165,49,0.4);
  color: var(--text);
  position: relative;
}
.action-card--bday::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(212,165,49,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.action-card--bday:hover {
  border-color: var(--gold);
  box-shadow: 0 30px 70px -25px rgba(212,175,55,0.35);
}
.action-card--bday h3 { color: var(--gold); }
.action-card--bday p { color: var(--text-dim); opacity: 1; }

/* VIP action card variant — sits between Guest List and Birthday Packages */
.action-card--vip {
  background: linear-gradient(180deg, rgba(212,165,49,0.10) 0%, var(--bg) 100%);
  border: 1px solid rgba(212,165,49,0.55);
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.action-card--vip::before {
  content: 'VIP';
  position: absolute;
  top: -12px;
  right: -28px;
  padding: 24px 42px 8px;
  background: var(--gold);
  color: #0a0805;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  transform: rotate(38deg);
  pointer-events: none;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.action-card--vip:hover {
  border-color: var(--gold);
  box-shadow: 0 30px 70px -25px rgba(212,175,55,0.4);
}
.action-card--vip h3 { color: var(--gold); }
.action-card--vip p { color: var(--text-dim); opacity: 1; }

/* VIP nav link — sits between Contact and Plan Your Night */
.nav-vip {
  position: relative;
  padding: 8px 16px !important;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold) !important;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.78rem !important;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
  margin: 0 4px;
}
.nav-vip:hover {
  background: var(--gold);
  color: #0a0805 !important;
}

/* VIP popup variant — same shell as gift popup, accent-flipped */
.gift-popup.vip-popup .gift-popup-card {
  border-color: rgba(212,165,49,0.55);
  background: linear-gradient(180deg, rgba(20,15,8,0.97) 0%, var(--bg) 100%);
}
.gift-popup.vip-popup .gift-popup-eyebrow { color: var(--gold); letter-spacing: 0.24em; }
.gift-popup.vip-popup .gift-popup-title { color: var(--gold); }

/* Love Island popup variant — same shell, summer-coral accent */
.gift-popup.love-island-popup .gift-popup-card {
  border-color: rgba(255,110,138,0.55);
  background: linear-gradient(180deg, rgba(28,12,18,0.97) 0%, var(--bg) 100%);
}
.gift-popup.love-island-popup .gift-popup-eyebrow { color: #ff6e8a; letter-spacing: 0.24em; }
.gift-popup.love-island-popup .gift-popup-title { color: #ff8aa1; }
.gift-popup.love-island-popup .gift-popup-cta {
  background: #ff6e8a;
  border-color: #ff6e8a;
  color: #1c0c12;
}
.gift-popup.love-island-popup .gift-popup-cta:hover {
  background: #ff8aa1;
  border-color: #ff8aa1;
}

/* Venue card vibe tagline (sits between name and CTA) */
.venue-card-vibe {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.4;
  letter-spacing: 0.01em;
  max-width: 28ch;
  opacity: 0.92;
}
.venue-card-meta { gap: 6px; }
/* Pull the meta a bit higher so the vibe fits without crowding the CTA */
.venue-card-meta .venue-card-cta { margin-top: 4px; }

/* Article filter system — hide cards that don't match the active filter */
.article.is-hidden { display: none; }
.articles-sub {
  text-align: center;
  max-width: 60ch;
  margin: -16px auto 32px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
}
.articles-empty {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  margin: 48px auto 0;
}

/* Refine filter chip appearance for the new tab-style row */
.filter {
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.25s;
}
.filter:hover { color: var(--text); border-color: var(--gold); }
.filter.active {
  background: var(--gold);
  color: #0a0805;
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* ============================================================
   Affiliates page
   ============================================================ */

.aff-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  min-height: 64vh;
  display: flex;
  align-items: center;
}
.aff-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.32) saturate(1.05);
  transform: scale(1.04);
}
.aff-hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 70%, rgba(212,165,49,0.16) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,8,5,0.50) 0%, rgba(10,8,5,0.94) 100%);
}
.aff-hero-text { position: relative; z-index: 1; max-width: 820px; }
.aff-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
  padding: 6px 14px; border: 1px solid var(--gold); border-radius: 999px;
}
.aff-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.4vw, 5.4rem);
  line-height: 0.97; margin: 0 0 22px; letter-spacing: -0.012em;
}
.aff-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--text-muted); line-height: 1.55;
  margin: 0 0 32px; max-width: 58ch;
}
.aff-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.aff-strip {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.aff-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.aff-strip-grid > div { display: flex; flex-direction: column; gap: 6px; align-items: center; text-align: center; }
.aff-strip-num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--gold); line-height: 1;
}
.aff-strip-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }

.aff-audience { padding: 96px 0; }
.aff-audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.aff-audience-card {
  padding: 36px 30px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.aff-audience-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.aff-audience-card--feature {
  background: linear-gradient(180deg, rgba(212,165,49,0.06) 0%, var(--bg-elev) 100%);
  border-color: rgba(212,165,49,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  transform: translateY(-12px);
}
.aff-audience-card--feature:hover { transform: translateY(-16px); }
.aff-audience-num {
  font-family: var(--font-display);
  font-size: 0.9rem; letter-spacing: 0.22em;
  color: var(--gold); font-weight: 800;
}
.aff-audience-tag {
  align-self: flex-start;
  padding: 5px 12px;
  border: 1px solid var(--line); border-radius: 999px;
  font-family: var(--font-sans); font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600;
}
.aff-audience-tag--gold { background: var(--gold); color: #0a0805; border-color: var(--gold); }
.aff-audience-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  margin: 0; line-height: 1.05;
}
.aff-audience-card > p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.aff-audience-list {
  list-style: none; padding: 14px 0 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--line);
}
.aff-audience-list li {
  position: relative; padding-left: 20px;
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.5;
}
.aff-audience-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 700; }

.aff-payouts { padding: 64px 0 96px; background: var(--bg-elev); }
.aff-payout-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 32px; }
.aff-payout {
  padding: 28px 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.aff-payout-step {
  font-family: var(--font-sans); font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 12px;
}
.aff-payout h3 { font-family: var(--font-display); font-size: 1.25rem; margin: 0 0 10px; line-height: 1.1; }
.aff-payout p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.55; margin: 0; }

.aff-example { padding: 96px 0; }
.aff-example-card {
  max-width: 800px; margin: 32px auto 0;
  padding: 36px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.aff-example-table { width: 100%; border-collapse: collapse; }
.aff-example-table th, .aff-example-table td {
  padding: 14px 12px; text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.aff-example-table th {
  font-family: var(--font-sans); font-size: 0.74rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.aff-example-table tbody td { color: var(--text-muted); }
.aff-example-table tbody td:nth-child(2),
.aff-example-table tbody td:nth-child(3) { text-align: right; font-variant-numeric: tabular-nums; }
.aff-example-table th:nth-child(2),
.aff-example-table th:nth-child(3) { text-align: right; }
.aff-example-table tfoot td {
  padding-top: 18px;
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--text); border-bottom: none;
}
.aff-example-table tfoot td:nth-child(2),
.aff-example-table tfoot td:nth-child(3) { text-align: right; }
.aff-example-table tfoot strong { color: var(--gold); }
.aff-example-footnote {
  margin-top: 20px;
  font-size: 0.8rem; color: var(--text-muted); font-style: italic;
}

.aff-process { padding: 64px 0 96px; background: var(--bg-elev); }
.aff-process-list {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.aff-process-list li {
  padding: 28px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.aff-process-num {
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 0.2em;
  color: var(--gold); display: block; margin-bottom: 14px;
}
.aff-process-list h3 { font-family: var(--font-display); font-size: 1.25rem; margin: 0 0 10px; line-height: 1.1; }
.aff-process-list p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.55; margin: 0; }

.aff-apply { padding: 96px 0; }
.aff-apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.aff-apply-side h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  margin: 0 0 16px;
}
.aff-apply-side > p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; margin: 0 0 20px; }
.aff-apply-bullets {
  list-style: none; padding: 0; margin: 0 0 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.aff-apply-bullets li {
  position: relative; padding-left: 20px;
  color: var(--text-muted); font-size: 0.95rem;
}
.aff-apply-bullets li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 700; }
.aff-apply-contact { font-size: 0.92rem; color: var(--text-muted); }
.aff-apply-contact a { color: var(--gold); border-bottom: 1px solid var(--gold); text-decoration: none; }

.aff-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 36px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.aff-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--font-sans); font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.aff-form input,
.aff-form select,
.aff-form textarea {
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--font-sans); font-size: 0.95rem;
  letter-spacing: normal; text-transform: none;
  transition: border-color 0.2s;
}
.aff-form input:focus,
.aff-form select:focus,
.aff-form textarea:focus { outline: none; border-color: var(--gold); }
.aff-form textarea { resize: vertical; min-height: 80px; }
.aff-form-wide { grid-column: span 2; }
.aff-form button[type="submit"] { grid-column: span 2; justify-self: start; }
.aff-form-note { grid-column: span 2; font-size: 0.78rem; color: var(--text-muted); margin: 0; }

.aff-faq { padding: 64px 0 96px; background: var(--bg-elev); }
.aff-faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 40px; margin-top: 32px; }
.aff-faq-item h3 { font-family: var(--font-display); font-size: 1.15rem; margin: 0 0 8px; color: var(--gold); }
.aff-faq-item p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.6; margin: 0; }

.aff-final-cta {
  padding: 120px 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,165,49,0.12) 0%, transparent 70%), var(--bg);
  text-align: center;
}
.aff-final-cta-inner { max-width: 640px; margin: 0 auto; }
.aff-final-cta h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 4.8vw, 3.8rem); margin: 0 0 16px; line-height: 1; }
.aff-final-cta > div > p { color: var(--text-muted); font-size: 1.05rem; margin: 0 0 28px; }
.aff-final-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 900px) {
  .aff-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .aff-audience-grid { grid-template-columns: 1fr; }
  .aff-audience-card--feature { transform: none; }
  .aff-audience-card--feature:hover { transform: translateY(-4px); }
  .aff-payout-grid { grid-template-columns: 1fr; }
  .aff-process-list { grid-template-columns: 1fr; }
  .aff-apply-grid { grid-template-columns: 1fr; gap: 32px; }
  .aff-form { grid-template-columns: 1fr; }
  .aff-form-wide,
  .aff-form button[type="submit"],
  .aff-form-note { grid-column: span 1; }
  .aff-faq-grid { grid-template-columns: 1fr; }
  .aff-example-card { padding: 22px; }
  .aff-example-table th, .aff-example-table td { padding: 10px 6px; font-size: 0.85rem; }
}

/* ============================================================
   Highlights collapse — show 6 cards by default, expand for more
   ============================================================ */
.article-grid.is-collapsed .article.is-overflow { display: none; }
.articles-more-wrap { display: flex; justify-content: center; margin-top: 36px; }
.articles-more-btn {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 12px 28px;
}

/* ============================================================
   Concierge chatbot UI
   ============================================================ */
.concierge-body { background: var(--bg); }

.concierge-main {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 64px;
  background:
    radial-gradient(ellipse at 50% 10%, rgba(212,165,49,0.08) 0%, transparent 60%),
    var(--bg);
}

.concierge-shell {
  width: 100%;
  max-width: 720px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  height: calc(100vh - 220px);
  min-height: 600px;
  max-height: 820px;
}

.concierge-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: linear-gradient(180deg, rgba(212,165,49,0.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--line);
}
.concierge-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #0a0805;
  border: 1px solid rgba(212,165,49,0.4);
  display: grid; place-items: center;
  flex: 0 0 44px;
}
.concierge-avatar img { width: 32px; height: 32px; }
.concierge-head-text { flex: 1; }
.concierge-head-text h1 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 2px;
  letter-spacing: 0.02em;
}
.concierge-head-text p {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  display: flex; align-items: center; gap: 8px;
}
.concierge-status-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.6);
  animation: conciergePulse 2s infinite;
}
@keyframes conciergePulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
  70% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.concierge-restart {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.concierge-restart:hover { border-color: var(--gold); color: var(--gold); }

.concierge-stream {
  flex: 1;
  overflow-y: auto;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-behavior: smooth;
}
.concierge-stream::-webkit-scrollbar { width: 6px; }
.concierge-stream::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.concierge-stream::-webkit-scrollbar-track { background: transparent; }

.msg {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s cubic-bezier(0.16,1,0.3,1), transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.msg.in { opacity: 1; transform: translateY(0); }

.msg-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #0a0805;
  border: 1px solid rgba(212,165,49,0.3);
  display: grid; place-items: center;
  flex: 0 0 32px;
}
.msg-avatar img { width: 22px; height: 22px; }

.msg-body {
  max-width: 78%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.5;
}

.msg-user { justify-content: flex-end; }
.msg-user .msg-body {
  background: var(--gold);
  color: #0a0805;
  border-color: var(--gold);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 4px;
  font-weight: 600;
}

.msg-typing .msg-body {
  display: inline-flex;
  gap: 4px;
  padding: 14px 18px;
}
.msg-typing .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: conciergeTypeBounce 1.2s ease-in-out infinite;
}
.msg-typing .dot:nth-child(2) { animation-delay: 0.18s; }
.msg-typing .dot:nth-child(3) { animation-delay: 0.36s; }
@keyframes conciergeTypeBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.6; }
  40% { transform: translateY(-4px); opacity: 1; }
}

.msg-results .msg-body {
  max-width: 100%;
  padding: 4px;
  background: transparent;
  border: none;
}
.msg-results-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Inline links inside concierge bot bubbles (AI hand-off, email, contact) */
.concierge-inline-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.concierge-inline-link:hover { color: var(--text); }

.concierge-result-card {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.25s, transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.concierge-result-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.concierge-result-img {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}
.concierge-result-rank {
  position: absolute;
  top: 8px; right: 12px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  color: var(--gold);
}
.concierge-result-meta { display: flex; flex-direction: column; gap: 4px; }
.concierge-result-hood {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.concierge-result-meta h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.05;
}
.concierge-result-meta p { color: var(--text-muted); font-size: 0.84rem; line-height: 1.4; margin: 2px 0 8px; }
.concierge-result-cta { display: flex; gap: 8px; flex-wrap: wrap; }
.concierge-result-cta .btn-primary,
.concierge-result-cta .btn-ghost { padding: 7px 12px; font-size: 0.74rem; letter-spacing: 0.14em; }

.concierge-input-bar {
  border-top: 1px solid var(--line);
  padding: 14px 18px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.18) 100%);
}
.concierge-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s, transform 0.35s;
}
.concierge-chips.chips-in { opacity: 1; transform: translateY(0); }
.concierge-chips:empty { margin-bottom: 0; }
.concierge-chip {
  padding: 9px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.concierge-chip:hover {
  background: var(--gold);
  color: #0a0805;
  border-color: var(--gold);
  transform: translateY(-1px);
}

.concierge-typer {
  display: flex;
  gap: 10px;
  align-items: center;
}
.concierge-typer input {
  flex: 1;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  transition: border-color 0.2s;
}
.concierge-typer input:focus { outline: none; border-color: var(--gold); }
.concierge-typer input::placeholder { color: var(--text-muted); }
.concierge-send {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #0a0805;
  border: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  display: grid; place-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.concierge-send:hover { transform: scale(1.05); box-shadow: 0 6px 16px rgba(212,165,49,0.4); }

@media (max-width: 600px) {
  .concierge-shell { height: calc(100vh - 180px); min-height: 500px; border-radius: 0; }
  .concierge-result-card { grid-template-columns: 84px 1fr; gap: 12px; padding: 10px; }
  .msg-body { font-size: 0.92rem; }
}

/* ============================================================
   Native social feed grid (replaces Elfsight IG/TikTok widgets)
   ============================================================ */
.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.social-feed-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s;
  filter: saturate(1.02);
}
.social-feed-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,8,5,0.55) 100%);
  opacity: 0; transition: opacity 0.3s;
}
.social-feed-tile:hover { transform: translateY(-4px) scale(1.02); border-color: var(--gold); }
.social-feed-tile:hover::after { opacity: 1; }
.social-feed-badge {
  position: absolute;
  top: 8px; right: 8px;
  z-index: 1;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  background: rgba(10,8,5,0.78);
  border: 1px solid rgba(212,165,49,0.4);
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--gold);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.social-feed-badge--tt { color: #fff; }
.social-feed-cta {
  display: flex; gap: 14px; justify-content: center;
  margin-top: 28px; flex-wrap: wrap;
}
@media (max-width: 900px) {
  .social-feed-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .social-feed-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Footer email capture
   ============================================================ */
.footer-signup {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
  margin-bottom: 0;
}
.footer-signup-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-signup-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin: 0 0 4px;
  letter-spacing: 0.01em;
}
.footer-signup-copy p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }
.footer-signup-form {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 280px;
  max-width: 460px;
}
.footer-signup-form input {
  flex: 1;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.footer-signup-form input:focus { outline: none; border-color: var(--gold); }
.footer-signup-form button { white-space: nowrap; }
@media (max-width: 700px) {
  .footer-signup-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .footer-signup-form { max-width: none; }
}

/* ============================================================
   Sticky mobile CTA bar (mobile only)
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10,8,5,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  gap: 10px;
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 13px 8px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}
.mobile-cta-primary { background: var(--gold); color: #0a0805; }
.mobile-cta-ghost { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  /* lift the floating buttons so they don't sit under the bar */
  .concierge-btn { bottom: 78px; }
  .scroll-top { bottom: 78px; }
  .spotify-mini { bottom: 78px; }
}

/* ============================================================
   404 page
   ============================================================ */
.notfound {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(212,165,49,0.10) 0%, transparent 60%),
    var(--bg);
}
.notfound-inner { max-width: 540px; }
.notfound-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 900;
  line-height: 0.85;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin: 0;
}
.notfound h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 18px 0 14px;
}
.notfound p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.55; margin: 0 0 28px; }
.notfound-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Events index page
   ============================================================ */
.events-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 80px;
  min-height: 56vh;
  display: flex;
  align-items: center;
}
.events-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.32) saturate(1.05);
  transform: scale(1.04);
}
.events-hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(212,165,49,0.16) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,8,5,0.5) 0%, rgba(10,8,5,0.94) 100%);
}
.events-hero-text { position: relative; z-index: 1; max-width: 760px; }
.events-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.4vw, 5.4rem);
  line-height: 0.97; margin: 0 0 22px; letter-spacing: -0.012em;
}
.events-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--text-muted); line-height: 1.55;
  margin: 0 0 32px; max-width: 56ch;
}
.events-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.events-now { padding: 96px 0 64px; }
.events-now-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.event-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  padding: 28px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.event-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.event-card--featured {
  background: linear-gradient(180deg, rgba(212,165,49,0.07) 0%, var(--bg-elev) 100%);
  border-color: rgba(212,165,49,0.4);
}
.event-card-date {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 4px;
  align-self: start;
}
.event-card-day {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
}
.event-card-month {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 700;
}
.event-card-body { display: flex; flex-direction: column; gap: 12px; }
.event-card-tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.event-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  margin: 0; line-height: 1.05;
}
.event-card p { color: var(--text-muted); font-size: 0.96rem; line-height: 1.55; margin: 0; }
.event-card-meta { display: flex; flex-direction: column; gap: 4px; padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.event-card-meta span { font-size: 0.88rem; color: var(--text-muted); }
.event-card-meta strong { color: var(--text); font-weight: 600; margin-right: 6px; }
.event-card-cta { display: flex; gap: 10px; flex-wrap: wrap; }

.events-now-note { text-align: center; margin-top: 32px; color: var(--text-muted); font-size: 0.95rem; }
.events-now-note a { color: var(--gold); border-bottom: 1px solid var(--gold); text-decoration: none; }

.events-flagship { padding: 64px 0 96px; background: var(--bg-elev); }
.events-flagship-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.event-flagship {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.event-flagship:hover { border-color: var(--gold); transform: translateY(-2px); }
.event-flagship-img {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.event-flagship-meta { display: flex; flex-direction: column; gap: 6px; }
.event-flagship-tag {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.event-flagship-meta h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0; line-height: 1.1;
  color: var(--text);
}
.event-flagship-meta p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.45; margin: 0; }
.event-flagship-cta {
  margin-top: auto;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.events-past { padding: 64px 0 96px; }
.events-past-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.events-past-card {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  border-radius: 6px;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 20px;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s;
}
.events-past-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,8,5,0.92) 100%);
}
.events-past-card span {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: 0.02em;
}
.events-past-card:hover { transform: translateY(-3px); border-color: var(--gold); }

.events-final {
  padding: 110px 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,165,49,0.10) 0%, transparent 70%), var(--bg);
  text-align: center;
}
.events-final-inner { max-width: 600px; margin: 0 auto; }
.events-final h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 14px; line-height: 1; }
.events-final > div > p { color: var(--text-muted); font-size: 1rem; margin: 0 0 28px; }

@media (max-width: 900px) {
  .events-now-grid,
  .events-flagship-grid { grid-template-columns: 1fr; }
  .event-flagship { grid-template-columns: 110px 1fr; gap: 14px; padding: 14px; }
  .events-past-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .event-card { grid-template-columns: 80px 1fr; gap: 14px; padding: 18px; }
  .event-card-day { font-size: 2rem; }
}

/* Mobile hamburger — keep it above the open nav, animate into an X */
@media (max-width: 1024px) {
  .mobile-toggle {
    position: relative;
    z-index: 80;
    width: 38px; height: 38px;
    justify-content: center;
  }
  .mobile-toggle span {
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.2s;
    transform-origin: center;
  }
  /* When nav is open, morph the three bars into an X */
  body.nav-open .mobile-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .mobile-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .mobile-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* Caret on the Book trigger that flips when expanded */
@media (max-width: 1024px) {
  .book-trigger::after {
    content: '▾';
    margin-left: 10px;
    transition: transform 0.25s ease;
    color: var(--gold);
    font-size: 0.85em;
  }
}

/* Mobile nav scroll feel — visible scrollbar + subtle edge fades */
@media (max-width: 1024px) {
  .primary-nav {
    scrollbar-width: thin;
    scrollbar-color: rgba(212,165,49,0.4) transparent;
    /* Keep the scroll contained to the panel — no chaining to the body behind it,
       which was a big part of the "glitchy scroll" feel. (Dropped the edge mask:
       masking a fixed scroll container forces repaints on every frame in iOS
       Safari, which made scrolling and closing stutter.) */
    overscroll-behavior: contain;
  }
  .primary-nav::-webkit-scrollbar { width: 4px; }
  .primary-nav::-webkit-scrollbar-track { background: transparent; }
  .primary-nav::-webkit-scrollbar-thumb {
    background: rgba(212,165,49,0.45);
    border-radius: 4px;
  }
  .primary-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(212,165,49,0.7);
  }
}

/* Bottom "Close menu" button inside the mobile nav panel */
@media (max-width: 1024px) {
  .nav-close-bottom {
    margin: 24px auto 0;
    padding: 16px 28px;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 999px;
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    align-self: center;
    width: auto;
    min-width: 200px;
    transition: background 0.2s, color 0.2s;
  }
  .nav-close-bottom:hover,
  .nav-close-bottom:active {
    background: var(--gold);
    color: #0a0805;
  }
}
@media (min-width: 1025px) {
  .nav-close-bottom { display: none; }
}

/* Make the hamburger-to-X morph more prominent + gold accent when open */
@media (max-width: 1024px) {
  body.nav-open .mobile-toggle span {
    background: var(--gold);
    height: 3px;
  }
  body.nav-open .mobile-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .mobile-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .mobile-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============================================================
   Mobile header — compact, one-line promo, BOOK pill + hamburger
   ============================================================ */
@media (max-width: 1024px) {
  /* Promo bar fits on one line — shrink type, tighten letter-spacing */
  .promo-bar {
    padding: 9px 14px;
    font-size: 0.66rem;
    letter-spacing: 0.10em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .promo-text strong {
    padding: 2px 7px;
    margin: 0 3px;
    letter-spacing: 0.12em;
  }
  .promo-text-link { margin-left: 2px; padding-bottom: 0; }

  /* Compact header — was 108px, now 64px */
  .site-header { top: 36px; }
  .header-inner {
    height: 64px;
    padding: 0 16px;
    gap: 10px;
  }
  .logo-img { width: 44px; height: 44px; }

  /* Mobile BOOK pill — injected by JS, sits between logo and hamburger */
  .mobile-book {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    background: var(--gold);
    color: #0a0805;
    border: none;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    margin-left: auto;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px -4px rgba(212,165,49,0.5);
  }
  .mobile-book:hover,
  .mobile-book:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px -4px rgba(212,165,49,0.7);
  }
  .mobile-toggle { margin-left: 4px; }

  /* Adjust nav panel padding-top for the new compact header (36 promo + 64 header) */
  .primary-nav {
    padding-top: 120px;
  }
}

/* On extra-small phones, drop the secondary promo phrase to keep one line */
@media (max-width: 420px) {
  .promo-bar {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    padding: 8px 12px;
  }
  .mobile-book {
    padding: 8px 12px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }
}

/* Hide the mobile BOOK button on desktop */
@media (min-width: 1025px) {
  .mobile-book { display: none; }
}
