/* dRUMELODY — mobile-first premium cyber-electro experience */

:root {
  --bg: #030008;
  --bg-elevated: #0a0014;
  --magenta: #ff2d9a;
  --magenta-dim: rgba(255, 45, 154, 0.35);
  --acid: #39ff14;
  --cyan: #00f5ff;
  --yellow: #e8ff00;
  --purple: #6b2dff;
  --red-live: #ff1744;
  --text: #f4eef8;
  --text-muted: rgba(244, 238, 248, 0.62);
  --glass: rgba(12, 0, 24, 0.55);
  --glass-border: rgba(255, 45, 154, 0.22);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
  --dock-h: calc(4.25rem + var(--safe-bottom));
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
  overscroll-behavior-y: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--cyan);
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* PIXI + overlays */
#pixi-root {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#pixi-root canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.12) 2px,
    rgba(0, 0, 0, 0.12) 4px
  );
  opacity: 0.35;
  mix-blend-mode: overlay;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: noise-shift 0.5s steps(2) infinite;
}

@keyframes noise-shift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-2%, 1%); }
}

.chromatic-flash {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, rgba(255, 0, 80, 0.15), transparent 40%, rgba(0, 245, 255, 0.15));
  mix-blend-mode: screen;
  transition: opacity 0.08s ease;
}

.chromatic-flash.is-active {
  opacity: 1;
}

/* Intro gate */
.intro-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;
  padding: calc(3.25rem + var(--safe-top)) 1rem calc(1rem + var(--safe-bottom));
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(107, 45, 255, 0.35), transparent 55%),
    radial-gradient(ellipse 80% 50% at 80% 100%, rgba(255, 45, 154, 0.25), transparent 50%),
    var(--bg);
  transition: opacity 0.9s var(--ease-out-expo), visibility 0.9s;
}

.intro-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-gate__inner {
  text-align: center;
  width: min(100%, 19rem);
  max-width: 100%;
  padding: 0 0.35rem;
}

.intro-gate__logo {
  width: min(38vw, 7.5rem);
  max-height: min(38vw, 7.5rem);
  object-fit: contain;
  margin: 0 auto 0.55rem;
  filter: drop-shadow(0 0 28px var(--magenta-dim));
  animation: float-logo 4s ease-in-out infinite;
}

@keyframes float-logo {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
}

.intro-gate__tag {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.45rem;
}

.intro-gate__title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 6.8vw, 2.1rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  max-width: 100%;
  overflow: hidden;
}

.intro-gate__title .glitch {
  display: block;
  max-width: 100%;
}

.intro-gate__sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.intro-gate__hint {
  margin-top: 0.85rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.intro-gate__top {
  position: absolute;
  top: calc(0.75rem + var(--safe-top));
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.intro-gate__skip {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
}

.intro-gate__skip:active {
  color: var(--cyan);
  border-color: rgba(0, 245, 255, 0.35);
}

.intro-gate--returning .intro-gate__skip {
  color: var(--acid);
  border-color: rgba(57, 255, 20, 0.35);
}

.intro-gate__returning {
  font-size: 0.72rem;
  color: var(--acid);
  margin-bottom: 0.65rem;
  letter-spacing: 0.06em;
}

.lang-toggle {
  display: flex;
  gap: 0.2rem;
  padding: 0.2rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
}

.lang-toggle__btn {
  padding: 0.35rem 0.55rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 999px;
  color: var(--text-muted);
}

.lang-toggle__btn.is-active {
  color: var(--text);
  background: rgba(255, 45, 154, 0.2);
}

/* Glitch typography */
.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0.75;
}

.glitch::before {
  color: var(--cyan);
  animation: glitch-1 2.5s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
  color: var(--magenta);
  animation: glitch-2 3s infinite linear alternate-reverse;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 1px); }
  40% { transform: translate(2px, -1px); }
  60% { transform: translate(-1px, 2px); }
  100% { transform: translate(1px, -2px); }
}

@keyframes glitch-2 {
  0% { transform: translate(0); }
  25% { transform: translate(2px, -2px); }
  50% { transform: translate(-2px, 1px); }
  75% { transform: translate(1px, 2px); }
  100% { transform: translate(-1px, -1px); }
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.75rem;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
}

.btn__text {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.btn__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--magenta), var(--purple) 50%, var(--cyan));
  opacity: 1;
}

.btn--enter {
  width: 100%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 12px 40px rgba(255, 45, 154, 0.35),
    0 0 60px rgba(0, 245, 255, 0.15);
  transform: translateZ(0);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
}

.btn--enter:active {
  transform: scale(0.96);
}

.btn--cta {
  width: 100%;
  min-height: 3.55rem;
  padding: 2px;
  display: flex;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 45, 154, 0.55), rgba(0, 245, 255, 0.35));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 14px 44px rgba(255, 45, 154, 0.28),
    0 0 72px rgba(107, 45, 255, 0.22);
  transition:
    transform 0.35s var(--ease-spring),
    box-shadow 0.35s ease;
}

.btn--cta .btn__glow {
  inset: 2px;
  border-radius: 999px;
  background: linear-gradient(
    115deg,
    var(--magenta) 0%,
    var(--purple) 42%,
    #7b1fa8 58%,
    var(--cyan) 100%
  );
  background-size: 220% 220%;
  animation: btn-cta-gradient 7s ease-in-out infinite;
}

.btn--cta .btn__shine {
  position: absolute;
  inset: 2px;
  z-index: 1;
  border-radius: 999px;
  overflow: hidden;
  pointer-events: none;
}

.btn--cta .btn__shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-22deg);
  animation: btn-cta-shine 4.5s ease-in-out infinite;
}

.btn--cta .btn__edge {
  position: absolute;
  inset: 2px;
  z-index: 2;
  border-radius: 999px;
  pointer-events: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.btn--cta .btn__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-height: calc(3.55rem - 4px);
  padding: 0 1.35rem;
}

.btn--cta .btn__text {
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}

.btn--cta .btn__icon {
  display: flex;
  width: 1.15rem;
  height: 1.15rem;
  transition: transform 0.35s var(--ease-spring);
}

.btn--cta .btn__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.btn--cta .btn__loader {
  position: absolute;
  z-index: 4;
  width: 1.35rem;
  height: 1.35rem;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-top-color: #fff;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.btn--cta:hover,
.btn--cta:focus-visible {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 18px 52px rgba(255, 45, 154, 0.38),
    0 0 88px rgba(0, 245, 255, 0.22);
}

.btn--cta:hover .btn__icon,
.btn--cta:focus-visible .btn__icon {
  transform: translateX(4px);
}

.btn--cta:active {
  transform: scale(0.97);
}

.btn--cta:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.btn--cta.is-loading {
  pointer-events: none;
}

.btn--cta.is-loading .btn__inner {
  opacity: 0;
}

.btn--cta.is-loading .btn__loader {
  opacity: 1;
  animation: btn-spin 0.65s linear infinite;
}

.btn--cta.is-success .btn__glow {
  background: linear-gradient(115deg, var(--acid), #1db954 50%, var(--cyan));
  animation: none;
}

@keyframes btn-cta-gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes btn-cta-shine {
  0%,
  72%,
  100% {
    left: -120%;
  }
  28% {
    left: 140%;
  }
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Dock navigation */
.dock {
  position: fixed;
  left: 50%;
  bottom: calc(0.65rem + var(--safe-bottom));
  z-index: 90;
  transform: translateX(-50%) translateY(120%);
  padding: 0.3rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 45, 154, 0.08), rgba(0, 245, 255, 0.06)),
    var(--glass);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(107, 45, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 0.7s var(--ease-out-expo);
  max-width: calc(100vw - 0.75rem);
}

.dock.is-visible {
  transform: translateX(-50%) translateY(0);
}

.dock__track {
  position: relative;
  display: flex;
  gap: 0.1rem;
  padding: 0.15rem;
  max-width: calc(100vw - 1.25rem);
  overflow-x: auto;
  scrollbar-width: none;
}

.dock__track::-webkit-scrollbar {
  display: none;
}

.dock__indicator {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 45, 154, 0.28), rgba(107, 45, 255, 0.22));
  border: 1px solid rgba(255, 45, 154, 0.35);
  box-shadow: 0 0 24px var(--magenta-dim);
  transition: transform 0.45s var(--ease-out-expo), width 0.35s var(--ease-out-expo), height 0.35s;
  pointer-events: none;
  z-index: 0;
}

.dock__item {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08rem;
  min-width: 2.5rem;
  padding: 0.38rem 0.32rem;
  border-radius: 999px;
  color: var(--text-muted);
  transition: color 0.25s, transform 0.25s var(--ease-spring);
}

.dock__item.is-active {
  color: var(--text);
}

.dock__item:active {
  transform: scale(0.92);
}

.dock__icon {
  font-size: 0.75rem;
  line-height: 1;
}

.dock__label {
  font-size: 0.48rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Experience */
.experience {
  position: relative;
  z-index: 5;
}

.experience.is-locked {
  overflow: hidden;
  height: 100dvh;
}

.section {
  position: relative;
  min-height: auto;
  padding:
    calc(0.85rem + var(--safe-top))
    1.15rem
    calc(var(--dock-h) + 0.55rem);
  display: flex;
  flex-direction: column;
}

.section--hero,
.section--contact {
  min-height: 100dvh;
  min-height: 100svh;
}

.section__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section__label {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 0.35rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 7.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.section__title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__lead {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0.75rem;
}

.eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Parallax: backgrounds/contact, live, discography */
.section--has-parallax {
  overflow: hidden;
}

/* Diskografija: horizontalni rail mora ostati vidljiv / scrollabilan */
.section--disco.section--has-parallax {
  overflow-x: clip;
  overflow-y: hidden;
}

.section--has-parallax > :not(.parallax-bg):not(.hero__bg):not(.contact__pulse) {
  position: relative;
  z-index: 2;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.parallax-bg--inset {
  position: absolute;
  inset: 0;
}

.parallax-bg__media {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 130%;
  height: 130%;
  min-width: 130%;
  min-height: 130%;
  transform-origin: center center;
  will-change: transform;
}

.parallax-bg__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(1.2) contrast(1.08) brightness(0.85);
}

.parallax-bg__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.parallax-bg__veil--live {
  background:
    linear-gradient(180deg, rgba(3, 0, 8, 0.7) 0%, rgba(3, 0, 8, 0.88) 100%),
    radial-gradient(circle at 50% 40%, rgba(255, 23, 68, 0.22), transparent 55%);
}

.section--live .parallax-bg__media img {
  filter: saturate(1.35) contrast(1.12) brightness(0.75);
}

.section--live .parallax-bg__media img {
  object-position: center 40%;
}

.parallax-bg__veil--disco {
  background:
    linear-gradient(180deg, rgba(3, 0, 8, 0.78) 0%, rgba(3, 0, 8, 0.92) 100%),
    radial-gradient(circle at 20% 80%, rgba(0, 245, 255, 0.15), transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(255, 45, 154, 0.12), transparent 40%);
}

.parallax-bg__veil--visual {
  background:
    linear-gradient(180deg, rgba(3, 0, 8, 0.72) 0%, rgba(3, 0, 8, 0.9) 100%),
    radial-gradient(circle at 15% 70%, rgba(255, 45, 154, 0.14), transparent 48%),
    radial-gradient(circle at 85% 30%, rgba(107, 45, 255, 0.18), transparent 42%);
}

.section--visual .parallax-bg__media img {
  object-position: center 42%;
  filter: saturate(1.18) contrast(1.08) brightness(0.72);
}

.section--disco .parallax-bg__media img {
  object-position: center 38%;
  filter: saturate(1.22) contrast(1.1) brightness(0.76);
}

.parallax-bg__veil--ritual {
  background:
    linear-gradient(180deg, rgba(3, 0, 8, 0.65) 0%, rgba(3, 0, 8, 0.9) 100%),
    radial-gradient(circle at 50% 50%, rgba(57, 255, 20, 0.1), transparent 50%);
}

.section--ritual .parallax-bg__media img {
  object-position: center 50%;
  filter: saturate(1.4) contrast(1.15) brightness(0.7);
}

.parallax-bg__veil--contact {
  background:
    linear-gradient(180deg, rgba(3, 0, 8, 0.75) 0%, rgba(3, 0, 8, 0.94) 100%),
    radial-gradient(circle at 50% 30%, rgba(255, 45, 154, 0.28), transparent 55%);
}

.section--contact .parallax-bg__media img {
  object-position: center 45%;
  opacity: 0.9;
  filter: saturate(1.15) contrast(1.05) brightness(0.8);
}

.hero__brand-art,
.hero__live-layer {
  position: absolute;
  z-index: 1;
}

/* Hero */
.section--hero {
  justify-content: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 110% 70% at 50% -5%, rgba(107, 45, 255, 0.32), transparent 58%),
    radial-gradient(ellipse 75% 55% at 92% 55%, rgba(255, 45, 154, 0.16), transparent 52%),
    radial-gradient(ellipse 65% 45% at 8% 75%, rgba(0, 245, 255, 0.1), transparent 48%),
    linear-gradient(175deg, #12001f 0%, var(--bg) 72%);
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 0, 8, 0.35) 0%, rgba(3, 0, 8, 0.62) 42%, rgba(3, 0, 8, 0.94) 100%),
    radial-gradient(ellipse 100% 55% at 50% 100%, rgba(3, 0, 8, 0.85), transparent 70%);
}

.hero__brand-art {
  top: 4%;
  left: 50%;
  width: min(118vw, 28rem);
  max-width: none;
  transform: translateX(-50%);
  opacity: 0.2;
  filter: blur(0.5px) saturate(1.15);
  mix-blend-mode: screen;
}

.hero__live-layer {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  opacity: 0.28;
  filter: saturate(0.85) contrast(1.05) brightness(0.7);
  mask-image: linear-gradient(180deg, black 8%, rgba(0, 0, 0, 0.55) 50%, transparent 88%);
  -webkit-mask-image: linear-gradient(180deg, black 8%, rgba(0, 0, 0, 0.55) 50%, transparent 88%);
}

.hero__content {
  justify-content: flex-end;
  padding-bottom: 0.65rem;
  max-width: 100%;
  overflow-x: hidden;
}

.hero__layout {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__deco {
  position: absolute;
  left: -0.15rem;
  top: -0.5rem;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 18vw, 5.5rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 45, 154, 0.12);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero__facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.85rem 0 0.75rem;
}

.hero__facts li {
  padding: 0.35rem 0.65rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: rgba(12, 0, 24, 0.55);
  color: var(--text-muted);
}

.hero__stream {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.hero__stream-pill {
  padding: 0.4rem 0.75rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.hero__stream-pill--spotify {
  border-color: rgba(29, 185, 84, 0.45);
}

.hero__stream-pill--deezer {
  border-color: rgba(168, 85, 247, 0.45);
}

.hero__stream-pill--apple {
  border-color: rgba(252, 60, 68, 0.4);
}

.hero__stream-pill:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 245, 255, 0.2);
}

.hero__stage {
  position: relative;
  z-index: 2;
}

.hero__stage-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
  padding: 0 0.15rem;
}

.hero__stage-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--acid);
}

.hero__stage-hint {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-release-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.hero-release-card__visual {
  position: relative;
}

.hero-release-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  min-width: 0;
}

.hero-release-card__type {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}

.hero-release-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 5vw, 1.55rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-release-card__sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.hero-release-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-release-card__year {
  color: var(--text);
  font-weight: 600;
}

.hero-release-card--soon .hero__soon-trigger {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.hero__soon-cover-wrap {
  width: 100%;
  max-width: 13rem;
  box-shadow: 0 12px 36px rgba(255, 23, 68, 0.35);
}

.hero__soon-cover-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.35rem;
}

.hero-release-card--soon .hero__soon-presave-label {
  display: inline-block;
  margin-top: 0.15rem;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acid);
}

.hero__logo {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 7.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
  max-width: 100%;
  width: 100%;
}

.hero__logo .glitch {
  display: block;
  max-width: 100%;
  white-space: nowrap;
}

.glitch--hero {
  text-shadow: 0 0 40px var(--magenta-dim);
}

.glitch--hero::before,
.glitch--hero::after {
  max-width: 100%;
}

.glitch--hero:not(.glitch--typing):not(.glitch--ready)::before,
.glitch--hero:not(.glitch--typing):not(.glitch--ready)::after {
  opacity: 0;
  animation: none;
}

.glitch--hero.glitch--typing::before,
.glitch--hero.glitch--typing::after,
.glitch--hero.glitch--ready::before,
.glitch--hero.glitch--ready::after {
  opacity: 0.8;
}

.glitch--hero.is-scrambling {
  text-shadow:
    2px 0 var(--cyan),
    -2px 0 var(--magenta),
    0 0 24px var(--magenta-dim);
}

.glitch--hero.is-scrambling::before,
.glitch--hero.is-scrambling::after {
  opacity: 1;
  animation-duration: 0.12s;
}

#hero-eyebrow.is-typing,
#hero-quote.is-typing {
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(0, 245, 255, 0.35);
}

.hero--enter-pending [data-hero-seq] {
  pointer-events: none;
}

.hero--enter-done [data-hero-seq] {
  pointer-events: auto;
}

.hero__quote {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-muted);
  max-width: 20rem;
  margin-bottom: 1.25rem;
}

/* Hero featured (TECHNOlog) */
.hero-featured-slot {
  margin-bottom: 1rem;
}

.hero-featured {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  max-width: 100%;
  width: 100%;
}

.hero-featured__badge {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--acid), var(--cyan));
  color: var(--bg);
  border-radius: 2px;
}

.hero-featured__cover-wrap {
  width: min(78vw, 18rem);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 24px 60px rgba(255, 45, 154, 0.25),
    0 0 80px rgba(0, 245, 255, 0.1);
}

.hero-featured__cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.35rem;
}

.hero-featured__album {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 5.2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 100%;
}

.hero-featured__meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-featured__actions {
  width: 100%;
  margin-top: 0.25rem;
}

.btn--listen {
  width: 100%;
  max-width: 18rem;
  display: flex;
  box-shadow:
    0 0 0 1px rgba(57, 255, 20, 0.25),
    0 12px 40px rgba(57, 255, 20, 0.15);
}

.btn--listen .btn__glow {
  background: linear-gradient(135deg, #1db954, var(--acid) 55%, var(--cyan));
}

.hero__row-soon {
  display: flex;
  align-items: flex-end;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 0.65rem;
  background: linear-gradient(145deg, rgba(12, 0, 24, 0.72), rgba(3, 0, 8, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__row-soon .hero-featured-slot {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
}

.hero__row-soon .hero-featured__cover-wrap {
  width: 100%;
  max-width: 13rem;
}

.hero__row-soon .btn--listen {
  max-width: 100%;
}

.hero__soon {
  position: relative;
  flex: 0 0 auto;
  width: min(34vw, 8.5rem);
  margin-bottom: 0;
}

.hero__soon img {
  border-radius: 0.25rem;
  box-shadow: 0 8px 28px rgba(255, 23, 68, 0.35);
}

.hero-release-card__visual .hero-featured__badge,
.hero-release-card__visual .hero__soon-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  right: auto;
  bottom: auto;
  z-index: 2;
}

.hero__soon-badge {
  padding: 0.35rem 0.65rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #ff1744;
  color: #fff;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(255, 23, 68, 0.5);
}

.hero__soon-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}

.hero__soon-presave-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acid);
}

.presave-panel {
  width: 100%;
  max-width: 20rem;
  margin: 0.5rem auto 0.25rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 23, 68, 0.35);
  background: rgba(255, 23, 68, 0.08);
  text-align: center;
}

.presave-panel.is-open {
  box-shadow: 0 0 32px rgba(255, 23, 68, 0.2);
}

.presave-panel__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.presave-panel__sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.presave-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.presave-panel__link {
  padding: 0.45rem 0.75rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  color: var(--text);
  background: var(--glass);
}

.presave-panel__link--spotify {
  border-color: rgba(29, 185, 84, 0.4);
}

.presave-panel__link--notify {
  border-color: rgba(0, 245, 255, 0.35);
  color: var(--cyan);
}

.scroll-cue {
  align-self: center;
  width: 2rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  margin-top: 0.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  background: var(--magenta);
  border-radius: 999px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* About */
.section--about {
  background: linear-gradient(180deg, transparent, rgba(107, 45, 255, 0.08) 40%, transparent);
}

/* Manifest — magazinski red: uska slika lijevo, tekst desno */
.manifest {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.85rem 1rem;
  margin-bottom: 1.5rem;
}

.manifest__portrait {
  position: relative;
  flex: 0 0 clamp(5.5rem, 30vw, 7.75rem);
  max-width: 7.75rem;
  border-radius: 0.55rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--glass-border),
    0 12px 32px rgba(255, 45, 154, 0.12);
}

.manifest__portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.manifest__portrait figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.35rem 0.45rem 0.45rem;
  font-size: 0.5rem;
  line-height: 1.35;
  letter-spacing: 0.06em;
  background: linear-gradient(transparent, rgba(3, 0, 8, 0.92));
}

.manifest__text {
  flex: 1;
  min-width: 0;
}

.manifest__text p {
  font-size: 0.82rem;
  line-height: 1.58;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.manifest__text p:first-child {
  margin-top: 0;
}

.manifest__text strong {
  color: var(--text);
  font-weight: 600;
}

.manifest__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.manifest__tags li {
  padding: 0.35rem 0.7rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass);
}

.studio-shot {
  border-radius: 0.75rem;
  overflow: hidden;
  filter: grayscale(0.85) contrast(1.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.studio-shot img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* Live */
.section--live {
  background: var(--bg);
}

.visualizer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 3rem;
  margin-bottom: 1.25rem;
  padding: 0 0.5rem;
}

.visualizer span {
  flex: 1;
  max-width: 6px;
  height: 20%;
  background: linear-gradient(180deg, var(--cyan), var(--magenta));
  border-radius: 2px;
  transform-origin: bottom;
  animation: eq-bar 0.8s ease-in-out infinite alternate;
}

.visualizer span:nth-child(odd) { animation-duration: 0.55s; }
.visualizer span:nth-child(3n) { animation-duration: 0.95s; background: linear-gradient(180deg, var(--acid), var(--yellow)); }

@keyframes eq-bar {
  0% { height: 15%; }
  100% { height: 95%; }
}

.live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.live-card {
  position: relative;
  border-radius: 0.85rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  transform: translateZ(0);
  transition: transform 0.4s var(--ease-spring);
}

.live-card:active,
.live-card.is-hit {
  transform: scale(0.96);
}

.live-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-card__meta {
  position: absolute;
  inset: auto 0 0;
  padding: 2rem 0.65rem 0.65rem;
  background: linear-gradient(transparent, rgba(3, 0, 8, 0.92));
}

.live-card__meta h3 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
}

.live-card__meta p {
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.live-card.is-glitch img {
  animation: card-glitch 0.35s steps(2);
}

@keyframes card-glitch {
  0% { filter: none; transform: translate(0); }
  25% { filter: hue-rotate(90deg) saturate(2); transform: translate(-3px, 0); }
  50% { filter: contrast(1.4); transform: translate(3px, 0); }
  75% { filter: hue-rotate(-40deg); transform: translate(-2px, 1px); }
  100% { filter: none; transform: translate(0); }
}

.live-hint {
  margin-top: 1rem;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.08em;
}

/* Section toolbar (search + filters) */
.section__toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.section__toolbar .disco-search,
.section__toolbar .museum-search {
  margin-bottom: 0;
}

.section__toolbar .disco-filters,
.section__toolbar .museum-filters {
  margin-bottom: 0;
}

/* Discography search */
.disco-search {
  margin-bottom: 0.65rem;
}

.disco-search__label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.disco-search__input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: rgba(3, 0, 8, 0.55);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.88rem;
}

.disco-search__input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0, 245, 255, 0.2);
}

.disco-search__empty {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-align: center;
}

/* Discography filters */
.disco-filters {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
  flex-wrap: wrap;
}

.disco-filters__btn {
  padding: 0.45rem 0.85rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text-muted);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.disco-filters__btn.is-active {
  color: var(--text);
  border-color: var(--magenta);
  background: rgba(255, 45, 154, 0.15);
  box-shadow: 0 0 20px var(--magenta-dim);
}

.album-rail-wrap {
  position: relative;
  margin: 0 -0.25rem;
}

.album-rail-wrap--draggable .album-rail {
  cursor: grab;
}

.album-rail-wrap--draggable.is-dragging .album-rail,
.album-rail-wrap.is-dragging .album-rail {
  cursor: grabbing;
}

.album-rail-wrap--many .album-rail__hint {
  opacity: 1;
}

.album-rail-wrap.is-auto-playing:not(.is-user-scrolling) .album-rail__hint {
  opacity: 0.55;
  animation: rail-hint-breathe 5s ease-in-out infinite;
}

.album-rail-wrap.is-user-scrolling .album-rail__hint {
  opacity: 0.9;
}

@keyframes rail-hint-breathe {
  0%, 100% { opacity: 0.35; transform: translateX(0); }
  50% { opacity: 0.7; transform: translateX(-4px); }
}

.album-rail__hint {
  position: absolute;
  right: 0.5rem;
  bottom: 0.35rem;
  z-index: 3;
  pointer-events: none;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  opacity: 0;
  transition: opacity 0.35s;
  text-shadow: 0 0 12px rgba(0, 245, 255, 0.45);
}

.album-rail-wrap::before,
.album-rail-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0.5rem;
  width: 2.75rem;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.35s;
}

.album-rail-wrap::before {
  left: 0;
  background: linear-gradient(270deg, transparent, rgba(3, 0, 8, 0.88));
}

.album-rail-wrap::after {
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(3, 0, 8, 0.88));
}

.album-rail-wrap--many::before,
.album-rail-wrap--many::after {
  opacity: 1;
}

.album-rail__loading {
  flex: 0 0 100%;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.album-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  padding: 0.25rem 0.5rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #ff1744;
  color: #fff;
  border-radius: 2px;
}

.streaming-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.stream-pill {
  padding: 0.5rem 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text);
}

.stream-pill--spotify {
  border-color: rgba(29, 185, 84, 0.4);
}

.stream-pill--deezer {
  border-color: rgba(168, 85, 247, 0.45);
}

.stream-pill--apple {
  border-color: rgba(252, 60, 68, 0.4);
}

.stream-pill--sc {
  border-color: rgba(255, 85, 0, 0.35);
}

.stream-pill--yt {
  border-color: rgba(255, 0, 0, 0.35);
}

.disco-note a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Discography */
.album-rail {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0.25rem 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--magenta-dim) transparent;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  touch-action: pan-x;
}

.album-rail--infinite {
  scroll-snap-type: none;
  scroll-behavior: auto;
  will-change: scroll-position;
}

.album-rail.is-dragging,
.album-rail-wrap.is-dragging .album-rail {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
  -webkit-user-select: none;
}

.album-rail-wrap.is-dragging {
  touch-action: pan-x;
}

.album-rail::-webkit-scrollbar {
  height: 4px;
}

.album-rail::-webkit-scrollbar-thumb {
  background: var(--magenta-dim);
  border-radius: 4px;
}

.album-card {
  flex: 0 0 min(72vw, 14rem);
  scroll-snap-align: center;
  position: relative;
  padding: 1rem;
  border-radius: 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s;
}

.album-card:active,
.album-card.is-active {
  transform: scale(1.03) translateY(-4px);
  box-shadow:
    0 0 0 1px var(--magenta),
    0 20px 50px var(--magenta-dim),
    0 0 60px rgba(0, 245, 255, 0.12);
}

.album-card__disc {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: radial-gradient(circle at 30% 30%, #222, #000);
  animation: spin-disc 4s linear infinite;
  animation-play-state: paused;
}

.album-card.is-active .album-card__disc,
.album-card:active .album-card__disc {
  animation-play-state: running;
}

.album-card.is-disintegrating .album-card__cover-img {
  opacity: 0;
  transform: scale(1.06);
  filter: blur(8px) saturate(1.4);
  transition: opacity 0.35s, transform 0.45s var(--ease-out-expo), filter 0.35s;
}

.album-card.is-disintegrating {
  box-shadow:
    0 0 0 1px var(--cyan),
    0 24px 56px var(--magenta-dim),
    0 0 80px rgba(0, 245, 255, 0.2);
}

@keyframes spin-disc {
  to { transform: rotate(360deg); }
}

.album-card__cover {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.5rem;
  margin-bottom: 0.85rem;
}

.album-card__cover--gradient-1 {
  background: linear-gradient(135deg, var(--magenta), var(--purple));
}

.album-card__cover--gradient-2 {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
}

.album-card__cover--gradient-3 {
  background: linear-gradient(135deg, var(--acid), var(--cyan));
}

.album-card__cover--gradient-4 {
  background: linear-gradient(135deg, var(--yellow), var(--magenta));
}

.album-card__cover-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 0.85rem;
}

.album-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.album-card p {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.album-card--featured {
  border-color: rgba(255, 23, 68, 0.4);
}

.disco-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
}

/* Visual museum — isti rail fazon kao diskografija */
.section--visual {
  padding-right: 0;
}

.museum-search {
  margin-bottom: 0.65rem;
}

.museum-search__label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.museum-search__input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: rgba(3, 0, 8, 0.55);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.88rem;
}

.museum-search__input:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 2px rgba(107, 45, 255, 0.25);
}

.museum-search__empty {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-align: center;
}

.museum-filters {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
  flex-wrap: wrap;
}

.museum-filters__btn {
  padding: 0.45rem 0.85rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text-muted);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.museum-filters__btn.is-active {
  color: var(--text);
  border-color: var(--purple);
  background: rgba(107, 45, 255, 0.18);
  box-shadow: 0 0 20px rgba(107, 45, 255, 0.25);
}

.museum-rail-wrap {
  position: relative;
  margin: 0 -0.25rem;
}

.museum-rail-wrap--many .museum-rail__hint {
  opacity: 1;
}

.museum-rail-wrap.is-auto-playing:not(.is-user-scrolling) .museum-rail__hint {
  opacity: 0.55;
  animation: museum-hint-breathe 5s ease-in-out infinite;
}

.museum-rail-wrap.is-user-scrolling .museum-rail__hint {
  opacity: 0.9;
}

@keyframes museum-hint-breathe {
  0%, 100% { opacity: 0.35; transform: translateX(0); }
  50% { opacity: 0.7; transform: translateX(-4px); }
}

.museum-rail__hint {
  position: absolute;
  right: 0.5rem;
  bottom: 0.35rem;
  z-index: 3;
  pointer-events: none;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  opacity: 0;
  transition: opacity 0.35s;
  text-shadow: 0 0 12px rgba(107, 45, 255, 0.45);
}

.museum-rail-wrap::before,
.museum-rail-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0.5rem;
  width: 2.75rem;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.35s;
}

.museum-rail-wrap::before {
  left: 0;
  background: linear-gradient(270deg, transparent, rgba(3, 0, 8, 0.88));
}

.museum-rail-wrap::after {
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(3, 0, 8, 0.88));
}

.museum-rail-wrap--many::before,
.museum-rail-wrap--many::after {
  opacity: 1;
}

.museum-rail__loading,
.museum-rail__empty {
  flex: 0 0 100%;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.museum-rail {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 1.15rem 1rem 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(107, 45, 255, 0.45) transparent;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  touch-action: pan-x;
}

.museum-rail--infinite {
  scroll-snap-type: none;
  scroll-behavior: auto;
  will-change: scroll-position;
}

.museum-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.museum-rail::-webkit-scrollbar {
  height: 4px;
}

.museum-rail::-webkit-scrollbar-thumb {
  background: rgba(107, 45, 255, 0.45);
  border-radius: 4px;
}

.museum-card {
  flex: 0 0 min(72vw, 16rem);
  scroll-snap-align: center;
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 0 0 1px var(--glass-border),
    0 20px 50px rgba(0, 0, 0, 0.45);
  transform: translateZ(0);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s, border-color 0.35s;
}

.museum-card:active,
.museum-card.is-active {
  transform: scale(1.03) translateY(-4px);
  border-color: var(--purple);
  box-shadow:
    0 0 0 1px var(--purple),
    0 20px 50px rgba(107, 45, 255, 0.35),
    0 0 60px rgba(255, 45, 154, 0.12);
}

.museum-card.is-disintegrating img {
  opacity: 0;
  transform: scale(1.06);
  filter: blur(8px) saturate(1.4);
  transition: opacity 0.35s, transform 0.45s var(--ease-out-expo), filter 0.35s;
}

.museum-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.museum-card__cap {
  position: absolute;
  inset: auto 0 0;
  padding: 2rem 0.65rem 0.6rem;
  background: linear-gradient(transparent, rgba(3, 0, 8, 0.92));
  pointer-events: none;
}

.museum-card__title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Timeline */
.timeline {
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--magenta), var(--cyan), var(--acid));
  opacity: 0.5;
}

.timeline__node {
  position: relative;
  padding: 0 0 1.75rem 1rem;
  opacity: 0.45;
  transform: translateX(-8px);
  transition: opacity 0.5s, transform 0.5s var(--ease-out-expo);
}

.timeline__node::before {
  content: "";
  position: absolute;
  left: -1.22rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--magenta);
  box-shadow: 0 0 12px var(--magenta);
}

.timeline__node.is-lit {
  opacity: 1;
  transform: none;
}

.timeline__year {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 0.35rem;
}

.timeline__node p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Drum ritual */
.section--ritual {
  background:
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(57, 255, 20, 0.08), transparent),
    var(--bg);
}

.drum-pads {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.pad {
  aspect-ratio: 1;
  border-radius: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.12s var(--ease-spring),
    box-shadow 0.12s,
    background 0.12s;
  touch-action: manipulation;
}

.pad:nth-child(1) { --pad-color: var(--magenta); }
.pad:nth-child(2) { --pad-color: var(--cyan); }
.pad:nth-child(3) { --pad-color: var(--acid); }
.pad:nth-child(4) { --pad-color: var(--yellow); }
.pad:nth-child(5) { --pad-color: var(--purple); }
.pad:nth-child(6) { --pad-color: #ff6b35; }
.pad:nth-child(7) { --pad-color: var(--red-live); }
.pad:nth-child(8) { --pad-color: var(--magenta); }

.pad.is-hit {
  transform: scale(0.92);
  background: color-mix(in srgb, var(--pad-color) 25%, var(--glass));
  border-color: var(--pad-color);
  box-shadow:
    0 0 24px color-mix(in srgb, var(--pad-color) 50%, transparent),
    inset 0 0 20px color-mix(in srgb, var(--pad-color) 20%, transparent);
}

/* Videos */
.section--videos {
  background: var(--bg);
}

.video-featured {
  min-height: 12rem;
}

.video-featured__card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  cursor: pointer;
  transition: box-shadow 0.35s, border-color 0.35s;
}

.video-featured__card.is-playing {
  border-color: var(--magenta);
  box-shadow: 0 0 28px var(--magenta-dim);
}

.video-slot--swapping {
  opacity: 0;
  pointer-events: none;
}

.video-featured__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
}

.video-featured__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-featured__meta {
  padding: 1rem 1.1rem 1.15rem;
}

.video-featured__badge {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 0.35rem;
}

.video-featured__badge--now {
  color: var(--cyan);
}

.video-featured__meta h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.video-featured__meta p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.video-featured__embed {
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-featured__embed iframe,
.video-card__player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-featured__card.is-playing .video-featured__thumb {
  display: none;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 1rem;
}

.video-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  padding: 0;
  text-align: left;
  color: inherit;
  background: var(--glass);
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
}

.video-card:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.video-card:hover {
  border-color: color-mix(in srgb, var(--magenta) 45%, var(--glass-border));
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(3, 0, 8, 0.65);
  border: 1px solid var(--magenta);
  font-size: 0.7rem;
  color: var(--text);
  pointer-events: none;
}

.video-card__meta {
  display: block;
  padding: 0.45rem 0.55rem;
}

.video-card__title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.video-card__date {
  font-size: 0.58rem;
  color: var(--text-muted);
}

.video-flip-ghost {
  position: fixed;
  z-index: 120;
  margin: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  pointer-events: none;
  border: 1px solid var(--magenta);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 24px var(--magenta-dim);
  background: var(--glass);
}

.video-flip-ghost--featured {
  border-radius: 1rem;
}

.video-flip-ghost img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-flip-ghost .video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-archive {
  margin-top: 1rem;
  font-size: 0.75rem;
  text-align: center;
  color: var(--text-muted);
}

.video-empty {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  padding: 1.5rem;
}

/* Radio */
.section--radio {
  background:
    radial-gradient(circle at 100% 50%, rgba(107, 45, 255, 0.15), transparent 55%),
    var(--bg);
  text-align: center;
}

.radio-eq {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 2.5rem;
  margin: 0.75rem auto 1.25rem;
  max-width: 12rem;
}

.radio-eq span {
  flex: 1;
  max-width: 8px;
  height: 25%;
  background: linear-gradient(180deg, var(--purple), var(--magenta));
  border-radius: 2px;
  animation: eq-bar 0.7s ease-in-out infinite alternate;
}

.radio-eq span:nth-child(odd) { animation-duration: 0.5s; }
.radio-eq span:nth-child(3n) { animation-duration: 0.9s; background: linear-gradient(180deg, var(--cyan), var(--acid)); }

.radio-panel__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.radio-panel__embed-wrap {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 40px rgba(107, 45, 255, 0.2);
  margin-bottom: 1rem;
}

.radio-panel__embed {
  width: 100%;
  height: 152px;
  border: 0;
  display: block;
}

.radio-panel__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* Shop */
.section--shop {
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 45, 154, 0.1), transparent 45%),
    var(--bg);
}

.shop-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.shop-card {
  display: block;
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text);
  transition: transform 0.3s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
}

.shop-card:active {
  transform: scale(0.98);
  border-color: var(--magenta);
  box-shadow: 0 0 28px var(--magenta-dim);
}

.shop-card__icon {
  font-size: 1.25rem;
  color: var(--cyan);
  display: block;
  margin-bottom: 0.5rem;
}

.shop-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.shop-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.65rem;
}

.shop-card__cta {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acid);
}

/* Booking form */
.booking-form {
  width: 100%;
  max-width: 22rem;
  margin: 1.25rem auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-form__field label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.booking-form__field input,
.booking-form__field select,
.booking-form__field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 0.65rem;
  border: 1px solid var(--glass-border);
  background: rgba(3, 0, 8, 0.6);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.booking-form__field input:focus,
.booking-form__field select:focus,
.booking-form__field textarea:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 2px var(--magenta-dim);
}

.booking-form__status {
  font-size: 0.78rem;
  text-align: center;
  color: var(--text-muted);
}

.booking-form__status--ok {
  color: var(--acid);
}

.booking-form__status--error {
  color: var(--red-live);
}

.booking-form__submit {
  width: 100%;
  margin-top: 0.35rem;
}

.booking-form__mailto {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.booking-form__mailto:active {
  color: var(--cyan);
}

/* Contact */
.section--contact {
  text-align: center;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.contact__pulse {
  position: absolute;
  inset: 20% -20%;
  z-index: 1;
  background: radial-gradient(circle, var(--magenta-dim), transparent 65%);
  animation: pulse-bg 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse-bg {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.contact-social {
  width: 100%;
  max-width: 22rem;
  margin: 1.75rem auto 0;
}

.contact-social__title {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
  text-align: center;
  margin-bottom: 0.85rem;
}

.contact__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  width: 100%;
}

.social-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 4.75rem;
  padding: 0.75rem 0.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  isolation: isolate;
  color: var(--text);
  background: linear-gradient(155deg, rgba(14, 0, 28, 0.82), rgba(3, 0, 8, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.35s var(--ease-spring),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.social-link__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.social-link__icon {
  position: relative;
  z-index: 1;
  display: flex;
  width: 1.35rem;
  height: 1.35rem;
}

.social-link__icon svg {
  width: 100%;
  height: 100%;
}

.social-link__label {
  position: relative;
  z-index: 1;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 238, 248, 0.82);
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
}

.social-link:active {
  transform: scale(0.97);
}

.social-link:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.social-link--instagram .social-link__glow {
  background: radial-gradient(circle at 30% 108%, #fdf497, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.social-link--facebook .social-link__glow {
  background: linear-gradient(135deg, #1877f2, #0a4eb8);
}

.social-link--youtube .social-link__glow {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-link--x .social-link__glow {
  background: linear-gradient(135deg, #f5f5f5, #737373);
}

.social-link--instagram:hover,
.social-link--instagram:focus-visible {
  border-color: rgba(253, 89, 73, 0.55);
  box-shadow: 0 10px 32px rgba(214, 36, 159, 0.28);
}

.social-link--facebook:hover,
.social-link--facebook:focus-visible {
  border-color: rgba(24, 119, 242, 0.55);
  box-shadow: 0 10px 32px rgba(24, 119, 242, 0.28);
}

.social-link--youtube:hover,
.social-link--youtube:focus-visible {
  border-color: rgba(255, 0, 0, 0.5);
  box-shadow: 0 10px 32px rgba(255, 0, 0, 0.22);
}

.social-link--x:hover,
.social-link--x:focus-visible {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 32px rgba(255, 255, 255, 0.12);
}

.social-link:hover .social-link__glow,
.social-link:focus-visible .social-link__glow {
  opacity: 0.22;
}

.social-link--x .social-link__label {
  color: rgba(244, 238, 248, 0.9);
}

@media (min-width: 420px) {
  .contact__links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .social-link {
    min-height: 4.35rem;
    padding: 0.65rem 0.35rem;
  }
}

.site-footer {
  margin-top: 2.5rem;
  padding-bottom: 0.5rem;
}

.site-footer img {
  width: 3rem;
  margin: 0 auto 0.75rem;
  opacity: 0.7;
  filter: brightness(1.2);
}

.site-footer p {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* Body states */
body.is-entered .intro-gate {
  pointer-events: none;
}

body.pad-hit {
  animation: body-shake 0.15s ease;
}

@keyframes body-shake {
  0%, 100% { transform: translate(0); }
  25% { transform: translate(-2px, 0); }
  75% { transform: translate(2px, 0); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .noise-overlay,
  .glitch::before,
  .glitch::after,
  .visualizer span,
  .radio-eq span,
  .intro-gate__logo,
  .album-card__disc,
  .parallax-bg__media {
    animation: none !important;
    transform: translate(-50%, -50%) !important;
    left: 50%;
    top: 50%;
    width: 110%;
    height: 110%;
  }

  .btn--cta .btn__glow,
  .btn--cta .btn__shine::after {
    animation: none !important;
  }

  .btn--cta .btn__shine::after {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Larger phones / small tablets */
@media (min-width: 480px) {
  .section {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .manifest {
    gap: 1rem 1.15rem;
  }

  .manifest__portrait {
    flex: 0 0 clamp(6.5rem, 26vw, 9rem);
    max-width: 9rem;
  }

  .manifest__portrait figcaption {
    font-size: 0.55rem;
    padding: 1.5rem 0.5rem 0.5rem;
  }

  .manifest__text p {
    font-size: 0.88rem;
  }

  .live-grid {
    gap: 0.85rem;
  }
}

/* Tablet — između mobitela i desktop.css (1024px) */
@media (min-width: 768px) and (max-width: 1023.98px) {
  .dock {
    gap: 0.35rem;
    padding: 0.45rem 0.65rem;
  }

  .dock__label {
    font-size: 0.55rem;
  }

  .section {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }

  .section--visual,
  .section--disco {
    max-width: none;
    padding-right: 0;
  }

  .manifest__portrait {
    flex: 0 0 clamp(8rem, 22vw, 10.5rem);
    max-width: 10.5rem;
  }

  .manifest__portrait figcaption {
    font-size: 0.58rem;
  }

  .manifest__text p {
    font-size: 0.9rem;
  }
}
