/* ===================================================================
   GUNFINGA — DEEPER · LOWEND Records
   Monochrome dub future: black, concrete, eclipse glow. Heavy low end.
   =================================================================== */

:root {
  --bg-0: #0a0906;
  --bg-1: #100e0a;
  --bg-2: #17140e;
  --bg-3: #221d14;

  --glow: #d8c89c;   /* muted doorway light (from the cover) */
  --gold: #c4b483;   /* cover khaki-gold */
  --bone: #e0d5bb;   /* warm off-white */
  --ash: #8f8a78;    /* warm concrete grey */

  --text: #c8c0ac;
  --text-dim: rgba(224, 213, 187, 0.5);
  --text-faint: rgba(224, 213, 187, 0.28);

  --line: rgba(224, 213, 187, 0.12);
  --accent: var(--gold);

  --display: "Bebas Neue", "Oswald", "Arial Narrow", system-ui, sans-serif;
  --body: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --label: "Bebas Neue", "Oswald", "Arial Narrow", sans-serif; /* small cover-style caps */
  --mono: var(--label);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --slow: 1.1s;
  --maxw: 1180px;
  color-scheme: dark;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; overflow-y: scroll; scrollbar-gutter: stable; }

body {
  font-family: var(--body);
  color: var(--text);
  background: var(--bg-0);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* details: warm selection, gold keyboard focus, dub scrollbar */
::selection { background: rgba(216, 199, 154, 0.28); color: var(--bone); }
:focus-visible { outline: 2px solid rgba(216, 199, 154, 0.7); outline-offset: 3px; border-radius: 2px; }
html { scrollbar-color: #3a3528 transparent; scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: #2e2b22; border: 3px solid var(--bg-0); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* fade images in once they decode */
.img-fade { opacity: 0; transition: opacity 1.1s var(--ease); }
.img-fade.is-loaded { opacity: 1; }

/* dubby smoky GUNFINGA logo (header) — drifting smoke aura + breathing glow */
.brand__logo { position: relative; display: inline-grid; place-items: center; isolation: isolate; }
.brand__logo::before, .brand__logo::after {
  content: ""; position: absolute; inset: -110%;
  border-radius: 50%; pointer-events: none; z-index: -1;
  filter: blur(11px);
}
.brand__logo::before {
  background: radial-gradient(closest-side, rgba(216, 199, 154, 0.40), transparent 70%);
  animation: smokeA 7.5s ease-in-out infinite;
}
.brand__logo::after {
  background: radial-gradient(closest-side, rgba(233, 226, 210, 0.26), transparent 72%);
  animation: smokeB 10s ease-in-out infinite;
}
.brand__mark { animation: logoBreathe 6.5s ease-in-out infinite; will-change: transform, filter; }
@keyframes smokeA {
  0%, 100% { transform: translate(-10%, 8%) scale(1); opacity: 0.45; }
  50%      { transform: translate(12%, -10%) scale(1.3); opacity: 0.85; }
}
@keyframes smokeB {
  0%, 100% { transform: translate(10%, -6%) scale(1.15); opacity: 0.3; }
  50%      { transform: translate(-12%, 10%) scale(0.85); opacity: 0.6; }
}
@keyframes logoBreathe {
  0%, 100% { transform: rotate(-1.5deg); filter: drop-shadow(0 0 5px rgba(244, 236, 216, 0.35)); }
  50%      { transform: rotate(1.5deg);  filter: drop-shadow(0 0 14px rgba(244, 236, 216, 0.8)); }
}

/* dub echo on the big titles when hovered (tape-delay trail to the right) */
.album-title, .big-headline { transition: text-shadow 0.5s var(--ease); }
.album-title:hover, .big-headline:hover {
  animation: none;
  text-shadow:
    0 0 30px rgba(244, 236, 216, 0.28),
    0.12em 0 0.16em rgba(216, 199, 154, 0.30),
    0.26em 0 0.22em rgba(216, 199, 154, 0.16),
    0.42em 0 0.30em rgba(216, 199, 154, 0.08);
}

/* ---------- background layers ---------- */
#bg {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  z-index: -2;
  display: block;
  background: radial-gradient(120% 80% at 50% 30%, #15120c, var(--bg-0) 70%), var(--bg-0);
}

/* jungle frame — palms top & bottom, fading into the dark (bg.png).
   Full-width so the palms stay visible on every screen, incl. mobile. */
.scene { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.scene__band {
  position: absolute;
  left: 0; right: 0;
  height: clamp(150px, 26vh, 320px);
  background: url("../assets/bg.jpg") center / cover no-repeat;
  filter: brightness(0.66) saturate(0.5) sepia(0.32);
  opacity: 0.9;
}
.scene__band--top {
  top: 0;
  -webkit-mask-image: linear-gradient(to bottom, #000 28%, transparent);
          mask-image: linear-gradient(to bottom, #000 28%, transparent);
}
.scene__band--bottom {
  bottom: 0;
  opacity: 0.62;
  filter: brightness(0.5) saturate(0.45) sepia(0.34);
  -webkit-mask-image: linear-gradient(to top, #000 28%, transparent);
          mask-image: linear-gradient(to top, #000 28%, transparent);
}

/* cursor torch — lights the dark behind the content */
.spotlight {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: screen;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 30%),
    rgba(214, 194, 140, 0.10), rgba(196, 180, 131, 0.04) 42%, transparent 70%);
}

/* drifting smoke — soft wisps crossing the page (foreground, under the header) */
.smoke {
  position: fixed;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
}
.smoke__puff {
  position: absolute;
  border-radius: 50%;
  filter: blur(44px);
  background: radial-gradient(closest-side, rgba(214, 202, 168, 0.26), rgba(214, 202, 168, 0.09) 55%, transparent 75%);
  will-change: transform;
}
.smoke__puff--1 { width: 70vw; height: 50vh; top: 2%;  animation: smokeDrift1 40s linear infinite; }
.smoke__puff--2 { width: 90vw; height: 62vh; top: 32%; animation: smokeDrift2 52s linear infinite; animation-delay: -20s; }
.smoke__puff--3 { width: 62vw; height: 48vh; top: 58%; animation: smokeDrift3 46s linear infinite; animation-delay: -32s; }
@keyframes smokeDrift1 {
  from { transform: translateX(-80vw) translateY(0) scale(1); }
  to   { transform: translateX(150vw) translateY(-4vh) scale(1.35); }
}
@keyframes smokeDrift2 {
  from { transform: translateX(-100vw) translateY(0) scale(1.1); }
  to   { transform: translateX(150vw) translateY(5vh) scale(0.9); }
}
@keyframes smokeDrift3 {
  from { transform: translateX(-92vw) translateY(0) scale(1); }
  to   { transform: translateX(150vw) translateY(-3vh) scale(1.3); }
}

.grain {
  position: fixed;
  inset: -50%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  animation: grainshift 6s steps(6) infinite;
}
@keyframes grainshift {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 1%); }
  100% { transform: translate(0, 0); }
}

/* ---------- layout helpers ---------- */
.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(5rem, 13vh, 9.5rem) 0; position: relative; }

.eyebrow {
  font-family: var(--label);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.92rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow.center { text-align: center; }

/* ---------- HUD side rails ---------- */
.hud {
  position: fixed;
  top: 0; bottom: 0;
  width: 2.4rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 6.5rem 0 2.5rem;
  pointer-events: none;
}
.hud--left { left: 0; }
.hud--right { right: 0; }
.hud__line {
  writing-mode: vertical-rl;
  font-family: var(--label);
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(233, 226, 210, 0.22);
  white-space: nowrap;
}
.hud--left .hud__line { transform: rotate(180deg); }

/* ---------- logo marks ---------- */
.brand__mark { height: 24px; width: auto; }
.about__mark { height: 42px; width: auto; margin: 0 auto 1.6rem; opacity: 0.92; }
.footer__mark-link { display: inline-block; transition: opacity 0.3s var(--ease), filter 0.3s var(--ease); }
.footer__mark-link:hover { opacity: 0.82; filter: drop-shadow(0 0 22px rgba(216, 199, 154, 0.45)); }
.footer__mark { height: 48px; width: auto; margin: 0 auto 1.4rem; opacity: 1; }

/* =====================  HEADER  ===================== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 4vw, 2.5rem);
  transition: background var(--slow) var(--ease), backdrop-filter var(--slow) var(--ease), border-color var(--slow) var(--ease);
  border-bottom: 1px solid transparent;
}
.topbar.scrolled { background: rgba(8, 8, 10, 0.72); backdrop-filter: blur(12px); border-bottom-color: var(--line); }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__name {
  font-family: var(--display);
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  font-size: 1.1rem;
  color: var(--bone);
}
.topbar__sys { font-family: var(--label); font-size: 0.8rem; letter-spacing: 0.3em; color: var(--text-faint); }

/* =====================  HERO  ===================== */
.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 7rem 1.25rem 5rem;
  position: relative;
}
/* darken the top (cover area), fade back to the normal look further down */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 6, 4, 0.78) 0%, rgba(7, 6, 4, 0.42) 28%, rgba(7, 6, 4, 0) 64%);
}
.hero__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.hero-arrow {
  display: none; /* arrow removed on all sizes */
  font-size: clamp(2.6rem, 7vw, 4.2rem); line-height: 1;
  color: var(--bone); margin: clamp(2.6rem, 6.5vh, 4rem) 0 0;
  opacity: 0;
  filter: drop-shadow(0 0 16px rgba(216, 199, 154, 0.55));
  animation: rise 1.4s var(--ease) 0.1s forwards, bob 2.8s ease-in-out 1.6s infinite;
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
.scroll-cue { z-index: 1; }

.cover {
  position: relative;
  width: clamp(260px, 52vw, 520px);
  aspect-ratio: 1;
  will-change: transform; /* JS writes parallax translate here */
}
.cover__ring {
  position: absolute;
  inset: -16%;
  z-index: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    transparent 0deg, rgba(244, 236, 216, 0.22) 55deg, transparent 130deg,
    transparent 215deg, rgba(216, 199, 154, 0.16) 300deg, transparent 360deg);
  filter: blur(34px);
  animation: spin 34s linear infinite;
}
.cover__glow {
  position: absolute;
  inset: -22%;
  z-index: 0;
  background: radial-gradient(closest-side, rgba(244, 236, 216, 0.24), rgba(216, 199, 154, 0.07) 55%, transparent 72%);
  filter: blur(30px);
  animation: breathe 10s ease-in-out infinite;
}
.cover__float {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  border-radius: 4px;
  opacity: 0;
  will-change: transform;
  animation: rise 1.8s var(--ease) 0.2s forwards, float 15s ease-in-out 2s infinite;
}
.cover img {
  border-radius: 4px;
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(233, 226, 210, 0.06) inset;
  transition: box-shadow 0.9s var(--ease), filter 0.9s var(--ease);
}
.cover:hover img {
  filter: brightness(1.05);
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.9), 0 0 75px -8px rgba(244, 236, 216, 0.4), 0 0 0 1px rgba(233, 226, 210, 0.12) inset;
}

.hero__release {
  margin-top: clamp(2rem, 5vh, 3rem);
  font-family: var(--display);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 28px rgba(216, 199, 154, 0.35);
  opacity: 0;
  animation: rise 1.6s var(--ease) 0.5s forwards;
}
.hero__sub {
  margin-top: 0.55rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0;
  animation: rise 1.6s var(--ease) 0.64s forwards;
}
.hero__tags { margin-top: 0.55rem; font-size: 0.82rem; letter-spacing: 0.06em; color: var(--text-dim); opacity: 0; animation: rise 1.6s var(--ease) 0.72s forwards; }

.hero__cta {
  margin-top: clamp(2rem, 5vh, 3rem);
  display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center;
  opacity: 0; animation: rise 1.6s var(--ease) 0.85s forwards;
}

/* ---------- buttons ---------- */
.btn {
  font-family: var(--label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.95rem;
  padding: 0.8rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--text);
  background: rgba(233, 226, 210, 0.02);
  backdrop-filter: blur(6px);
  transition: border-color var(--slow) var(--ease), color var(--slow) var(--ease),
              background var(--slow) var(--ease), box-shadow var(--slow) var(--ease), transform 0.6s var(--ease);
}
.btn:hover { border-color: rgba(216, 199, 154, 0.6); color: var(--bone); box-shadow: 0 0 36px -8px rgba(216, 199, 154, 0.55); transform: translateY(-2px); }
.btn--solid {
  background: linear-gradient(180deg, rgba(216, 200, 156, 0.16), rgba(216, 200, 156, 0.06));
  border-color: rgba(216, 200, 156, 0.45);
  color: var(--bone);
  box-shadow: 0 0 30px -12px rgba(216, 199, 154, 0.6);
}
.btn--solid:hover { background: linear-gradient(180deg, rgba(216, 200, 156, 0.26), rgba(216, 200, 156, 0.1)); }
.btn--ghost { opacity: 0.78; }

/* hero buttons — jungle/palm overlay behind the label, revealed on hover */
.hero__cta .btn { position: relative; overflow: hidden; isolation: isolate; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55); }
.hero__cta .btn::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: url("../assets/bg.jpg") center / cover no-repeat;
  opacity: 0.22;
  filter: saturate(0.9) brightness(0.75);
  transform: scale(1.25);
  transition: opacity 0.9s var(--ease), transform 1.3s var(--ease), filter 0.9s var(--ease);
}
.hero__cta .btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.35), rgba(8, 8, 10, 0.62));
  transition: background 0.9s var(--ease);
}
.hero__cta .btn:hover::before { opacity: 0.55; transform: scale(1); filter: saturate(1.05) brightness(1); }
.hero__cta .btn:hover::after { background: linear-gradient(180deg, rgba(8, 8, 10, 0.18), rgba(8, 8, 10, 0.45)); }
.hero__cta .btn--solid::after { background: linear-gradient(180deg, rgba(216, 199, 154, 0.18), rgba(8, 8, 10, 0.6)); }
.hero__cta .btn--solid:hover::after { background: linear-gradient(180deg, rgba(216, 199, 154, 0.26), rgba(8, 8, 10, 0.42)); }
.hero__cta .btn--ghost { opacity: 1; }

/* ---------- scroll cue ---------- */
.scroll-cue {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  width: 20px; height: 34px; border: 1px solid var(--line); border-radius: 2px;
  display: grid; place-items: start center; padding-top: 7px;
  opacity: 0; animation: rise 1.6s var(--ease) 1.1s forwards;
}
.scroll-cue span { width: 2px; height: 8px; background: var(--gold); animation: drip 2.6s ease-in-out infinite; }
@keyframes drip { 0%, 100% { transform: translateY(0); opacity: 0.3; } 50% { transform: translateY(9px); opacity: 1; } }

/* =====================  TICKER  ===================== */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(13, 13, 16, 0.4);
  padding: 0.9rem 0;
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.6vw, 1.7rem);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-faint);
  animation: ticker 52s linear infinite;
  will-change: transform;
  padding-left: 1.6rem;
}
.ticker__track i { color: rgba(216, 199, 154, 0.55); font-style: normal; }
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =====================  ALBUM / PLAYER  ===================== */
.album { border-top: 1px solid var(--line); }
.album__head { max-width: 42ch; margin-bottom: clamp(2.5rem, 6vh, 4rem); }
.album-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(4.5rem, 18vw, 12rem);
  line-height: 0.9;
  letter-spacing: 0.12em;
  text-indent: 0;
  margin-left: -0.02em;   /* optical flush with the description text */
  color: var(--bone);
  margin-bottom: 1.6rem;
}
.album__desc { font-size: clamp(1.05rem, 2.2vw, 1.35rem); color: var(--text); max-width: 40ch; line-height: 1.55; }

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

/* ---------- dynamic viewer ---------- */
.viewer { position: sticky; top: 12vh; }
.viewer__tag { font-family: var(--label); font-size: 0.82rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); opacity: 0.85; margin-bottom: 0.9rem; }
.viewer__frame {
  position: relative;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 50px 120px -35px rgba(0, 0, 0, 0.95), 0 0 60px -20px rgba(216, 199, 154, 0.25);
}
.viewer__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.9s var(--ease); }
.viewer__img.is-active { opacity: 1; }
.viewer__glow { position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 120px rgba(244, 236, 216, 0.1); }
.viewer__scan {
  position: absolute; left: 0; right: 0; height: 38%; top: -38%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(244, 236, 216, 0.07), transparent);
  animation: scan 7s linear infinite;
}
@keyframes scan { 0% { top: -38%; } 100% { top: 100%; } }
.viewer__meta { margin-top: 1.2rem; }
.viewer__no { font-family: var(--label); color: var(--gold); letter-spacing: 0.12em; font-size: 1rem; margin-right: 0.7rem; }
.viewer__title { font-family: var(--display); font-weight: 500; font-size: clamp(1.4rem, 3vw, 2.1rem); letter-spacing: 0.04em; color: var(--bone); }
.viewer__mood { display: block; margin-top: 0.4rem; color: var(--text-dim); font-size: 0.95rem; letter-spacing: 0.02em; }

/* ---------- tracklist ---------- */
.tracklist { list-style: none; }
.track { border-top: 1px solid var(--line); transition: background 0.6s var(--ease); }
.track:last-child { border-bottom: 1px solid var(--line); }
.track.is-active { background: linear-gradient(90deg, rgba(216, 199, 154, 0.06), transparent 70%); }

.track__btn {
  width: 100%;
  display: grid;
  grid-template-columns: 2.2rem 46px 1fr 1.6rem;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 0.5rem;
  background: none; border: 0; cursor: pointer;
  color: var(--text); text-align: left; font-family: var(--body);
  transition: color 0.6s var(--ease);
}
.track__btn:hover, .track__btn:focus-visible { color: var(--bone); outline: none; }
.track__no { font-family: var(--label); font-size: 1.05rem; letter-spacing: 0.08em; color: var(--text-faint); transition: color 0.6s var(--ease); }
.track.is-active .track__no, .track__btn:hover .track__no { color: var(--gold); }
.track__thumb {
  width: 46px; height: 46px; object-fit: cover; border-radius: 3px;
  opacity: 0.5; filter: grayscale(0.35) brightness(0.85);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), box-shadow 0.6s var(--ease), filter 0.6s var(--ease);
}
.track__btn:hover .track__thumb, .track.is-active .track__thumb {
  opacity: 1; filter: none;
  box-shadow: 0 0 22px -4px rgba(216, 199, 154, 0.7);
}
.track__name { font-family: var(--display); font-weight: 400; font-size: clamp(1.15rem, 2.6vw, 1.55rem); letter-spacing: 0.04em; }
.track.is-active .track__name { color: var(--bone); }
.track__cue { font-family: var(--body); font-size: 0.72rem; color: var(--text-faint); text-align: center; transition: color 0.6s var(--ease); }
.track__btn:hover .track__cue { color: var(--gold); }
.track.is-playing-audio .track__cue { color: var(--gold); }
.track.is-playing-audio .track__name { color: var(--bone); }

/* ---------- viewer transport + sticky player ---------- */
.viewer__transport { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.1rem; }
.viewer__play, .playerbar__play {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(216, 199, 154, 0.5); background: rgba(8, 8, 10, 0.4); color: var(--bone);
  font-size: 0.78rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.viewer__play:hover, .playerbar__play:hover { background: rgba(216, 199, 154, 0.14); box-shadow: 0 0 22px -6px rgba(216, 199, 154, 0.6); }
.viewer__play:disabled { opacity: 0.5; cursor: default; }
.transport-skip, .playerbar__skip {
  flex: 0 0 auto; background: none; border: 0; cursor: pointer;
  color: var(--text-dim); font-size: 0.62rem; letter-spacing: -2px; padding: 6px 4px;
  transition: color 0.3s var(--ease);
}
.transport-skip:hover, .playerbar__skip:hover, .transport-skip:focus-visible, .playerbar__skip:focus-visible { color: var(--bone); outline: none; }
.viewer__bar, .playerbar__bar { flex: 1; height: 6px; border-radius: 3px; background: rgba(233, 226, 210, 0.14); cursor: pointer; position: relative; overflow: hidden; touch-action: none; }
.viewer__prog, .playerbar__prog { position: absolute; inset: 0 auto 0 0; width: 0; background: linear-gradient(90deg, var(--gold), var(--glow)); }
.viewer__time, .playerbar__time { flex: 0 0 auto; font-family: var(--label); font-size: 0.8rem; letter-spacing: 0.08em; color: var(--text-dim); min-width: 86px; text-align: right; }
.viewer.is-loading .viewer__bar { animation: pulseBar 1s ease-in-out infinite; }
@keyframes pulseBar { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

.playerbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.7rem clamp(1rem, 4vw, 2rem) 0.9rem;
  background: rgba(10, 9, 7, 0.97); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(120%); transition: transform 0.45s var(--ease);
}
/* extend the dark bar below itself so iOS never shows a black gap when the toolbar moves */
.playerbar::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 90px; background: rgba(10, 9, 7, 0.97); }
.playerbar.is-on { transform: translateY(0); }
/* reserve space so the fixed player never covers the footer */
/* reserve space inside the footer (solid dark) so the sticky player never
   leaves a lighter strip of background showing below it */
body.has-player .footer { padding-bottom: calc(3rem + 96px); }
.playerbar__cover { width: 42px; height: 42px; border-radius: 4px; object-fit: cover; flex: 0 0 auto; }
.playerbar__meta { display: flex; flex-direction: column; min-width: 0; max-width: 22vw; }
.playerbar__title { font-family: var(--display); letter-spacing: 0.04em; color: var(--bone); font-size: 1.05rem; line-height: 1.1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.playerbar__sub { font-family: var(--label); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); }
@media (max-width: 560px) {
  .playerbar__meta { display: none; }
  .playerbar__time { min-width: 0; font-size: 0.72rem; }
  .hero-arrow { display: none; }
}

.track__mood {
  max-height: 0; overflow: hidden;
  padding-left: 3.7rem;
  font-size: 0.9rem; letter-spacing: 0.02em; color: var(--gold); opacity: 0;
  transition: max-height var(--slow) var(--ease), opacity var(--slow) var(--ease), padding-bottom var(--slow) var(--ease);
}
.track.is-open .track__mood { max-height: 5rem; opacity: 0.85; padding-bottom: 1rem; }

/* ---------- bonus / live ---------- */
.bonus { margin-top: 3.5rem; }
.bonus__list { list-style: none; }
.bonus__list li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.7rem 0.4rem; border-bottom: 1px dashed var(--line); }
.bonus__name { font-family: var(--display); font-weight: 300; font-size: 1.15rem; letter-spacing: 0.03em; color: var(--text); }
.bonus__tag { font-family: var(--label); font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); opacity: 0.7; white-space: nowrap; }

/* =====================  LOW-END VISUAL  ===================== */
.lowend { border-top: 1px solid var(--line); }
/* dub bass pad — a little playable instrument (touch + mouse) */
.dubpad {
  position: relative;
  margin-top: 1.5rem;
  width: 100%;
  height: clamp(230px, 44vh, 380px);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  cursor: crosshair;
  touch-action: none;       /* we handle the drag, don't scroll the page */
  user-select: none;
  -webkit-user-select: none;
  background:
    radial-gradient(120% 150% at 50% 130%, rgba(35, 34, 40, 0.75), transparent 70%),
    var(--bg-1);
}
.dubpad__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.dubpad__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent calc(12.5% - 1px), rgba(233, 226, 210, 0.05) calc(12.5% - 1px), rgba(233, 226, 210, 0.05) 12.5%),
    linear-gradient(0deg, rgba(216, 199, 154, 0.05), transparent 45%);
}
.dubpad__puck {
  position: absolute; top: 0; left: 0;
  width: 58px; height: 58px; margin: -29px 0 0 -29px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(244, 236, 216, 0.9), rgba(216, 199, 154, 0.35) 48%, transparent 72%);
  box-shadow: 0 0 46px 8px rgba(216, 199, 154, 0.5);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
  pointer-events: none;
  will-change: transform;
}
.dubpad.is-playing .dubpad__puck { opacity: 1; }
.dubpad__note {
  position: absolute; top: 0.85rem; left: 1.1rem;
  font-family: var(--label); font-size: 1.15rem; letter-spacing: 0.12em;
  color: var(--gold); opacity: 0; transition: opacity 0.25s var(--ease);
  pointer-events: none;
}
.dubpad.is-playing .dubpad__note { opacity: 0.95; }
.dubpad__hint {
  position: absolute; bottom: 0.85rem; right: 1.1rem;
  font-family: var(--label); font-size: 0.82rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--text-faint); pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.dubpad.is-playing .dubpad__hint { opacity: 0; }
.dubpad__ctrls { position: absolute; top: 0.7rem; right: 0.8rem; display: flex; gap: 0.5rem; z-index: 2; }
.dubpad__btn {
  font-family: var(--label); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-dim); background: rgba(8, 8, 10, 0.5); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.34rem 0.85rem; cursor: pointer; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.dubpad__btn:hover { color: var(--bone); border-color: rgba(216, 199, 154, 0.5); }
.dubpad__btn.is-on { color: var(--bg-0); background: var(--gold); border-color: var(--gold); }

/* ===== dub device chassis — vintage Jamaican low-end unit / DAW plugin ===== */
.dubunit {
  position: relative;
  margin-top: 1.6rem;
  padding: clamp(1rem, 2.4vw, 1.6rem) clamp(1rem, 2.4vw, 1.6rem) clamp(0.6rem, 1.6vw, 1rem);
  border-radius: 12px;
  background: linear-gradient(180deg, #262219 0%, #18150f 42%, #110f0b 100%);
  border: 1px solid rgba(233, 226, 210, 0.12);
  box-shadow: 0 36px 80px -34px rgba(0, 0, 0, 0.92), inset 0 1px 0 rgba(244, 236, 216, 0.09), inset 0 -3px 8px rgba(0, 0, 0, 0.6);
}
.dubunit::before {
  content: ""; position: absolute; inset: 0; border-radius: 12px; pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 4px);
  opacity: 0.7;
}
.screw {
  position: absolute; width: 13px; height: 13px; border-radius: 50%; z-index: 2;
  background: radial-gradient(circle at 36% 30%, #514c3e, #1a1712 72%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.22), 0 1px 2px rgba(0, 0, 0, 0.6);
}
.screw::after { content: ""; position: absolute; top: 50%; left: 50%; width: 9px; height: 1.6px; background: rgba(0, 0, 0, 0.6); border-radius: 1px; transform: translate(-50%, -50%) rotate(35deg); }
.screw--tl { top: 10px; left: 10px; } .screw--tr { top: 10px; right: 10px; }
.screw--bl { bottom: 10px; left: 10px; } .screw--br { bottom: 10px; right: 10px; }

.dubunit__head { display: flex; align-items: center; gap: 1rem; padding: 0.1rem 0.8rem 0.8rem; }
.dubunit__brand { font-family: var(--display); letter-spacing: 0.2em; font-size: 1.15rem; color: var(--bone); }
.dubunit__model { font-family: var(--label); letter-spacing: 0.22em; font-size: 0.72rem; color: var(--text-faint); }
.dubunit__leds { margin-left: auto; display: flex; gap: 0.5rem; align-items: center; }
.led { width: 9px; height: 9px; border-radius: 50%; background: #34322a; box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.7); }
.led--pwr { background: var(--gold); box-shadow: 0 0 9px rgba(216, 199, 154, 0.85); }
.dubunit.is-live .led--sig { background: #bcd47e; box-shadow: 0 0 10px rgba(185, 210, 122, 0.95); }

.dubunit__panel { display: grid; grid-template-columns: 1fr 168px; gap: 1rem; }

/* the screen / scope (the touch pad) */
.dubunit .dubpad {
  margin-top: 0; height: clamp(220px, 38vh, 330px);
  border-radius: 6px; cursor: crosshair;
  border: 1px solid rgba(0, 0, 0, 0.65);
  box-shadow: inset 0 0 0 1px rgba(244, 236, 216, 0.05), inset 0 8px 26px rgba(0, 0, 0, 0.85);
  background: radial-gradient(120% 150% at 50% 125%, rgba(28, 40, 30, 0.45), #06070a 72%), #06070a;
}
.dubpad__canvas, .dubpad__grid, .dubpad__scan, .dubpad__puck, .dubpad__note, .dubpad__hint { pointer-events: none; }
.dubpad__scan {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.22) 0 1px, transparent 1px 3px);
  opacity: 0.45; mix-blend-mode: multiply;
}

/* rack — VU + knobs + transport */
.dubunit__rack { display: flex; flex-direction: column; gap: 0.85rem; padding-top: 0.1rem; }
.vu {
  height: 14px; border-radius: 3px; overflow: hidden;
  background: #0a0a0c; border: 1px solid rgba(0, 0, 0, 0.7);
  box-shadow: inset 0 2px 7px rgba(0, 0, 0, 0.75);
  display: flex; align-items: stretch;
}
.vu__fill { width: 4%; height: 100%; background: linear-gradient(90deg, #6fae5c, #d8c79a 62%, #e0584a); transition: width 0.07s linear; }
.knobs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 0.4rem; }
.knob { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; }
.knob__dial {
  --rot: 0deg;
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  background: radial-gradient(circle at 50% 36%, #3c382e, #15130f 74%);
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.12), inset 0 -3px 6px rgba(0, 0, 0, 0.75), 0 2px 4px rgba(0, 0, 0, 0.6);
  transform: rotate(var(--rot));
  cursor: ns-resize; touch-action: none;
  transition: box-shadow 0.3s var(--ease);
}
.knob__dial:hover, .knob__dial:focus-visible { outline: none; box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.14), inset 0 -3px 6px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(216, 199, 154, 0.4), 0 2px 4px rgba(0, 0, 0, 0.6); }
.knob__dial::after {
  content: ""; position: absolute; top: 5px; left: 50%; width: 2px; height: 12px; margin-left: -1px;
  background: var(--gold); border-radius: 2px; box-shadow: 0 0 5px rgba(216, 199, 154, 0.75);
}
.knob label { font-family: var(--label); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); }
.dubunit__ctrls { display: flex; gap: 0.5rem; margin-top: auto; }
.dubunit__ctrls .dubpad__btn { flex: 1; text-align: center; }

.dubunit__foot {
  display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0.8rem 0.2rem;
  font-family: var(--label); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint);
}

@media (max-width: 640px) {
  .dubunit__panel { grid-template-columns: 1fr; }
  .dubunit__rack { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .vu { width: 100%; flex-basis: 100%; }
  .knobs { grid-template-columns: repeat(4, 1fr); flex: 1; gap: 0.5rem; }
  .dubunit__ctrls { margin-top: 0; }
}

/* =====================  VISUALIZER  ===================== */
.visualizer { border-top: 1px solid var(--line); overflow: hidden; }
.big-headline {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.8rem, 9.5vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
  color: var(--bone);
}

/* recurring eclipse motif behind the headline */
.headline-eclipse { position: relative; display: grid; place-items: center; }
.eclipse {
  position: absolute;
  top: 46%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(640px, 84vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(244, 236, 216, 0.14);
  box-shadow: 0 0 140px rgba(244, 236, 216, 0.10), inset 0 0 100px rgba(244, 236, 216, 0.05);
  pointer-events: none;
  animation: breathe 11s ease-in-out infinite;
}
.video {
  position: relative; aspect-ratio: 16 / 9; border-radius: 4px; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, var(--bg-3), var(--bg-1) 70%), var(--bg-1);
  border: 1px solid var(--line); display: grid; place-items: center; cursor: pointer;
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }
.video__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.video__sheen { position: absolute; inset: 0; z-index: 1; background: radial-gradient(80% 60% at 50% 36%, rgba(244, 236, 216, 0.08), transparent 70%); pointer-events: none; animation: breathe 9s ease-in-out infinite; }
.video__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 78px; height: 78px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22); background: rgba(18, 18, 20, 0.45); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: grid; place-items: center; cursor: pointer; color: rgba(240, 236, 228, 0.95); z-index: 2;
  box-shadow: 0 10px 34px -10px rgba(0, 0, 0, 0.6);
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease), background 0.7s var(--ease);
}
.video__play svg { width: 30px; height: 30px; fill: currentColor; margin-left: 3px; }
.video__play:hover { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.72); background: rgba(32, 32, 36, 0.6); }
/* once the iframe loads, drop the facade so nothing floats over the video */
.video.is-playing .video__poster, .video.is-playing .video__play, .video.is-playing .video__sheen, .video.is-playing .video__label { opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); }
.video__label { position: absolute; bottom: 1rem; left: 1.2rem; font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim); z-index: 2; }

/* =====================  ABOUT  ===================== */
.about { border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.about__wrap {
  max-width: 1040px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}
.about__portrait {
  position: relative;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 100px -35px rgba(0, 0, 0, 0.95), 0 0 80px -28px rgba(216, 199, 154, 0.35);
}
.about__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
  filter: contrast(1.05) brightness(0.98);
}
.about__portrait-glow { position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 90px rgba(8, 8, 10, 0.7); }
.about__portrait figcaption {
  position: absolute;
  left: 1rem; bottom: 0.9rem;
  font-family: var(--label);
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  text-transform: uppercase;
  font-size: 0.92rem;
  color: var(--bone);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}
.about__copy { text-align: left; }
.about__text { font-size: clamp(1.15rem, 2.6vw, 1.7rem); line-height: 1.5; font-weight: 300; color: var(--text); letter-spacing: 0.01em; }

/* =====================  FOOTER  ===================== */
.footer { border-top: 1px solid var(--line); padding: clamp(3rem, 8vh, 5rem) 0 3rem; background: linear-gradient(180deg, transparent, rgba(7, 6, 4, 0.85)), var(--bg-0); }
.footer__wrap { text-align: center; }
.footer__brand { font-family: var(--display); font-weight: 700; font-size: clamp(1.6rem, 5vw, 2.4rem); letter-spacing: 0.08em; color: var(--bone); }
.footer__brand span { font-weight: 200; color: var(--ash); margin-left: 0.4em; }

.footer__streams { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem; margin: 2.4rem 0 1.5rem; }
.footer__streams a {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.62rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-dim);
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.86rem;
  transition: color 0.6s var(--ease), border-color 0.6s var(--ease), box-shadow 0.6s var(--ease), transform 0.6s var(--ease);
}
.footer__streams a:hover {
  color: var(--bone);
  border-color: rgba(216, 199, 154, 0.6);
  box-shadow: 0 0 28px -8px rgba(216, 199, 154, 0.55);
  transform: translateY(-2px);
}
.footer__streams .ic { width: 18px; height: 18px; flex: 0 0 auto; transition: color 0.6s var(--ease); }
.footer__streams a:hover .ic { color: var(--gold); }

.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem 1.7rem; margin: 0 0 1.8rem; }
.footer__links a { font-family: var(--label); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); position: relative; padding-bottom: 3px; transition: color 0.6s var(--ease); }
.footer__links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.6s var(--ease); }
.footer__links a:hover { color: var(--bone); }
.footer__links a:hover::after { transform: scaleX(1); }
.footer__line { font-family: var(--label); font-size: 0.86rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); }

/* =====================  ANIMATIONS  ===================== */
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes breathe { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes titleGlow {
  0%, 100% { text-shadow: 0 18px 60px rgba(0, 0, 0, 0.8), 0 0 38px rgba(244, 236, 216, 0.10); }
  50% { text-shadow: 0 18px 60px rgba(0, 0, 0, 0.8), 0 0 80px rgba(244, 236, 216, 0.30); }
}
[data-glow] { animation: titleGlow 9s ease-in-out infinite; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =====================  RESPONSIVE  ===================== */
@media (max-width: 1280px) { .hud { display: none; } }
@media (max-width: 820px) {
  .player { grid-template-columns: 1fr; }
  .viewer { position: relative; top: 0; max-width: 460px; margin-inline: auto; }
  .topbar__sys { display: none; }
  /* logo stays left, flush with the content/cover gutter */
  .topbar { justify-content: flex-start; padding-inline: 1.25rem; }
  .about__wrap { grid-template-columns: 1fr; }
  .about__portrait { max-width: 380px; margin-inline: auto; }
  .about__copy { text-align: center; }
}
@media (max-width: 520px) {
  /* bigger cover */
  .cover { width: min(86vw, 380px); }
  /* stack the hero buttons instead of wrapping (no lonely GUNFINGA line) */
  .hero__cta { flex-direction: column; align-items: center; gap: 0.7rem; width: 100%; }
  .hero__cta .btn { width: min(78vw, 260px); text-align: center; padding: 0.95rem 1.4rem; font-size: 0.86rem; }
  .brand__name { font-size: 0.82rem; letter-spacing: 0.32em; }
  .track__btn { grid-template-columns: 1.8rem 40px 1fr 1.4rem; gap: 0.7rem; }
  .track__thumb { width: 40px; height: 40px; }
}

/* =====================  REDUCED MOTION  ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .cover__float, .hero__release, .hero__sub, .hero__tags, .hero__cta, .scroll-cue { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
  .viewer__img.is-active { opacity: 1; }
  .img-fade { opacity: 1; }
  .smoke { display: none; }
  /* keep the ticker drifting — gentle linear scroll, not jarring */
  .ticker__track { animation-duration: 52s !important; animation-iteration-count: infinite !important; }
}
