/* SICK INDIVIDUALS — calm, dark, precise */

:root {
  --bg: #121212;
  --fg: #f0f0f0;
  --muted: #b0b0b0;
  --line: rgba(255, 255, 255, 0.28);
  --bar: #cfcfcf;
  --bar-ink: #121212;
  --rail: 3.75rem;
  --font: "Switzer", "Avenir Next", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 1px solid #fff;
  outline-offset: 3px;
}

::selection {
  background: #fff;
  color: #000;
}

/* ——— Chrome ——— */

.rail-vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
  display: none;
  width: var(--rail);
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-right: 1px solid var(--line);
  background: var(--bg);
}

.rail button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.topbar button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.35rem 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  flex-shrink: 0;
}

.rail .brand {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.25rem;
  padding: 0 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.topbar .brand {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.menu-icon {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 0.95rem;
  height: 0.8rem;
}

.topbar .menu-icon {
  width: 1rem;
  height: 0.72rem;
}

.menu-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.menu-icon span:nth-child(1) {
  top: 0;
}
.menu-icon span:nth-child(2) {
  top: 50%;
}
.menu-icon span:nth-child(3) {
  top: 100%;
}

body.menu-open .menu-icon span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}
body.menu-open .menu-icon span:nth-child(2) {
  opacity: 0;
}
body.menu-open .menu-icon span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}

/* Compact menu — soft slide from left */
.menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  background: var(--bg);
  transform: translateX(-100%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  pointer-events: none;
}

.menu.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.menu__inner {
  display: flex;
  width: 100%;
  height: 100%;
  padding-top: 3.25rem;
  opacity: 0;
  transition: opacity 0.35s ease 0.08s;
}

.menu.is-open .menu__inner {
  opacity: 1;
}

.menu__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 28rem;
  padding: 2rem 1.5rem 2rem;
}

.menu__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  max-width: 100%;
  margin: 0 0 2rem;
}

.menu__mark {
  margin: 0 0 0.35rem;
  /* Trailing letter-spacing weghalen zodat rechterrand = laatste S */
  margin-right: -0.2em;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--muted);
  white-space: nowrap;
}

/* Links gelijk met de S; ~1% breder zodat het kader optisch klopt */
.menu__logo {
  display: block;
  width: 0;
  min-width: 101%;
  height: auto;
  margin: 0;
}

.menu__links {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.menu__links a {
  padding: 0.45rem 0;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.menu__links a:hover,
.menu__links a.is-active {
  color: #fff;
}

.menu__partners {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.menu__partners a:hover {
  color: #fff;
}

.menu__right {
  display: none;
  flex: 1;
  border-left: 1px solid var(--line);
}

.menu__preview {
  width: 100%;
  height: 100%;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

/* ——— Pages ——— */

.page {
  min-height: 100vh;
  padding-top: 3.25rem;
}

.page.home {
  padding-top: 0;
}

/* ——— Home ——— */

.home {
  position: relative;
  height: 100dvh;
  overflow: hidden;
  background: #000;
}

.home__bg {
  position: absolute;
  inset: 0;
  background-position: 50% 18%;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.1);
}

.home__panels {
  position: relative;
  z-index: 1;
  display: grid;
  /* Mobiel: 2×2 — dichter bij desktop (verticale letters) */
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
}

.home__panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home__panel:nth-child(2n) {
  border-right: 0;
}

.home__panel:nth-child(n + 3) {
  border-bottom: 0;
}

.home__panel-photo {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  filter: brightness(0.55);
  box-shadow: inset 0 0 200px 50px rgba(0, 0, 0, 0.7);
  transition: opacity 0.12s linear;
}

.home__panel--tour .home__panel-photo {
  background-position: 50% 55%;
}
.home__panel--music .home__panel-photo {
  background-position: center center;
}
.home__panel--livesets .home__panel-photo {
  background-position: center center;
}
.home__panel--about .home__panel-photo {
  background-position: 51% 76%;
}
.home__panel--contact .home__panel-photo {
  background-position: center 35%;
}

.home__label {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.home__label-sub {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 10%;
  margin: 0;
  transform: translate(-50%, 0.35rem);
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.4);
  opacity: 0;
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    color 0.15s ease;
}

.home__label:has(h2.is-settled) .home__label-sub {
  opacity: 1;
  transform: translate(-50%, 0);
}

.home__panel h2 {
  position: absolute;
  top: 44%;
  left: 50%;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /* Start dicht; spreidt uit via homeLabelSpread */
  gap: 0.5vh;
  width: max-content;
  height: 1em;
  margin: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center center;
  /* Mobiel: zelfde verticale look als desktop, geschaald */
  font-family: "Bebas Neue", "Clash Display", var(--font);
  font-size: min(15vw, 11vh);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  text-indent: 0;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  transition:
    transform 0.18s ease,
    filter 0.08s linear;
  will-change: transform, filter;
  animation: homeLabelSpread 3.1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s forwards;
}

.home__panel--tour h2 {
  animation-delay: 0.2s;
}
.home__panel--livesets h2 {
  animation-delay: 0.35s;
}
.home__panel--about h2 {
  animation-delay: 0.5s;
}
.home__panel--contact h2 {
  animation-delay: 0.65s;
}

/* Mobiel: volledige merknaam onderaan, nooit SICK / INDIVIDUALS op 2 regels */
@media (max-width: 899px) {
  .home__panel--about .home__label-sub {
    letter-spacing: 0.12em;
    text-indent: 0.12em;
    font-size: 0.54rem;
  }
}

@keyframes homeLabelSpread {
  from {
    gap: 0.5vh;
  }
  to {
    gap: 3.8vh;
  }
}

/* Grain + gradient op elke letter (werkt met gesplitste spans) */
.home__panel h2 span {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 0.52em;
  opacity: 0.42;
  transition: opacity 0.05s linear;
  color: transparent;
  background-image:
    url("../images/grain.png"),
    linear-gradient(
      150deg,
      #ffffff 0%,
      #e0e0e0 32%,
      #9a9a9a 62%,
      #6a6a6a 82%,
      #4d4d4d 100%
    );
  background-size:
    130px auto,
    220% 220%;
  background-position:
    0 0,
    0% 50%;
  background-repeat: repeat, no-repeat;
  background-blend-mode: soft-light, normal;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: homeTextSheen 9s ease-in-out infinite;
  will-change: background-position;
}

@keyframes homeTextSheen {
  0% {
    background-position:
      0 0,
      0% 50%;
  }
  50% {
    background-position:
      0 0,
      100% 50%;
  }
  100% {
    background-position:
      0 0,
      0% 50%;
  }
}

/* Touch / hover */
@media (hover: none) {
  .home__panel:active .home__panel-photo {
    opacity: 1;
  }

  .home__panel:active h2 {
    transform: translate(-50%, -50%) rotate(-90deg);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
  }

  .home__panel:active h2 span {
    opacity: 1;
  }
}

@media (hover: hover) {
  .home__panel:hover .home__panel-photo {
    opacity: 1;
  }

  .home__panel:hover h2 span {
    /* Grain blijft; volle helderheid */
    opacity: 1;
  }
}

/* Mobiel: glow, rotatie behouden */
@media (hover: hover) and (max-width: 899px) {
  .home__panel:hover h2 {
    transform: translate(-50%, -50%) rotate(-90deg);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
  }
}

@media (hover: hover) and (min-width: 900px) {
  /* Geen scale — letters blijven gecentreerd */
  .home__panel:hover h2 {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
  }

  /*
   * Na 0.35s: gap rustig verkleinen vanuit het midden
   * (bovenste én onderste letter glijden naar binnen).
   */
  .home__panel:hover h2.is-settled {
    /* Dichter eindpunt; langere duration houdt hetzelfde rustige tempo */
    gap: 0.55dvh;
    transition-delay: 0.35s, 0s;
  }
}

@keyframes homeLabelStand {
  0% {
    width: max-content;
    gap: 0.08em;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  40% {
    width: max-content;
    gap: 0.08em;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    width: max-content;
    gap: 7dvh;
    font-size: min(20vw, 22vh);
    transform: translate(-50%, -50%) rotate(-90deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home__panel h2 span {
    animation: none;
  }

  .home__panel h2 {
    animation: none !important;
    gap: 3.8vh;
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 900px) {
  .home__panel h2 {
    width: max-content;
    gap: 7dvh;
    justify-content: center;
    font-size: min(20vw, 22vh);
    transform: translate(-50%, -50%) rotate(-90deg);
  }
}

/* ——— Inner content ——— */

.content {
  padding: 2rem 1.25rem 4rem;
}

.page-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-bar {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  background: var(--bar);
  color: var(--bar-ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.display {
  margin: 0;
  font-size: clamp(2.5rem, 10vw, 6.5rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.bio {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.bio p {
  margin: 0 0 1.1rem;
}

.bio a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.bio a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

.about-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.about-portrait {
  display: none;
  margin: 0;
  width: 100%;
  background: #000;
}

.about-portrait img {
  display: block;
  width: 100%;
  height: auto;
  /* Volledige verticale foto, geen crop */
  object-fit: contain;
  image-rendering: auto;
}

/* Static page band — replaces scrolling marquees */
.band {
  padding: 2rem 1.25rem 1.75rem;
  border-bottom: 1px solid var(--line);
}

.band__label {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.band__title {
  margin: 0;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.75rem, 7.5vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

/* ——— Tour page ——— */

.tour-hero {
  position: relative;
  height: min(46vh, 460px);
  min-height: 265px;
  background: #000;
  overflow: hidden;
}

.tour-hero__slides {
  position: absolute;
  inset: 0;
}

.tour-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.tour-hero__slide.is-active {
  opacity: 1;
}

.tour-hero__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 70%;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.tour-hero__slide.is-active img {
  transform: scale(1);
}

.tour-hero__copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 2.75rem 5.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
  pointer-events: none;
}

.tour-hero__brand {
  margin: 0 0 0.3rem;
  font-size: clamp(0.95rem, 2.4vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.tour-hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
}

.tour-hero__sub {
  margin: 0.55rem 0 0;
  max-width: 28ch;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

.tour-hero__nav {
  position: absolute;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 3;
  display: flex;
  gap: 0.4rem;
}

.tour-hero__nav button {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.tour-hero__nav button:hover {
  background: #fff;
  color: #000;
}

.tour-content {
  padding-top: 2.25rem;
}

.tour-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.tour-head__count {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.shows {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  counter-reset: show;
}

.show {
  --i: 0;
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.85rem 1.1rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(0.6rem);
  animation: show-in 0.55s ease forwards;
  animation-delay: calc(var(--i) * 70ms);
}

.show--empty {
  grid-template-columns: 1fr;
  opacity: 1;
  transform: none;
  animation: none;
}

.show__date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.show__month {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.show__day {
  margin-top: 0.2rem;
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.show__year {
  margin-top: 0.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.show__info {
  min-width: 0;
}

.show__event {
  margin: 0;
  font-size: clamp(1.25rem, 3.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.05;
}

.show__place {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.show__venue {
  margin: 0.2rem 0 0;
  color: rgba(176, 176, 176, 0.7);
  font-size: 0.8rem;
}

.show__tickets {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2.5rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

a.show__tickets:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.show__tickets--soon {
  border-style: dashed;
  color: var(--muted);
  cursor: default;
}

/* ── Verlopen shows (laatste 5) — grijs weergegeven ─────────────── */
.shows__divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.6rem 0 0.7rem;
  border-bottom: none;
  opacity: 1;
  transform: none;
  animation: none;
}
.shows__divider span {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.shows__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.show--past {
  animation: none;
  transform: none;
  opacity: 0.4;
  filter: grayscale(1);
  transition: opacity 0.2s ease;
}
.show--past:hover {
  opacity: 0.68;
}
.show--past .show__day,
.show--past .show__event {
  color: var(--muted);
}

.show__tickets--past {
  border-style: solid;
  border-color: var(--line);
  color: var(--muted);
  cursor: default;
}

/* ── Livesets (YouTube embeds) ─────────────────────────────────── */
.livesets {
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.liveset {
  --i: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(0.6rem);
  animation: show-in 0.55s ease forwards;
  animation-delay: calc(var(--i) * 70ms);
}

.liveset__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--line);
  overflow: hidden;
}

.liveset__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.liveset__title {
  margin: 0.75rem 0 0;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

@media (min-width: 760px) {
  .livesets {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .liveset {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.tour-follow {
  margin-top: 3.5rem;
}

.tour-follow__text {
  margin: 1rem 0 0;
  max-width: 36ch;
}

@keyframes show-in {
  to {
    opacity: 1;
    transform: none;
  }
}

.content--music {
  padding-left: 0;
  padding-right: 0;
}

.content--music .page-kicker {
  padding: 0 1.25rem;
}

.release-list,
.contact-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.release-list li {
  border-bottom: 1px solid var(--line);
}

.release {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 7.5rem;
  padding: 1.5rem 1.25rem 1.25rem;
  isolation: isolate;
}

.release__cover {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.release__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 0.55s ease;
}

.release__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 18, 18, 0.55) 0%,
    rgba(18, 18, 18, 0.18) 50%,
    rgba(18, 18, 18, 0.35) 100%
  );
}

.release__meta,
.release .display {
  position: relative;
  z-index: 1;
}

.release__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.release .display {
  margin: 0.35rem 0 0;
  font-size: clamp(2.2rem, 8vw, 5.5rem);
  color: var(--fg);
  background: none;
  -webkit-text-fill-color: unset;
  transition: color 0.25s ease;
}

@media (hover: hover) {
  .release:hover .release__cover,
  .release:focus-visible .release__cover {
    opacity: 1;
  }

  .release:hover .release__cover img,
  .release:focus-visible .release__cover img {
    transform: scale(1);
  }

  .release:hover .display,
  .release:focus-visible .display {
    color: #fff;
  }

  .release:hover .release__meta,
  .release:focus-visible .release__meta {
    color: rgba(255, 255, 255, 0.85);
  }
}

@media (hover: none) {
  .release:active .release__cover {
    opacity: 1;
  }

  .release:active .release__cover img {
    transform: scale(1);
  }
}

.btn-row,
.platform-grid,
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 1rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.btn-row a,
.platform-grid a,
.social-grid a {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  background: var(--bg);
  color: var(--muted);
}

.btn-row a:hover,
.platform-grid a:hover,
.social-grid a:hover {
  background: #fff;
  color: #000;
}

.podcast-player {
  margin-top: 1.25rem;
}

.contact-list {
  border: 0;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 3rem;
}

.contact-list li {
  margin: 0;
  padding: 0;
}

.contact-name {
  margin: 0.85rem 0 0;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.contact-list a {
  display: block;
  margin-top: 0.2rem;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 500;
  color: var(--muted);
  word-break: break-word;
}

.contact-list a:hover {
  color: #fff;
}

/* Uitgelicht: Management bovenaan, over de volle breedte. */
.contact-featured .contact-name {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
}
.contact-featured a {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 600;
}

@media (min-width: 760px) {
  .contact-list {
    grid-template-columns: 1fr 1fr;
  }
  .contact-featured {
    grid-column: 1 / -1;
    padding-bottom: 3rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--line);
  }
}

.form {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.form input,
.form textarea,
.form select {
  padding: 0.8rem;
  border: 1px solid var(--line);
  background: transparent;
  outline: none;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: #fff;
}

.form select {
  background: var(--bg);
}

.form .row {
  display: grid;
  gap: 1rem;
}

.form .status {
  margin: 0;
  font-size: 0.85rem;
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.outline-btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.about-hero {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #000;
}

.about-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}

@media (min-width: 700px) {
  .form .row {
    grid-template-columns: 1fr 1fr;
  }

  .form {
    padding: 1.75rem;
  }

  .tour-hero {
    height: min(50vh, 505px);
  }

  .tour-hero__copy {
    padding: 3rem 7rem 1.5rem 2.5rem;
  }

  .tour-hero__nav {
    right: 2.5rem;
    bottom: 2rem;
  }

  .show {
    grid-template-columns: 5.25rem 1fr auto;
    gap: 1.25rem 1.75rem;
  }

  .show__tickets {
    grid-column: auto;
  }
}

@media (min-width: 900px) {
  .rail {
    display: flex;
  }

  .topbar {
    display: none;
  }

  .page {
    padding-top: 0;
    padding-left: var(--rail);
  }

  .menu__inner {
    padding-top: 0;
    padding-left: var(--rail);
  }

  .menu__left {
    padding: 2.5rem;
  }

  .menu__right {
    display: block;
  }

  .menu__links a {
    font-size: 1.5rem;
  }

  /* Desktop: 4 verticale kolommen, gedraaide uitgelijnde letters */
  .home__panels {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
  }

  .home__panel {
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .home__panel:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .home__panel:last-child {
    border-right: 0;
  }

  .home__label {
    position: absolute;
    inset: 0;
  }

  .home__panel h2 {
    position: absolute;
    /* Iets boven het midden — ruimte voor subtiel label eronder */
    top: 46%;
    left: 50%;
    justify-content: center;
    gap: 0.08em;
    width: max-content;
    height: 1em;
    transform: translate(-50%, -50%) rotate(0deg);
    transform-origin: center center;
    font-family: "Bebas Neue", "Clash Display", var(--font);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 400;
    line-height: 0.9;
    /* Desktop: stand-up intro i.p.v. mobiele spread */
    animation: homeLabelStand 1.25s cubic-bezier(0.65, 0.05, 0.36, 1) forwards;
  }

  /* Na intro: ruststand — gap-animatie vanuit het midden */
  .home__panel h2.is-settled {
    animation: none;
    width: max-content;
    justify-content: center;
    gap: 7dvh;
    font-size: min(20vw, 22vh);
    transform: translate(-50%, -50%) rotate(-90deg);
    transition:
      gap 3.1s cubic-bezier(0.22, 0.61, 0.36, 1),
      filter 0.08s linear;
    transition-delay: 0s, 0s;
  }

  .home__panel--tour h2 {
    animation-delay: 0.08s;
  }
  .home__panel--livesets h2 {
    animation-delay: 0.2s;
  }
  .home__panel--about h2 {
    animation-delay: 0.32s;
  }
  .home__panel--contact h2 {
    animation-delay: 0.44s;
  }

  /* Klein horizontaal woord onderaan — Switzer, subtiel */
  .home__label-sub {
    bottom: 9%;
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-indent: 0.32em;
    color: rgba(255, 255, 255, 0.38);
    opacity: 0;
    transform: translate(-50%, 0.35rem);
    transition:
      opacity 0.55s ease,
      transform 0.55s ease,
      color 0.15s ease;
  }

  .home__label:has(h2.is-settled) .home__label-sub {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .home__panel:hover .home__label-sub {
    color: rgba(255, 255, 255, 0.72);
  }

  @media (hover: none) {
    .home__panel:active h2 {
      transform: translate(-50%, -50%) rotate(-90deg) scale(1.06);
    }
  }

  .content {
    padding: 2.75rem 2.5rem 5rem;
  }

  .about-body {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3rem;
  }

  .about-portrait {
    display: block;
    position: sticky;
    top: 1.5rem;
  }

  .bio {
    max-width: none;
  }

  .content--music {
    padding-left: 0;
    padding-right: 0;
  }

  .content--music .page-kicker {
    padding: 0 2.5rem;
  }

  .release {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    min-height: 9rem;
  }

  .band {
    padding: 2.75rem 2.5rem 2.25rem;
  }

  .platform-grid,
  .social-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-hero {
    aspect-ratio: 3 / 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu,
  .menu__inner {
    transition: none;
  }

  .home__bg {
    transform: none;
  }

  .tour-hero__slide,
  .tour-hero__slide img {
    transition: none;
  }

  .show {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
