/* ============================================================
   THE HIGH HOUSE — 518 live art & music
   Palette: midnight · royal blue · purple  (night-party)
   ============================================================ */

:root {
  --night: #08081A;
  --night-2: #0D0B26;
  --panel: #14113A;
  --panel-2: #1A1550;
  --line: rgba(142, 166, 255, 0.16);
  --line-soft: rgba(142, 166, 255, 0.09);

  --royal: #2B5CFF;
  --royal-bright: #5B84FF;
  --purple: #7C3AED;
  --purple-bright: #A855F7;

  --ice: #E8ECFF;
  --ice-mid: #9AA3D8;
  --ice-dim: #6E76B0;

  --grad: linear-gradient(105deg, #3B6BFF 0%, #7C3AED 60%, #A855F7 100%);

  --font-script: 'Pacifico', cursive;
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;

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

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--night);
  color: var(--ice-mid);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--purple); color: #fff; }

/* ---- Brand script wordmark (blue→purple gradient) ---- */
.brandscript {
  font-family: var(--font-script);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 3px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}
.btn--solid { background: var(--grad); color: #fff; background-size: 160% 160%; }
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 10px 34px rgba(91, 132, 255, 0.4), 0 0 0 1px rgba(168, 85, 247, 0.4); }
.btn--ghost { background: transparent; color: var(--ice); border-color: var(--line); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--royal-bright); color: #fff; box-shadow: 0 0 24px rgba(91, 132, 255, 0.25); }
.btn--full { width: 100%; }
.btn:disabled { background: var(--panel-2); color: var(--ice-dim); cursor: not-allowed; box-shadow: none; }
.btn:disabled:hover { transform: none; }

/* ---- Section heads ---- */
.section-head { max-width: var(--maxw); margin: 0 auto 2.4rem; }
.section-head__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--royal-bright); margin-bottom: 0.6rem;
}
.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 6rem);
  line-height: 0.9; margin: 0; color: var(--ice);
  letter-spacing: 0.02em;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.8rem clamp(1.1rem, 4vw, 3rem);
  background: rgba(8, 8, 26, 0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__brand { display: inline-flex; align-items: center; }
.nav__logo { height: 50px; width: auto; display: block; mix-blend-mode: screen; filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.4)); }
.nav__links { display: flex; gap: clamp(1rem, 3vw, 2.2rem); font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.nav__links a { position: relative; color: var(--ice-mid); transition: color 0.2s var(--ease); }
.nav__links a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 100%; height: 1px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform 0.28s var(--ease); }
.nav__links a:hover { color: var(--ice); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  font-family: var(--font-mono); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.55rem 1rem; border-radius: 3px; background: var(--grad); color: #fff;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4); }

/* ============================================================
   HERO — night party spotlights
   ============================================================ */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  padding: 4rem clamp(1.1rem, 4vw, 3rem);
  overflow: hidden; text-align: center;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(43, 92, 255, 0.18), transparent 60%),
    radial-gradient(60% 50% at 80% 100%, rgba(124, 58, 237, 0.22), transparent 60%),
    var(--night);
}
.hero__lights { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.beam {
  position: absolute; top: -30%; left: 50%;
  width: 40vw; height: 130%;
  transform-origin: top center;
  filter: blur(18px); opacity: 0.55; mix-blend-mode: screen;
  clip-path: polygon(46% 0, 54% 0, 100% 100%, 0% 100%);
}
.beam--b  { background: linear-gradient(#3B6BFF, transparent 72%); transform: translateX(-70%) rotate(14deg); animation: sway1 9s ease-in-out infinite; }
.beam--p  { background: linear-gradient(#A855F7, transparent 72%); transform: translateX(-30%) rotate(-10deg); animation: sway2 11s ease-in-out infinite; }
.beam--b2 { background: linear-gradient(#5B84FF, transparent 70%); transform: translateX(10%) rotate(-22deg); animation: sway1 13s ease-in-out infinite; }
@keyframes sway1 { 0%,100% { transform: translateX(-70%) rotate(12deg); } 50% { transform: translateX(-70%) rotate(20deg); } }
@keyframes sway2 { 0%,100% { transform: translateX(-30%) rotate(-8deg); } 50% { transform: translateX(-30%) rotate(-16deg); } }
.hero__grain {
  position: absolute; inset: 0; opacity: 0.4; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.hero__inner { position: relative; z-index: 2; max-width: 920px; }
.hero__eyebrow { font-family: var(--font-mono); font-size: clamp(0.7rem, 2.6vw, 0.82rem); letter-spacing: 0.28em; text-transform: uppercase; color: var(--royal-bright); margin: 0 0 1.4rem; }
.hero__word { display: block; font-size: clamp(3.2rem, 13vw, 8rem); margin: 0; }
.hero__tag { max-width: 34ch; margin: 1.4rem auto 2.2rem; color: var(--ice-mid); font-size: clamp(1rem, 3.6vw, 1.18rem); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker { overflow: hidden; white-space: nowrap; border-bottom: 1px solid var(--line-soft); background: var(--night-2); padding: 0.7rem 0; }
.ticker__track { display: inline-flex; align-items: center; gap: 2rem; animation: ticker 26s linear infinite; font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.18em; color: var(--ice-mid); }
.ticker__track span:nth-child(even) { color: var(--purple-bright); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   EVENTS
   ============================================================ */
.events { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) clamp(1.1rem, 4vw, 3rem); }
.event-list { display: flex; flex-direction: column; gap: 1.1rem; }
.event {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: 1.3rem clamp(1.1rem, 3vw, 1.8rem);
  background: linear-gradient(120deg, var(--panel), var(--night-2));
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.event::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--grad); opacity: 0.9; }
.event:hover { border-color: rgba(91, 132, 255, 0.5); transform: translateY(-3px); box-shadow: 0 16px 44px rgba(0,0,0,0.5), 0 0 0 1px rgba(124,58,237,0.25); }
.event__date { text-align: center; }
.event__mon { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--purple-bright); }
.event__day { font-family: var(--font-display); font-size: 2.8rem; line-height: 0.9; color: var(--ice); }
.event__info { min-width: 0; }
.event__title { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.3rem); line-height: 1; color: var(--ice); letter-spacing: 0.02em; margin: 0 0 0.35rem; }
.event__meta { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ice-mid); letter-spacing: 0.04em; }
.event__lineup { margin-top: 0.4rem; color: var(--ice-dim); font-size: 0.86rem; }
.event__cta { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.event__price { font-family: var(--font-mono); font-size: 0.85rem; color: var(--royal-bright); }
.event__soon {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.7rem 1.1rem; border-radius: 3px; white-space: nowrap;
  background: var(--panel-2); color: var(--ice-dim); border: 1px solid var(--line-soft);
}
.event__soon--live { color: #4ADE80; border-color: rgba(74, 222, 128, 0.4); background: rgba(74, 222, 128, 0.08); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 7vw, 5rem) clamp(1.1rem, 4vw, 3rem); border-top: 1px solid var(--line-soft); }
.gallery__grid { column-count: 3; column-gap: clamp(0.7rem, 2vw, 1.1rem); }
.tile { position: relative; overflow: hidden; border-radius: 6px; border: 1px solid var(--line-soft); background: var(--panel); break-inside: avoid; margin: 0 0 clamp(0.7rem, 2vw, 1.1rem); }
.tile img { width: 100%; height: auto; display: block; transition: transform 0.5s var(--ease); }
.tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(124,58,237,0.25)); opacity: 0; transition: opacity 0.3s var(--ease); }
.tile:hover img { transform: scale(1.06); }
.tile:hover::after { opacity: 1; }
.gallery__note { text-align: center; margin-top: 1.6rem; font-family: var(--font-mono); font-size: 0.82rem; color: var(--ice-dim); }
.gallery__note a { color: var(--royal-bright); }
.gallery__note a:hover { color: var(--purple-bright); }

/* ============================================================
   LIVE (socials)
   ============================================================ */
.live { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 7vw, 5rem) clamp(1.1rem, 4vw, 3rem); border-top: 1px solid var(--line-soft); }
.live__layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.live__feed { background: transparent; border: 0; padding: 0; }
.ig-frame {
  background: #0B0A1F;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 44px rgba(124, 58, 237, 0.16), 0 16px 40px rgba(0, 0, 0, 0.45);
}
.ig-frame__bar {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(120deg, var(--panel), var(--night-2));
}
.ig-frame__dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: conic-gradient(from 210deg, #A855F7, #3B6BFF, #E8ECFF, #A855F7);
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.5);
}
.ig-frame__name { font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.03em; color: var(--ice); }
.ig-frame__follow { margin-left: auto; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--royal-bright); }
.ig-frame__follow:hover { color: var(--purple-bright); }
.ig-frame__view { height: 344px; overflow: hidden; background: #0B0A1F; }
.ig-embed { display: block; width: 100%; height: 860px; border: 0; margin-top: -182px; background: #0B0A1F; }
@media (max-width: 560px) { .ig-frame__view { height: 232px; } .ig-embed { margin-top: -212px; } }
.live__fallback { font-family: var(--font-mono); font-size: 0.76rem; color: var(--ice-dim); margin: 0.9rem 0 0; text-align: center; }
.live__fallback a { color: var(--royal-bright); }
.live__pitch { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.4rem); line-height: 1.05; color: var(--ice); letter-spacing: 0.02em; margin: 0 0 1.4rem; }
.social {
  display: flex; flex-direction: column; gap: 0.15rem;
  padding: 1.2rem 1.4rem; margin-bottom: 0.9rem;
  border: 1px solid var(--line); border-radius: 8px;
  background: linear-gradient(120deg, var(--panel), var(--night-2));
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.social:hover { transform: translateX(5px); box-shadow: 0 12px 34px rgba(0,0,0,0.45); }
.social--ig:hover { border-color: var(--purple-bright); }
.social--fb:hover { border-color: var(--royal-bright); }
.social__label { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.03em; color: var(--ice); }
.social__handle { font-family: var(--font-mono); font-size: 0.8rem; color: var(--ice-mid); }

/* ============================================================
   FEATURED ARTIST
   ============================================================ */
.artist { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 7vw, 5rem) clamp(1.1rem, 4vw, 3rem); border-top: 1px solid var(--line-soft); }
.artist__layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.artist__photo { border-radius: 12px; overflow: hidden; border: 1px solid var(--line-soft); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.artist__photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
.artist__blurb { font-size: 1.05rem; color: var(--ice-mid); max-width: 44ch; margin: 0 0 1.5rem; }
.artist__player { margin-bottom: 1.4rem; }
.artist__player iframe { width: 100%; }
.artist__links { display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 7vw, 5rem) clamp(1.1rem, 4vw, 3rem); border-top: 1px solid var(--line-soft); }
.reviews__layout { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(1.4rem, 4vw, 3rem); align-items: start; margin-bottom: 2.4rem; }
.reviews__summary { background: linear-gradient(120deg, var(--panel), var(--night-2)); border: 1px solid var(--line-soft); border-radius: 12px; padding: 1.6rem; text-align: center; }
.reviews__avg { font-family: var(--font-display); font-size: 3.6rem; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.reviews__avgstars { font-size: 1.2rem; letter-spacing: 0.15em; color: #FFC24B; margin: 0.3rem 0; }
.reviews__count { font-family: var(--font-mono); font-size: 0.76rem; color: var(--ice-dim); letter-spacing: 0.06em; }

.reviewform { background: var(--panel); border: 1px solid var(--line-soft); border-radius: 12px; padding: 1.4rem; }
.reviewform__rating { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; flex-wrap: wrap; }
.reviewform__label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ice-mid); }
.starpick { display: inline-flex; gap: 0.15rem; }
.starpick .star { background: none; border: 0; padding: 0 0.05rem; font-size: 1.7rem; line-height: 1; color: var(--ice-dim); cursor: pointer; transition: color 0.12s var(--ease), transform 0.12s var(--ease); }
.starpick .star:hover { transform: scale(1.15); }
.starpick .star.on { color: #FFC24B; }
.reviewform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 0.8rem; }
.reviewform__input { width: 100%; background: var(--night); border: 1px solid var(--line); border-radius: 4px; color: var(--ice); padding: 0.7rem 0.85rem; font-family: var(--font-body); font-size: 0.95rem; }
.reviewform__input::placeholder { color: var(--ice-dim); }
.reviewform__input:focus { outline: none; border-color: var(--royal-bright); box-shadow: 0 0 0 3px rgba(43,92,255,0.25); }
.reviewform__area { display: block; resize: vertical; margin-bottom: 0.9rem; }
.reviewform__actions { display: flex; align-items: center; gap: 0.8rem; }
.reviewform__status { font-family: var(--font-mono); font-size: 0.78rem; color: var(--royal-bright); }

.reviewlist { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.review { background: linear-gradient(120deg, var(--panel), var(--night-2)); border: 1px solid var(--line-soft); border-radius: 10px; padding: 1.2rem; }
.review__top { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin-bottom: 0.5rem; }
.review__name { font-family: var(--font-body); font-weight: 600; color: var(--ice); }
.review__stars { color: #FFC24B; letter-spacing: 0.1em; font-size: 0.95rem; }
.review__event { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--purple-bright); margin-bottom: 0.4rem; }
.review__body { color: var(--ice-mid); font-size: 0.92rem; margin: 0; }
.review__date { font-family: var(--font-mono); font-size: 0.68rem; color: var(--ice-dim); margin-top: 0.6rem; }
.reviews__empty { text-align: center; color: var(--ice-dim); font-family: var(--font-mono); font-size: 0.85rem; padding: 1rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { border-top: 1px solid var(--line-soft); background: radial-gradient(70% 100% at 50% 0%, rgba(43,92,255,0.14), transparent 60%), var(--night-2); }
.about__inner { max-width: 900px; margin: 0 auto; padding: clamp(4rem, 8vw, 6rem) clamp(1.1rem, 4vw, 3rem); text-align: center; }
.about__title { font-size: clamp(2.6rem, 8vw, 5rem); margin: 0.4rem 0 1.3rem; }
.about__inner > p { max-width: 60ch; margin: 0 auto; color: var(--ice-mid); font-size: 1.05rem; }
.about__stats { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.5rem, 6vw, 4rem); margin-top: 3rem; }
.stat { display: flex; flex-direction: column; gap: 0.3rem; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.8rem, 8vw, 4.5rem); line-height: 0.9; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.stat__label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ice-dim); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line-soft); padding: clamp(2.6rem, 6vw, 4rem) clamp(1.1rem, 4vw, 3rem); display: flex; flex-direction: column; align-items: center; gap: 1.3rem; text-align: center; }
.footer__brand { font-size: 2rem; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer__links a { color: var(--ice-mid); transition: color 0.2s var(--ease); }
.footer__links a:hover { color: var(--purple-bright); }
.footer__legal { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ice-dim); margin: 0; }

/* ============================================================
   BACKGROUND MUSIC PLAYER (floating pill)
   ============================================================ */
.musicbar {
  position: fixed; left: clamp(0.9rem, 3vw, 1.6rem); bottom: clamp(0.9rem, 3vw, 1.6rem);
  z-index: 50; display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.6rem 0.9rem; border-radius: 999px;
  background: rgba(13, 11, 38, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line); color: var(--ice); cursor: pointer;
  box-shadow: 0 10px 34px rgba(0,0,0,0.5);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.musicbar:hover { border-color: var(--royal-bright); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(43,92,255,0.35); }
.musicbar__eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 16px; }
.musicbar__eq i { width: 3px; height: 40%; background: var(--purple-bright); border-radius: 2px; }
.musicbar.is-playing .musicbar__eq i { animation: eq 0.9s ease-in-out infinite; }
.musicbar.is-playing .musicbar__eq i:nth-child(2) { animation-delay: 0.15s; }
.musicbar.is-playing .musicbar__eq i:nth-child(3) { animation-delay: 0.3s; }
.musicbar.is-playing .musicbar__eq i:nth-child(4) { animation-delay: 0.45s; }
@keyframes eq { 0%,100% { height: 30%; } 50% { height: 100%; } }
.musicbar__text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.musicbar__now { font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--royal-bright); }
.musicbar__title { font-family: var(--font-body); font-weight: 600; font-size: 0.78rem; color: var(--ice); max-width: 11rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.musicbar__icon { font-size: 0.7rem; color: var(--ice-mid); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .live__layout { grid-template-columns: 1fr; }
  .artist__layout { grid-template-columns: 1fr; }
  .artist__photo { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .nav__links { display: none; }
  .event { grid-template-columns: 64px 1fr; grid-template-areas: "date info" "cta cta"; }
  .event__date { grid-area: date; }
  .event__info { grid-area: info; }
  .event__cta { grid-area: cta; flex-direction: row; justify-content: space-between; align-items: center; margin-top: 0.4rem; }
  .event__day { font-size: 2.2rem; }
  .gallery__grid { column-count: 2; }
}

/* ---- focus + reduced motion ---- */
:focus-visible { outline: 2px solid var(--royal-bright); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .ticker__track, .beam { animation: none; }
}
