/* ==========================================================================
   LΛLIQ — "Acid Brutalist / Club Editorial"
   Black canvas, hairline grid, acid-yellow signal, oversized type.
   Vanilla CSS. No build step. Self-hosted fonts.
   ========================================================================== */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-latin-var.woff2") format("woff2");
  font-weight: 400 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-latin-ext-var.woff2") format("woff2");
  font-weight: 400 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+2C60-2C7F;
}
@font-face {
  font-family: "Space Mono";
  src: url("/assets/fonts/spacemono-latin-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Mono";
  src: url("/assets/fonts/spacemono-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-wght-normal-NRMW37G5.woff2")
    format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-ext-wght-normal-HA22NDSG.woff2")
    format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+2C60-2C7F;
}

/* ---------- Tokens ---------- */
:root {
  --void: #050505;
  --surface: #0c0c0c;
  --surface-2: #151515;
  --surface-3: #1d1d1d;

  --ink: #ffffff;
  --ink-dim: #a3a3a3;
  --ink-faint: #767676;

  --acid: #f9f900;
  --acid-deep: #c6c600;
  --acid-ink: #050505;

  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.32);

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  --gutter: clamp(18px, 4vw, 56px);
  --maxw: 1560px;
  --bar-h: 68px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --t-fast: 160ms;
  --t-base: 280ms;
  --t-slow: 620ms;

  --app-height: 100vh;

  color-scheme: dark;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: var(--void);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-locked {
  overflow: hidden;
}
img,
video,
svg {
  display: block;
  max-width: 100%;
}
img,
video {
  height: auto;
}
[hidden] {
  display: none !important;
}
:target {
  scroll-margin-top: calc(var(--bar-h) + 24px);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}
button {
  background: none;
  border: 0;
  cursor: pointer;
}
ul,
ol {
  list-style: none;
}
::selection {
  background: var(--acid);
  color: var(--acid-ink);
}
:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

/* ---------- Typography ---------- */
.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 112%;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.03em;
}
h1 {
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 0.94;
}
h2 {
  font-size: clamp(1.45rem, 2.9vw, 2.3rem);
}
h3 {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  letter-spacing: -0.01em;
}
p {
  text-wrap: pretty;
}
.lead {
  font-size: clamp(0.98rem, 1.1vw, 1.12rem);
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 62ch;
}
.body-copy {
  color: var(--ink-dim);
  max-width: 60ch;
}
.body-copy + .body-copy {
  margin-top: var(--s-4);
}
strong {
  color: var(--ink);
  font-weight: 600;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: -200px;
  left: var(--gutter);
  z-index: 999;
  background: var(--acid);
  color: var(--acid-ink);
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: top var(--t-base) var(--ease-out);
}
.skip-link:focus {
  top: 14px;
}

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  position: relative;
  padding-block: clamp(56px, 6vw, 96px);
  scroll-margin-top: var(--bar-h);
}
.section--tight {
  padding-block: clamp(48px, 5.5vw, 80px);
}

.sec-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s-4);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--s-6);
}
.sec-head__meta {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.sec-head__idx {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--acid);
}
.sec-head__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.sec-head__sub {
  color: var(--ink-dim);
  max-width: 54ch;
}
@media (min-width: 900px) {
  .sec-head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
  .sec-head__sub {
    grid-column: 1 / -1;
  }
}

/* ---------- Fixed decoration ---------- */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 60;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  will-change: transform;
}
.gridlines {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: none;
}
.gridlines span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.045);
}
@media (min-width: 900px) {
  .gridlines {
    display: block;
  }
  .gridlines span:nth-child(1) { left: 20%; }
  .gridlines span:nth-child(2) { left: 40%; }
  .gridlines span:nth-child(3) { left: 60%; }
  .gridlines span:nth-child(4) { left: 80%; }
}

/* ---------- Custom cursor ---------- */
.cursor,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(-50px, -50px, 0);
}
.cursor {
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: var(--acid);
}
.cursor-ring {
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 1px solid var(--line-strong);
  transition: width var(--t-base) var(--ease-out),
    height var(--t-base) var(--ease-out),
    margin var(--t-base) var(--ease-out),
    border-color var(--t-base) var(--ease-out),
    background-color var(--t-base) var(--ease-out);
}
.has-cursor .cursor,
.has-cursor .cursor-ring {
  opacity: 1;
}
.has-cursor.cursor-hot .cursor-ring {
  width: 74px;
  height: 74px;
  margin: -37px 0 0 -37px;
  border-color: var(--acid);
  background: rgba(249, 249, 0, 0.09);
}
.has-cursor.cursor-hot .cursor {
  opacity: 0;
}
@media (hover: none), (pointer: coarse) {
  .cursor,
  .cursor-ring {
    display: none;
  }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--void);
  display: grid;
  place-items: center;
  grid-template-rows: 1fr auto;
}
.preloader__mark {
  width: clamp(60px, 9vw, 104px);
  align-self: end;
  animation: pulse 0.75s var(--ease-in-out) infinite alternate;
}
@keyframes pulse {
  from { transform: scale(0.94); opacity: 0.65; }
  to { transform: scale(1); opacity: 1; }
}
.preloader__bar {
  align-self: start;
  width: min(520px, 72vw);
  margin-block: var(--s-6) var(--s-9);
}
.preloader__track {
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}
.preloader__fill {
  height: 100%;
  width: 0%;
  background: var(--acid);
}
.preloader__row {
  display: flex;
  justify-content: space-between;
  margin-top: var(--s-3);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.preloader__num {
  color: var(--acid);
}
.preloader.is-done {
  transform: translateY(-101%);
  transition: transform 0.8s var(--ease-in-out);
}

/* ---------- Top bar ---------- */
.bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  height: var(--bar-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--t-base) var(--ease-out),
    border-color var(--t-base) var(--ease-out),
    transform var(--t-slow) var(--ease-out);
}
.is-scrolled .bar {
  background: rgba(5, 5, 5, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.is-hidden-bar .bar {
  transform: translateY(-100%);
}
.bar__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s-5);
}
/* Pin each group to its own column. Auto-placement would shift the right-hand
   group into the middle column whenever the nav is display:none (<1060px),
   because a hidden element is not a grid item. */
.bar .brand {
  grid-column: 1;
  justify-self: start;
  min-width: 0;
}
.bar__nav {
  grid-column: 2;
  justify-self: center;
}
.bar__right {
  grid-column: 3;
  justify-self: end;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 112%;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand__smiley {
  width: 22px;
  height: 22px;
  flex: none;
  transition: transform var(--t-slow) var(--ease-out);
}
.brand:hover .brand__smiley {
  transform: rotate(-18deg) scale(1.12);
}
.bar__nav {
  display: flex;
  gap: var(--s-5);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 100%;
  padding-block: 4px;
}
.bar__nav::-webkit-scrollbar {
  display: none;
}
.bar__nav a {
  white-space: nowrap;
  flex: none;
}
.bar__nav a {
  position: relative;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding-block: 6px;
  transition: color var(--t-fast) var(--ease-out);
}
.bar__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-base) var(--ease-out);
}
.bar__nav a:hover,
.bar__nav a[aria-current] {
  color: var(--ink);
}
.bar__nav a:hover::after,
.bar__nav a[aria-current]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.bar__right {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}
@media (max-width: 1059px) {
  .bar {
    height: auto;
  }
  .bar__inner {
    grid-template-columns: 1fr auto;
    row-gap: 2px;
    padding-block: 8px;
  }
  .bar__nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    /* Fade the right edge so it reads as scrollable. */
    -webkit-mask-image: linear-gradient(90deg, #000 86%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 86%, transparent 100%);
  }
  .bar__right {
    grid-column: 2;
    grid-row: 1;
  }
}

.lang {
  display: inline-flex;
  border: 1px solid var(--line);
}
.lang button {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 6px 10px;
  color: var(--ink-faint);
  transition: color var(--t-fast) var(--ease-out),
    background-color var(--t-fast) var(--ease-out);
}
.lang button[aria-pressed="true"] {
  background: var(--acid);
  color: var(--acid-ink);
  font-weight: 700;
}
.lang button:not([aria-pressed="true"]):hover {
  color: var(--ink);
}


.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 130;
  height: 2px;
  width: 100%;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  background: var(--acid);
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 var(--s-6);
  border: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transition: color var(--t-base) var(--ease-out),
    border-color var(--t-base) var(--ease-out);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--acid);
  transform: translateY(101%);
  transition: transform 0.42s var(--ease-in-out);
}
.btn:hover {
  color: var(--acid-ink);
  border-color: var(--acid);
}
.btn:hover::before {
  transform: translateY(0);
}
.btn--primary {
  background: var(--acid);
  color: var(--acid-ink);
  border-color: var(--acid);
}
.btn--primary::before {
  background: var(--ink);
}
.btn--primary:hover {
  color: var(--acid-ink);
  border-color: var(--ink);
}
.btn--ghost {
  border-color: var(--line);
  color: var(--ink-dim);
}
.btn--wide {
  width: 100%;
}
.btn .arrow {
  font-size: 14px;
  transition: transform var(--t-base) var(--ease-out);
}
.btn:hover .arrow {
  transform: translate(3px, -3px);
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: var(--app-height);
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: clamp(24px, 4vw, 56px);
  padding-top: calc(var(--bar-h) + var(--s-6));
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.62;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      to top,
      rgba(5, 5, 5, 0.96) 0%,
      rgba(5, 5, 5, 0.55) 42%,
      rgba(5, 5, 5, 0.72) 100%
    ),
    radial-gradient(
      120% 85% at 50% 100%,
      rgba(5, 5, 5, 0.9) 0%,
      rgba(5, 5, 5, 0) 60%
    );
}
.hero__scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.35;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.035) 0px,
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px,
    transparent 4px
  );
}
.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s-5);
  flex-wrap: wrap;
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--s-6);
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.dot-live {
  width: 7px;
  height: 7px;
  background: var(--acid);
  border-radius: 50%;
  animation: blink 1.5s steps(1, end) infinite;
}
@keyframes blink {
  0%, 60% { opacity: 1; }
  61%, 100% { opacity: 0.2; }
}
.hero__title {
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  font-stretch: 112%;
}
/* SplitText word wrappers — keep words whole across line breaks. */
.word {
  display: inline-block;
  white-space: nowrap;
}
.hero__title em {
  font-style: normal;
  color: var(--acid);
}
.hero__bottom {
  display: grid;
  gap: var(--s-6);
  margin-top: var(--s-7);
  align-items: end;
}
@media (min-width: 900px) {
  .hero__bottom {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    gap: var(--s-8);
  }
}
.hero__copy {
  color: var(--ink-dim);
  max-width: 56ch;
  font-size: clamp(0.96rem, 1.15vw, 1.1rem);
}
.hero__genres {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-4);
  margin-top: var(--s-5);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero__genres b {
  color: var(--acid);
  font-weight: 400;
}
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--s-7);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero__scroll i {
  display: block;
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, var(--acid), transparent);
  animation: drop 1.9s var(--ease-in-out) infinite;
}
@keyframes drop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  46% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* The meter is a desktop flourish; on stacked layouts it would push the hero
   CTAs below the fold, so it only appears once there is a column for it. */
.meter {
  display: none;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: var(--s-4);
}
.meter__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--s-3);
}
.meter__head b {
  color: var(--acid);
}
@media (min-width: 900px) {
  .meter {
    display: block;
  }
}
.meter canvas {
  width: 100%;
  height: 68px;
  display: block;
}

/* ---------- Ticker ---------- */
.ticker {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: clamp(12px, 1.6vw, 20px);
  background: var(--void);
}
.ticker--acid {
  background: var(--acid);
  color: var(--acid-ink);
  border-color: var(--acid);
}
.ticker__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.ticker__group {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 56px);
  padding-right: clamp(24px, 3vw, 56px);
  flex: none;
}
.ticker__group span {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 112%;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 1.7vw, 1.5rem);
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}
.ticker__group i {
  width: 10px;
  height: 10px;
  flex: none;
  background: var(--acid);
  border-radius: 50%;
}
.ticker--acid .ticker__group i {
  background: var(--acid-ink);
}
.ticker--outline .ticker__group span {
  color: transparent;
  -webkit-text-stroke: 1px var(--line-strong);
}
.ticker--sm .ticker__group span {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.22em;
}

/* ---------- Sound rows ---------- */
.sound-list {
  border-top: 1px solid var(--line);
}
.sound-row {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--s-4);
  padding-block: clamp(20px, 2.6vw, 34px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.sound-row__bg {
  position: absolute;
  inset: 0;
  background: var(--acid);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.44s var(--ease-in-out);
  z-index: 0;
}
.sound-row:hover .sound-row__bg,
.sound-row:focus-within .sound-row__bg {
  transform: scaleY(1);
}
.sound-row > *:not(.sound-row__bg) {
  position: relative;
  z-index: 1;
  transition: color var(--t-base) var(--ease-out);
}
.sound-row:hover,
.sound-row:focus-within {
  color: var(--acid-ink);
}
.sound-row__idx {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
}
.sound-row:hover .sound-row__idx {
  color: var(--acid-ink);
}
.sound-row__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 118%;
  text-transform: uppercase;
  font-size: clamp(1.15rem, 2.2vw, 1.85rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.sound-row__desc {
  display: none;
  font-size: 0.9rem;
  color: var(--ink-faint);
  max-width: 40ch;
}
.sound-row:hover .sound-row__desc {
  color: rgba(5, 5, 5, 0.78);
}
.sound-row__bpm {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--acid);
  white-space: nowrap;
}
.sound-row:hover .sound-row__bpm {
  color: var(--acid-ink);
}
@media (min-width: 980px) {
  .sound-row {
    grid-template-columns: 56px minmax(0, 1.1fr) minmax(0, 1fr) auto;
  }
  .sound-row__desc { display: block; }
}

/* ---------- Cards ---------- */
.card {
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: clamp(20px, 2.4vw, 34px);
  transition: border-color var(--t-base) var(--ease-out),
    background-color var(--t-base) var(--ease-out);
}
.card:hover {
  border-color: var(--line-strong);
}
.card h3 {
  margin-bottom: var(--s-3);
}
.card p {
  color: var(--ink-dim);
  font-size: 0.95rem;
}
.card__idx {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--acid);
  display: block;
  margin-bottom: var(--s-4);
}
.grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1060px) {
  .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.link-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  min-height: 260px;
  justify-content: space-between;
}
.link-card:hover {
  background: var(--surface-2);
  border-color: var(--acid);
}
.link-card__cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acid);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.link-card__cta .arrow {
  transition: transform var(--t-base) var(--ease-out);
}
.link-card:hover .link-card__cta .arrow {
  transform: translate(4px, -4px);
}

/* ---------- About ---------- */
.about {
  display: grid;
  gap: var(--s-8);
  align-items: start;
}
@media (min-width: 980px) {
  .about {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: var(--s-9);
    /* Stretch both columns to the same row height so the portrait always ends
       flush with the copy — whichever language is longer. */
    align-items: stretch;
  }
  .about__media img {
    height: 100%;
    aspect-ratio: auto;
    min-height: 440px;
  }
}
.about__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
  filter: grayscale(1) contrast(1.12);
  transition: filter 0.7s var(--ease-out), transform 0.9s var(--ease-out);
}
.about__media:hover img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.03);
}
.about__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px 14px;
  background: var(--acid);
  color: var(--acid-ink);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.pull-quote {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 112%;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 2.1vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-6);
}
.pull-quote em {
  font-style: normal;
  color: var(--acid);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: var(--s-7);
}
.stat {
  background: var(--void);
  padding: var(--s-5) var(--s-4);
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 118%;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--acid);
  overflow-wrap: anywhere;
}
.stat span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 760px) {
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1180px) {
  .gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.shot {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  aspect-ratio: 4 / 5;
  cursor: pointer;
  padding: 0;
  width: 100%;
}
.shot img,
.shot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
  transition: filter 0.55s var(--ease-out), transform 0.7s var(--ease-out);
}
.shot:hover img,
.shot:hover video,
.shot:focus-visible img,
.shot:focus-visible video {
  filter: grayscale(0) contrast(1);
  transform: scale(1.06);
}
.shot::after {
  content: attr(data-n);
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink);
  background: rgba(5, 5, 5, 0.66);
  padding: 3px 7px;
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
}
.shot:hover::after,
.shot:focus-visible::after {
  opacity: 1;
}


/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(3, 3, 3, 0.96);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: var(--s-4);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.lightbox[hidden] {
  display: none;
}
.lightbox__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--line);
}
.lightbox__close {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  padding-inline: 14px;
  color: var(--ink);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.lightbox__close:hover {
  border-color: var(--acid);
  color: var(--acid);
}
.lightbox__frame {
  display: grid;
  place-items: center;
  min-height: 0;
  padding-block: var(--s-4);
}
.lightbox__frame img,
.lightbox__frame video {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
}
.lightbox__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
}
.lightbox__arrow {
  min-height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  font-size: 20px;
  color: var(--ink);
  transition: background-color var(--t-fast), color var(--t-fast),
    border-color var(--t-fast);
}
.lightbox__arrow:hover {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--acid-ink);
}
.lightbox__caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  text-align: center;
  flex: 1;
}

/* ---------- Shows ---------- */
.shows {
  border-top: 1px solid var(--line);
}
.show {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--s-4) var(--s-6);
  padding-block: clamp(20px, 2.6vw, 32px);
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.show__date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--acid);
  white-space: nowrap;
}
.show__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 112%;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-3);
}
.show p {
  color: var(--ink-dim);
  max-width: 56ch;
  font-size: 0.95rem;
}

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: var(--s-5);
}
.field {
  display: grid;
  gap: 8px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 12px 2px;
  font-size: 1rem;
  min-height: 48px;
  transition: border-color var(--t-base) var(--ease-out);
}
.field textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.55;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--acid);
}
.field input::placeholder,
.field textarea::placeholder {
  color: #5e5e5e;
}
.field__error {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff6b6b;
  min-height: 14px;
}
.field.is-invalid input,
.field.is-invalid textarea {
  border-bottom-color: #ff6b6b;
}
.form__status {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  min-height: 20px;
  color: var(--acid);
}
.form__status.is-error {
  color: #ff6b6b;
}
.fine {
  font-size: 0.85rem;
  color: var(--ink-faint);
  line-height: 1.7;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  display: block;
  border-block: 1px solid var(--line);
  padding-block: clamp(44px, 7vw, 96px);
  overflow: hidden;
  background: var(--void);
  transition: background-color 0.5s var(--ease-out), color 0.5s var(--ease-out);
}
.cta-band:hover {
  background: var(--acid);
  color: var(--acid-ink);
}
.cta-band__grid {
  display: grid;
  gap: var(--s-5);
  align-items: end;
}
@media (min-width: 900px) {
  .cta-band__grid { grid-template-columns: minmax(0, 1fr) auto; }
}
.cta-band h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  line-height: 0.98;
  font-stretch: 112%;
}
.cta-band p {
  margin-top: var(--s-4);
  color: var(--ink-dim);
  max-width: 52ch;
}
.cta-band:hover p {
  color: rgba(5, 5, 5, 0.76);
}
.cta-band__go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(64px, 7vw, 92px);
  height: clamp(64px, 7vw, 92px);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: clamp(18px, 2vw, 24px);
  flex: none;
  transition: transform 0.5s var(--ease-out), background-color 0.4s;
}
.cta-band:hover .cta-band__go {
  transform: rotate(45deg);
  background: var(--acid-ink);
  color: var(--acid);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding-top: var(--s-8);
  background: var(--void);
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-3) var(--s-5);
  padding-block: var(--s-5);
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.footer__legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
}
.footer__legal a:hover {
  color: var(--acid);
}

/* ---------- Consent / embeds ---------- */
.embed-gate {
  display: grid;
  gap: var(--s-4);
  place-items: start;
  border: 1px dashed var(--line-strong);
  background: var(--surface);
  padding: clamp(28px, 4vw, 56px);
  min-height: 320px;
  align-content: center;
}
.embed-gate h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
}
.embed-gate p {
  color: var(--ink-dim);
  max-width: 54ch;
  font-size: 0.95rem;
}
.soundcloud-frame {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}
.cookie-banner {
  position: fixed;
  left: var(--gutter);
  right: var(--gutter);
  bottom: var(--gutter);
  z-index: 240;
  max-width: 620px;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  padding: var(--s-5);
  display: grid;
  gap: var(--s-4);
  animation: bannerIn 0.5s var(--ease-out) both;
}
@keyframes bannerIn {
  from { opacity: 0; transform: translateY(20px); }
}
.cookie-banner h2 { font-size: 1.1rem; }
.cookie-banner p { color: var(--ink-dim); font-size: 0.9rem; }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.cookie-actions .btn {
  min-height: 44px;
  padding-inline: var(--s-5);
  font-size: 11px;
}

/* ---------- Prose / legal ---------- */
.prose { max-width: 76ch; }
.prose h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  margin-top: var(--s-8);
  margin-bottom: var(--s-4);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
}
.prose h2:first-of-type { margin-top: var(--s-6); }
.prose h3 {
  font-size: 1rem;
  margin-top: var(--s-5);
  margin-bottom: var(--s-2);
}
/* German legal terms run long — let them break instead of overflowing the page. */
.prose h2,
.prose h3 {
  overflow-wrap: break-word;
  hyphens: auto;
}
.prose p,
.prose li,
.prose dd {
  overflow-wrap: break-word;
}
.prose p,
.prose li {
  color: var(--ink-dim);
  font-size: 0.97rem;
  line-height: 1.75;
}
.prose p + p { margin-top: var(--s-4); }
.prose ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: var(--s-4);
}
.prose ul li {
  padding-left: 20px;
  position: relative;
}
.prose ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--acid);
}
.prose a {
  color: var(--acid);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose dl {
  display: grid;
  gap: 8px;
  margin-top: var(--s-4);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-dim);
}
.prose dt {
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
}

.tick-list {
  display: grid;
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.tick-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-dim);
  font-size: 0.95rem;
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 1px;
  background: var(--acid);
}

.facts {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.facts > div {
  background: var(--surface);
  padding: var(--s-4);
  display: grid;
  gap: 4px;
}
.facts dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acid);
}
.facts dd {
  color: var(--ink-dim);
  font-size: 0.93rem;
}

.crumbs {
  display: flex;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--s-5);
}
.crumbs a:hover { color: var(--acid); }

.page-hero {
  padding-top: calc(var(--bar-h) + clamp(48px, 9vw, 128px));
  padding-bottom: clamp(32px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.page-hero__title {
  font-size: clamp(1.85rem, 4.2vw, 3.2rem);
  line-height: 0.96;
  font-stretch: 112%;
}
.page-hero__grid {
  display: grid;
  gap: var(--s-7);
  align-items: end;
}
/* Grid items default to min-width:auto, which lets a wide heading stretch the
   column instead of wrapping. Zero it so measurements stay honest. */
.page-hero__grid > *,
.hero__bottom > *,
.about > *,
.cta-band__grid > *,
.sec-head > * {
  min-width: 0;
}
@media (min-width: 980px) {
  .page-hero__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.85fr);
    gap: var(--s-9);
  }
}
.page-hero__visual {
  border: 1px solid var(--line);
  overflow: hidden;
}
.page-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  filter: grayscale(1) contrast(1.1);
  transition: filter 0.7s var(--ease-out);
}
.page-hero__visual:hover img { filter: grayscale(0); }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-5);
}
.chip {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 7px 12px;
  color: var(--ink-dim);
  white-space: nowrap;
}
.chip--acid {
  border-color: var(--acid);
  color: var(--acid);
}

/* ---------- Reveal (armed by JS only) ---------- */
[data-reveal].is-armed { opacity: 0; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .ticker__track { transform: none !important; }
  [data-reveal].is-armed { opacity: 1; }
  .hero__video { display: none; }
  /* Without the clip, fall back to its poster frame so the hero isn't blank. */
  .hero__media {
    background: #000 url("/assets/about-video-poster.jpg") center / cover
      no-repeat;
  }
}

/* ---------- Print ---------- */
@media print {
  .bar,
  .grain,
  .gridlines,
  .cursor,
  .cursor-ring,
  .preloader,
  .ticker,
  .cookie-banner {
    display: none !important;
  }
  body { background: #fff; color: #000; }
}

/* ==========================================================================
   Portrait-led hero — the page opens on the artist, in a two-column
   editorial split rather than a full-bleed media band.
   ========================================================================== */
.hero--portrait {
  align-items: center;
  /* Tight enough that even a 720px-tall screen fits hero + marquee together. */
  padding-top: calc(var(--bar-h) + var(--s-6));
  padding-bottom: var(--s-7);
  min-height: auto;
}
.hero--portrait .hero__inner {
  display: grid;
  gap: var(--s-7);
  align-items: center;
}
.hero--portrait .hero__inner > * {
  min-width: 0;
}
@media (min-width: 900px) {
  /* Leave room for the marquee so the portrait and the venue strip share one
     screen. --ticker-h is measured in JS; the fallback keeps this sane if the
     script never runs. */
  .hero--portrait {
    min-height: calc(100svh - var(--ticker-h, 66px));
  }
  /* Cap the portrait so hero + marquee stay inside one screen. */
  .hero-portrait img {
    max-height: calc(100svh - var(--ticker-h, 66px) - 220px);
  }
  .hero--portrait .hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: var(--s-9);
  }
}
.hero-portrait {
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
}
.hero-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(1) contrast(1.08);
  transition: filter 0.8s var(--ease-out), transform 1.1s var(--ease-out);
}
.hero-portrait:hover img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.03);
}
.hero-portrait__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--acid);
  color: var(--acid-ink);
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-portrait__badge svg {
  width: 16px;
  height: 16px;
}
.hero--portrait .hero__title {
  font-size: clamp(2.4rem, 6.4vw, 5.2rem);
}

/* Wordmark.
   Archivo ships no Greek subset, so the Λ (U+039B) always fell back to another
   font and rendered visibly lighter than the Latin letters. The brand logo is
   drawn as paths, so every letter now carries the identical stroke weight. */
.hero__title--mark {
  line-height: 1;
}
.wordmark {
  display: block;
  width: min(100%, clamp(180px, 23vw, 350px));
  height: auto;
  overflow: visible;
}
.wordmark path {
  fill: var(--void);
  stroke: #ffff5a;
  stroke-width: 7;
  stroke-linejoin: round;
}
/* Neon tube: a hot near-white core with acid-yellow halos stacked outwards.
   This static stack is what everyone sees; the animation below only modulates
   its intensity, so reduced-motion users still get the full effect. */
.wordmark {
  filter: drop-shadow(0 0 2px rgba(255, 255, 180, 0.95))
    drop-shadow(0 0 7px rgba(249, 249, 0, 0.85))
    drop-shadow(0 0 18px rgba(249, 249, 0, 0.6))
    drop-shadow(0 0 42px rgba(249, 249, 0, 0.38))
    drop-shadow(0 0 80px rgba(249, 249, 0, 0.2));
}

@media (prefers-reduced-motion: no-preference) {
  .wordmark {
    /* Three cycles on deliberately unrelated lengths (1.6s / 11s / 5.2s) so the
       flicker never settles into an obvious repeating pattern.
       neonFlicker starts after neonOn and, being later in the list, takes over
       opacity once its delay elapses. */
    animation: neonOn 1.6s steps(1, end) both,
      neonFlicker 11s linear 1.6s infinite,
      neonHum 5.2s ease-in-out 1.6s infinite;
  }
  .wordmark path {
    animation: neonCore 7.3s ease-in-out 1.6s infinite;
  }
}

/* Switch-on: the tube stutters before it catches. */
@keyframes neonOn {
  0%, 10% { opacity: 0.1; }
  12% { opacity: 0.85; }
  16% { opacity: 0.12; }
  20% { opacity: 1; }
  24% { opacity: 0.25; }
  27% { opacity: 1; }
  31% { opacity: 0.5; }
  34%, 100% { opacity: 1; }
}

/* Running flicker: long steady stretches broken by short, hard dropouts —
   some single, some stuttering in pairs. Each dip lasts well under 100ms. */
@keyframes neonFlicker {
  0%, 16.9% { opacity: 1; }
  17% { opacity: 0.22; }
  17.4% { opacity: 1; }
  17.8% { opacity: 0.4; }
  18.2%, 38.9% { opacity: 1; }
  39% { opacity: 0.15; }
  39.5% { opacity: 1; }
  52.9% { opacity: 1; }
  53% { opacity: 0.55; }
  53.3% { opacity: 1; }
  53.7% { opacity: 0.2; }
  54.2% { opacity: 1; }
  54.6% { opacity: 0.45; }
  55%, 71.9% { opacity: 1; }
  72% { opacity: 0.18; }
  72.6% { opacity: 1; }
  88.9% { opacity: 1; }
  89% { opacity: 0.35; }
  89.4% { opacity: 1; }
  89.9% { opacity: 0.12; }
  90.4%, 100% { opacity: 1; }
}

/* The halo swells and settles independently of the dropouts. */
@keyframes neonHum {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(255, 255, 180, 0.95))
      drop-shadow(0 0 7px rgba(249, 249, 0, 0.85))
      drop-shadow(0 0 18px rgba(249, 249, 0, 0.6))
      drop-shadow(0 0 42px rgba(249, 249, 0, 0.38))
      drop-shadow(0 0 80px rgba(249, 249, 0, 0.2));
  }
  45% {
    filter: drop-shadow(0 0 3px rgba(255, 255, 200, 1))
      drop-shadow(0 0 12px rgba(249, 249, 0, 0.95))
      drop-shadow(0 0 30px rgba(249, 249, 0, 0.75))
      drop-shadow(0 0 64px rgba(249, 249, 0, 0.5))
      drop-shadow(0 0 110px rgba(249, 249, 0, 0.3));
  }
  82% {
    filter: drop-shadow(0 0 1px rgba(255, 255, 180, 0.7))
      drop-shadow(0 0 4px rgba(249, 249, 0, 0.5))
      drop-shadow(0 0 10px rgba(249, 249, 0, 0.3))
      drop-shadow(0 0 24px rgba(249, 249, 0, 0.18))
      drop-shadow(0 0 50px rgba(249, 249, 0, 0.1));
  }
}

/* The tube itself runs hotter and cooler on its own rhythm. */
@keyframes neonCore {
  0%, 100% { stroke: #ffff5a; }
  38% { stroke: #ffffcc; }
  74% { stroke: #e0e000; }
}
}
}

@media (min-width: 900px) {
  /* Cap the portrait so the hero always fits one screen: bar + padding + image
     must stay inside the viewport, otherwise the photo runs past the fold. */
  .hero-portrait img {
    max-height: calc(100svh - var(--ticker-h, 66px) - 220px);
  }
}

/* Press kit block */
.presskit {
  display: grid;
  gap: var(--s-5);
  align-items: center;
}
@media (min-width: 820px) {
  .presskit {
    grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1fr);
    gap: var(--s-7);
  }
}
.presskit__sheet {
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
}
.presskit__sheet img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.presskit__sheet:hover img {
  transform: scale(1.04);
}

/* Booking columns: the form ran ~60px taller than the two cards next to it.
   Tightening the field rhythm brings both columns flush. */
#booking .form {
  gap: var(--s-4);
}
#booking .field textarea {
  min-height: 108px;
}

/* Hero column budget: the scroll cue does not need the full section rhythm. */
.hero--portrait .hero__scroll {
  margin-top: var(--s-5);
}
.hero--portrait .hero__copy {
  margin-top: 20px;
}

/* ==========================================================================
   Gallery — 3D carousel
   Slides are positioned by JS from their offset to the active index, so the
   depth ordering stays correct no matter which item is in front.
   ========================================================================== */
.carousel {
  position: relative;
}
.carousel__stage {
  position: relative;
  height: clamp(340px, 54vh, 580px);
  perspective: 1500px;
  perspective-origin: 50% 45%;
  touch-action: pan-y;
  /* Clip the receding slides instead of letting them push the page sideways.
     `perspective` still applies to the direct children, so the depth survives;
     only nested 3D would need preserve-3d, and there is none here. */
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 7%,
    #000 93%,
    transparent 100%
  );
}
.carousel__item {
  position: absolute;
  top: 0;
  left: 50%;
  width: clamp(210px, 26vw, 360px);
  height: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  cursor: pointer;
  will-change: transform, opacity;
  transition: transform 0.65s var(--ease-out), opacity 0.5s var(--ease-out),
    border-color 0.4s var(--ease-out);
  transform-origin: 50% 50%;
}
.carousel__item img,
.carousel__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
  transition: filter 0.6s var(--ease-out);
}
.carousel__item.is-active {
  border-color: var(--acid);
  cursor: zoom-in;
}
.carousel__item.is-active img,
.carousel__item.is-active video {
  filter: grayscale(0) contrast(1);
}
.carousel__item.is-hidden {
  opacity: 0;
  pointer-events: none;
}
/* A yellow flag on the active slide, matching the hero badge. */
.carousel__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 7px 11px;
  background: var(--acid);
  color: var(--acid-ink);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.carousel__item.is-active .carousel__tag {
  opacity: 1;
}
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
  margin-top: var(--s-6);
}
.carousel__arrow {
  min-width: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  font-size: 20px;
  color: var(--ink);
  transition: background-color var(--t-fast), color var(--t-fast),
    border-color var(--t-fast);
}
.carousel__arrow:hover {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--acid-ink);
}
.carousel__counter {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  min-width: 8ch;
  text-align: center;
}

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

/* ==========================================================================
   Touch + very small screens
   ========================================================================== */

/* At 320px the genre name shared its row with the BPM figure and got clipped.
   Give the name the full width and drop the figure onto its own line. */
@media (max-width: 560px) {
  .sound-row {
    grid-template-columns: auto minmax(0, 1fr);
    row-gap: 4px;
  }
  .sound-row__bpm {
    grid-column: 2;
  }
}
.sound-row__name {
  overflow-wrap: break-word;
}

/* Touch targets. Pointer-coarse only, so the desktop keeps its tighter rhythm.
   44px is the WCAG 2.2 minimum for a tap target. */
@media (pointer: coarse) {
  .bar .brand {
    min-height: 44px;
    align-items: center;
  }
  .lang button {
    min-height: 44px;
    min-width: 44px;
  }
  .footer__legal a,
  a.chip {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .footer__legal nav {
    gap: var(--s-3) var(--s-5);
  }
  .carousel__arrow {
    min-width: 52px;
    min-height: 52px;
  }
}

/* On a phone the front slide was losing too much width to its neighbours, and
   the stacked hero ran to ~1.4 screens before the portrait appeared. */
@media (max-width: 700px) {
  .carousel__item {
    width: min(64vw, 320px);
  }
  .carousel__stage {
    height: clamp(300px, 56vh, 460px);
  }
  .hero-portrait img {
    max-height: 52vh;
  }
}

/* ==========================================================================
   Wordmark in running text
   Same letterforms, spacing and line weight as the hero — Archivo has no Greek
   subset, so written "LΛLIQ" would fall back to another font for the Λ. No
   colour or glow here; only the hero carries the neon treatment.
   ========================================================================== */
.wordmark-inline {
  /* Nach dem viewBox-Beschnitt ist das die echte Buchstabenhoehe.
     Die Box enthaelt auch die Q-Unterlaenge: Versalhoehe sind nur
     211 der 230 Einheiten (0.9174). Fuer 0.688em Versalhoehe (gemessen)
     braucht die Box also 0.688 / 0.9174 = 0.75em. */
  height: 0.75em;
  width: auto;
  display: inline-block;
  vertical-align: -0.062em;
  overflow: visible;
}
.wordmark-inline path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

/* The header and footer brand run small, where a hairline outline would read
   as noise. Same letterforms and spacing, filled for legibility. */
.wordmark-brand {
  /* 15px war immer der gewollte Wert — er rendete nur als 6.7px, weil der
     alte viewBox zu 55% leer war. 24px Box = 22px Buchstabenhoehe, also
     exakt der Durchmesser des Smileys daneben — Wortmarke und Zeichen
     stehen damit auf gleicher Hoehe. */
  height: 24px;
  width: auto;
  display: block;
  flex: none;
}
.wordmark-brand path {
  fill: currentColor;
}

/* Navigation strip: full-height tap targets on touch devices. */
@media (pointer: coarse) {
  .bar__nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* Wordmark at caption size: solid, because a hairline outline would be
   illegible at 10-11px. Same letterforms and spacing as everywhere else. */
.wordmark-text {
  height: 0.75em;
  width: auto;
  display: inline-block;
  vertical-align: -0.062em;
}
.wordmark-text path {
  fill: currentColor;
}
