/* Drop — trydropapp.com shared stylesheet.
   ========================================================================
   PRISM foundation tokens: copied VERBATIM from
   /Users/aryashinde/Developer/Drop/drop-design/foundations/tokens.css
   (the app theme is the source of truth; do not edit values here to diverge).
   Site-layer tokens + components follow the token block.
   ======================================================================== */

/* ===== BEGIN verbatim Prism token block ===== */
:root {
  /* ===== Primitives (primitives.ts — raw palette) ===== */
  --ink:         #0B0D12;
  --surface:     #14161D;
  --surface-alt: #1C1F28;
  --surface-hi:  #262A35;
  --brand-cyan:    #4DE2FF;
  --brand-magenta: #E24DFF;
  --brand-lime:    #B6FF6A;
  --chrome:      #C9D2DF;
  --gold:        #FFCB3D;   /* star ratings, presale-live */
  --danger:      #FF5C72;
  --white:       #FFFFFF;
  --text-dim:    #C4CCD8;
  --text-mute:   #7C8597;

  /* ===== Gradients (primitives.gradientStops) ===== */
  --grad-glow:   linear-gradient(120deg, #4DE2FF 0%, #E24DFF 52%, #B6FF6A 100%); /* iridescent CTA */
  --grad-brand:  linear-gradient(120deg, #E24DFF, #4DE2FF);
  --grad-cool:   linear-gradient(120deg, #4DE2FF, #B6FF6A);
  --grad-chrome: linear-gradient(120deg, #C9D2DF, #8A93A5, #EDF2F8);
  --scrim:       linear-gradient(180deg, transparent, rgba(11,13,18,0.25) 40%, rgba(11,13,18,0.92));

  /* ===== Semantic roles (semantic.ts — named by JOB) ===== */
  --bg:             var(--ink);
  --text:           var(--white);
  --text-secondary: var(--text-dim);
  --text-muted:     var(--text-mute);
  --text-on-brand:  var(--ink);            /* ink text on bright/iridescent fills */
  --accent:         var(--brand-cyan);     /* everyday interactive */

  /* status — RSVP / attendance (each its own role; do not collapse onto brand) */
  --going:      var(--brand-magenta);
  --interested: var(--brand-cyan);
  --attended:   var(--brand-lime);

  /* lines */
  --border:        rgba(255,255,255,0.10);
  --border-strong: rgba(255,255,255,0.16);

  /* glass */
  --glass:        rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.16);
  --glass-dark:   rgba(11,13,18,0.55);

  /* social wedge — the "N friends going" chip (cyan-tinted) */
  --social-glass:        rgba(77,226,255,0.14);
  --social-glass-border: rgba(77,226,255,0.28);

  /* ===== Type ===== */
  --font-display: 'Space Grotesk', system-ui, sans-serif;  /* SpaceGrotesk-Bold/Medium */
  --font-body:    'Sora', system-ui, sans-serif;           /* Sora-Regular/Medium */
  --fs-xs: 12px; --fs-sm: 14px; --fs-md: 16px; --fs-lg: 18px;
  --fs-xl: 22px; --fs-xxl: 28px; --fs-xxxl: 34px; --fs-display: 40px;
  --tr-tight: -0.8px; --tr-snug: -0.3px; --tr-wide: 1.2px; --tr-wider: 2px;
  /* line-height + font-weight tokens (mirrors app theme usage) */
  --lh-tight: 1.15; --lh-base: 1.4; --lh-loose: 1.6;
  --fw-regular: 400; --fw-medium: 600; --fw-bold: 700;

  /* ===== Spacing (primitives.spacing) ===== */
  /* ponytail: --sp-md = 12px fits 4pt grid (3×4); not 8pt-grid. Intentional — mirrors app primitives.spacing.md. */
  --sp-xs: 4px; --sp-sm: 8px; --sp-md: 12px; --sp-lg: 16px; --sp-xl: 24px; --sp-xxl: 32px; --sp-xxxl: 48px;

  /* ===== Radius (primitives.radius) ===== */
  --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-pill: 999px;

  /* ===== Elevation ===== */
  --shadow-card: 0 8px 16px rgba(0,0,0,0.45);
  --shadow-glow: 0 6px 18px rgba(226,77,255,0.45);
  --overlay-shadow: 0 24px 48px rgba(0,0,0,0.72); /* modal/sheet backdrop lift */

  /* ===== Motion (primitives.motion) ===== */
  --dur-fast: 180ms; --dur-base: 260ms; --dur-slow: 420ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
/* ===== END verbatim Prism token block ===== */

/* ===== Site-layer tokens (additions allowed by spec) ===== */
:root {
  --wrap: 1240px;          /* wider than old landing — discovery grids need it */
  --wrap-narrow: 760px;    /* legal/about prose */
  --nav-h: 68px;
}

/* ========================================================================
   Base / reset
   ======================================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: var(--lh-loose);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Normal document scroll — no overflow:hidden, no app tab bars. */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: var(--wrap-narrow); }

/* Screen-reader-only + skip link */
.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;
}
.skip-link {
  position: absolute; left: 50%; top: 12px; z-index: 200;
  transform: translateX(-50%) translateY(-140%);
  padding: 10px 20px; border-radius: var(--r-pill);
  background: var(--surface-alt); color: var(--text);
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  border: 1px solid var(--border-strong); transition: transform var(--dur-fast) var(--ease);
}
.skip-link:focus-visible { transform: translateX(-50%) translateY(0); }

/* Global focus affordance (shape-following) */
:focus-visible { outline: 2px solid var(--brand-cyan); outline-offset: 3px; }

/* ========================================================================
   Type helpers
   ======================================================================== */
.eyebrow {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-secondary);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand-cyan); box-shadow: 0 0 12px var(--brand-cyan);
}
.grad-word {
  background: var(--grad-glow); -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.section-head { max-width: 62ch; margin-bottom: clamp(28px, 4vw, 44px); }
.section-head h2, .sec-h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px); line-height: 1.06;
  letter-spacing: -0.02em; margin: 12px 0 0;
}
.section-head p { color: var(--text-secondary); margin: 14px 0 0; max-width: 54ch; }
.section-head--row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.link-more {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--brand-cyan); white-space: nowrap; padding: 6px 2px;
}
.link-more:hover, .link-more:focus-visible { text-decoration: underline; text-underline-offset: 3px; }

/* ========================================================================
   Section rhythm.  NOTE (spec's specificity warning): keep .section a low-
   specificity single class; never target it with an element-qualified rule
   that a plain .section override can't beat. Page-specific spacing uses
   modifier classes (.section--flush etc.), never element selectors.
   ======================================================================== */
.section { padding-block: clamp(56px, 9vw, 104px); }
.section--flush-top { padding-top: 0; }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }

/* ========================================================================
   Buttons
   ======================================================================== */
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: var(--r-pill);
  border: 1px solid transparent; white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease), background var(--dur-base) var(--ease);
}
.btn-primary {
  background: var(--grad-glow); color: var(--text-on-brand);
  box-shadow: 0 6px 24px rgba(226,77,255,0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 34px rgba(77,226,255,0.40); }
.btn-primary:active { transform: translateY(0); opacity: 0.9; }
.btn-ghost {
  background: var(--glass); color: var(--text); border-color: var(--glass-border);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--text); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0); opacity: 0.9; }
.btn-ghost[disabled], .btn-disabled {
  opacity: 0.5; cursor: not-allowed; pointer-events: none;
}
.btn-block { width: 100%; }

/* ========================================================================
   Header / nav
   ======================================================================== */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: var(--glass-dark);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 24px;
  min-height: var(--nav-h);
  display: flex; align-items: center; gap: 18px;
}
.wordmark {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  letter-spacing: 0.01em; display: inline-flex; align-items: baseline; gap: 2px;
  background: var(--grad-chrome); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; flex: 0 0 auto;
}
.wordmark .caret {
  -webkit-text-fill-color: var(--brand-magenta); color: var(--brand-magenta);
  font-size: 0.7em; transform: translateY(-1px);
}

/* Location button + popover */
.loc-wrap { position: relative; flex: 0 0 auto; }
.loc-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 12px; border-radius: var(--r-pill);
  background: var(--glass); border: 1px solid var(--border);
  color: var(--text); font-size: 14px; font-weight: 500;
  transition: border-color var(--dur-base) var(--ease);
}
.loc-btn:hover { border-color: var(--border-strong); }
.loc-btn .loc-pin { color: var(--brand-cyan); }
.loc-btn .loc-caret { font-size: 10px; color: var(--text-secondary); }
.loc-pop {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 120;
  min-width: 200px; max-height: 320px; overflow-y: auto;
  background: var(--surface-alt); border: 1px solid var(--border-strong);
  border-radius: var(--r-md); padding: 6px; box-shadow: var(--overlay-shadow);
}
.loc-pop ul { list-style: none; }
.loc-opt {
  display: block; width: 100%; text-align: left;
  padding: 10px 12px; border-radius: var(--r-sm); background: transparent;
  border: none; color: var(--text); font-size: 14.5px;
}
.loc-opt:hover { background: var(--glass); }
.loc-opt.sel { color: var(--brand-cyan); font-weight: 600; }

/* Search form */
.nav-search { flex: 1 1 auto; min-width: 0; max-width: 420px; }
.nav-search .search-box {
  display: flex; align-items: center; gap: 8px;
  background: rgba(11,13,18,0.5); border: 1px solid var(--border-strong);
  border-radius: var(--r-pill); padding: 8px 14px;
  transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.nav-search .search-box:focus-within { border-color: var(--brand-cyan); box-shadow: 0 0 0 3px rgba(77,226,255,0.16); }
.nav-search .search-icon { color: var(--text-secondary); flex: 0 0 auto; }
.nav-search input {
  flex: 1 1 auto; min-width: 0; background: transparent; border: none;
  color: var(--text); font-family: var(--font-body); font-size: 15px;
}
.nav-search input::placeholder { color: var(--text-muted); }
.nav-search input:focus { outline: none; }

/* Primary nav links */
.nav-links { display: flex; align-items: center; gap: 4px; flex: 0 0 auto; }
.nav-links a {
  padding: 8px 12px; border-radius: var(--r-sm); font-size: 14.5px; font-weight: 500;
  color: var(--text-secondary); transition: color var(--dur-base) var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px;
  height: 2px; background: var(--brand-cyan); border-radius: 2px;
}
.nav-cta { flex: 0 0 auto; }

/* mobile-only controls hidden on desktop */
.nav-burger, .search-toggle { display: none; }
.nav-drawer { display: none; }

@media (max-width: 980px) {
  .nav-search { max-width: 260px; }
  .nav-links a { padding: 8px 9px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-search { position: absolute; left: 0; right: 0; top: 100%; max-width: none;
    padding: 12px 24px; background: var(--glass-dark); border-bottom: 1px solid var(--border);
    display: none; }
  .site-nav.search-open .nav-search { display: block; }
  .search-toggle, .nav-burger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: var(--r-sm);
    background: var(--glass); border: 1px solid var(--border); color: var(--text);
  }
  .nav-spacer { flex: 1 1 auto; }
  /* Drawer: normal expanding panel (NOT an app tab bar) */
  .nav-drawer {
    display: block; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height var(--dur-base) var(--ease);
  }
  .nav-drawer.open { max-height: 460px; visibility: visible; }
  .nav-drawer a {
    display: block; padding: 13px 4px; font-size: 16px; font-weight: 500;
    color: var(--text); border-bottom: 1px solid var(--border);
  }
  .nav-drawer a:last-child { border-bottom: none; }
  .nav-drawer .btn-primary { margin-top: 14px; }
}
@media (min-width: 901px) {
  .nav-drawer { display: none !important; }
}

/* ========================================================================
   Footer
   ======================================================================== */
.site-foot { border-top: 1px solid var(--border); padding: 56px 0 64px; margin-top: 40px; }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
  max-width: var(--wrap); margin: 0 auto; padding: 0 24px;
}
.foot-brand .wordmark { font-size: 26px; }
.foot-brand p { color: var(--text-secondary); font-size: 14.5px; margin: 12px 0 16px; max-width: 34ch; }
.foot-social { display: flex; gap: 10px; }
.foot-social a {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); color: var(--text-secondary);
  transition: color var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.foot-social a:hover { color: var(--brand-cyan); border-color: var(--border-strong); }
.foot-col h4 {
  font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-secondary); margin-bottom: 10px;
}
.foot-col a { display: block; color: var(--text); font-size: 15px; padding: 8px 0; opacity: 0.85; }
.foot-col a:hover, .foot-col a:focus-visible { opacity: 1; color: var(--brand-cyan); text-decoration: underline; text-underline-offset: 3px; }
.foot-fine { max-width: var(--wrap); margin: 40px auto 0; padding: 22px 24px 0; border-top: 1px solid var(--border); }
.foot-disc {
  font-family: var(--font-display); font-size: 12px; line-height: 1.7; font-weight: 500;
  letter-spacing: 0.02em; color: var(--text-secondary); max-width: 76ch;
}
.foot-legal { margin-top: 14px; font-size: 12px; color: var(--text-secondary); }

@media (max-width: 820px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* ========================================================================
   Spectrum (signature)
   ======================================================================== */
.spectrum {
  display: flex; align-items: flex-end; gap: 3px;
  height: clamp(80px, 14vw, 150px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.spectrum .bar {
  flex: 1 1 0; height: 100%; border-radius: 3px 3px 0 0;
  background: var(--grad-glow); transform-origin: bottom;
  transform: scaleY(var(--h, 0.3)); opacity: 0.92;
  animation: eq var(--dur, 1.4s) ease-in-out var(--delay, 0s) infinite alternate;
}
@keyframes eq {
  from { transform: scaleY(calc(var(--h, 0.3) * 0.34)); opacity: 0.6; }
  to   { transform: scaleY(var(--h, 0.3)); opacity: 0.95; }
}
/* Slim header band variant (detail/utility pages) */
.spectrum-band { padding: 22px 0 0; }
.spectrum-band .spectrum { height: clamp(48px, 7vw, 78px); opacity: 0.85; }

/* ========================================================================
   Prism art fallback (missing/broken event image)
   ======================================================================== */
.art-prism, .vcard-art {
  position: relative; width: 100%; height: 100%;
  display: grid; place-items: center; overflow: hidden;
  background: var(--surface);
}
.art-mark {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(48px, 9vw, 96px); color: rgba(255,255,255,0.10);
  line-height: 1; user-select: none;
}
/* genre tints — layered radials over the surface */
.g-techno { background:
  radial-gradient(120% 90% at 15% 12%, rgba(226,77,255,0.42), transparent 55%),
  radial-gradient(110% 80% at 90% 100%, rgba(226,77,255,0.20), transparent 60%), var(--surface); }
.g-house { background:
  radial-gradient(120% 90% at 15% 12%, rgba(77,226,255,0.40), transparent 55%),
  radial-gradient(110% 80% at 90% 100%, rgba(77,226,255,0.18), transparent 60%), var(--surface); }
.g-dnb { background:
  radial-gradient(120% 90% at 15% 12%, rgba(182,255,106,0.38), transparent 55%),
  radial-gradient(110% 80% at 90% 100%, rgba(182,255,106,0.16), transparent 60%), var(--surface); }
.g-hiphop { background:
  radial-gradient(120% 90% at 15% 12%, rgba(255,203,61,0.40), transparent 55%),
  radial-gradient(110% 80% at 90% 100%, rgba(255,203,61,0.16), transparent 60%), var(--surface); }
.g-indie { background:
  radial-gradient(120% 90% at 15% 12%, rgba(201,210,223,0.28), transparent 55%),
  radial-gradient(110% 80% at 90% 100%, rgba(201,210,223,0.12), transparent 60%), var(--surface); }
/* default / unbucketed tint — a subtle prism wash (cyan→magenta) so fallback
   cards read as designed, not flat gray. */
.g-other { background:
  radial-gradient(120% 90% at 12% 10%, rgba(77,226,255,0.22), transparent 55%),
  radial-gradient(120% 90% at 90% 100%, rgba(226,77,255,0.20), transparent 58%), var(--surface); }
.g-fest { background:
  radial-gradient(120% 90% at 12% 10%, rgba(77,226,255,0.34), transparent 52%),
  radial-gradient(120% 90% at 88% 96%, rgba(226,77,255,0.30), transparent 55%),
  radial-gradient(120% 90% at 50% 120%, rgba(182,255,106,0.18), transparent 60%), var(--surface); }

/* ========================================================================
   Event card (.ecard) — the workhorse
   ======================================================================== */
.grid-events {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.ecard {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  background: var(--surface); overflow: hidden;
  transition: transform var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}
.ecard:hover { transform: translateY(-3px); border-color: var(--border-strong); box-shadow: var(--shadow-card); }
.ecard:focus-visible { outline: 2px solid var(--brand-cyan); outline-offset: 2px; }
.ecard-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.ecard-media::after {
  content: ""; position: absolute; inset: 0; background: var(--scrim); pointer-events: none;
}
.ecard-img { width: 100%; height: 100%; object-fit: cover; }
.genre-pill {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--r-pill);
  background: var(--glass-dark); color: var(--text); border: 1px solid var(--glass-border);
  backdrop-filter: blur(6px);
}
.date-chip {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  font-family: var(--font-display); font-size: 11.5px; font-weight: 600;
  padding: 5px 10px; border-radius: var(--r-pill);
  background: var(--glass-dark); color: var(--text); border: 1px solid var(--glass-border);
  backdrop-filter: blur(6px);
}
.ecard-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1 1 auto; }
.ecard-title {
  font-family: var(--font-display); font-weight: 600; font-size: 17px; line-height: 1.25;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ecard-loc { color: var(--text-secondary); font-size: 14px; }
.ecard-foot { margin-top: auto; padding-top: 8px; display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.price { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--text); }

/* Social chip (PREVIEW-ONLY) */
.chip-social {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 10px 5px 6px; border-radius: var(--r-pill);
  background: var(--social-glass); border: 1px solid var(--social-glass-border);
  font-size: 12px; font-weight: 500; color: var(--brand-cyan);
}
.avastack { display: inline-flex; }
.avastack .ava {
  width: 20px; height: 20px; border-radius: 50%; margin-left: -6px;
  border: 2px solid var(--surface); display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--ink);
}
.avastack .ava:first-child { margin-left: 0; }
.ava.a0 { background: var(--brand-cyan); }
.ava.a1 { background: var(--brand-magenta); }
.ava.a2 { background: var(--brand-lime); }
.chip-social-txt { white-space: nowrap; }

/* ========================================================================
   Rails
   ======================================================================== */
.rail-wrap { position: relative; }
.rail {
  display: flex; gap: 20px; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-padding-left: 24px;
  padding: 4px 24px 8px; margin: 0 -24px;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; flex: 0 0 300px; }
.rail > .ecard { width: 300px; }
.rail-btn {
  position: absolute; top: 40%; z-index: 5;
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-alt); border: 1px solid var(--border-strong); color: var(--text);
  box-shadow: var(--shadow-card);
  transition: opacity var(--dur-base) var(--ease), background var(--dur-base) var(--ease);
}
.rail-btn:hover { background: var(--surface-hi); }
.rail-btn.prev { left: -8px; }
.rail-btn.next { right: -8px; }
.rail-btn[disabled] { opacity: 0.35; cursor: default; }
.rail-btn[hidden] { display: none; }
@media (max-width: 720px) { .rail-btn { display: none; } }

/* ========================================================================
   Skeleton / empty / error states
   ======================================================================== */
.skeleton {
  position: relative; overflow: hidden; background: var(--surface-alt); border-radius: var(--r-md);
}
.skeleton::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: translateX(-100%); animation: shimmer 1.4s infinite;
}
@keyframes shimmer { to { transform: translateX(100%); } }
.ecard-skel { border: 1px solid var(--border); border-radius: var(--r-lg); padding: 0 0 16px; overflow: hidden; }
.rail .ecard-skel { flex: 0 0 300px; width: 300px; }
.skel-media { aspect-ratio: 16/10; border-radius: 0; }
.skel-line { height: 14px; margin: 14px 16px 0; }
.skel-line.short { width: 55%; }

.state-empty, .state-error {
  grid-column: 1 / -1; width: 100%;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px;
  padding: 48px 24px; border: 1px dashed var(--border-strong); border-radius: var(--r-lg);
  background: var(--surface);
}
.state-icon { font-size: 28px; color: var(--text-secondary); }
.state-error .state-icon { color: var(--gold); }
.state-msg { color: var(--text-secondary); max-width: 42ch; }

/* ========================================================================
   Hero + search panel (home)
   ======================================================================== */
.hero { position: relative; padding: clamp(48px, 8vw, 96px) 0 0; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(720px 420px at 82% -6%, rgba(77,226,255,0.14), transparent 60%),
    radial-gradient(620px 420px at 6% 6%, rgba(226,77,255,0.12), transparent 58%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 5.5vw, 76px); line-height: 1.02;
  letter-spacing: -0.03em; margin: 20px 0 0; max-width: 16ch;
}
.hero-sub {
  max-width: 52ch; font-size: clamp(17px, 1.8vw, 20px);
  color: var(--text-secondary); margin: 20px 0 0;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 0; }

/* Search panel */
.search-panel {
  margin: 30px 0 0; padding: 16px; border-radius: var(--r-xl);
  background: var(--surface); border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card);
}
.search-panel .sp-row { display: flex; gap: 12px; flex-wrap: wrap; }
.sp-field { flex: 1 1 200px; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.sp-field label {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-secondary);
}
.sp-field .field-box {
  display: flex; align-items: center; gap: 8px;
  background: rgba(11,13,18,0.5); border: 1px solid var(--border-strong);
  border-radius: var(--r-md); padding: 12px 14px;
  transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.sp-field .field-box:focus-within { border-color: var(--brand-cyan); box-shadow: 0 0 0 3px rgba(77,226,255,0.16); }
.sp-field input, .sp-field select {
  flex: 1 1 auto; min-width: 0; background: transparent; border: none;
  color: var(--text); font-family: var(--font-body); font-size: 15px;
}
.sp-field select { cursor: pointer; }
.sp-field select option { background: var(--surface-alt); color: var(--text); }
.sp-field input:focus, .sp-field select:focus { outline: none; }
.sp-field input::placeholder { color: var(--text-muted); }
.sp-submit { flex: 0 0 auto; align-self: stretch; }
.search-panel .sp-submit .btn-primary { height: 100%; padding-inline: 28px; }

/* category chips row under search */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 0; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 15px; border-radius: var(--r-pill);
  background: var(--glass); border: 1px solid var(--border);
  color: var(--text); font-size: 14px; font-weight: 500;
  transition: border-color var(--dur-base) var(--ease), background var(--dur-base) var(--ease);
}
.chip:hover { border-color: var(--border-strong); background: var(--surface-hi); }
.chip[aria-pressed="true"] { background: var(--grad-glow); color: var(--text-on-brand); border-color: transparent; }

/* ========================================================================
   Category tiles (home)
   ======================================================================== */
.grid-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tile {
  position: relative; display: flex; align-items: flex-end;
  min-height: 130px; padding: 16px; border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: transform var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.tile:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.tile:focus-visible { outline: 2px solid var(--brand-cyan); outline-offset: 2px; }
.tile span {
  position: relative; z-index: 2;
  font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em;
}
@media (max-width: 900px) { .grid-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .grid-tiles { grid-template-columns: 1fr 1fr; } }

/* ========================================================================
   Venue card
   ======================================================================== */
.grid-venues { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.vcard {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  background: var(--surface); overflow: hidden;
  transition: transform var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.vcard:hover { transform: translateY(-3px); border-color: var(--border-strong); box-shadow: var(--shadow-card); }
/* Compact art strip (was a tall 16:9 letter block that made cards ~370px). */
.vcard-art { height: 120px; }
.vcard-art .art-mark { font-size: 64px; }
.vcard-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 5px; }
/* Mobile: horizontal card — small square thumb left, text right. */
@media (max-width: 560px) {
  .vcard { flex-direction: row; align-items: stretch; }
  .vcard-art { flex: 0 0 96px; width: 96px; height: auto; }
  .vcard-art .art-mark { font-size: 40px; }
  .vcard-body { flex: 1 1 auto; justify-content: center; padding: 12px 14px; }
}
.vcard-title { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.vcard-loc { color: var(--text-secondary); font-size: 14px; }
.vcard-count { color: var(--brand-cyan); font-size: 13px; font-weight: 600; margin-top: 4px; }

/* ========================================================================
   Social-proof / product-preview section
   ======================================================================== */
.preview-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-cyan);
  padding: 5px 10px; border-radius: var(--r-pill);
  background: var(--social-glass); border: 1px solid var(--social-glass-border);
}
.preview-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.plan-card {
  border: 1px solid var(--border-strong); border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0)), var(--surface);
  padding: 22px; box-shadow: var(--shadow-card);
}
.plan-card .pc-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.plan-card .pc-title { font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.plan-card .pc-meta { color: var(--text-secondary); font-size: 13px; }
.plan-card .pc-crew { display: flex; align-items: center; gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
@media (max-width: 820px) { .preview-split { grid-template-columns: 1fr; gap: 28px; } }

/* ========================================================================
   Feature grid
   ======================================================================== */
.grid-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px 22px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  transition: border-color var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.feature-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.feature-card .fc-icon {
  width: 42px; height: 42px; border-radius: var(--r-md); margin-bottom: 14px;
  display: inline-flex; align-items: center; justify-content: center; font-size: 20px;
  background: var(--social-glass); border: 1px solid var(--social-glass-border);
}
.feature-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.feature-card p { color: var(--text-secondary); font-size: 15px; }
@media (max-width: 860px) { .grid-features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-features { grid-template-columns: 1fr; } }

/* ========================================================================
   CTA bands
   ======================================================================== */
.cta-band {
  border: 1px solid var(--border-strong); border-radius: var(--r-xl);
  padding: clamp(36px, 6vw, 64px); text-align: center;
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(77,226,255,0.14), transparent 60%),
    radial-gradient(600px 320px at 0% 100%, rgba(226,77,255,0.14), transparent 60%),
    var(--surface-alt);
}
.cta-band h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 4.5vw, 48px); line-height: 1.04; letter-spacing: -0.02em;
}
.cta-band p { color: var(--text-secondary); margin: 16px auto 26px; max-width: 48ch; }
.cta-band .cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-note {
  font-family: var(--font-display); font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-secondary); margin-top: 16px;
}
/* promoter band = quieter, left-aligned split */
.promo-band {
  display: grid; grid-template-columns: 1.2fr auto; gap: 28px; align-items: center;
  border: 1px solid var(--border-strong); border-radius: var(--r-xl);
  padding: clamp(28px, 5vw, 48px); background: var(--surface);
}
.promo-band h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3.4vw, 36px); letter-spacing: -0.01em; }
.promo-band p { color: var(--text-secondary); margin-top: 10px; max-width: 46ch; }
@media (max-width: 720px) { .promo-band { grid-template-columns: 1fr; } }

/* ========================================================================
   Breadcrumb / filter bar / artist row / date block (shared with other pages)
   ======================================================================== */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary); padding: 20px 0 0; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--brand-cyan); }
.breadcrumb .sep { opacity: 0.5; }

.filter-bar {
  position: sticky; top: var(--nav-h); z-index: 40;
  background: var(--glass-dark); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.filter-bar .fb-inner { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.fb-select {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--r-pill);
  color: var(--text); font-size: 14px; padding: 9px 14px; cursor: pointer;
}
.fb-select option { background: var(--surface-alt); }
.fb-clear { color: var(--text-secondary); font-size: 14px; padding: 9px 12px; background: none; border: none; }
.fb-clear:hover { color: var(--brand-cyan); text-decoration: underline; }

.artist-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px; border: 1px solid var(--border); border-radius: var(--r-lg);
  background: var(--surface); transition: border-color var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.artist-row:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.date-block {
  flex: 0 0 auto; width: 58px; text-align: center;
  border: 1px solid var(--border); border-radius: var(--r-md); padding: 8px 4px;
  background: var(--surface-alt);
}
.date-block .db-mon { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: var(--brand-cyan); }
.date-block .db-day { font-family: var(--font-display); font-size: 22px; font-weight: 700; line-height: 1.1; }
.artist-row .ar-body { flex: 1 1 auto; min-width: 0; }
.artist-row .ar-title { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.artist-row .ar-meta { color: var(--text-secondary); font-size: 14px; }
.artist-row .ar-price { flex: 0 0 auto; color: var(--text); font-weight: 600; font-size: 14px; }

/* genre pill list (lineup / artist genres) */
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  display: inline-flex; align-items: center; padding: 6px 12px;
  border-radius: var(--r-pill); background: var(--glass); border: 1px solid var(--border);
  font-size: 13px; color: var(--text-secondary);
}

/* ========================================================================
   .doc prose (legal / about) — ported from old styles.css
   ======================================================================== */
.doc { padding: clamp(40px, 7vw, 80px) 0 90px; }
.doc-inner { max-width: var(--wrap-narrow); margin: 0 auto; }
.doc .back {
  font-family: var(--font-display); font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-secondary); display: inline-block; margin-bottom: 28px;
}
.doc .back:hover, .doc .back:focus-visible { color: var(--brand-cyan); text-decoration: underline; text-underline-offset: 3px; }
.doc h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 6vw, 56px); letter-spacing: -0.02em; line-height: 1.02;
}
.doc .meta { color: var(--text-secondary); font-family: var(--font-display); font-size: 13px; margin: 16px 0 8px; }
.doc h2 { font-family: var(--font-display); font-weight: 700; font-size: 24px; margin: 44px 0 14px; letter-spacing: -0.01em; }
.doc h2 .num { color: var(--brand-magenta); font-family: var(--font-display); font-size: 15px; margin-right: 12px; }
.doc p, .doc li { color: var(--text-secondary); font-size: 16px; }
.doc p { margin: 0 0 16px; }
.doc ul { margin: 0 0 16px; padding-left: 22px; }
.doc li { margin: 0 0 9px; }
.doc strong { color: var(--text); }
.doc a { color: var(--brand-cyan); }
.doc a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ========================================================================
   Waitlist form (download page) — ported from old landing
   ======================================================================== */
.wl-form { max-width: 480px; }
.wl-form.center { margin-inline: auto; }
.wl-row { display: flex; gap: 10px; }
.wl-input {
  flex: 1 1 auto; min-width: 0; font-family: var(--font-body); font-size: 16px; color: var(--text);
  background: rgba(11,13,18,0.6); border: 1px solid var(--border-strong); border-radius: var(--r-pill);
  padding: 13px 20px; transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.wl-input::placeholder { color: var(--text-muted); }
.wl-input:focus-visible { outline: none; border-color: var(--brand-cyan); box-shadow: 0 0 0 3px rgba(77,226,255,0.18); }
.wl-input[aria-invalid="true"], .wl-input:user-invalid {
  border-color: var(--brand-magenta); box-shadow: 0 0 0 3px rgba(226,77,255,0.22);
}
.wl-consent {
  font-family: var(--font-display); font-size: 11.5px; line-height: 1.6; font-weight: 500;
  letter-spacing: 0.02em; color: var(--text-secondary); margin: 14px 0 0; max-width: 44ch;
}
.wl-msg { min-height: 1.2em; margin: 12px 0 0; font-size: 14.5px; font-weight: 500; }
.wl-msg.ok { color: var(--brand-cyan); }
.wl-msg.err { color: var(--brand-magenta); }
@media (max-width: 520px) { .wl-row { flex-direction: column; } }

/* ========================================================================
   Responsive base
   ======================================================================== */
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .nav-inner { padding: 0 18px; }
  .hero-cta .btn-primary, .hero-cta .btn-ghost { flex: 1 1 auto; }
  .section-head--row { align-items: flex-start; }
}
@media (max-width: 360px) {
  .wrap { padding: 0 14px; }
}

/* ========================================================================
   Artist card (.acard) — venues/artists index + "Fans also see"
   ponytail: mirrors .vcard structure 1:1; kept separate only because the
   fallback art has no genre to tint (see Drop.acard).
   ======================================================================== */
.grid-artists { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.acard {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  background: var(--surface); overflow: hidden;
  transition: transform var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.acard:hover { transform: translateY(-3px); border-color: var(--border-strong); box-shadow: var(--shadow-card); }
.acard:focus-visible { outline: 2px solid var(--brand-cyan); outline-offset: 2px; }
.acard-media { aspect-ratio: 1 / 1; overflow: hidden; }
.acard-img { width: 100%; height: 100%; object-fit: cover; }
.acard-body { padding: 12px 14px 16px; display: flex; flex-direction: column; gap: 6px; }
.acard-title { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.acard-meta { color: var(--text-secondary); font-size: 13px; }

/* Reduced motion: kill spectrum EQ, smooth scroll, card lifts. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .spectrum .bar { animation: none; transform: scaleY(var(--h, 0.3)); }
  .skeleton::after { animation: none; }
  .ecard:hover, .vcard:hover, .acard:hover, .tile:hover, .feature-card:hover,
  .btn-primary:hover, .btn-ghost:hover, .artist-row:hover { transform: none; }
  .rail { scroll-behavior: auto; }
}

/* ========================================================================
   FAQ (download page) — native <details>/<summary>, no JS needed.
   ======================================================================== */
.faq-list { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 4px 20px;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 16px 0; font-family: var(--font-display);
  font-weight: 600; font-size: 16px; color: var(--text); display: flex;
  justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--text-muted); flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:focus-visible { outline: 2px solid var(--brand-cyan); outline-offset: 2px; }

/* ========================================================================
   Event detail (event.html) — hero split, sticky mobile CTA, read-more,
   share status. Added for blueprint #3; reuses tokens/components above.
   ======================================================================== */
.event-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding-top: 28px; }
.event-hero-media { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4 / 3; }
.event-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.event-hero-media .art-prism { position: absolute; inset: 0; }
.event-hero-info { display: flex; flex-direction: column; gap: 14px; }
.event-hero-info h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 4vw, 44px); letter-spacing: -0.02em; line-height: 1.05; }
.genre-pill--static { position: static; display: inline-flex; width: fit-content; }
.event-meta-row { color: var(--text-secondary); font-size: 15px; display: flex; flex-direction: column; gap: 6px; }
.event-meta-row a { color: var(--brand-cyan); }
.event-meta-row a:hover { text-decoration: underline; text-underline-offset: 3px; }
.event-price { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.event-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; align-items: center; }
.share-btn {
  background: none; border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 11px 18px; color: var(--text); font-size: 14px; cursor: pointer;
  transition: border-color var(--dur-base) var(--ease);
}
.share-btn:hover { border-color: var(--border-strong); }
.share-status { font-size: 13px; color: var(--brand-cyan); min-height: 1.2em; }
.event-desc { color: var(--text-secondary); font-size: 16px; line-height: 1.65; margin-top: 8px; }
.event-desc.clamped { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.read-more-btn { background: none; border: none; color: var(--brand-cyan); font-size: 14px; padding: 6px 0; cursor: pointer; align-self: flex-start; }
.read-more-btn:hover { text-decoration: underline; text-underline-offset: 3px; }
.pill-list a.pill { transition: border-color var(--dur-base) var(--ease), color var(--dur-base) var(--ease); }
.pill-list a.pill:hover, .pill-list a.pill:focus-visible { border-color: var(--border-strong); color: var(--text); outline: none; }
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; gap: 10px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: var(--glass-dark); backdrop-filter: blur(14px); border-top: 1px solid var(--border);
}
.sticky-cta .btn-primary { flex: 1 1 auto; text-align: center; }
@media (max-width: 900px) {
  .event-hero { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  body.has-sticky-cta #main { padding-bottom: 84px; }
}
.faq-item p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; padding: 0 0 18px; margin: 0; }

/* ========================================================================
   Review fixes (F3–F5, B1, F4)
   ======================================================================== */

/* F4: rail right-edge fade + end padding so the last card peeks (affordance
   that there's more to scroll) instead of hard-cropping at the viewport edge. */
.rail {
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 90%, transparent 100%);
          mask-image: linear-gradient(90deg, #000 0, #000 90%, transparent 100%);
  scroll-padding-right: 24px; padding-inline-end: 44px;
}

/* F3: event.html mobile shows an always-visible sticky "Get tickets" primary,
   so demote the in-hero "Get tickets" to a ghost look there — one gradient
   primary on screen, not two. Desktop (no sticky bar) keeps the hero primary. */
@media (max-width: 900px) {
  .event-cta-row .btn-primary {
    background: var(--glass); color: var(--text);
    border-color: var(--glass-border); box-shadow: none;
  }
}

/* F5: artist hero — fixed narrow image column so the title/genres/CTA fill the
   rest instead of leaving dead space beside an oversized square image. */
.artist-hero { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.artist-hero > div:last-child { display: flex; flex-direction: column; }
@media (max-width: 720px) {
  .artist-hero { grid-template-columns: 1fr; gap: 20px; }
  .artist-hero .ecard-media { max-width: 240px; }
}

/* B1: keep ≥2 compact artist columns on small phones (was 1 column at 390px). */
@media (max-width: 480px) {
  .grid-artists { grid-template-columns: 1fr 1fr; gap: 14px; }
  .acard-body { padding: 10px 12px 14px; }
  .acard-title { font-size: 15px; }
}
