/* ========== RESET ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; color: inherit; cursor: pointer; }

/* ========== HERO ========== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.1) saturate(0.85) brightness(0.85);
  animation: slowZoom 18s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

/* Vignette + gradient overlay for legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.15) 35%, rgba(10,10,10,0.15) 65%, rgba(10,10,10,0.85) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(10,10,10,0.55) 100%);
}

/* Subtle film grain */
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* ========== TOP BAR ========== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 48px;
  mix-blend-mode: difference;
}

/* Text wordmark placeholder. Replace with an <img> logo when the
   artist's own branding is ready — the topbar layout doesn't care. */
.logo-wordmark {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 1px;
  color: #fff;
  display: inline-block;
}

.menu-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  color: #fff;
  padding: 8px 6px;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.menu-btn:hover { opacity: 0.7; }
.menu-icon {
  font-size: 32px;
  line-height: 1;
  display: inline-block;
}

/* ========== HERO CONTENT ========== */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 0 24px;
  animation: fadeUp 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.7);
  margin-bottom: -6px;
}



/* ========== SCROLL DOWN ========== */
.scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: #fff;
}
.scroll-arrow {
  font-size: 14px;
  animation: arrowDrop 1.8s ease-in-out infinite;
}
@keyframes arrowDrop {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ========== SIDE META ========== */
.side-meta {
  position: absolute;
  top: 50%;
  z-index: 5;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.side-meta.left { left: 24px; transform: translateY(-50%) rotate(180deg); }
.side-meta.right { right: 24px; transform: translateY(-50%); }

/* ========== TOUR SECTION ========== */
.tour {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}

.tour-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tour-bg img {
  width: 70%;
  max-width: 900px;
  height: auto;
  opacity: 0.18;
  filter: blur(1px) grayscale(0.6);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.tour-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(10,10,10,0.7) 70%);
}

.tour-side-label {
  position: absolute;
  top: 110px;
  left: 28px;
  z-index: 5;
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.6);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.tour-side-label::after {
  content: '';
  display: block;
  width: 1px;
  height: 50vh;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  margin: 16px auto 0;
}

/* Marquee */
.marquee-stack {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  will-change: transform;
}

.marquee-track.left {
  animation: marqueeLeft 32s linear infinite;
}
.marquee-track.right {
  animation: marqueeRight 38s linear infinite;
}
.marquee-track.slow {
  animation-duration: 48s;
}

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

.marquee-content {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(60px, 11vw, 160px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  padding-right: 40px;
  /* Outline-only text */
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.85);
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* ========== FEATURE / VIDEO SECTION ========== */
.feature {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 60px 100px;
  overflow: hidden;
}

/* ========== TEXT WAVE BACKDROP ==========
   A grid of repeated characters whose per-cell opacity is driven by a
   trig expression in CSS. script.js animates a single inherited --t on
   the grid; every cell recomputes its own --l from that, so one property
   write per frame drives the whole field.
   Registered so calc() can treat them as numbers rather than tokens. */
@property --t {
  syntax: '<integer>';
  initial-value: 0;
  inherits: true;
}
@property --speed-factor {
  syntax: '<number>';
  initial-value: 1;
  inherits: true;
}

.text-wave {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #000;
  pointer-events: none;
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  --tile: 24px;
}

.text-wave-grid {
  position: relative;
  width: fit-content;
  height: fit-content;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.text-wave-cell {
  position: absolute;
  width: var(--tile);
  height: var(--tile);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--base-color, #ffffff);
  will-change: opacity;

  /* Distance from the grid's centre on each axis, always positive. */
  --offset-x: calc(var(--x) - 0.5);
  --abs-x: calc(max(var(--offset-x), -1 * var(--offset-x)));
  --offset-y: calc(var(--y) - 0.5);
  --abs-y: calc(max(var(--offset-y), -1 * var(--offset-y)));

  /* Travelling wave: the y term warps the x frequency, --t scrolls it. */
  --l: calc(
    sin(
      var(--abs-x) / cos(sin(var(--abs-y) * 2 + 60) * 2.5) * 3
      - (var(--t) * var(--speed-factor)) / 350
    )
  );
  opacity: max(var(--l), 0.05);
}

/* Motion-sensitive visitors get the field, holding still. */
@media (prefers-reduced-motion: reduce) {
  .text-wave-cell { opacity: 0.25; }
}

.feature-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  min-height: 540px;
}

/* Text card — sits top-left, overlaps the video */
.feature-card {
  background: #0a0a0a;
  padding: 44px 44px 40px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 470px;
  max-width: 90%;
}
.feature-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: 0;
  color: #fff;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.feature-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
}

/* Video frame — sits to the right, overlapped by card */
.feature-video {
  position: absolute;
  top: 100px;
  right: 0;
  width: 70%;
  aspect-ratio: 16 / 9;
  z-index: 2;
  cursor: pointer;
  overflow: hidden;
  background: #000;
}
.feature-video .video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s;
}
.feature-video:hover .video-thumb {
  transform: scale(1.04);
  opacity: 0.9;
}

.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 78px; height: 78px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.9);
  background: transparent;
  display: grid;
  place-items: center;
  color: #fff;
  transition: all 0.3s ease;
}
.video-play svg { transform: translateX(2px); }
.feature-video:hover .video-play {
  background: #fff;
  color: #0a0a0a;
  transform: translate(-50%, -50%) scale(1.08);
}

/* When iframe is injected */
.feature-video.playing { cursor: default; }
.feature-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ========== PLUS-ZOOM REVEAL ========== */
.zoom-intro {
  position: relative;
  width: 100%;
  height: 180vh; /* 80vh of pinned scroll — enough for zoom + × travel, short enough to exit cleanly */
  background: #ffffff;
}

.zoom-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #0a0a0a; /* black shows wherever the + mask is not */
}

/* White content sits underneath a circular mask. A single radial-gradient
   with a hard colour stop gives a crisp-edged circle at any size — as
   --wipe-r grows via JS, the visible circle grows with it. */
.zoom-content {
  position: absolute;
  inset: 0;
  background: #ffffff;
  padding: 100px 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;

  --wipe-r: 30px;

  -webkit-mask:
    radial-gradient(circle at center,
      #000 0 var(--wipe-r), transparent var(--wipe-r)) center / 100% 100% no-repeat;
          mask:
    radial-gradient(circle at center,
      #000 0 var(--wipe-r), transparent var(--wipe-r)) center / 100% 100% no-repeat;
}

/* Vertical side label */
.releases-side-label {
  position: absolute;
  left: 24px;
  top: 110px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: #0a0a0a;
  z-index: 5;
}
.releases-side-label::after {
  content: '';
  display: block;
  width: 1px;
  height: 24vh;
  background: rgba(0,0,0,0.5);
  margin: 16px auto 0;
}

.releases-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  flex-shrink: 0;
}

.releases-heading-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.releases-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 0.9;
  color: #0a0a0a;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.btn-releases {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  background: #0a0a0a;
  color: #fff;
  padding: 14px 28px;
  border: 2px solid #0a0a0a;
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.btn-releases:hover {
  background: #fff;
  color: #0a0a0a;
  border-color: #0a0a0a;
  transform: translateY(-2px);
}

.releases-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: #0a0a0a;
  max-width: 320px;
  font-weight: 400;
  align-self: end;
  padding-bottom: 8px;
}

/* ========== CARDS AREA (2x2 grid that flex-fills available height) ========== */
.cards-area {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: stretch;
}

.release-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px 56px;
  width: 100%;
  height: 100%;
}

.release-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  text-decoration: none;
  color: #0a0a0a;
  min-height: 0;
}

.card-img {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: #1a1a1a;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.release-card:hover .card-img img { transform: scale(1.05); }

/* Decorative + × marks in card corners */

/* Card meta — play button + title/artist */
.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 2px 0;
  flex-shrink: 0;
}
.card-play {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #0a0a0a;
  display: grid;
  place-items: center;
  color: #0a0a0a;
  background: transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
  cursor: pointer;
}
.card-play .icon-play,
.card-play .icon-pause {
  width: 14px;
  height: 14px;
}
.card-play .icon-play { transform: translateX(1px); }
.card-play .icon-pause { display: none; }
.card-play.is-playing { background: #0a0a0a; color: #fff; }
.card-play.is-playing .icon-play { display: none; }
.card-play.is-playing .icon-pause { display: block; }
.card-play.is-playing::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid #0a0a0a;
  animation: pulseRing 1.4s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.release-card:hover .card-play:not(.is-playing) {
  background: #0a0a0a;
  color: #fff;
}
.card-text h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.card-text p {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(0,0,0,0.6);
  font-weight: 500;
}

/* Vertical divider between the two columns */
.card-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #0a0a0a;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
}


/* ========== PHOTO BANNER + WIPE ==========
   The section is taller than the viewport so scrolling it has somewhere to
   go; the inner panel pins, and that scroll distance drives the sweep. */
.photo-banner {
  position: relative;
  width: 100%;
  height: 165vh;
  background: #0a0a0a; /* end-state black so the exit into the gallery is seamless */
}
.banner-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #0a0a0a;
}
.banner-img {
  width: 100%;
  height: 100%;
}
.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
  /* Scroll drives the push-in via --banner-zoom. Only opacity is
     transitioned — a transition on transform would lag behind the
     per-frame scale updates and make the zoom feel rubbery. */
  transform: scale(var(--banner-zoom, 1));
  transition: opacity 1.1s ease;
  will-change: transform, opacity;
}

/* Hidden start state is gated on html.js, which is set by an inline script
   in <head> — so it applies from the first paint (no flash of the image
   before it hides) and never applies at all if scripting is unavailable. */
html.js .photo-banner .banner-img img { opacity: 0; }
html.js .photo-banner.is-visible .banner-img img { opacity: 1; }

/* Anyone who opted out of motion just gets the picture. */
@media (prefers-reduced-motion: reduce) {
  .banner-img img { opacity: 1; transform: none; transition: none; }
}

.banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 50px 60px;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.6) 100%);
  pointer-events: none;
}
.banner-tag {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: #fff;
}

/* A black panel skewed off the bottom-left corner. JS drives --wipe-p
   from 0 → 1, sweeping it diagonally across the viewport. The skew gives
   the leading edge its angle; translate does the travel. */
.x-shape {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  --wipe-p: 0;
}
.x-bar {
  position: absolute;
  /* Oversized so the skewed edge never exposes a corner mid-sweep. */
  top: -25%;
  left: -60%;
  width: 160%;
  height: 150%;
  background: #0a0a0a;
  transform-origin: center center;
  will-change: transform;
  transform:
    translate3d(calc((var(--wipe-p) - 1) * 115%), 0, 0)
    skewX(-18deg);
}
/* Second bar trails slightly, so the sweep reads as two stacked planes
   rather than one flat slab. */
.x-bar-2 {
  opacity: 0.55;
  transform:
    translate3d(calc((var(--wipe-p) - 1) * 138%), 0, 0)
    skewX(-18deg);
}

.x-zoom-fade {
  position: absolute;
  inset: 0;
  background: #0a0a0a;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  will-change: opacity;
}

/* ========== BLACK GALLERY ========== */
.black-gallery {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  padding: 120px 60px 100px;
}

.gallery-header {
  max-width: 1300px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: end;
}
.gallery-eyebrow {
  display: block;
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.gallery-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(56px, 9vw, 130px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: uppercase;
}
.gallery-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 360px;
  align-self: end;
  padding-bottom: 14px;
}

/* ===== Upcoming events cards ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Shown in place of the cards once every published date has passed. Spans the
   whole grid so it reads as a message, not an empty first column. */
.events-empty {
  grid-column: 1 / -1;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 48px 20px;
  border: 1px dashed rgba(255,255,255,0.14);
  border-radius: 10px;
  margin: 0;
}

.event-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #1a1a1a;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.event-card:hover { transform: translateY(-4px); }

.event-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.event-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* No global brightness knock-down: it dimmed the whole photo just to make
     the text at the bottom readable. The gradient below does that job where
     it's actually needed, so the picture itself stays bright. */
  filter: saturate(0.95);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.event-card:hover .event-photo img { transform: scale(1.06); }

/* Scrim confined to the lower half, purely so the title and location stay
   legible. The top of the photo is left untouched — the date badge carries
   its own background and doesn't need help. */
.event-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0) 0%,
    rgba(10,10,10,0) 60%,
    rgba(10,10,10,0.42) 80%,
    rgba(10,10,10,0.95) 100%
  );
  pointer-events: none;
}

.event-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

/* A compact badge pinned to the top-left corner. This used to be a large
   block that filled most of the card and hid the photo behind it; the date
   still needs to be the first thing you read, but it doesn't need the room.
   Solid rather than frosted — backdrop-filter blurred the photo behind it. */
.event-date {
  align-self: flex-start;
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  background: rgba(10,10,10,0.74);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  padding: 9px 15px;
  line-height: 1;
}
.event-date .month {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.8);
}
.event-date .day {
  /* Day first, so it reads "14 AUG 2026" rather than "AUG 14 2026". */
  order: -1;
  font-family: 'Archivo Black', sans-serif;
  font-size: 21px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.01em;
}
.event-date .year {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}

.event-info h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  color: #fff;
  /* Insurance for a bright photo behind the text, now that the scrim starts
     lower down. Costs nothing visually and darkens none of the picture. */
  text-shadow: 0 1px 10px rgba(0,0,0,0.85);
}
.event-info p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  /* Was 0.6 — too faint once the scrim behind it was lightened. */
  color: rgba(255,255,255,0.82);
  margin-bottom: 18px;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

.event-tickets {
  display: block;
  text-align: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 14px 16px;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.event-tickets:hover {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}

/* ========== PHOTO ALBUM / COLLAGE ========== */
.album {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  width: 100%;
  min-height: 160vh;
  padding: 80px 60px 120px;
  overflow: hidden;
}

.album-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Audiowide', sans-serif;
  font-weight: 400;
  font-size: clamp(44px, 10vw, 190px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.album-photo {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  /* White edge plus a deep shadow reads as a print pinned to a board rather
     than an image sitting flat on the background. */
  border: 5px solid #fff;
  box-shadow: 0 22px 48px rgba(0,0,0,0.62);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.album-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
/* Hovering lifts the print off the board and straightens it. */
.album-photo:hover {
  transform: scale(1.03) rotate(0deg) !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.72);
  z-index: 4;
}

/* Photos ring the section so the central "LIFE IS CRAZY!" still reads through
   the middle band. Rotations are deliberately uneven — a board of prints is
   never square to the wall. */
.p-1 {
  top: 60px;
  left: 4%;
  width: clamp(200px, 18vw, 280px);
  aspect-ratio: 3/4;
  transform: rotate(-1.5deg);
}
.p-6 {
  top: 4%;
  left: 27%;
  width: clamp(180px, 16vw, 250px);
  aspect-ratio: 3/4;
  transform: rotate(2.5deg);
}
.p-2 {
  top: 8%;
  right: 4%;
  width: clamp(210px, 20vw, 300px);
  aspect-ratio: 4/3;
  transform: rotate(2deg);
}
.p-5 {
  bottom: 50px;
  left: 4%;
  width: clamp(230px, 21vw, 330px);
  aspect-ratio: 5/4;
  transform: rotate(-2deg);
}
.p-3 {
  bottom: 20%;
  left: 31%;
  width: clamp(190px, 18vw, 280px);
  aspect-ratio: 4/3;
  transform: rotate(-3deg);
}
.p-7 {
  bottom: 15%;
  right: 27%;
  width: clamp(170px, 15vw, 230px);
  aspect-ratio: 1/1;
  transform: rotate(3.5deg);
}
.p-4 {
  bottom: 8%;
  right: 5%;
  width: clamp(180px, 16vw, 250px);
  aspect-ratio: 3/4;
  transform: rotate(1.5deg);
}

/* ========== FULLSCREEN MENU OVERLAY ========== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-2%);
  transition: opacity 0.5s cubic-bezier(0.7, 0, 0.3, 1),
              visibility 0s linear 0.5s,
              transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  grid-template-rows: 1fr auto;
  padding: 60px 60px 40px;
  gap: 40px;
}
.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.5s cubic-bezier(0.7, 0, 0.3, 1),
              visibility 0s linear 0s,
              transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

/* Hide normal topbar while menu is open */
body.menu-open .topbar { display: none; }
body.menu-open { overflow: hidden; }

.menu-rotated-label {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: #fff;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.menu-rotated-label::after {
  content: '';
  display: block;
  width: 1px;
  height: 50vh;
  background: rgba(255,255,255,0.25);
  margin: 12px auto 0;
}

.menu-close {
  position: absolute;
  top: 24px;
  right: 36px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 50px;
  line-height: 1;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 5;
}
.menu-close:hover { transform: rotate(90deg); }

.menu-photo {
  position: relative;
  align-self: center;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #1a1a1a;
  margin-left: 60px;
}
.menu-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.menu-photo-img.fading { opacity: 0; }

.menu-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  padding-right: 20px;
}
.menu-item {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: end;
  gap: 24px;
  padding: 22px 0 18px;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}
.menu-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  align-self: end;
  padding-bottom: 14px;
}
.menu-text {
  display: flex;
  align-items: baseline;
  gap: 28px;
  flex-wrap: nowrap;
}
.menu-label-big {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(64px, 8.2vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s ease;
}
.menu-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.3s ease, transform 0.4s ease;
}
.menu-line {
  position: absolute;
  left: 60px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255,255,255,0.2);
  overflow: hidden;
}
.menu-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.7, 0, 0.3, 1);
}
.menu-item:hover .menu-line::after { transform: scaleX(1); }
.menu-item:hover .menu-label-big { transform: translateX(8px); }
.menu-item:hover .menu-sub { color: #fff; transform: translateX(8px); }

/* Bottom-right social links */
.menu-socials {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  padding-right: 20px;
  margin-top: 20px;
}
.menu-socials a {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.menu-socials a:hover { color: #fff; }

/* Stagger entry on open */
.menu-overlay .menu-item,
.menu-overlay .menu-photo,
.menu-overlay .menu-socials a {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.menu-overlay.open .menu-photo {
  transition-delay: 0.1s;
  opacity: 1;
  transform: translateY(0);
}
.menu-overlay.open .menu-item {
  opacity: 1;
  transform: translateY(0);
}
.menu-overlay.open .menu-item:nth-child(1) { transition-delay: 0.18s; }
.menu-overlay.open .menu-item:nth-child(2) { transition-delay: 0.26s; }
.menu-overlay.open .menu-item:nth-child(3) { transition-delay: 0.34s; }
.menu-overlay.open .menu-item:nth-child(4) { transition-delay: 0.42s; }
.menu-overlay.open .menu-socials a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* Mobile */
@media (max-width: 800px) {
  .menu-overlay {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    padding: 80px 24px 32px;
    gap: 24px;
  }
  /* Once the overlay stacks, the portrait is no longer a side panel — it
     becomes a full-width block that pushes the actual navigation down the
     screen. The menu's job on a phone is the four links. */
  .menu-photo { display: none; }
  .menu-items { justify-content: center; min-height: 60vh; }
  .menu-rotated-label { display: none; }
  .menu-label-big { font-size: clamp(36px, 10vw, 56px); }
  .menu-sub { display: none; }
  .menu-socials { flex-wrap: wrap; gap: 16px; justify-content: flex-start; }
  .menu-socials a { font-size: 10px; letter-spacing: 2px; }
}

/* ========== TRACKS PAGE ========== */
.tracks-page {
  background: #0a0a0a;
  color: #fff;
}

.tracks-hero {
  padding: 180px 60px 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.back-link {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  transition: color 0.3s;
}
.back-link:hover { color: #fff; }
.tracks-eyebrow {
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.tracks-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 17vw, 180px);
  line-height: 0.86;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}
.tracks-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
}

.tracks-list {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 60px 140px;
}

.track-row {
  display: grid;
  /* minmax(0, 1fr) rather than 1fr: a grid track defaults to min-width:auto,
     so a long track title would otherwise push the row wider than the screen
     instead of wrapping inside its column. */
  grid-template-columns: 50px 64px 50px minmax(0, 1fr) minmax(120px, 200px) 90px;
  align-items: center;
  gap: 24px;
  padding: 18px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease, padding-left 0.3s ease;
}

.track-thumb {
  width: 64px;
  height: 64px;
  overflow: hidden;
  background: #1a1a1a;
  position: relative;
}
.track-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.track-row:hover .track-thumb img { transform: scale(1.08); }
.track-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.track-row:hover {
  background: rgba(255,255,255,0.04);
  padding-left: 24px;
}

.track-num {
  font-family: 'Audiowide', sans-serif;
  font-size: 22px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}

.track-row-play {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.track-row-play .icon-play,
.track-row-play .icon-pause {
  width: 14px;
  height: 14px;
}
.track-row-play .icon-play { transform: translateX(1px); }
.track-row-play .icon-pause { display: none; }
.track-row-play.is-playing { background: #fff; color: #0a0a0a; border-color: #fff; }
.track-row-play.is-playing .icon-play { display: none; }
.track-row-play.is-playing .icon-pause { display: block; }
.track-row-play.is-playing::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  animation: pulseRing 1.4s ease-out infinite;
}
.track-row:hover .track-row-play:not(.is-playing) {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.track-info h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.track-info p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}

.track-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
}
.track-bars span {
  flex: 1;
  background: rgba(255,255,255,0.3);
  height: 30%;
  border-radius: 1px;
  transition: background 0.3s;
}
/* When the row's play button is playing, animate the bars */
.track-row:has(.track-row-play.is-playing) .track-bars span {
  background: #fff;
  animation: barDance 0.7s ease-in-out infinite alternate;
}
.track-row:has(.track-row-play.is-playing) .track-bars span:nth-child(2n) { animation-delay: 0.1s; }
.track-row:has(.track-row-play.is-playing) .track-bars span:nth-child(3n) { animation-delay: 0.2s; }
.track-row:has(.track-row-play.is-playing) .track-bars span:nth-child(4n) { animation-delay: 0.3s; }
.track-row:has(.track-row-play.is-playing) .track-bars span:nth-child(5n) { animation-delay: 0.15s; }
@keyframes barDance {
  from { height: 20%; }
  to   { height: 100%; }
}

.track-tag {
  font-family: 'Archivo Black', sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 10px;
  text-align: center;
  justify-self: end;
}

/* On the tracks page, the topbar already uses mix-blend-mode: difference,
   so it stays white-on-black automatically — no override needed. */

/* ========== CONTACT PAGE ========== */
.contact-page {
  background: #0a0a0a;
  color: #fff;
}

.contact-hero {
  padding: 180px 60px 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.contact-eyebrow {
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.contact-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 15.5vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}
.contact-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
}

.contact-methods {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 60px 140px;
}

.contact-card {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: #fff;
  transition: background 0.3s ease, padding-left 0.3s ease;
}
.contact-card:last-of-type { border-bottom: 1px solid rgba(255,255,255,0.08); }
.contact-card:hover {
  background: rgba(255,255,255,0.04);
  padding-left: 28px;
}

.cm-num {
  font-family: 'Audiowide', sans-serif;
  font-size: 22px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}

.cm-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cm-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

.cm-value {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.01em;
  color: #fff;
  text-transform: lowercase;
}

.cm-arrow {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  color: rgba(255,255,255,0.5);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s;
}
.contact-card:hover .cm-arrow {
  color: #fff;
  transform: translateX(8px);
}

.contact-socials-block {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: start;
  gap: 32px;
  padding: 32px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-socials-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-socials-list a {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: -0.01em;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  width: fit-content;
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
}
.contact-socials-list a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}
.contact-socials-list a:hover { transform: translateX(6px); }
.contact-socials-list a:hover::after { transform: scaleX(1); }

@media (max-width: 768px) {
  .contact-hero { padding: 130px 24px 40px; }
  .contact-methods { padding: 30px 16px 80px; }
  .contact-card {
    grid-template-columns: 36px 1fr auto;
    gap: 16px;
    padding: 22px 8px;
  }
  .contact-card:hover { padding-left: 16px; }
  .cm-num { font-size: 16px; }
  .cm-label { font-size: 10px; letter-spacing: 2px; }
  .cm-value { font-size: 16px; word-break: break-word; }
  .cm-arrow { font-size: 22px; }
  .contact-socials-block {
    grid-template-columns: 36px 1fr;
    gap: 16px;
    padding: 22px 8px;
  }
  .contact-socials-list a { font-size: 15px; }
}

/* ========== FOOTER ========== */
.page-footer {
  background: #0a0a0a;
  color: #fff;
  padding: 70px 60px 50px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  letter-spacing: 4px;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.footer-links a:hover { color: #fff; }
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .topbar { padding: 22px 24px; }
  .menu-label { display: none; }
  .side-meta { display: none; }
  .eyebrow { font-size: 9px; letter-spacing: 4px; }
  .tour-side-label { display: none; }
  .marquee-content { -webkit-text-stroke-width: 1px; }

  .feature { padding: 100px 24px 80px; }
  .feature-grid { min-height: auto; display: flex; flex-direction: column; gap: 0; }
  .feature-card {
    position: relative;
    width: 100%;
    padding: 32px 24px;
  }
  .feature-video {
    position: relative;
    top: -40px;
    width: 100%;
    margin-left: 0;
  }
  .video-play { width: 56px; height: 56px; }

  /* Mobile: disable sticky + mask. Let releases flow naturally. */
  .zoom-intro { height: auto; }
  .zoom-sticky { position: static; height: auto; overflow: visible; background: #fff; }
  .zoom-content {
    position: static;
    padding: 90px 20px 60px;
    gap: 24px;
    -webkit-mask: none;
    mask: none;
  }
  .releases-header { grid-template-columns: 1fr; gap: 16px; }
  .releases-desc { padding: 0; max-width: 100%; font-size: 13px; }
  .cards-area { min-height: auto; }
  .release-cards-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 20px; height: auto; }
  .card-divider { display: none; }
  .releases-side-label { display: none; }
  .card-img { aspect-ratio: 16 / 9; }

  .photo-banner { height: 150vh; }
  .banner-overlay { padding: 24px; }

  .black-gallery { padding: 80px 20px; }
  .gallery-header { grid-template-columns: 1fr; gap: 16px; margin-bottom: 50px; }
  .events-grid { grid-template-columns: 1fr; gap: 18px; }
  /* Mobile: drop aspect-ratio so the Tickets button always fits */
  .event-card { aspect-ratio: auto; max-height: none; min-height: 380px; }
  .event-content { padding: 20px 20px 24px; gap: 18px; }
  .event-date { padding: 8px 13px; }
  .event-date .day { font-size: 19px; }
  .event-info h3 { font-size: 16px; }
  .event-info p { font-size: 12px; margin-bottom: 14px; }
  .event-tickets { padding: 13px 16px; font-size: 11px; }

  /* Album mobile — clean vertical flow, no absolute overlap chaos */
  .album {
    padding: 70px 20px 80px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    overflow: visible;
  }

  /* Big "Life is crazy!" becomes a centered intro title on mobile */
  .album-bg-text {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    text-align: center;
    font-size: clamp(40px, 11vw, 72px);
    letter-spacing: 0.04em;
    line-height: 1;
    margin: 0 0 6px;
    -webkit-text-stroke: 1px rgba(255,255,255,0.55);
    white-space: normal;
  }

  /* Photos full-width, alternating aspects to add visual rhythm */
  .album-photo {
    position: relative;
    width: 100%;
    margin: 0;
    transform: none !important;
    top: auto; left: auto; right: auto; bottom: auto;
  }
  .p-1, .p-4, .p-6 { aspect-ratio: 3 / 4; max-height: 520px; }
  .p-2, .p-3 { aspect-ratio: 4 / 3; }
  .p-5 { aspect-ratio: 5 / 4; }
  .p-7 { aspect-ratio: 1 / 1; }
  /* The frame is scaled down here — a 5px border around a full-width phone
     photo looks like a mistake rather than a print. */
  .album-photo { border-width: 3px; box-shadow: 0 12px 28px rgba(0,0,0,0.5); }

  .tracks-hero { padding: 130px 24px 40px; }
  .tracks-list { padding: 30px 16px 80px; }
  .track-row {
    grid-template-columns: 28px 52px 44px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 14px 8px;
  }
  .track-thumb { width: 52px; height: 52px; }
  .track-row .track-bars { display: none; }
  .track-info { min-width: 0; }
  .track-info h3 {
    font-size: 14px;
    letter-spacing: 0.5px;
    overflow-wrap: anywhere;
  }
  .track-info p { font-size: 12px; overflow-wrap: anywhere; }
  .track-tag { font-size: 10px; padding: 5px 8px; letter-spacing: 1.2px; }
}

/* ==========================================================================
   MOBILE REFINEMENTS
   Touch targets, legibility floors, and the narrow-phone (<=400px) cases.
   Kept in one block at the end so mobile behaviour is easy to find and audit.
   ========================================================================== */

/* --- Touch targets ---------------------------------------------------------
   Matches a finger-driven pointer OR a phone-width screen. Pointer-coarse is
   the semantically right signal, but the width clause also catches narrow
   desktop windows and makes these rules verifiable in a normal browser.
   ~44px is the comfortable minimum for a reliable tap. */
@media (pointer: coarse), (max-width: 768px) {
  .footer-links a,
  .menu-socials a,
  .contact-socials-list a,
  .back-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 4px 2px;
  }

  .logo-wordmark {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .menu-btn { min-height: 44px; min-width: 44px; justify-content: flex-end; }

  .menu-close {
    min-width: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* The play button keeps its 36px ring visually, but the tappable area is
     padded out to 44px so it isn't a fiddly target. */
  .card-play {
    position: relative;
  }
  .card-play::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
  }

  .event-tickets { min-height: 44px; display: inline-flex; align-items: center; }
}

/* --- Legibility floors ---------------------------------------------------- */
@media (max-width: 768px) {
  .eyebrow { font-size: 11px; letter-spacing: 3px; }
  .footer-copy { font-size: 12px; }
  .footer-links a { font-size: 12px; }
  .scroll-label { font-size: 11px; }
  .cm-label { font-size: 11px; }
  .back-link { font-size: 12px; }
  .menu-socials a { font-size: 12px; letter-spacing: 2px; }
  .card-text p { font-size: 12px; letter-spacing: 0.5px; }
  .card-text h3 { font-size: 14px; }

  /* Long titles must wrap rather than widen their container. */
  .tracks-title,
  .contact-title,
  .gallery-title,
  .feature-title { overflow-wrap: anywhere; }
}

/* --- Narrow phones (iPhone SE and similar) -------------------------------- */
@media (max-width: 400px) {
  .topbar { padding: 18px 16px; }

  .hero-content { padding: 0 16px; gap: 22px; }

  .feature { padding: 90px 16px 70px; }
  .feature-card { padding: 26px 18px; }
  .black-gallery { padding: 70px 16px; }
  .tracks-hero { padding: 120px 16px 32px; }
  .tracks-list { padding: 24px 8px 70px; }
  .contact-hero { padding: 120px 16px 32px; }
  .contact-methods { padding: 24px 8px 70px; }
  .page-footer { padding: 56px 20px 40px; }
  .footer-links { gap: 16px; }

  .zoom-content { padding: 80px 16px 50px; }
  .album { padding: 60px 16px 70px; }
  .banner-overlay { padding: 18px; }

  .track-row { gap: 8px; padding: 12px 4px; }
  .track-thumb { width: 44px; height: 44px; }
  .track-row { grid-template-columns: 24px 44px 40px minmax(0, 1fr) auto; }
  .track-num { font-size: 12px; }
}

/* --- Landscape phones ------------------------------------------------------
   A 100vh hero leaves no room for content when the phone is on its side. */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { height: auto; min-height: 100svh; padding: 90px 0 70px; }
  .scroll-down { display: none; }
  .menu-overlay { padding-top: 70px; overflow-y: auto; }
}

/* ============================================================
   PERSISTENT TRACK PLAYER
   A bar pinned to the bottom of the window from the first play.
   Built by script.js so every page gets it from one include.
   ============================================================ */

.player-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: rgba(10, 10, 10, 0.94);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  /* Kept out of the layout AND the a11y tree until the first play, without
     the hidden attribute — a display rule elsewhere could out-rank that. */
  visibility: hidden;
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.45s;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.player-bar.is-open {
  visibility: visible;
  transform: none;
}

/* The footer would otherwise sit under the bar. This is a generated block
   rather than padding on <body>: the base rule sets body to height:100% with
   box-sizing:border-box, so padding is drawn INSIDE that fixed height and
   reserves nothing — the copyright line ended up behind the bar. An in-flow
   block after the content grows the scrollable area for real.
   The bar gains the home-indicator inset on notched iPhones; so does this. */
body.has-player::after {
  content: '';
  display: block;
  height: calc(88px + env(safe-area-inset-bottom, 0px));
}

/* The chat widget floats bottom-right at 24px and would land on top of the
   bar. It sets no !important, so lifting it here is enough. */
body.has-player #lw-fab { bottom: 104px !important; }
body.has-player #lw-panel { bottom: 104px !important; }

/* ---------- scrubber ---------- */
.player-scrub {
  position: relative;
  height: 4px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  touch-action: none;
}
.player-scrub::before {
  /* Widens the grab area without making the visible line thick. */
  content: '';
  position: absolute;
  inset: -7px 0;
}
.player-scrub-fill {
  height: 100%;
  width: 0;
  background: #fff;
  position: relative;
}
.player-scrub-fill::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%) scale(0);
  transition: transform 0.2s ease;
}
.player-scrub:hover .player-scrub-fill::after,
.player-scrub:focus-visible .player-scrub-fill::after { transform: translateY(-50%) scale(1); }
.player-scrub:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* ---------- layout ---------- */
.player-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 12px 24px;
  max-width: 1600px;
  margin: 0 auto;
}

.player-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.player-art {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
}
.player-art[hidden] { display: none; }
.player-art img { width: 100%; height: 100%; object-fit: cover; display: block; }

.player-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.player-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-credit {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- controls ---------- */
.player-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: center;
}
.player-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.player-btn:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }
.player-btn:active { transform: scale(0.92); }
.player-btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

.player-toggle {
  width: 46px;
  height: 46px;
  background: #fff;
  color: #0a0a0a;
}
.player-toggle:hover { background: #fff; color: #0a0a0a; transform: scale(1.05); }

/* ---------- right side ---------- */
.player-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 0;
}
.player-time {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.6);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.player-volume {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
}
.player-volume input[type='range'] {
  -webkit-appearance: none;
  appearance: none;
  width: 84px;
  /* 20px of grabbable height; the visible track is painted by the
     track pseudo-elements below, so the line still reads as 4px. */
  height: 20px;
  background: transparent;
  cursor: pointer;
}
.player-volume input[type='range']::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.22);
}
.player-volume input[type='range']::-moz-range-track {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.22);
}
.player-volume input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: none;
  margin-top: -4px; /* centre the thumb on the 4px track */
}
.player-volume input[type='range']::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: none;
}
.player-close { width: 32px; height: 32px; }

/* ---------- tablet ---------- */
@media (max-width: 900px) {
  .player-volume { display: none; }
  .player-inner { gap: 12px; padding: 10px 16px; }
}

/* ---------- phone ----------
   Two columns: what's playing, then play + next. Prev, the clock and the
   close button drop — on a phone the bar is a now-playing strip, and the
   row's own button still starts any track directly. */
@media (max-width: 640px) {
  .player-bar {
    /* Blur alone left the strip reading as part of the page behind it. A
       near-solid ground plus a lift above the edge separates the two. */
    background: rgba(12, 12, 12, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.55);
  }
  .player-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    /* The inset keeps the controls off the home indicator on a notched phone. */
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  }
  .player-controls { justify-self: end; gap: 4px; }
  .player-prev,
  .player-time,
  .player-close { display: none; }
  /* Collapsed rather than removed, so the grid stays two-column. */
  .player-side { display: none; }

  .player-meta { gap: 12px; }
  .player-art { width: 42px; height: 42px; border-radius: 7px; }
  .player-title { font-size: 12.5px; letter-spacing: 0.7px; }
  .player-credit { font-size: 11px; letter-spacing: 0.3px; }

  /* 44px tap boxes, but the filled circle inside the toggle stays 40px so
     it sits level with the next button instead of looming over it. */
  .player-btn { width: 44px; height: 44px; }
  .player-toggle {
    width: 44px;
    height: 44px;
    background: transparent;
    color: #fff;
    position: relative;
  }
  .player-toggle::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: #fff;
  }
  .player-toggle svg { position: relative; color: #0a0a0a; }
  .player-toggle:hover { background: transparent; transform: none; }

  .player-scrub { height: 3px; }

  body.has-player::after {
    height: calc(74px + env(safe-area-inset-bottom, 0px));
  }
  body.has-player #lw-fab { bottom: calc(88px + env(safe-area-inset-bottom, 0px)) !important; }
  body.has-player #lw-panel { bottom: calc(88px + env(safe-area-inset-bottom, 0px)) !important; }
}

@media (prefers-reduced-motion: reduce) {
  .player-bar { transition: none; }
  .player-btn, .player-toggle { transition: none; }
}

/* --- Player: finger-sized controls -----------------------------------------
   The bar's transport is the one thing a listener reaches for while walking.
   Sized by pointer type rather than width, so it also covers touch laptops
   and an iPad in landscape, which is wider than any phone breakpoint. */
@media (pointer: coarse) and (min-width: 641px) {
  /* A touch device has hardware volume keys, and a 4px-tall slider is a poor
     thing to drag with a finger. Drop it rather than half-size it. */
  .player-volume { display: none; }
  .player-btn { width: 44px; height: 44px; }
  .player-toggle { width: 48px; height: 48px; }
  .player-close { width: 44px; height: 44px; }
  /* The scrubber's own line stays 4px; the grab area was already widened by
     its ::before, but a coarse pointer wants more of it. */
  .player-scrub::before { inset: -12px 0; }
}

/* --- Track rows on a phone -------------------------------------------------
   Five columns left roughly 110px for the title, so most of them wrapped onto
   two lines and the credit onto a third. Dropping the index and moving the
   tag under the title gives the name the full width of the row. */
@media (max-width: 560px) {
  .track-row {
    grid-template-columns: 52px 44px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 7px;
    padding: 15px 8px;
  }
  .track-num { display: none; }
  /* Artwork and play button span both rows so they stay vertically centred
     against the title/tag stack. */
  .track-thumb { grid-column: 1; grid-row: 1 / span 2; align-self: center; }
  .track-row-play { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
  .track-info { grid-column: 3; grid-row: 1; }
  .track-tag { grid-column: 3; grid-row: 2; justify-self: start; }

  .track-info h3 { font-size: 15px; letter-spacing: 0.6px; margin-bottom: 3px; }
  .track-info p { font-size: 11.5px; letter-spacing: 0.4px; }
}
