/* ==========================================================================
   COMPONENTS — cards, media, facades, stats, gallery, buttons, motion
   ========================================================================== */

/* --------------------------------------------------------------------------
   PLACEHOLDER — stands in for art that has not been supplied yet.
   Deliberately looks unfinished so nothing fake ships by accident.
   -------------------------------------------------------------------------- */

.ph {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 80px;
  color: var(--white-30);
  background-color: #1d1e22;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.028) 0 10px,
    transparent 10px 20px
  );
  box-shadow: inset 0 0 0 1px var(--line-soft);
  overflow: hidden;
}
.ph__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 14px;
  max-width: 90%;
}

/* --------------------------------------------------------------------------
   MEDIA — fixed-ratio wrapper used by every card type
   -------------------------------------------------------------------------- */

.media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: #1d1e22;
}
.media--16x9   { aspect-ratio: 16 / 9; }
.media--editor { aspect-ratio: 1.45; }
.media--square { aspect-ratio: 1; }
.media--portrait { aspect-ratio: 4 / 5; }

.media img,
.media .ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}

/* --------------------------------------------------------------------------
   CARD — image + title + meta. The workhorse of every grid.
   -------------------------------------------------------------------------- */

.card { display: flex; flex-direction: column; gap: 16px; }
.card__body { display: flex; flex-direction: column; gap: 2px; }
.card__title { font-size: var(--fs-h6); font-weight: 400; letter-spacing: -.01em; color: var(--white); }
.card__meta  { font-size: var(--fs-h6); font-weight: 400; letter-spacing: -.01em; color: var(--white-70); }
.card__credit { font-family: var(--font-mono); font-size: 11px; letter-spacing: .05em; color: var(--white-30); text-transform: uppercase; }

a.card:hover { color: inherit; }
a.card:hover .media img { transform: scale(1.04); }

/* --------------------------------------------------------------------------
   VIDEO / AUDIO FACADE
   The iframe is only injected on click — keeps the page fast and means no
   request reaches YouTube, Spotify or SoundCloud until the visitor asks.
   -------------------------------------------------------------------------- */

.facade {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
  background: #1d1e22;
  border: 0;
  padding: 0;
  overflow: hidden;
}
.facade img,
.facade .ph { width: 100%; height: 100%; object-fit: cover; }

.facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
  transition: background var(--dur-fast) var(--ease-out);
}
.facade:hover::after { background: rgba(0,0,0,.1); }

.facade__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 74px; height: 74px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}
.facade:hover .facade__play {
  transform: translate(-50%, -50%) scale(1.09);
  background: rgba(255,255,255,.24);
}
.facade__play svg { width: 22px; height: 22px; fill: var(--white); margin-left: 3px; }

/* Small source tag, bottom-left of a facade */
.facade__src {
  position: absolute;
  left: 12px; bottom: 12px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,.5);
  padding: 5px 9px;
  border-radius: 2px;
}

.facade__frame { width: 100%; height: 100%; border: 0; display: block; }

/* Consent sheet shown on first play */
.consent {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 16px;
  background: rgba(10,10,12,.94);
  border-top: 1px solid var(--line);
}
.consent__text { flex: 1 1 240px; font-size: 14px; line-height: 1.4; color: var(--white-70); }

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1;
  white-space: nowrap;
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: background var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.btn:hover {
  color: var(--white);
  background: rgba(255,255,255,.07);
  box-shadow: inset 0 0 0 1px var(--white-30);
}
.btn--solid { background: var(--white); color: var(--bg); box-shadow: none; }
.btn--solid:hover { color: var(--bg); background: rgba(255,255,255,.86); }
.btn--sm { padding: 9px 14px; font-size: 13px; }
.btn svg { width: 15px; height: 15px; fill: currentColor; flex: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* --------------------------------------------------------------------------
   STATS — follower / streaming numbers with count-up
   -------------------------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 40px var(--grid-gap-col);
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(34px, 6vw, 110px);
}
.stat { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.stat__value {
  font-size: var(--fs-stat);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .95;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white-50);
}
.stat__label--icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
}
.stat__icon {
  width: 16px;
  height: 16px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.stat__icon-dot {
  fill: currentColor;
  stroke: none;
}
.stat__icon-fill {
  fill: currentColor;
  stroke: none;
}
a.stat:hover .stat__value { color: var(--white-70); }

.stats__note {
  width: 100%;
  max-width: var(--container);
  margin: 30px auto 0;
  padding-inline: clamp(34px, 6vw, 110px);
}

@media (max-width: 809.98px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 16px; }
  .stats,
  .stats__note { padding-inline: 22px; }
  .stat__label--icon { width: auto; max-width: 100%; }
  .stat__label--icon > span { min-width: 0; overflow-wrap: anywhere; }
}

/* --------------------------------------------------------------------------
   LIST ROWS — sets, shows, tracklists
   -------------------------------------------------------------------------- */

.rows {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  border-top: 1px solid var(--line);
}
.row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: baseline;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left var(--dur-fast) var(--ease-out);
}
a.row:hover { padding-left: 10px; color: inherit; }
.row__date {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white-50);
}
.row__main { font-size: var(--fs-h6); color: var(--white); }
.row__sub  { font-size: var(--fs-small); color: var(--white-70); margin-top: 4px; }
.row__end  { font-size: var(--fs-small); color: var(--white-50); text-align: right; }

@media (max-width: 809.98px) {
  .row { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .row__end { text-align: left; }
}

/* Upcoming shows — horizontal cards inspired by compact tour listings. */
.show-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(225px, calc((100% - 64px) / 5));
  gap: 16px;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 2px var(--pad-x) 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--white-30) transparent;
}
.show-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
  color: var(--white);
  scroll-snap-align: start;
  transition: transform var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}
a.show-card:hover {
  color: var(--white);
  transform: translateY(-4px);
  border-color: var(--white-30);
  background: rgba(255,255,255,.075);
}
.show-card__date {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 126px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}
.show-card__month,
.show-card__year {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--white-50);
}
.show-card__day {
  margin-block: 2px;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1;
}
.show-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 16px 14px;
}
.show-card__title {
  display: -webkit-box;
  overflow: hidden;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.15;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.show-card__place {
  margin-top: 9px;
  font-size: var(--fs-small);
  line-height: 1.35;
  color: var(--white-50);
}
.show-card__button {
  display: grid;
  place-items: center;
  min-height: 38px;
  margin-top: auto;
  border: 1px solid var(--white-50);
  border-radius: 999px;
  font-size: var(--fs-small);
  font-weight: 650;
}
a.show-card:hover .show-card__button {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

@media (max-width: 809.98px) {
  .show-rail { grid-auto-columns: minmax(230px, 78vw); }
  .show-card { min-height: 292px; }
}

/* --------------------------------------------------------------------------
   PRESS GALLERY + LIGHTBOX
   -------------------------------------------------------------------------- */

.shot { display: flex; flex-direction: column; gap: 10px; }
.shot__btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}
.shot__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 40px var(--pad-x);
  background: rgba(8,8,10,.96);
}
.lightbox[data-open="true"] { display: grid; }
.lightbox__img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  margin-inline: auto;
}
.lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1100px;
  margin: 18px auto 0;
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--line);
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }

/* --------------------------------------------------------------------------
   MISC BLOCKS
   -------------------------------------------------------------------------- */

/* Small pill, e.g. "Resident Advisor" or a genre tag */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white-70);
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }

/* Two-column prose block used for the long bio */
.prose { display: flex; flex-direction: column; gap: 1.1em; max-width: 720px; }
.prose p { font-size: var(--fs-body); line-height: 1.55; color: var(--white-70); }
.prose p strong { color: var(--white); font-weight: 500; }

/* Copy-to-clipboard field for the booking address */
.copyfield {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px var(--line);
  background: rgba(255,255,255,.03);
}
.copyfield__value {
  flex: 1 1 200px;
  font-size: var(--fs-h6);
  letter-spacing: -.01em;
  word-break: break-all;
}

/* Definition pairs (booking territories, imprint details) */
.pairs { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.pair {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.pair__k {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white-50);
}
.pair__v {
  font-size: var(--fs-body);
  color: var(--white);
  white-space: pre-line;
}
@media (max-width: 809.98px) {
  .pair { grid-template-columns: 1fr; gap: 6px; }
}

/* Empty-state note rendered when a content.js list is still empty */
.empty {
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--white-30);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   MOTION
   Mirrors the reference's appear values: blur + lift + scale, spring-ish ease.
   -------------------------------------------------------------------------- */

/* Section / block reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .9s var(--ease-spring),
              transform .9s var(--ease-spring);
  transition-delay: var(--d, 0ms);
}
.reveal--card { transform: translateY(60px); }
.reveal.is-in { opacity: 1; transform: none; }

/* Full-bleed image appear: opacity .001 -> 1, scale 1.2 -> 1, y 40 -> 0 */
.appear-img {
  opacity: .001;
  transform: translateY(40px) scale(1.2);
  transition: opacity var(--dur-reveal) var(--ease-spring),
              transform var(--dur-reveal) var(--ease-spring);
  will-change: transform, opacity;
}
.appear-img.is-in { opacity: 1; transform: none; }

/* Per-word reveal (headlines, nav): blur 10px + 10px lift */
.words > span {
  display: inline-block;
  opacity: .001;
  filter: blur(10px);
  transform: translateY(10px);
  transition: opacity .8s var(--ease-out),
              filter .8s var(--ease-out),
              transform .8s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 55ms + var(--d, 0ms));
}
.words.is-in > span { opacity: 1; filter: blur(0); transform: none; }

/* Per-letter reveal (sticky card titles): blur 3px + lift + scale .8 */
.letters > span {
  display: inline-block;
  opacity: .001;
  filter: blur(3px);
  transform: translateY(10px) scale(.8);
  transition: opacity .55s var(--ease-out),
              filter .55s var(--ease-out),
              transform .55s var(--ease-out);
  transition-delay: calc(var(--i, 0) * var(--stagger));
}
.letters.is-in > span,
.is-in .letters > span { opacity: 1; filter: blur(0); transform: none; }
.letters > span.is-space { width: .3em; }

/* --------------------------------------------------------------------------
   DOT-TRAIL CURSOR — spring-follow canvas with an interactive link ring
   -------------------------------------------------------------------------- */

.cursor-trail {
  position: fixed;
  inset: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  max-width: none;
  pointer-events: none;
  mix-blend-mode: difference;
}

@media (hover: hover) and (pointer: fine) {
  html.has-cursor-trail,
  html.has-cursor-trail body,
  html.has-cursor-trail body * { cursor: none !important; }

  html.has-cursor-trail.is-logo-dialog-open,
  html.has-cursor-trail.is-logo-dialog-open body,
  html.has-cursor-trail.is-logo-dialog-open body * { cursor: auto !important; }

  html.has-cursor-trail.is-logo-dialog-open a,
  html.has-cursor-trail.is-logo-dialog-open button,
  html.has-cursor-trail.is-logo-dialog-open [role="button"] { cursor: pointer !important; }

  html.is-logo-dialog-open .cursor-trail { opacity: 0; }
}

@media (hover: none), (pointer: coarse) {
  .cursor-trail { display: none; }
}

/* --------------------------------------------------------------------------
   REDUCED MOTION — show everything immediately, no blur, no drift
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .appear-img,
  .words > span, .letters > span {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
  .stack__line { transform: scaleX(1) !important; }
  .cursor-trail { display: none; }
  .scroll-cue__dot { animation: none; }
}

/* --------------------------------------------------------------------------
   HOMEPAGE BIOGRAPHY — spacious editorial copy with scroll-lit words
   -------------------------------------------------------------------------- */

.about-home { overflow: clip; }
.about-home__heading {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 30px;
  margin-bottom: clamp(42px, 6vw, 80px);
}
.bio-shell { display: flex; justify-content: center; text-align: center; }
.bio {
  display: flex;
  flex-direction: column;
  gap: 1.35em;
  width: 100%;
  max-width: 820px;
}
.bio p { text-wrap: pretty; }
.bio--scroll {
  font-size: clamp(18px, 1.65vw, 27px);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: -.012em;
}
.bio__paragraph { max-width: 100%; }
.bio-word {
  display: inline;
  opacity: .18;
  will-change: opacity;
  transition: opacity 80ms linear;
}

@media (max-width: 809.98px) {
  .about-home__heading { align-items: center; flex-direction: column; }
  .bio--scroll { font-size: 18px; line-height: 1.58; }
}

/* --------------------------------------------------------------------------
   REACH — a metric with no value states so, rather than inventing one
   -------------------------------------------------------------------------- */

.stat__value.is-empty { color: var(--white-30); }
.stat__note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white-30);
}

/* --------------------------------------------------------------------------
   LOGOS — any artwork rendered as flat white
   -------------------------------------------------------------------------- */

.logogroup { margin-bottom: 55px; }
.logogroup:last-child { margin-bottom: 0; }
.logogroup__label {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto 18px;
  padding-inline: var(--pad-x);
}

/* Collapses a logo of any colour to solid white: black-and-white identity
   without having to re-draw anyone's artwork. */
.logoband__item.is-mono img {
  filter: brightness(0) invert(1);
}
.logoband__link { display: block; }
.logoband__item.is-placeholder {
  opacity: .42;
}
.logoband__placeholder {
  max-width: 12ch;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
  color: var(--white-50);
}

/* --------------------------------------------------------------------------
   SUPPORT VIDEO CAROUSEL — perspective stack adapted from the reference
   -------------------------------------------------------------------------- */

.music-home,
.reach-home,
.support-home,
.partners-home,
.upcoming-home { padding-block: clamp(38px, 4.5vw, 68px); }
.upcoming-home { padding-bottom: clamp(82px, 7vw, 118px); }
.support-home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.support-home__heading { margin-bottom: clamp(22px, 2.5vw, 36px); }
.support-home__intro {
  max-width: 520px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: clamp(10px, .8vw, 12px);
  line-height: 1.5;
  letter-spacing: .04em;
  color: var(--white-50);
}

.support-carousel {
  position: relative;
  width: 100%;
  height: min(700px, 70svh);
  min-height: 520px;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.support-carousel__stage {
  position: absolute;
  inset: 0 0 64px;
  overflow: hidden;
  perspective: 1150px;
  transform-style: preserve-3d;
  touch-action: pan-y;
  outline: none;
}

.support-card {
  position: absolute;
  top: 47%;
  left: 50%;
  width: min(72vw, 39.375svh, 420px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 18px;
  background: #050505;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .48),
              inset 0 0 0 1px rgba(255, 255, 255, .14);
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  transition: transform 680ms var(--ease-spring),
              opacity 420ms var(--ease-out),
              box-shadow 350ms var(--ease-out);
  will-change: transform, opacity;
  cursor: pointer;
}

.support-card video,
.support-card .ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050505;
  pointer-events: none;
}

.support-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .72), transparent 48%);
  opacity: 1;
  pointer-events: none;
}

.support-card__caption {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 28px 24px;
  opacity: 1;
  transform: none;
  pointer-events: none;
}
.support-card__artist {
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.035em;
  color: var(--white);
}
.support-card__venue {
  margin-top: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--white-70);
}

.support-card:hover,
.support-card:focus-visible {
  box-shadow: 0 34px 95px rgba(0, 0, 0, .58),
              inset 0 0 0 1px rgba(255, 255, 255, .26);
}
.support-card:hover .support-card__shade,
.support-card:focus-visible .support-card__shade { opacity: 1; }
.support-card:hover .support-card__caption,
.support-card:focus-visible .support-card__caption,
.support-card.is-active .support-card__caption { transform: none; }
.support-card:hover .support-card__caption,
.support-card:focus-visible .support-card__caption { opacity: 1; }

.support-carousel__arrow {
  position: absolute;
  top: 47%;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--bg);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .28);
  transform: translateY(-50%);
  transition: transform 220ms var(--ease-out), opacity 220ms var(--ease-out);
}
.support-carousel__arrow:hover { transform: translateY(-50%) scale(1.07); }
.support-carousel__arrow--prev { left: max(var(--pad-x), calc((100% - 1120px) / 2)); }
.support-carousel__arrow--next { right: max(var(--pad-x), calc((100% - 1120px) / 2)); }

.support-carousel__controls {
  position: absolute;
  bottom: 8px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: calc(100% - 32px);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(20, 21, 23, .94);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .3);
  transform: translateX(-50%);
}
.support-carousel__counter {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.support-carousel__counter { color: var(--white-70); }
.support-carousel__dots { display: flex; align-items: center; gap: 7px; }
.support-carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white-30);
  transition: background 220ms var(--ease-out), transform 220ms var(--ease-out);
}
.support-carousel__dot[aria-selected="true"] {
  background: var(--white);
  transform: scale(1.35);
}

@media (max-width: 809.98px) {
  .support-home { padding-block: 40px; }
  .support-home__heading { margin-bottom: 24px; }
  .support-carousel { height: 68svh; min-height: 480px; }
  .support-card { top: 46%; width: min(72vw, 36svh, 330px); border-radius: 14px; }
  .support-carousel__arrow { top: 46%; width: 44px; height: 44px; }
  .support-carousel__arrow--prev { left: 10px; }
  .support-carousel__arrow--next { right: 10px; }
  .support-carousel__stage { bottom: 58px; }
  .support-carousel__controls { bottom: 0; gap: 12px; padding: 10px 12px; }
  .support-carousel__dots { gap: 6px; }
  .support-carousel__dot { width: 6px; height: 6px; }
}

@media (hover: none), (pointer: coarse) {
  .support-card.is-active .support-card__shade { opacity: 1; }
  .support-card.is-active .support-card__caption { opacity: 1; }
}

/* --------------------------------------------------------------------------
   SHOWS — full-viewport, muted autoplay carousel
   -------------------------------------------------------------------------- */

.shows-home,
.performance-home { overflow: hidden; }
.show-reel {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: #050505;
  outline: none;
}
.show-reel__track,
.show-reel__slide { position: absolute; inset: 0; }
.show-reel__slide {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 480ms var(--ease-out), visibility 480ms;
}
.show-reel__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.show-reel__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050505;
  cursor: default;
}
.show-reel__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent 44%);
  pointer-events: none;
}
.show-reel__caption {
  position: absolute;
  left: max(var(--pad-x), calc((100% - var(--container)) / 2));
  bottom: 30px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: calc(100% - (2 * var(--pad-x)));
}
.show-reel__event {
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.1vw, 17px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .01em;
  white-space: nowrap;
}
.show-reel__arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--bg);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .32);
  transform: translateY(-50%);
  transition: color 180ms linear, background-color 180ms linear;
}
.show-reel__arrow:hover { color: var(--white); background: var(--bg); }
.show-reel__arrow--prev { left: var(--pad-x); }
.show-reel__arrow--next { right: var(--pad-x); }
.show-reel__counter {
  position: absolute;
  right: max(var(--pad-x), calc((100% - var(--container)) / 2));
  bottom: 34px;
  z-index: 6;
  color: var(--white-70);
}
.shows-home__upcoming { padding-top: clamp(90px, 12vw, 180px); }

@media (max-width: 809.98px) {
  .show-reel { height: 100svh; min-height: 520px; }
  .show-reel__arrow { width: 44px; height: 44px; }
  .show-reel__caption { bottom: 24px; max-width: calc(100% - 96px); }
  .show-reel__counter { bottom: 26px; }
}

/* --------------------------------------------------------------------------
   LOGO INFORMATION DIALOG
   -------------------------------------------------------------------------- */

.logoband__link { width: 100%; }
.logo-info-trigger .logoband__item {
  transition: opacity 180ms linear;
}
.logo-info-trigger:hover .logoband__item,
.logo-info-trigger:focus-visible .logoband__item {
  opacity: 1;
}
.logo-dialog {
  position: fixed;
  width: min(520px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  margin: auto;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--white);
  background: #18191c;
  box-shadow: 0 35px 120px rgba(0, 0, 0, .72);
  overflow-x: hidden;
  overflow-y: auto;
}
.logo-dialog[open] {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  align-content: start;
}
.logo-dialog::backdrop { background: rgba(0, 0, 0, .72); backdrop-filter: blur(8px); }
.logo-dialog__close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white-70);
}
.logo-dialog__image {
  display: grid;
  place-items: center;
  position: relative;
  width: min(180px, 100%);
  height: 100px;
  margin: 0 0 clamp(34px, 5vw, 46px);
  overflow: hidden;
}
.logo-dialog__image img {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.logo-dialog__title {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-right: 45px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1;
  letter-spacing: -.04em;
}
.logo-dialog__copy {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  margin-bottom: 0;
  color: var(--white-70);
  line-height: 1.5;
}

@media (max-width: 479.98px) {
  .logo-dialog {
    width: calc(100% - 24px);
    max-height: calc(100svh - 24px);
    padding: 48px 24px 28px;
  }
  .logo-dialog__image {
    width: min(150px, 70%);
    height: 78px;
    margin-bottom: 30px;
  }
  .logo-dialog__title {
    padding-right: 0;
    font-size: clamp(26px, 10vw, 36px);
  }
  .logo-dialog__copy { margin-top: 18px; font-size: 14px; }
}

/* --------------------------------------------------------------------------
   PRESS KIT + BOOKING
   -------------------------------------------------------------------------- */

.simple-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 46px;
  min-height: 100vh;
  min-height: 100svh;
  padding: 80px var(--pad-x);
  border-top: 1px solid var(--line);
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .62)),
    url("../assets/img/press-kit-bg.webp") center 48% / cover no-repeat;
}
.simple-cta__title {
  font-size: clamp(56px, 10vw, 150px);
  line-height: .86;
  letter-spacing: -.06em;
}
.simple-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 18px clamp(30px, 5vw, 76px);
  border: 2px solid var(--white);
  border-radius: 999px;
  font-size: clamp(28px, 5vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.045em;
  color: var(--white);
  transition: color 300ms var(--ease-out),
              background 300ms var(--ease-out);
}
.simple-cta__button:hover {
  color: var(--bg);
  background: var(--white);
}

.booking-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(80px, 12vw, 180px) max(var(--pad-x), calc((100% - var(--container)) / 2));
  border-top: 1px solid var(--line);
}
.booking-contact__title {
  font-size: clamp(58px, 10vw, 150px);
  font-weight: 750;
  line-height: .86;
  letter-spacing: -.06em;
}
.booking-contact__mail {
  width: fit-content;
  font-size: clamp(22px, 4vw, 64px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.04em;
  color: var(--white-70);
  transition: color 240ms linear;
}
.booking-contact__mail:hover,
.booking-contact__mail:focus-visible { color: var(--accent-red); }

@media (max-width: 809.98px) {
  .booking-contact {
    gap: 18px;
    min-height: 50vh;
    min-height: 50svh;
    padding-block: 40px;
  }
}

/* --------------------------------------------------------------------------
   RELEASE RAIL — a horizontal record library
   -------------------------------------------------------------------------- */

.rail-wrap { position: relative; width: 100%; }

.rail {
  display: flex;
  align-items: stretch;
  gap: var(--grid-gap-col);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  scroll-snap-type: x proximity;
  /* No scroll-behavior here on purpose: drag-scrolling assigns scrollLeft on
     every pointer move, and animating each one makes the drag feel rubbery.
     The arrow buttons pass behavior:"smooth" per call instead. */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* First sleeve lines up with the container; the rail itself bleeds wide.
     scroll-padding must match, or snapping rests at the padding offset
     instead of at zero and the "back" arrow never looks disabled. */
  padding-inline: max(var(--pad-x), calc((100% - var(--container)) / 2));
  scroll-padding-inline: max(var(--pad-x), calc((100% - var(--container)) / 2));
  padding-bottom: 4px;
}
.rail::-webkit-scrollbar { display: none; }

.rail.is-dragging { scroll-snap-type: none; cursor: grabbing; }
.rail.is-dragging * { pointer-events: none; }

.rail__tile {
  flex: 0 0 auto;
  width: clamp(210px, 24vw, 320px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.rail__art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  background: #1d1e22;
  flex: 0 0 auto;
}
.rail__art img,
.rail__art .ph {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.rail__tile:hover .rail__art img { transform: scale(1.04); }

.rail__play {
  position: absolute;
  left: 50%; top: 50%;
  bottom: auto;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
  transform: translate(-50%, -50%);
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}
.rail__play:hover {
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,.26);
}
.rail__play svg { width: 16px; height: 16px; fill: var(--white); margin-left: 2px; }

.rail__player { position: absolute; inset: 0; }
.rail__tile .card__body { min-height: 0; }
.rail__open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: max-content;
  margin-top: 1px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white-70);
  background: rgba(255, 255, 255, .025);
  transition: color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out);
}
.rail__open:hover {
  color: var(--white);
  border-color: var(--white-30);
  background: rgba(255, 255, 255, .06);
}
.rail__edge {
  position: absolute;
  top: calc(clamp(210px, 24vw, 320px) / 2);
  z-index: 8;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 20px;
  color: rgba(20, 21, 23, .82);
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .24),
              inset 0 0 0 1px rgba(255, 255, 255, .42);
  transform: translateY(-50%);
  transition: color var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out),
              opacity var(--dur-fast) var(--ease-out);
}
.rail__edge--prev { left: clamp(8px, 1.4vw, 22px); }
.rail__edge--next { right: clamp(8px, 1.4vw, 22px); }
.rail__edge:hover { color: var(--bg); background: rgba(255, 255, 255, .82); }
.rail__edge[hidden] { display: none; }

@media (max-width: 809.98px) {
  .music-home,
  .reach-home,
  .support-home,
  .partners-home,
  .upcoming-home { padding-block: 40px; }
  .upcoming-home { padding-bottom: 72px; }
  .rail__edge { width: 42px; height: 42px; }
}

/* --------------------------------------------------------------------------
   QUIET INTERACTIONS — controls stay fixed; hover is communicated by colour
   -------------------------------------------------------------------------- */

a.card:hover .media img,
a.show-card:hover,
.support-card:hover,
.support-card:focus-visible,
.rail__tile:hover .rail__art img,
.logo-info-trigger:hover .logoband__item,
.logo-info-trigger:focus-visible .logoband__item {
  transform: none;
}

.facade:hover .facade__play { transform: translate(-50%, -50%); }
.support-carousel__arrow:hover { transform: translateY(-50%); }
a.row:hover { padding-left: 0; }

.support-card__caption,
.support-card:hover .support-card__caption,
.support-card:focus-visible .support-card__caption,
.support-card.is-active .support-card__caption {
  transform: none;
}
