/* ============================================================
   SGRO — DJ & PRODUCER
   Design system · rebuilt & optimized
   CI: #1ca0fc on black · Krona One / Quicksand
   ============================================================ */

:root {
  --bg: #050607;
  --bg-2: #0a0c0e;
  --panel: #101317;
  --panel-2: #14181d;
  --line: rgba(255, 255, 255, 0.08);
  --blue: #1ca0fc;
  --blue-deep: #047fd6;
  --glow: rgba(28, 160, 252, 0.5);
  --text: #eef3f7;
  --muted: #96a0a8;
  --display: 'Syncopate', sans-serif;
  --body: 'Montserrat', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.7, 0, 0.2, 1);
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* Syncopate is very wide — headings need tighter tracking + weight 700 */
h1, h2, h3, h4 { font-weight: 700; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--blue); color: #000; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

[hidden] { display: none !important; }

/* ---------- typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.35rem, 3.8vw, 2.5rem);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.12em;
}

.section-title .dot {
  color: var(--blue);
  text-shadow: 0 0 18px var(--glow);
  animation: dotPulse 2.6s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.section-eyebrow {
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

/* ---------- layout ---------- */

.wrap {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

section[id] { scroll-margin-top: calc(var(--nav-h) + 20px); }

.section {
  padding: clamp(5rem, 11vw, 9rem) 0;
  position: relative;
}

.section-head { margin-bottom: clamp(2.2rem, 5vw, 4rem); }

/* ============================================================
   WARNING GATE (intro overlay)
   ============================================================ */

.gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}

.gate.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* while the epilepsy warning is up, the page cannot be scrolled */
body:has(.gate:not(.is-hidden)) { overflow: hidden; }

.gate-inner { padding: 2rem; max-width: 560px; }

.gate-caution {
  width: 64px;
  margin: 0 auto 1.6rem;
  filter: drop-shadow(0 0 14px var(--glow));
  animation: cautionFlicker 3.2s steps(1) infinite;
}

@keyframes cautionFlicker {
  0%, 92%, 96%, 100% { opacity: 1; }
  93%, 95% { opacity: 0.25; }
}

.gate-title {
  font-family: var(--display);
  font-size: clamp(1rem, 3.4vw, 1.5rem);
  letter-spacing: 0.18em;
  color: #fff;
}

.gate-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 1rem 0 2.2rem;
}

.gate-enter {
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(28, 160, 252, 0.6);
  padding: 1.05rem 2.6rem 1rem;
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.gate-enter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-snap);
  z-index: -1;
}

.gate-enter:hover, .gate-enter:focus-visible {
  color: #000;
  box-shadow: 0 0 34px var(--glow);
}

.gate-enter:hover::before, .gate-enter:focus-visible::before { transform: scaleX(1); }

.gate-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.gate-enter--ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--muted);
}

.gate-enter--ghost:hover, .gate-enter--ghost:focus-visible { color: #000; }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* above the mobile-menu overlay (120) so the burger stays clickable */
  z-index: 130;
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav-inner {
  width: min(1320px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.45s var(--ease-out), border-color 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out), backdrop-filter 0.45s var(--ease-out);
}

.nav.is-scrolled .nav-inner {
  background: rgba(8, 10, 12, 0.72);
  border-color: var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 30px; width: auto; }

.nav-links {
  display: flex;
  gap: clamp(0.9rem, 2vw, 1.8rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '.';
  color: var(--blue);
  text-shadow: 0 0 10px var(--glow);
}

.nav-links a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.15rem;
  height: 1px;
  width: 100%;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-snap);
}

.nav-links a:hover::before, .nav-links a.is-active::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* burger */
.nav-burger {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 130;
}

.nav-burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #fff;
  transition: transform 0.4s var(--ease-snap), opacity 0.3s, top 0.4s var(--ease-snap);
}

.nav-burger span:nth-child(1) { top: 15px; }
.nav-burger span:nth-child(2) { top: 21px; }
.nav-burger span:nth-child(3) { top: 27px; }

.nav-burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(4, 5, 6, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}

.mobile-menu.is-open { opacity: 1; visibility: visible; }

.mobile-menu ul { list-style: none; margin: 0; padding: 0; text-align: center; }

.mobile-menu a {
  font-family: var(--display);
  font-size: clamp(1.3rem, 6vw, 2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  padding: 0.7rem 1rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s;
}

.mobile-menu a::after { content: '.'; color: var(--blue); }
.mobile-menu a:hover { color: var(--blue); }

.mobile-menu.is-open a { opacity: 1; transform: translateY(0); }

.mobile-menu.is-open li:nth-child(1) a { transition-delay: 0.08s; }
.mobile-menu.is-open li:nth-child(2) a { transition-delay: 0.14s; }
.mobile-menu.is-open li:nth-child(3) a { transition-delay: 0.2s; }
.mobile-menu.is-open li:nth-child(4) a { transition-delay: 0.26s; }
.mobile-menu.is-open li:nth-child(5) a { transition-delay: 0.32s; }
.mobile-menu.is-open li:nth-child(6) a { transition-delay: 0.38s; }
.mobile-menu.is-open li:nth-child(7) a { transition-delay: 0.44s; }
.mobile-menu.is-open li:nth-child(8) a { transition-delay: 0.5s; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#terrain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 34vh;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-logo {
  width: clamp(240px, 42vw, 460px);
  margin-inline: auto;
  filter: drop-shadow(0 0 30px rgba(28, 160, 252, 0.25));
}

.hero-tag {
  font-family: var(--display);
  font-size: clamp(0.62rem, 1.6vw, 0.8rem);
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1.6rem;
}

.hero-tag b { color: var(--blue); font-weight: 400; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.55rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollBeam 2s var(--ease-out) infinite;
}

@keyframes scrollBeam {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* no logo fly-in: the intro curtain reveal IS the logo entrance */

/* ============================================================
   SCROLL REVEALS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}

.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   LATEST RELEASE — perspective card
   ============================================================ */

.latest {
  position: relative;
  overflow: hidden;
}

.latest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.tilt-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.tilt-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tilt-card .layer-orb {
  transform: translateZ(46px) scale(1.06);
  filter: drop-shadow(0 0 40px var(--glow));
}

.tilt-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(28, 160, 252, 0.16), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.tilt-card:hover::after { opacity: 1; }

.latest-copy .section-eyebrow { margin-bottom: 0.6rem; }

.latest-title {
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.latest-sub { color: var(--muted); margin: 1.4rem 0 2.4rem; max-width: 42ch; }

/* CTA button, shared */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  background: var(--blue);
  padding: 1.1rem 2.2rem 1rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease-out);
}

.btn:hover { box-shadow: 0 0 40px var(--glow); transform: translateY(-2px); }
.btn:hover::before { left: 120%; }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(28, 160, 252, 0.55);
}

.btn--ghost:hover { background: rgba(28, 160, 252, 0.12); }

/* ============================================================
   TOURDATES
   ============================================================ */

.tour-frame {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  padding: clamp(1rem, 3vw, 2.4rem);
  min-height: 320px;
}

/* tourdates + liveset side by side */
.tour-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
}

@media (max-width: 900px) { .tour-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MUSIC GRID
   ============================================================ */

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: clamp(1rem, 2.4vw, 1.8rem);
}

.release-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s;
  will-change: transform;
}

.release-card:hover {
  transform: translateY(-8px);
  border-color: rgba(28, 160, 252, 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(28, 160, 252, 0.14);
}

.release-cover {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #08090b;
}

/* covers are square masters — contain guarantees the full artwork is visible */
.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.9s var(--ease-out);
}

.release-card:hover .release-cover img { transform: scale(1.07); }

.release-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 5, 7, 0.35);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  border: 0;
}

.release-card:hover .release-play,
.release-play:focus-visible { opacity: 1; }

.release-play .icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px var(--glow);
  transform: scale(0.85);
  transition: transform 0.4s var(--ease-out);
}

.release-card:hover .release-play .icon { transform: scale(1); }

.release-play svg { width: 20px; height: 20px; fill: #000; margin-left: 3px; }
.release-play.is-playing svg { margin-left: 0; }

.release-meta { padding: 0.95rem 1.05rem 1.1rem; }

.release-title {
  font-family: var(--display);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  display: block;
  color: var(--text);
  transition: color 0.3s;
}

.release-card:hover .release-title { color: var(--blue); }

.release-artist {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ============================================================
   BIO
   ============================================================ */

.bio-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.bio-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.bio-photo img { transition: transform 1.2s var(--ease-out); }
.bio-photo:hover img { transform: scale(1.04); }

.bio-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(28, 160, 252, 0.14), transparent 45%);
  pointer-events: none;
}

.bio-copy p { color: var(--muted); margin: 0 0 1.3em; }
.bio-copy p strong { color: var(--text); }

.bio-quote {
  font-family: var(--display);
  font-size: clamp(1rem, 2.6vw, 1.4rem);
  color: var(--text);
  line-height: 1.5;
  border-left: 2px solid var(--blue);
  padding-left: 1.4rem;
  margin: 2rem 0;
  text-transform: none;
}

.bio-quote .accent { color: var(--blue); }

/* stats strip */
.bio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
}

.bio-stat {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  background: var(--panel);
}

.bio-stat b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--blue);
  display: block;
}

.bio-stat span { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; }

/* ============================================================
   GALLERY MARQUEE
   ============================================================ */

.gallery { overflow: hidden; padding-block: clamp(3rem, 7vw, 5rem); }

.marquee {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: marquee var(--speed, 46s) linear infinite;
}

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

.marquee + .marquee { margin-top: 1.2rem; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.marquee figure {
  margin: 0;
  width: clamp(220px, 26vw, 340px);
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.marquee img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4);
  transition: filter 0.5s, transform 0.7s var(--ease-out);
}

.marquee figure:hover img { filter: grayscale(0); transform: scale(1.05); }

/* ============================================================
   CONTACT
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 2rem);
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.5s var(--ease-out);
}

.contact-card:hover {
  border-color: rgba(28, 160, 252, 0.5);
  transform: translateY(-4px);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 160, 252, 0.18), transparent 65%);
  pointer-events: none;
}

.contact-label {
  font-family: var(--display);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.contact-card a {
  display: block;
  font-family: var(--display);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  line-height: 2;
  transition: color 0.3s;
  word-break: break-word;
}

.contact-card a:hover { color: var(--blue); }

/* socials */
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: clamp(2rem, 5vw, 3rem);
}

.socials a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.35s, background 0.35s, transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.socials svg { width: 20px; height: 20px; fill: var(--text); transition: fill 0.35s; }

.socials a:hover {
  border-color: var(--blue);
  background: rgba(28, 160, 252, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 8px 26px rgba(28, 160, 252, 0.25);
}

.socials a:hover svg { fill: var(--blue); }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  border-top: 1px solid var(--line);
  padding: clamp(2.4rem, 6vw, 4rem) 0 7rem;
  background: var(--bg-2);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.footer-logo img { height: 34px; width: auto; opacity: 0.9; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-family: var(--display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--blue); }

.footer-copy { font-size: 0.8rem; color: var(--muted); width: 100%; }

/* ============================================================
   PLAYER BAR
   ============================================================ */

.player {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(8, 10, 12, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.5s var(--ease-out);
}

.player.is-active { transform: translateY(0); }

.player-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem clamp(1rem, 3vw, 2rem);
}

.player-toggle {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 0;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s;
}

.player-toggle:hover { box-shadow: 0 0 24px var(--glow); }
.player-toggle svg { width: 17px; height: 17px; fill: #000; }

.player-cover {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.player-meta { min-width: 0; flex: 1; }

.player-title {
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-artist { font-size: 0.75rem; color: var(--muted); }

.player-progress {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.player-progress .bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue));
  box-shadow: 0 0 12px var(--glow);
}

.player-close {
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 1.3rem;
  line-height: 1;
  padding: 0.4rem;
  transition: color 0.3s;
}

.player-close:hover { color: #fff; }

/* equalizer bars in player */
.eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
  flex-shrink: 0;
}

.eq span {
  width: 3px;
  background: var(--blue);
  border-radius: 2px;
  animation: eq 0.9s ease-in-out infinite alternate;
}

.eq span:nth-child(1) { animation-delay: 0s; }
.eq span:nth-child(2) { animation-delay: 0.25s; }
.eq span:nth-child(3) { animation-delay: 0.5s; }
.eq span:nth-child(4) { animation-delay: 0.12s; }

@keyframes eq {
  from { height: 20%; }
  to { height: 100%; }
}

.player.is-paused .eq span { animation-play-state: paused; height: 25%; }

/* ============================================================
   SUBPAGES
   ============================================================ */

.subpage-hero {
  padding: calc(var(--nav-h) + clamp(3rem, 9vw, 6rem)) 0 clamp(2.5rem, 6vw, 4rem);
  position: relative;
  overflow: hidden;
}

.subpage-hero h1 {
  font-size: clamp(1.9rem, 6vw, 3.6rem);
  letter-spacing: 0.05em;
}

.subpage-hero h1 .dot { color: var(--blue); text-shadow: 0 0 18px var(--glow); }

.subpage-hero .breadcrumb {
  font-family: var(--display);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.subpage-hero .breadcrumb a:hover { color: var(--blue); }

/* legal prose */
.prose { max-width: 78ch; color: var(--muted); }

.prose h2 {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--text);
  margin: 2.6rem 0 1rem;
}

.prose h3 { font-size: 0.9rem; color: var(--text); margin: 2rem 0 0.8rem; }
.prose p { margin: 0 0 1.1em; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.4em; }
.prose a { color: var(--blue); }
.prose a:hover { text-decoration: underline; }

/* release detail */
.release-hero {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.release-hero .tilt-card { max-width: 460px; }

.stream-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

/* press page */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.press-grid figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  position: relative;
}

.press-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.press-grid figure:hover img { transform: scale(1.05); }

.press-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2rem 1rem 0.8rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.4s;
}

.press-grid figure:hover figcaption { opacity: 1; }

/* download card */
.download-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  padding: clamp(1.4rem, 4vw, 2.2rem);
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}

.download-card:hover { border-color: rgba(28, 160, 252, 0.5); transform: translateY(-3px); }

.download-card .dl-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(28, 160, 252, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-card .dl-icon svg { width: 24px; height: 24px; fill: var(--blue); }

.download-card h3 { font-size: 0.85rem; letter-spacing: 0.08em; }
.download-card p { margin: 0.3rem 0 0; color: var(--muted); font-size: 0.85rem; }

/* ambient glow decorations */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 160, 252, 0.16), transparent 65%);
  pointer-events: none;
  filter: blur(10px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .latest-grid, .bio-grid, .release-hero { grid-template-columns: 1fr; }
  .bio-stats { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .release-hero .tilt-card { margin-inline: auto; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .music-grid { grid-template-columns: repeat(2, 1fr); }
  .release-meta { padding: 0.7rem 0.8rem 0.85rem; }
  .release-title { font-size: 0.62rem; }
  .download-card { grid-template-columns: auto 1fr; }
  .download-card .btn { grid-column: 1 / -1; justify-content: center; }
}

/* ============================================================
   V2 — OVER-ENGINEERED MOTION LAYER
   ============================================================ */

/* ---------- scroll progress ---------- */

.progress-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 140;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue));
  box-shadow: 0 0 14px var(--glow);
  transform-origin: left;
  transform: scaleX(0);
  pointer-events: none;
}

/* ---------- intro sequence (after gate) ---------- */

.intro {
  position: fixed;
  inset: 0;
  z-index: 190;
  pointer-events: none;
  visibility: hidden;
}

body.intro-running .intro { visibility: visible; }

.intro-panel {
  position: absolute;
  left: 0;
  right: 0;
  height: 50.5%;
  background: #000;
}

.intro-panel--top { top: 0; }
.intro-panel--bottom { bottom: 0; }

body.intro-open .intro-panel--top { animation: introPanelUp 1s var(--ease-snap) forwards; }
body.intro-open .intro-panel--bottom { animation: introPanelDown 1s var(--ease-snap) forwards; }

@keyframes introPanelUp { to { transform: translateY(-101%); } }
@keyframes introPanelDown { to { transform: translateY(101%); } }

.intro-beam {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(62vw, 560px);
  height: 4px;
  transform: translate(-50%, -50%) scaleX(0);
  background: var(--blue);
  border-radius: 4px;
  box-shadow: 0 0 30px var(--glow), 0 0 80px var(--glow);
}

body.intro-running .intro-beam { animation: beamGrow 0.9s var(--ease-snap) 0.1s forwards; }
body.intro-open .intro-beam { animation: beamDie 0.5s var(--ease-snap) forwards; }

@keyframes beamGrow { to { transform: translate(-50%, -50%) scaleX(1); } }
@keyframes beamDie {
  0% { transform: translate(-50%, -50%) scaleX(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scaleX(0.02) scaleY(6); opacity: 0; }
}

.intro-emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74px;
  transform: translate(-50%, calc(-50% - 60px));
  opacity: 0;
  filter: drop-shadow(0 0 20px var(--glow));
}

body.intro-running .intro-emblem { animation: emblemStrobe 1.1s steps(1) 0.55s forwards; }

@keyframes emblemStrobe {
  0% { opacity: 1; }
  8% { opacity: 0; }
  16% { opacity: 1; }
  24% { opacity: 0; }
  34% { opacity: 1; }
  100% { opacity: 1; }
}

.intro-status {
  position: absolute;
  top: calc(50% + 34px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  opacity: 0;
}

body.intro-running .intro-status { animation: statusIn 0.4s 0.7s forwards; }
body.intro-open .intro-status { animation: statusOut 0.25s forwards; }

@keyframes statusIn { to { opacity: 1; } }
@keyframes statusOut { to { opacity: 0; } }

.intro-flash {
  position: absolute;
  inset: 0;
  background: var(--blue);
  opacity: 0;
}

body.intro-open .intro-flash { animation: flash 0.5s steps(1); }

@keyframes flash {
  0% { opacity: 0.35; }
  30% { opacity: 0; }
  40% { opacity: 0.18; }
  55% { opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- hero video layer ---------- */

/* live photo behind everything: visible whenever the video is hidden,
   not yet consented, buffering or looping */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.05);
}

.hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 178svh);
  height: max(100svh, 56.25vw);
  transform: translate(-50%, -50%) scale(1.35);
  border: 0;
  pointer-events: none;
  opacity: 0;
  /* fades to the terrain whenever the player is not actually playing
     (buffering, loop restart) — no spinner or pause UI ever visible */
  transition: opacity 0.7s var(--ease-out);
}

body.is-entered .hero-video iframe.is-ready { opacity: 1; }

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(3, 4, 6, 0.15), rgba(3, 4, 6, 0.72) 78%),
    linear-gradient(rgba(5, 6, 7, 0.5), rgba(5, 6, 7, 0.55) 60%, var(--bg));
  pointer-events: none;
}

/* mesh spans the whole hero and is clickable (waves on click) */
.hero #terrain { z-index: 2; opacity: 0.85; cursor: pointer; }
.hero .hero-center { z-index: 3; pointer-events: none; }
.hero .hero-scroll { z-index: 3; pointer-events: none; }
.hero::after { z-index: 2; pointer-events: none; }

/* hero scroll-out (driven by JS) */
.hero-center { will-change: transform, opacity; }

/* ---------- split letter reveal ---------- */

.split .ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.9em) rotate(6deg);
  transition: opacity 0.5s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: calc(var(--i) * 45ms);
}

.split.is-visible .ch,
.is-visible .split .ch,
body.is-entered .hero .split .ch { opacity: 1; transform: none; }

/* ---------- floating decor ---------- */

.floaty {
  position: absolute;
  pointer-events: none;
  will-change: transform;
  z-index: 0;
}

.floaty--torus { animation: floatSlow 9s ease-in-out infinite alternate; }
.floaty--orb { animation: floatSlow 12s ease-in-out infinite alternate-reverse; }

@keyframes floatSlow {
  from { translate: 0 -14px; rotate: -4deg; }
  to { translate: 0 14px; rotate: 5deg; }
}

/* ---------- merch ---------- */

.merch { overflow: hidden; }

.merch-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(900px circle at 85% 20%, rgba(28, 160, 252, 0.14), transparent 55%),
    var(--panel);
  padding: clamp(2rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  overflow: hidden;
}

.merch-panel::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(120deg, transparent 30%, rgba(28, 160, 252, 0.6), transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderSweep 5s linear infinite;
  background-size: 300% 100%;
  pointer-events: none;
}

@keyframes borderSweep {
  from { background-position: 300% 0; }
  to { background-position: -300% 0; }
}

.merch-sub { color: var(--muted); max-width: 46ch; margin: 1.3rem 0 2rem; }

.merch-visual {
  position: relative;
  min-height: 260px;
}

.merch-visual .merch-orb {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(120%, 460px);
  filter: saturate(1.2);
  animation: orbSpin 40s linear infinite;
  opacity: 0.9;
}

@keyframes orbSpin { to { transform: rotate(360deg); } }

.merch-visual .merch-vbar {
  position: absolute;
  inset: 0;
  margin: auto;
  height: 90%;
  width: auto;
  animation: floatSlow 7s ease-in-out infinite alternate;
  filter: drop-shadow(0 24px 50px rgba(28, 160, 252, 0.35));
}

@media (max-width: 900px) {
  .merch-panel { grid-template-columns: 1fr; }
  .merch-visual { min-height: 300px; }
}

/* ---------- grain overlay ---------- */

.grain {
  position: fixed;
  inset: -100%;
  z-index: 250;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.9s steps(4) infinite;
}

@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1.4%); }
  50% { transform: translate(1.2%, -1.8%); }
  75% { transform: translate(-1.4%, -0.8%); }
  100% { transform: translate(0, 0); }
}

/* ---------- reveal variants ---------- */

.reveal--scale { transform: scale(0.92) translateY(20px); }
.reveal--scale.is-visible { transform: none; }

.reveal--blur { filter: blur(12px); }
.reveal--blur.is-visible { filter: blur(0); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 1.1s var(--ease-out); }

/* ---------- wide tilt card (latest release art is 2:1) ---------- */

.tilt-card--wide { aspect-ratio: 2048 / 1049; }

/* release-detail cover card: full square artwork, never cropped */
.tilt-card--cover { background: #08090b; }
.tilt-card--cover img { object-fit: contain; }

/* ---------- merch product cards (real shop products) ---------- */

.merch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.8rem);
}

.product-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.4s, box-shadow 0.45s var(--ease-out);
}

.product-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  border-color: rgba(28, 160, 252, 0.55);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55), 0 0 44px rgba(28, 160, 252, 0.16);
}

.product-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.product-card:hover .product-photo img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--display);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000;
  background: var(--blue);
  padding: 0.45rem 0.8rem 0.4rem;
  border-radius: 4px;
  box-shadow: 0 0 20px var(--glow);
}

.product-info {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem 1.15rem;
}

.product-name {
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.5;
}

.product-price {
  font-family: var(--body);
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card:hover .product-price { transform: scale(1.12); }

@media (max-width: 640px) {
  .merch-grid { grid-template-columns: 1fr; }
}

/* ---------- waterfall card entries ---------- */

.reveal--card {
  transform: translateY(56px) scale(0.95) rotate(1.2deg);
  filter: blur(5px);
}

.reveal--card.is-visible {
  transform: none;
  filter: blur(0);
  transition: opacity 0.8s var(--ease-out), transform 0.9s var(--ease-out),
    filter 0.7s var(--ease-out);
  transition-delay: var(--d, 0s);
}

/* ---------- section-head sweep underline ---------- */

.section-head { position: relative; }

.section-head::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -14px;
  width: min(140px, 30%);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease-snap) 0.35s;
}

.section-head.is-visible::after { transform: scaleX(1); }

/* ---------- eyebrow wipe-in ---------- */

.reveal .section-eyebrow {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s var(--ease-snap) 0.1s;
}

.reveal.is-visible .section-eyebrow { clip-path: inset(0 0 0 0); }

/* ---------- springy CTAs ---------- */

.btn { transition: box-shadow 0.35s var(--ease-out), transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }

/* ---------- services ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1rem, 2.4vw, 1.6rem);
}

.service-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  padding: clamp(1.4rem, 3vw, 2rem);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.45s var(--ease-out);
}

.service-card:hover {
  border-color: rgba(28, 160, 252, 0.55);
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5), 0 0 36px rgba(28, 160, 252, 0.12);
}

.service-card h3 {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 0.7rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.service-card .service-arrow {
  position: absolute;
  top: 1.2rem;
  right: 1.3rem;
  color: var(--blue);
  font-size: 1.1rem;
  transform: translateX(-6px);
  opacity: 0;
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}

.service-card:hover .service-arrow { transform: none; opacity: 1; }

/* ---------- collapsed discography (8 visible, rest behind toggle) ---------- */

.music-grid .release-card.is-extra { display: none; }
.music-grid.is-expanded .release-card.is-extra { display: block; }

.music-toggle {
  display: flex;
  margin: clamp(1.6rem, 4vw, 2.4rem) auto 0;
}

/* ---------- language switcher (burger menu) ---------- */

.lang-switch {
  position: absolute;
  bottom: max(2rem, env(safe-area-inset-bottom));
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out) 0.45s;
}

.mobile-menu.is-open .lang-switch { opacity: 1; }

.lang-switch button {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.55rem 0.7rem 0.5rem;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.lang-switch button:hover { color: var(--text); border-color: rgba(28, 160, 252, 0.5); }

.lang-switch button.is-active {
  color: #000;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 18px var(--glow);
}

/* subtle footer variant (desktop language switch) */
.lang-switch--footer {
  position: static;
  opacity: 1;
  justify-content: flex-start;
  gap: 0.4rem;
  transition: none;
}

.lang-switch--footer button {
  font-size: 0.52rem;
  padding: 0.4rem 0.55rem 0.35rem;
  border-radius: 6px;
}

.lang-switch--footer button.is-active { box-shadow: none; }

/* ---------- downloads grid (1:1 vom Original: Cover-Kacheln → Hypeddit) ---------- */

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: clamp(0.9rem, 2vw, 1.4rem);
}

.dl-tile {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #08090b;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.4s, box-shadow 0.45s var(--ease-out);
}

.dl-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(28, 160, 252, 0.55);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5), 0 0 30px rgba(28, 160, 252, 0.14);
}

.dl-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.8s var(--ease-out);
}

.dl-tile:hover img { transform: scale(1.06); }

.dl-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1.6rem 0.8rem 0.7rem;
  background: linear-gradient(transparent, rgba(3, 5, 7, 0.85));
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s var(--ease-out);
}

.dl-tile:hover .dl-overlay { opacity: 1; transform: none; }

@media (max-width: 560px) {
  .downloads-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- consent banner ---------- */

.consent {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translate(-50%, 140%);
  width: min(680px, calc(100% - 2rem));
  z-index: 160;
  background: rgba(10, 12, 15, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.3rem 1.5rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
  transition: transform 0.6s var(--ease-out);
  visibility: hidden;
}

.consent.is-open { transform: translate(-50%, 0); visibility: visible; }

.consent h2 {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.consent p {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.consent p a { color: var(--blue); }

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.consent-actions .btn { padding: 0.85rem 1.5rem 0.8rem; font-size: 0.58rem; }

/* placeholder shown instead of Bandsintown before consent */
.tour-consent-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  min-height: 260px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- hero CTAs ---------- */

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.2rem;
  pointer-events: auto;
}

/* ---------- booking (inside Contact) ---------- */

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(1.4rem, 3.5vw, 2.5rem);
  margin-top: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

@media (max-width: 900px) { .booking-grid { grid-template-columns: 1fr; } }

.booking-form {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  padding: clamp(1.4rem, 3.5vw, 2.2rem);
}

.booking-form h3 {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
}

.booking-form .field { margin-bottom: 0.9rem; }

.booking-form label {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  background: #0a0c0f;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--body);
  font-size: 0.92rem;
  padding: 0.7rem 0.85rem;
  transition: border-color 0.3s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { outline: none; border-color: var(--blue); }

.booking-form textarea { min-height: 90px; resize: vertical; }

.booking-form .row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

@media (max-width: 560px) { .booking-form .row2 { grid-template-columns: 1fr; } }

/* multi-step funnel */
.funnel-progress {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.funnel-progress span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.funnel-bar {
  flex: 1;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.funnel-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue));
  box-shadow: 0 0 10px var(--glow);
  transition: width 0.5s var(--ease-snap);
}

.funnel-q {
  font-size: 1.02rem;
  font-weight: 600;
  margin: 0 0 1.1rem;
}

.funnel-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.funnel-options--row { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 560px) { .funnel-options--row { grid-template-columns: 1fr 1fr; } }

.funnel-opt {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0a0c0f;
  color: var(--text);
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.95rem 0.8rem;
  transition: border-color 0.25s, background 0.25s,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.funnel-opt:hover { border-color: rgba(28, 160, 252, 0.6); transform: translateY(-2px); }

.funnel-opt.is-active {
  border-color: var(--blue);
  background: rgba(28, 160, 252, 0.14);
  box-shadow: 0 0 18px rgba(28, 160, 252, 0.15);
}

.funnel-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.3rem;
}

.funnel-back {
  background: none;
  border: 0;
  color: var(--muted);
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6rem 0;
  transition: color 0.25s;
}

.funnel-back:hover { color: var(--text); }

/* step transition */
.funnel-anim > * { animation: funnelIn 0.45s var(--ease-out) both; }
.funnel-anim > *:nth-child(2) { animation-delay: 0.04s; }
.funnel-anim > *:nth-child(3) { animation-delay: 0.08s; }
.funnel-anim > *:nth-child(4) { animation-delay: 0.12s; }
.funnel-anim > *:nth-child(5) { animation-delay: 0.16s; }

@keyframes funnelIn {
  from { opacity: 0; transform: translateX(26px); }
  to { opacity: 1; transform: none; }
}

.funnel-success {
  text-align: center;
  padding: 2rem 0;
}

.funnel-check {
  width: 74px;
  height: 74px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 44px var(--glow);
  animation: checkPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.funnel-check svg { width: 34px; height: 34px; fill: #000; }

@keyframes checkPop {
  from { transform: scale(0.3); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.funnel-success h3 { font-size: 0.95rem; margin-bottom: 0.6rem; }
.funnel-success p { color: var(--muted); margin: 0; }

/* live proof: click-to-load YouTube facade */
.liveset {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  cursor: pointer;
  background: #000;
}

.liveset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), opacity 0.4s;
}

.liveset:hover img { transform: scale(1.04); }

.liveset .liveset-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 5, 7, 0.25);
}

.liveset .liveset-play span {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px var(--glow);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.liveset:hover .liveset-play span { transform: scale(1.12); }

.liveset .liveset-play svg { width: 26px; height: 26px; fill: #000; margin-left: 4px; }

.liveset iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.liveset-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* references + press quote */
.refs-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem 1.6rem;
  margin-top: 1.4rem;
}

.refs-strip .refs-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}

.refs-strip span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.press-quote {
  border-left: 2px solid var(--blue);
  padding-left: 1.2rem;
  margin: 1.6rem 0 0;
}

.press-quote p {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  margin: 0;
}

.press-quote cite {
  font-family: var(--body);
  font-style: normal;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---------- fan capture ---------- */

.fan-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(700px circle at 15% 0%, rgba(28, 160, 252, 0.14), transparent 55%),
    var(--panel);
  padding: clamp(2rem, 6vw, 4rem);
  text-align: center;
}

.fan-panel .section-title { display: inline-flex; }

.fan-sub {
  color: var(--muted);
  max-width: 52ch;
  margin: 1.2rem auto 2rem;
}

.fan-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

/* ---------- tourdates booking fallback ---------- */

.tour-bookcta {
  margin-top: 1.4rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.tour-bookcta a { color: var(--blue); font-weight: 600; }
.tour-bookcta a:hover { text-decoration: underline; }

/* ---------- 404 ---------- */

.page-404 {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.page-404 .code {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(4rem, 18vw, 9rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(28, 160, 252, 0.8);
  text-shadow: 0 0 60px rgba(28, 160, 252, 0.25);
}

/* ---------- player spring entrance ---------- */

.player.is-active { animation: playerSpring 0.7s cubic-bezier(0.34, 1.56, 0.64, 1); }

@keyframes playerSpring {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

/* ---------- magnetic buttons ---------- */

[data-magnet] {
  transition: transform 0.25s var(--ease-out);
  will-change: transform;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .hero-center > * { opacity: 1 !important; transform: none !important; }
  .marquee { animation: none; flex-wrap: wrap; width: auto; }
}
