  /* ════════════════════════════════════════════
     CH4YN — redesign working copy
     white / black ink / red logo / blue photography
     ════════════════════════════════════════════ */

  :root {
    --bg: #ffffff;
    --ink: #0b0b0b;
    --ink-dim: #6e6e6e;
    --line: rgba(11, 11, 11, 0.18);
    --tile: #0d0d0d;
    --white: #ffffff;
    --font-ui: "Archivo", sans-serif;
    --header-h: 220px;
    /* motion tokens — strong custom curves > built-in CSS easings */
    --e-out: cubic-bezier(0.23, 1, 0.32, 1);       /* ease-out-quart */
    --e-out-strong: cubic-bezier(0.16, 1, 0.3, 1); /* ease-out-expo */
    --e-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
  }

  /* Lenis smooth-scroll hooks */
  html.lenis, html.lenis body { height: auto; }
  .lenis.lenis-smooth { scroll-behavior: auto !important; }
  .lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
  .lenis.lenis-stopped { overflow: hidden; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-ui);
    font-variation-settings: "wdth" 75;
    letter-spacing: 0.08em;
    overflow-x: hidden;
  }

  ::selection { background: var(--ink); color: var(--white); }

  img { display: block; max-width: 100%; }

  a { color: var(--ink); text-decoration: none; }

  a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

  a:focus-visible,
  button:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 3px;
  }
  .encore a:focus-visible,
  .encore button:focus-visible,
  .footer a:focus-visible { outline-color: var(--white); }

  .visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  /* ───────── scrollbar ───────── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--ink-dim); }

  /* ───────── grain overlay ───────── */
  .grain {
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 99;
    opacity: 0.035;
    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.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: grain 0.9s steps(4) infinite;
  }
  @keyframes grain {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-2%, 3%); }
    50% { transform: translate(3%, -2%); }
    75% { transform: translate(-3%, -3%); }
    100% { transform: translate(2%, 2%); }
  }

  /* ───────── load choreography ─────────
     One rehearsed entrance: ticker drops in, header fades,
     hero opens like a shutter.
     Pure keyframes with `both` fill — they always run to completion. */
  @keyframes drop-in  { from { transform: translateY(-101%); } to { transform: none; } }
  @keyframes fade-in  { from { opacity: 0; } to { opacity: 1; } }
  @keyframes hero-open {
    from { clip-path: inset(3% 2.5% 3% 2.5%); opacity: 0.4; }
    to   { clip-path: inset(0 0 0 0); opacity: 1; }
  }

  .ticker      { animation: drop-in 550ms var(--e-out-strong) both; }
  .header__row { animation: fade-in 650ms var(--e-out) 120ms both; }
  .header__nav { animation: fade-in 650ms var(--e-out) 220ms both; }
  .hero__media { animation: hero-open 950ms var(--e-out-strong) 150ms both; }

  /* ───────── ticker ───────── */
  .ticker {
    position: relative;
    z-index: 1;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    background: var(--ink);
    padding: 4px 0;
  }
  .ticker__track {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 100%;
    animation: ticker 28s linear infinite;
  }
  .ticker__track span {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: var(--white);
    padding: 0.35rem 1.6rem;
    text-transform: uppercase;
  }
  .ticker__track i {
    font-style: normal;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.45);
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
  }

  /* ───────── header (sticky; condenses on scroll) ───────── */
  .header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 10px 20px 12px;
    transition: padding 250ms var(--e-out-strong);
  }
  .header__row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    max-width: 1500px;
    margin: 0 auto;
  }
  .header__logo {
    grid-column: 2;
    perspective: 800px;
    transition: transform 0.3s;
  }
  .header__logo img {
    height: 132px;
    width: auto;
    transition: height 250ms var(--e-out-strong);
  }
  .header__logo:hover { transform: scale(1.04); }
  .header__logo:active { transform: scale(0.985); }
  .header__socials {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
    overflow: hidden;
    transition: opacity 250ms var(--e-out-strong), height 250ms var(--e-out-strong);
  }
  .header__socials a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
  }
  .header__socials svg {
    width: 15px;
    height: 15px;
    fill: var(--ink);
    transition: fill 160ms var(--e-out), transform 160ms var(--e-out);
  }
  .header__socials a:hover svg { fill: var(--ink-dim); transform: scale(1.15); }
  .header__socials a:active svg { transform: scale(0.94); }

  .header__nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(14px, 3vw, 38px);
    margin-top: 10px;
    transition: margin-top 250ms var(--e-out-strong);
  }
  .header__nav a {
    position: relative;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    padding: 10px 2px;
    transition: color 160ms var(--e-out);
  }
  .header__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 1px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 240ms var(--e-out);
  }
  .header__nav a:hover { color: var(--ink-dim); }
  .header__nav a:hover::after { transform: scaleX(1); }

  .header.is-condensed { padding: 6px 20px 7px; }
  .header.is-condensed .header__logo img { height: 46px; }
  .header.is-condensed .header__socials { opacity: 0; height: 0; pointer-events: none; }
  .header.is-condensed .header__nav { margin-top: 4px; }
  .header.is-condensed .header__nav a { font-size: 0.66rem; padding: 6px 2px; }

  /* scroll progress — hairline under the sticky header, maps 1:1 to page position */
  .progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    overflow: hidden;
  }
  .progress span {
    display: block;
    height: 100%;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: left;
  }

  /* ───────── hero ───────── */
  .hero {
    padding-top: 0;
  }
  .hero__media {
    position: relative;
    margin: 0;
    height: calc(100svh - var(--top-chrome, 232px));
    max-height: 1000px;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid var(--line);
  }
  .hero__track {
    display: flex;
    height: 100%;
    will-change: transform;
  }
  .hero__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: inset(0);
  }
  .hero__slide--live { object-position: center 30%; }

  .hero__caption {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 18px 14px 0;
  }
  .hero__caption p,
  .hero__caption a {
    flex-shrink: 0;
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--ink);
  }
  .hero__caption a { transition: color 160ms var(--e-out); }
  .hero__caption a:hover { color: var(--ink-dim); }
  .hero__line {
    flex: 1;
    height: 1px;
    background: var(--line);
  }

  /* ───────── sections ───────── */
  .section {
    max-width: 1500px;
    margin: 0 auto;
    padding: clamp(60px, 9vw, 120px) 20px 0;
  }
  .section__title {
    font-weight: 900;
    font-variation-settings: "wdth" 125;
    font-size: clamp(2.4rem, 6.5vw, 4.8rem);
    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-align: center;
    color: var(--ink);
    text-wrap: balance;
    margin-bottom: clamp(34px, 5vw, 60px);
  }
  .section__title--left { text-align: left; }

  /* masked title reveal — the drift transform lives on the h2,
     the rise transform lives on the inner line, so they never fight */
  .tmask {
    display: block;
    overflow: hidden;
    padding-bottom: 0.08em;
  }
  .tmask .tline {
    display: block;
    transform: translateY(112%);
    transition: transform 800ms var(--e-out-strong);
  }
  .tmask.is-in .tline { transform: none; }

  .rule {
    height: 1px;
    background: var(--line);
    max-width: 1500px;
    margin: clamp(60px, 9vw, 120px) auto 0;
  }

  /* ───────── releases carousel ───────── */
  .relcar {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
  }
  .relcar__track {
    display: flex;
    gap: clamp(20px, 3vw, 40px);
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding: 4px 2px 10px;
    perspective: 1400px; /* depth stage for the card tilt */
  }
  .relcar__track::-webkit-scrollbar { display: none; }
  .release-card {
    flex: 0 0 min(360px, 80vw);
    min-width: 0;
    scroll-snap-align: start;
    transition: transform 350ms var(--e-out);
  }
  @media (hover: hover) {
    .release-card:hover { transform: translateY(-4px); }
  }
  .relcar__btn {
    position: absolute;
    top: min(180px, 40vw);
    transform: translateY(-50%);
    z-index: 2;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    background: var(--bg);
    border: 1px solid var(--ink);
    color: var(--ink);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 160ms var(--e-out), color 160ms var(--e-out), transform 160ms var(--e-out);
  }
  .relcar__btn:hover { background: var(--ink); color: var(--white); }
  .relcar__btn:active { transform: translateY(-50%) scale(0.94); }
  .relcar__btn--prev { left: -12px; }
  .relcar__btn--next { right: -12px; }

  .release__art {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: var(--tile);
    cursor: pointer;
    transition: transform 200ms var(--e-out), box-shadow 350ms var(--e-out);
  }
  .release__art:active { transform: scale(0.985); }
  .release-card.is-playing .release__art:active { transform: none; }
  .release__art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms var(--e-out), filter 200ms var(--e-out);
  }
  .release__art::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(11, 11, 11, 0.12);
    pointer-events: none;
  }
  .release-card:hover .release__art { box-shadow: 0 18px 50px rgba(11, 11, 11, 0.3); }
  .release__play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    transition: opacity 240ms var(--e-out);
  }
  .release__play::before {
    content: "";
    position: absolute;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    transition: transform 200ms var(--e-out);
  }
  .release__play svg {
    position: relative;
    width: 24px;
    height: 24px;
    margin-left: 3px;
    fill: var(--ink);
  }
  .release__embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .release-card.is-playing .release__play { display: none; }
  .release-card.is-playing .release__art { cursor: default; }
  @media (hover: hover) {
    .release-card:hover .release__art img { transform: scale(1.05); filter: brightness(0.72); }
    .release-card:hover .release__play { opacity: 1; }
    .release__art:hover .release__play::before { transform: scale(1.08); }
    .release-card.is-playing:hover .release__art img { transform: none; filter: none; }
  }
  @media (hover: none) {
    .release__play { opacity: 1; }
    .release__play::before { width: 54px; height: 54px; background: rgba(255, 255, 255, 0.92); }
    .release__art img { filter: brightness(0.84); }
    .release-card.is-playing .release__art img { filter: none; }
  }

  .release__meta { padding-top: 16px; }
  .release__tag {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    border: 1px solid var(--ink);
    padding: 6px 10px;
  }
  .release__tag--hit { background: var(--ink); color: var(--white); }
  .release__title {
    margin-top: 14px;
    font-weight: 900;
    font-variation-settings: "wdth" 62;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .release__credits {
    margin-top: 8px;
    font-size: 0.64rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--ink-dim);
  }

  /* ═════════ RELEASE FEATURE — scroll-scrubbed cinema ═════════
     ONE film-poster block, TWO backdrops that share the same overlay:
       • video   → <video class="encore__media" …>   (see template in markup)
       • no video → <img class="encore__bg"> ambient + <img class="encore__cover"> crisp
     Keep this structure for every future release feature. */
  .encore {
    margin-top: clamp(60px, 9vw, 120px);
    background: var(--ink);
    color: var(--white);
    padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 56px);
  }
  .encore__cinema {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: 1400px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
    will-change: transform;
  }
  /* video backdrop (film-poster pattern for releases WITH a teaser) */
  .encore__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  /* no-video backdrop: cover art blown up + blurred = immersive colour field.
     Blur hides the upscale softness, so a 640px cover fills the frame cleanly. */
  .encore__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    filter: blur(48px) brightness(0.58) saturate(1.2);
    will-change: transform;
  }
  /* the crisp square artwork — the actual hero, anchored top-right */
  .encore__cover {
    position: absolute;
    z-index: 1;
    top: clamp(24px, 5vw, 60px);
    right: clamp(20px, 4vw, 60px);
    width: clamp(150px, 30%, 336px);
    aspect-ratio: 1;
    object-fit: cover;
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.62);
    outline: 1px solid rgba(255, 255, 255, 0.16);
    outline-offset: -1px;
  }
  .encore__scrim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.5) 28%, rgba(0,0,0,0.1) 55%, transparent 78%),
      radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.28) 100%);
  }
  .encore__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: clamp(20px, 4vw, 60px);
    padding: clamp(24px, 4vw, 56px) clamp(20px, 4vw, 64px);
  }
  .encore__head { min-width: 0; }
  .encore__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 18px;
  }
  /* three-bar equalizer — "sound incoming", not a decorative dot */
  .eq {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    height: 11px;
  }
  .eq i {
    width: 3px;
    height: 100%;
    background: var(--white);
    transform-origin: bottom;
    animation: eq-pulse 0.9s var(--e-in-out) infinite alternate;
  }
  .eq i:nth-child(1) { animation-delay: 0ms;   transform: scaleY(0.4); }
  .eq i:nth-child(2) { animation-delay: 180ms; transform: scaleY(0.8); }
  .eq i:nth-child(3) { animation-delay: 360ms; transform: scaleY(0.55); }
  @keyframes eq-pulse {
    from { transform: scaleY(0.25); }
    to   { transform: scaleY(1); }
  }
  .encore__title {
    font-weight: 900;
    font-variation-settings: "wdth" 125;
    font-size: clamp(2.4rem, 7vw, 6rem);
    line-height: 0.88;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    margin: 0;
    overflow: hidden;
    padding-bottom: 0.08em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  }
  /* per-letter rise, staggered by --i (spans injected by JS; plain text without JS) */
  .encore__title .ch {
    display: inline-block;
    transform: translateY(120%);
    transition: transform 700ms var(--e-out-strong);
    transition-delay: calc(var(--i, 0) * 70ms);
  }
  .encore__overlay.is-in .encore__title .ch { transform: none; }
  .encore__credits {
    margin-top: 14px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: rgba(255, 255, 255, 0.78);
  }
  .encore__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-bottom: 4px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 18px 28px;
    transition: background 200ms var(--e-out), color 200ms var(--e-out), transform 160ms var(--e-out);
  }
  .encore__cta svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: square;
    stroke-linejoin: miter;
    transition: transform 220ms var(--e-out);
  }
  .encore__cta:hover { background: var(--white); color: var(--ink); }
  .encore__cta:hover svg { transform: translateX(4px); }
  .encore__cta:active { transform: scale(0.97); }

  /* ───────── soundcloud ───────── */
  .soundcloud {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
  }
  .soundcloud__player {
    display: block;
    width: 100%;
    height: 166px;
    border: 0;
  }

  /* ───────── "more" links ───────── */
  .section__more {
    margin-top: 26px;
    text-align: center;
  }
  .section__more a {
    display: inline-block;
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    padding: 10px 0;
    border-bottom: 1px solid var(--ink);
    transition: color 160ms var(--e-out), border-color 160ms var(--e-out), transform 160ms var(--e-out);
  }
  .section__more a:hover { color: var(--ink-dim); border-color: var(--ink-dim); }
  .section__more a:active { transform: scale(0.97); }

  /* ───────── videos ───────── */
  .videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 22px;
  }
  .video__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: grid;
    place-items: center;
    border: 0;
    padding: 0;
    background: var(--tile);
    cursor: pointer;
    transition: box-shadow 0.25s;
  }
  .video__thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
    transition: filter 0.25s, transform 0.5s;
  }
  .video:hover .video__thumb { box-shadow: 0 14px 40px rgba(11, 11, 11, 0.28); }
  .video:hover .video__thumb img { filter: brightness(0.9); transform: scale(1.03); }
  .video__play {
    position: relative;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    font-size: 1.1rem;
    padding-left: 4px;
    transition: transform 0.25s;
  }
  .video:hover .video__play { transform: scale(1.12); }
  .video__frame {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
  }
  .video__caption {
    margin-top: 12px;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
  }

  /* ───────── about ───────── */
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 5vw, 70px);
    align-items: center;
  }
  .about__img {
    border: 1px solid var(--line);
    overflow: hidden;
    aspect-ratio: 4 / 5;
  }
  .about__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms var(--e-out);
  }
  .about__img:hover img { transform: scale(1.03); }
  .about__text p {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 1.4em;
  }
  .about__text a {
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    transition: color 0.2s, border-color 0.2s;
  }
  .about__text a:hover { color: var(--ink-dim); border-color: var(--ink-dim); }
  .about__text .section__title--left { margin-bottom: 28px; }

  /* ───────── footer ───────── */
  .footer {
    margin-top: clamp(80px, 12vw, 160px);
    background: var(--ink);
    padding: clamp(50px, 8vw, 100px) 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
  }
  .footer__logo {
    width: min(620px, 86vw);
    perspective: 1100px;
  }
  .footer__logo .logo3d { width: 100%; }
  .footer__logo img { width: 100%; }
  .footer__mail {
    font-size: clamp(0.85rem, 2.4vw, 1.2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 16px 30px;
    transition: background 200ms var(--e-out), color 200ms var(--e-out), transform 160ms var(--e-out);
  }
  .footer__mail:hover { background: var(--white); color: var(--ink); }
  .footer__mail:active { transform: scale(0.97); }
  .footer__row {
    display: flex;
    gap: 26px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: rgba(255, 255, 255, 0.55);
  }
  .footer__row a { color: rgba(255, 255, 255, 0.55); padding: 10px 0; }
  .footer__row a:hover { color: var(--white); }

  /* ───────── 3D logo ───────── */
  .logo3d {
    position: relative;
    display: inline-block;
    transform-style: preserve-3d;
    animation: logo-rock 9s ease-in-out infinite;
  }
  .logo3d > img {
    display: block;
    position: relative;
  }
  .logo3d .logo3d__layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  @keyframes logo-rock {
    0%, 100% { transform: rotateY(-18deg); }
    50% { transform: rotateY(18deg); }
  }

  /* ───────── logo glitch ───────── */
  .glitch {
    position: relative;
    display: inline-block;
  }
  .glitch > img {
    display: block;
    position: relative;
    z-index: 1;
  }
  .glitch::before,
  .glitch::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: url("/assets/ch4yn-logo.png") center / contain no-repeat;
    opacity: 0;
    pointer-events: none;
  }
  .glitch::before { animation: glitch-a 7s steps(1) infinite; }
  .glitch::after { animation: glitch-b 7s steps(1) infinite; }
  .glitch:hover::before { animation: glitch-a 0.5s steps(1) infinite; }
  .glitch:hover::after { animation: glitch-b 0.5s steps(1) infinite; }

  @keyframes glitch-a {
    0%, 89.9% { opacity: 0; transform: none; clip-path: inset(0); }
    90% { opacity: 0.9; transform: translate(-7px, 2px); clip-path: inset(8% 0 64% 0); }
    92% { opacity: 0.9; transform: translate(6px, -2px); clip-path: inset(58% 0 12% 0); }
    94% { opacity: 0.9; transform: translate(-4px, 1px); clip-path: inset(32% 0 40% 0); }
    95.9%, 100% { opacity: 0; transform: none; clip-path: inset(0); }
  }
  @keyframes glitch-b {
    0%, 90.4% { opacity: 0; transform: none; clip-path: inset(0); filter: none; }
    90.5% { opacity: 0.7; transform: translate(6px, -1px); clip-path: inset(48% 0 22% 0); filter: hue-rotate(180deg) saturate(1.6); }
    92.5% { opacity: 0.7; transform: translate(-5px, 2px); clip-path: inset(14% 0 70% 0); filter: hue-rotate(180deg) saturate(1.6); }
    94.5% { opacity: 0.7; transform: translate(3px, 0); clip-path: inset(70% 0 6% 0); filter: hue-rotate(180deg) saturate(1.6); }
    95.9%, 100% { opacity: 0; transform: none; clip-path: inset(0); filter: none; }
  }

  /* ───────── scroll reveals — one flavor per section, not one reflex everywhere ───────── */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms var(--e-out-strong),
                transform 600ms var(--e-out-strong);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  /* wipe: thumbnails uncover top-to-bottom like a projector shutter.
     The clip lives on the CHILD — a fully-clipped element reports zero
     intersection (and never lazy-loads), so the observed container
     must keep its box unclipped. */
  .reveal-wipe .video__thumb {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 900ms var(--e-out-strong);
  }
  .reveal-wipe.is-visible .video__thumb { clip-path: inset(0 0 0 0); }
  .reveal-wipe .video__caption {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 500ms var(--e-out-strong) 250ms,
                transform 500ms var(--e-out-strong) 250ms;
  }
  .reveal-wipe.is-visible .video__caption { opacity: 1; transform: none; }

  /* wipe: portrait uncovers left-to-right */
  .reveal-wipe-left .wipe {
    height: 100%;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 900ms var(--e-out-strong);
  }
  .reveal-wipe-left.is-visible .wipe { clip-path: inset(0 0 0 0); }

  /* ───────── reduced motion ───────── */
  @media (prefers-reduced-motion: reduce) {
    .ticker__track { animation: none; }
    .hero__media img { animation: none; }
    .grain { animation: none; }
    .glitch::before,
    .glitch::after { animation: none; opacity: 0; }
    .logo3d { animation: none; }
    .eq i { animation: none; }
    .ticker, .header__row, .header__nav, .hero__media { animation: none; }
    .header, .header__logo img, .header__socials,
    .header__nav, .header__nav a { transition: none; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .reveal-wipe .video__thumb, .reveal-wipe-left .wipe { clip-path: none; transition: none; }
    .reveal-wipe .video__caption { opacity: 1; transform: none; transition: none; }
    .tmask .tline { transform: none; transition: none; }
    .encore__title .ch { transform: none; transition: none; }
    html { scroll-behavior: auto; }
  }

  /* no-JS: never gate content on a class that will not arrive */
  @media (scripting: none) {
    .reveal { opacity: 1; transform: none; }
    .reveal-wipe .video__thumb, .reveal-wipe-left .wipe { clip-path: none; }
    .reveal-wipe .video__caption { opacity: 1; transform: none; }
    .tmask .tline { transform: none; }
  }

  /* ───────── mobile ───────── */
  @media (max-width: 760px) {
    :root { --header-h: 200px; }
    .header {
      padding: 8px 12px 12px;
    }
    .header__nav { margin-top: 0; gap: 12px; flex-wrap: nowrap; }
    .header__nav a { font-size: 0.6rem; letter-spacing: 0.12em; padding: 15px 3px; }
    .header__logo { order: 1; grid-column: auto; }
    .header__logo img { height: 76px; }
    .header__socials { justify-self: center; order: 2; grid-column: auto; gap: 2px; height: 44px; }
    .header__socials a { width: 44px; height: 44px; }
    .header__row {
      grid-template-columns: 1fr;
      justify-items: center;
      gap: 6px;
    }
    .header.is-condensed .header__logo img { height: 40px; }
    .header.is-condensed .header__nav a { font-size: 0.56rem; padding: 12px 3px; }
    .hero__media { margin: 0; height: calc(100svh - var(--top-chrome, 220px)); }
    .release__play { opacity: 1; }
    .release__play::before { width: 54px; height: 54px; background: rgba(255, 255, 255, 0.92); }
    .release__art img { filter: brightness(0.82); }
    .release-card.is-playing .release__art img { filter: none; }
    .relcar__btn { display: none; }
    .encore__cinema { aspect-ratio: 4 / 5; }
    .encore__cover { top: 18px; right: 18px; width: 40%; }
    .encore__overlay {
      grid-template-columns: 1fr;
      align-items: start;
      gap: 18px;
      padding: 22px 20px 24px;
    }
    .encore__cta {
      justify-content: center;
      width: 100%;
      padding: 14px 18px;
      font-size: 0.66rem;
    }
    .encore__credits { margin-top: 12px; font-size: 0.64rem; }
    .about { grid-template-columns: 1fr; }
  }
  
