@import url("https://fonts.googleapis.com/css2?family=Monoton&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");

@font-face {
  font-family: "Renner";
  src: url("https://themes-themegoods.b-cdn.net/musico/demo/wp-content/themes/musico/fonts/renner-book-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000;
  --white: #fff;
  --red: #930709;
  --muted: rgba(0, 0, 0, 0.55);
  --control: #a39aac;
  --track: #d1ccd7;
  --header-height: 74px;
  --content-max: 1200px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--black);
  font-family: "Renner", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

img,
svg,
iframe {
  display: block;
}

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

button,
input,
a,
[role="button"] {
  cursor: pointer;
}

button {
  font: inherit;
}

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

.is-hidden {
  display: none !important;
}

/* HEADER */
.site-header {
  position: fixed;
  left: 50%;
  top: 0;
  z-index: 9999;
  display: flex;
  width: 100%;
  max-width: 1904px;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 78px;
  transform: translateX(-50%);
  color: var(--white);
  background: transparent;
  transition: background-color 520ms var(--ease-out), box-shadow 520ms var(--ease-out), backdrop-filter 520ms var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.76);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.site-logo,
.footer-logo {
  font-family: "Renner", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.052em;
  text-transform: uppercase;
  transition: color 420ms var(--ease-out), opacity 300ms ease;
}

.desktop-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 42px;
  transform: translate(-50%, -50%);
  font-family: "Renner", sans-serif;
}

.desktop-nav a {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.38);
  transition: color 520ms ease, opacity 520ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: rgba(255, 255, 255, 1);
}

.mobile-menu-button {
  display: none;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin-left: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  line-height: 1;
}

.qodef-circles {
  display: grid;
  width: 20px;
  height: 20px;
  grid-template-columns: repeat(3, 4px);
  grid-template-rows: repeat(3, 4px);
  column-gap: 4px;
  row-gap: 4px;
  align-items: center;
  justify-items: center;
}

.qodef-circles-row {
  display: contents;
}

.qodef-circles span span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 280ms ease, opacity 280ms ease, background-color 280ms ease;
}

.mobile-menu-button:hover .qodef-cr-1 span:nth-child(1) { transform: translate(-1px, -1px); }
.mobile-menu-button:hover .qodef-cr-1 span:nth-child(2) { transform: translateY(-1px); }
.mobile-menu-button:hover .qodef-cr-1 span:nth-child(3) { transform: translate(1px, -1px); }
.mobile-menu-button:hover .qodef-cr-2 span:nth-child(1) { transform: translateX(-1px); }
.mobile-menu-button:hover .qodef-cr-2 span:nth-child(2) { transform: scale(1.08); }
.mobile-menu-button:hover .qodef-cr-2 span:nth-child(3) { transform: translateX(1px); }
.mobile-menu-button:hover .qodef-cr-3 span:nth-child(1) { transform: translate(-1px, 1px); }
.mobile-menu-button:hover .qodef-cr-3 span:nth-child(2) { transform: translateY(1px); }
.mobile-menu-button:hover .qodef-cr-3 span:nth-child(3) { transform: translate(1px, 1px); }

.mobile-menu-button.is-open {
  color: #2f1e3f;
}

.mobile-menu-button.is-open .qodef-cr-1 span:nth-child(2),
.mobile-menu-button.is-open .qodef-cr-2 span:nth-child(1),
.mobile-menu-button.is-open .qodef-cr-2 span:nth-child(3),
.mobile-menu-button.is-open .qodef-cr-3 span:nth-child(2) {
  opacity: 0;
  transform: scale(0.45);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  z-index: 9998;
  min-height: calc(100vh - var(--header-height));
  padding: 54px 20px;
  background: var(--white);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}

.mobile-menu.is-open {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-menu a {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.48);
  transition: color 300ms ease, transform 520ms var(--ease-out), opacity 520ms var(--ease-out);
}

.mobile-menu a:hover,
.mobile-menu a.is-active {
  color: #000;
}

/* HERO */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: visible;
  background: var(--black);
}

.hero-background,
.hero-fade,
.hero-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.hero-background {
  z-index: 0;
  background-image: url('../images/og-prevalence-depressed.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.hero-fade {
  z-index: 1;
  background: #000;
  opacity: 0;
  will-change: opacity;
}

.hero-overlay {
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 8, 14, 0.34) 0%, rgba(8, 8, 14, 0.12) 18%, rgba(8, 8, 14, 0.08) 48%, rgba(8, 8, 14, 0.28) 100%);
}

.hero-inner {
  position: relative;
  z-index: 100;
  display: flex;
  width: 100%;
  max-width: 1904px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: 0 78px;
  align-items: center;
  justify-content: center;
}

.hero-title {
  position: absolute;
  right: 350px;
  top: 41%;
  z-index: 10;
  width: 100%;
  max-width: 760px;
  transform: translateY(-50%);
  text-align: right;
  pointer-events: none;
  will-change: opacity, transform;
}

.hero-title p {
  margin: 0 0 7px;
  color: #fff;
  font-family: "Monoton", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.78);
}

.hero-title h2 {
  margin: 0;
  color: #fff;
  font-family: Poppins, Arial, sans-serif;
  font-size: 82px;
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.82);
}

/* AUDIO PLAYER */
.player-bridge {
  position: relative;
  z-index: 40;
  padding-top: 1px;
  background: #fff;
}

.audio-player {
  position: relative;
  z-index: 50;
  left: 50%;
  width: min(1200px, calc(100% - 156px));
  max-width: 1200px;
  min-width: 0;
  height: 142px;
  min-height: 142px;
  margin: -70px 0 0;
  transform: translate3d(-50%, 0, 0);
  overflow: visible;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(43, 24, 61, 0.08);
  scroll-margin-top: 98px;
  font-family: Poppins, Arial, sans-serif;
}

.player-cover {
  position: absolute;
  left: 46px;
  top: -48px;
  width: 96px;
  height: 96px;
  overflow: visible;
  border-radius: 999px;
  background: #18253f;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.34)) drop-shadow(0 0 22px rgba(255, 255, 255, 0.16));
}

.player-cover::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.08) 38%, rgba(0,0,0,0.10) 58%, rgba(0,0,0,0) 72%);
  opacity: 0.82;
  pointer-events: none;
}

.vinyl {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 999px;
  animation: prevalence-vinyl-spin 9s linear infinite;
  transform-origin: 50% 50%;
  will-change: transform;
}

.vinyl-paused {
  animation-play-state: paused;
}

.vinyl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vinyl-hole {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: #d9cfd0;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.12);
}

.vinyl-hole span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: #b9afb1;
}

.player-layout {
  display: grid;
  height: 100%;
  min-height: 142px;
  grid-template-columns: 360px minmax(300px, 1fr) 360px;
  align-items: center;
  padding: 0 46px;
}

.player-meta {
  padding-top: 34px;
}

.player-meta h3 {
  margin: 0;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}

.player-meta p {
  margin: 28px 0 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.01em;
}

.player-center {
  position: relative;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 28px;
  pointer-events: none;
}

.player-time {
  position: relative;
  z-index: 1;
  min-width: 104px;
  color: rgba(0, 0, 0, 0.55);
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
}

.player-controls {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  pointer-events: auto;
  overflow: visible;
}

.player-controls button {
  position: relative;
  z-index: 60;
  display: inline-grid;
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  flex: 0 0 60px;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--control);
  line-height: 0;
  appearance: none;
  -webkit-appearance: none;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 300ms ease;
}

.player-controls button:hover,
.player-volume button:hover,
.audio-slider:hover {
  opacity: 0.55;
}

.player-controls button svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.player-volume {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.player-volume button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(0, 0, 0, 0.55);
  transition: opacity 300ms ease;
}

.player-volume button svg {
  width: 29px;
  height: 29px;
}

.volume-track {
  position: relative;
  width: 100%;
  height: 3px;
  background: var(--track);
}

.volume-track span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 29%;
  background: var(--red);
}

.audio-slider {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
}

.volume-track input {
  position: absolute;
  inset-inline: 0;
  top: 50%;
  width: 100%;
  height: 28px;
  transform: translateY(-50%);
}

.audio-slider::-webkit-slider-thumb {
  width: 0;
  height: 0;
  -webkit-appearance: none;
}

.audio-slider::-moz-range-thumb {
  width: 0;
  height: 0;
  border: 0;
}

.progress-slider {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 0%, var(--track) 0%);
}

@keyframes prevalence-vinyl-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes prevalence-credit-detail-fade {
  from { opacity: 0; transform: translate3d(0, 12px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* CONTENT */
.page-content {
  position: relative;
  z-index: 30;
  background: #fff;
}

.section-container,
.credits-container {
  width: min(1200px, calc(100% - 156px));
  max-width: 1200px;
  margin: 0 auto;
}

.listen-section {
  padding: 46px 0 82px;
  font-family: Poppins, Arial, sans-serif;
}

.listen-section h2 {
  margin: 0;
  color: #000;
  font-family: "Renner", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.7;
  text-transform: none;
}

.listen-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 88px;
  margin-top: 27px;
  opacity: 0;
  transform: translateX(34px);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
}

.listen-links.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.listen-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-family: "Renner", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  transition: opacity 300ms ease;
}

.listen-links a:hover {
  opacity: 0.55;
}

.vertical-line,
.video-line {
  width: 1px;
  margin: 74px auto 0;
  background: #000;
}

.vertical-line {
  height: 80px;
}

.section-title {
  margin-top: 28px;
  text-align: center;
}

.section-title p {
  margin: 0;
  color: #000;
  font-family: "Renner", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section-title h2 {
  margin: 18px 0 0;
  color: #000;
  font-family: "Renner", sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  transition: opacity 820ms var(--ease-out), transform 820ms var(--ease-out);
}

[data-reveal-title]:not(.is-visible),
[data-video-title]:not(.is-visible) {
  opacity: 0;
  transform: translateY(32px);
}

/* ABOUT */
.about-section {
  background: #000;
  scroll-margin-top: 0;
}

.about-grid {
  display: grid;
  max-width: 1904px;
  min-height: 815px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
}

.about-copy-panel {
  display: flex;
  min-height: 815px;
  align-items: center;
  justify-content: flex-end;
  padding: 92px 72px;
  background: #000;
  color: #fff;
}

.about-copy-wrap {
  width: 100%;
  max-width: 760px;
  text-align: right;
  opacity: 0;
  transform: translateX(-52px);
  transition: opacity 920ms var(--ease-out), transform 920ms var(--ease-out);
}

.about-copy-wrap.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.about-copy-wrap h2 {
  max-width: 744px;
  margin: 0 0 62px auto;
  color: #fff;
  font-family: "Renner", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.about-copy,
.about-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Renner", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  text-align: right;
}

.about-copy p + p {
  margin-top: 42px;
}

.signature {
  width: 105px;
  height: auto;
  margin: 82px 0 0 auto;
  object-fit: contain;
}

.about-image-panel {
  position: relative;
  min-height: 815px;
  overflow: hidden;
  background: #000;
}

.about-image-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* VIDEO */
.video-section {
  position: relative;
  overflow: visible;
  padding: 0 0 38px;
  background: var(--red);
  color: #fff;
}

.video-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(147, 7, 9, 0.62), rgba(147, 7, 9, 0.62)), url('../images/last-bs.webp') center/cover no-repeat;
  opacity: 1;
}

.video-inner {
  position: relative;
  z-index: 10;
  width: min(1200px, calc(100% - 156px));
  max-width: 1200px;
  margin: 0 auto;
  transform: translateY(-70px);
}

.video-line {
  height: 140px;
  margin-top: 0;
  background: #fff;
}

.section-title-light p,
.section-title-light h2 {
  color: #fff;
}

.youtube-player {
  width: 100%;
  max-width: 980px;
  aspect-ratio: 16 / 9;
  margin: 78px auto 0;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.38);
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  transition: opacity 980ms var(--ease-out), transform 980ms var(--ease-out);
}

.youtube-player.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.youtube-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-copy {
  max-width: 920px;
  margin: 56px auto 0;
  text-align: center;
}

.video-copy h3 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.video-copy p {
  max-width: 880px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.65;
}

.video-copy p + p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
}

/* CREDITS */
.credits-section {
  position: relative;
  z-index: 20;
  padding: 42px 24px 118px;
  background: #fff;
  color: #000;
  scroll-margin-top: 82px;
}

.credits-section .vertical-line {
  margin-top: 0;
}

.credits-desktop {
  position: relative;
  margin-top: 96px;
  padding: 0 42px;
  overflow: visible;
}

.credits-desktop::before {
  content: "";
  position: absolute;
  left: 42px;
  right: 42px;
  top: 31px;
  height: 1px;
  background: rgba(0, 0, 0, 0.14);
}

.credits-desktop-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
}

.credit-button {
  position: relative;
  min-height: 150px;
  padding: 0 16px 0 0;
  border: 0;
  background: transparent;
  text-align: left;
  outline: none;
  transition: opacity 300ms ease;
}

.credit-name {
  position: absolute;
  left: 0;
  top: -14px;
  max-width: 170px;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  transition: color 300ms ease;
}

.credit-dot {
  position: absolute;
  left: 0;
  top: 25px;
  z-index: 10;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  background: #fff;
  transition: border-color 300ms ease;
}

.credit-dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 300ms ease;
}

.credit-role {
  position: absolute;
  left: 0;
  top: 66px;
  max-width: 180px;
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  transition: color 300ms ease;
}

.credit-button:hover .credit-name,
.credit-button.is-active .credit-name {
  color: var(--red);
}

.credit-button:hover .credit-dot,
.credit-button.is-active .credit-dot {
  border-color: var(--red);
}

.credit-button.is-active .credit-dot::after {
  opacity: 1;
}

.credit-button:hover .credit-role,
.credit-button.is-active .credit-role {
  color: #000;
}

.credits-mobile {
  display: none;
  margin-top: 74px;
}

.credits-carousel-shell {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.credits-line {
  position: absolute;
  left: 58px;
  right: 58px;
  top: 31px;
  height: 1px;
  background: rgba(0, 0, 0, 0.14);
}

.credits-arrow {
  position: absolute;
  top: 14px;
  z-index: 20;
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  background: #fff;
  color: rgba(0, 0, 0, 0.22);
  font-size: 24px;
  line-height: 1;
  transition: border-color 300ms ease, color 300ms ease;
}

.credits-arrow:hover {
  border-color: rgba(0, 0, 0, 0.24);
  color: rgba(0, 0, 0, 0.52);
}

.credits-arrow-prev { left: 0; }
.credits-arrow-next { right: 0; }

.credits-scroll {
  margin: 0 54px;
  overflow-x: auto;
  padding-bottom: 8px;
  cursor: grab;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.credits-scroll::-webkit-scrollbar {
  display: none;
}

.credits-scroll.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.credits-track {
  display: flex;
  min-width: max-content;
  gap: 26px;
  padding-inline: 6px 120px;
}

.credits-track .credit-button {
  width: 176px;
  min-height: 150px;
  flex: 0 0 auto;
  padding-right: 0;
  overflow: visible;
  user-select: none;
}

.credits-track .credit-name,
.credits-track .credit-role {
  max-width: 166px;
  overflow: visible;
}

.credit-detail {
  max-width: 980px;
  margin-top: 62px;
  color: rgba(0, 0, 0, 0.86);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.credit-detail.is-changing {
  animation: prevalence-credit-detail-fade 520ms var(--ease-out) both;
}

.credit-detail h3 {
  margin: 0;
  color: #000;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.credit-detail .role-heading {
  margin: 8px 0 0;
  color: rgba(0, 0, 0, 0.54);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.credit-detail p {
  max-width: 860px;
  margin: 30px 0 0;
  color: rgba(0, 0, 0, 0.84);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.credit-detail p + p {
  max-width: 980px;
  margin-top: 28px;
  color: rgba(0, 0, 0, 0.76);
}

/* FOOTER */
.site-footer {
  position: relative;
  z-index: 30;
  padding: 96px 24px;
  background: #000;
  color: #fff;
  text-align: center;
}

.footer-logo {
  display: inline-block;
  font-size: 34px;
}

.footer-logo:hover {
  opacity: 0.7;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 30px;
  font-size: 20px;
}

.footer-socials a,
.footer-nav a {
  transition: opacity 300ms ease, transform 300ms ease;
}

.footer-socials a:hover {
  opacity: 0.65;
  transform: translateY(-2px);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 30px;
  margin-top: 58px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.7;
}

.footer-nav a:hover {
  opacity: 0.6;
}

.site-footer p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.7;
}

/* RESPONSIVE LOCKS: 320 / 480 / 760 / 960 / 1200 / 1600 */
@media (max-width: 1279px) {
  .site-header,
  .hero-inner {
    padding-inline: 40px;
  }

  .desktop-nav {
    gap: 28px;
  }

  .hero-title {
    right: 64px;
    top: 40%;
    max-width: 680px;
  }

  .hero-title p { font-size: 18px; }
  .hero-title h2 { font-size: 66px; }

  .player-layout {
    grid-template-columns: 300px minmax(300px, 1fr) 300px;
  }
}

@media (max-width: 1180px) {
  .audio-player {
    height: auto;
    border-radius: 4px;
  }

  .player-layout {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .player-cover {
    left: 50%;
    transform: translateX(-50%);
  }

  .player-center {
    order: 1;
    width: 100%;
    flex-direction: column;
    gap: 7px 0;
  }

  .player-controls {
    order: 1;
    width: auto;
  }

  .player-time {
    order: 2;
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .player-meta {
    order: 2;
    width: 100%;
    margin: 0;
    padding-top: 0;
    text-align: center;
  }

  .player-volume {
    order: 3;
    width: 100%;
    margin-inline: auto;
    justify-content: center;
  }

  .credits-desktop {
    display: none;
  }

  .credits-mobile {
    display: block;
  }
}

@media (min-width: 960px) and (max-width: 1180px) {
  .audio-player {
    width: calc(100% - 96px);
    max-width: 860px;
    min-height: 252px;
    margin-top: -112px;
    scroll-margin-top: 112px;
  }

  .player-layout {
    min-height: 252px;
    padding: 72px 30px 42px;
    gap: 15px;
  }

  .player-cover {
    top: -48px;
    width: 96px;
    height: 96px;
  }

  .player-volume {
    max-width: 360px;
    margin-top: 4px;
  }
}

@media (min-width: 760px) and (max-width: 959px) {
  .audio-player {
    width: calc(100% - 64px);
    max-width: 680px;
    min-height: 246px;
    margin-top: -104px;
    scroll-margin-top: 106px;
  }

  .player-layout {
    min-height: 246px;
    padding: 68px 28px 38px;
    gap: 14px;
  }

  .player-cover {
    top: -45px;
    width: 90px;
    height: 90px;
  }

  .player-volume {
    max-width: 340px;
    margin-top: 4px;
  }
}

@media (min-width: 480px) and (max-width: 759px) {
  .audio-player {
    width: calc(100% - 48px);
    max-width: 440px;
    min-height: 228px;
    margin-top: -92px;
    scroll-margin-top: 96px;
  }

  .player-layout {
    min-height: 228px;
    padding: 64px 22px 34px;
    gap: 12px;
  }

  .player-cover {
    top: -43px;
    width: 86px;
    height: 86px;
  }

  .player-time {
    font-size: 14px;
  }

  .player-volume {
    max-width: 300px;
    margin-top: 4px;
  }
}

@media (min-width: 390px) and (max-width: 479px) {
  .audio-player {
    width: calc(100% - 32px);
    max-width: 360px;
    min-height: 220px;
    margin-top: -86px;
    scroll-margin-top: 96px;
  }

  .player-layout {
    min-height: 220px;
    padding: 60px 18px 32px;
    gap: 11px;
  }

  .player-cover {
    top: -41px;
    width: 82px;
    height: 82px;
  }

  .player-time {
    font-size: 14px;
  }

  .player-meta h3 {
    font-size: 17px;
  }

  .player-meta p {
    margin-top: 10px;
    font-size: 13px;
  }

  .player-volume {
    max-width: 270px;
    margin-top: 3px;
  }
}

@media (max-width: 389px) {
  .audio-player {
    width: calc(100% - 24px);
    max-width: 342px;
    min-height: 214px;
    margin-top: -84px;
    scroll-margin-top: 96px;
  }

  .player-layout {
    min-height: 214px;
    padding: 58px 16px 30px;
    gap: 10px;
  }

  .player-cover {
    top: -39px;
    width: 78px;
    height: 78px;
  }

  .vinyl-hole {
    width: 21px;
    height: 21px;
  }

  .vinyl-hole span {
    width: 7px;
    height: 7px;
  }

  .player-time {
    font-size: 13px;
  }

  .player-meta h3 {
    font-size: 16px;
  }

  .player-meta p {
    margin-top: 9px;
    font-size: 12px;
  }

  .player-volume {
    max-width: 250px;
    margin-top: 2px;
  }
}

@media (min-width: 1181px) and (max-width: 1599px) {
  .audio-player {
    width: min(1200px, calc(100% - 156px));
    max-width: 1200px;
    height: 142px;
    min-height: 142px;
    margin-top: -70px;
  }
}

@media (min-width: 1600px) {
  .audio-player {
    width: 1200px;
    max-width: 1200px;
    height: 142px;
    min-height: 142px;
    margin-top: -70px;
  }
}

@media (max-width: 1023px) {
  .site-header,
  .hero-inner {
    padding-inline: 20px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .site-header.is-menu-open {
    background: #fff;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.is-menu-open .site-logo {
    color: #000;
  }

  .hero-title {
    right: 50%;
    top: 36%;
    width: calc(100% - 48px);
    max-width: 620px;
    transform: translate(50%, -50%);
    text-align: center;
  }

  .hero-title p {
    font-size: 15px;
  }

  .hero-title h2 {
    font-size: 50px;
  }

  .section-container,
  .video-inner,
  .credits-container {
    width: calc(100% - 48px);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-copy-panel {
    min-height: 0;
    justify-content: center;
    padding: 72px 40px;
  }

  .about-copy-wrap,
  .about-copy,
  .about-copy p {
    text-align: center;
  }

  .about-copy-wrap h2 {
    margin-inline: auto;
    font-size: 38px;
  }

  .signature {
    margin-inline: auto;
  }

  .about-image-panel {
    min-height: 620px;
  }
}

@media (max-width: 767px) {
  .hero-background {
    background-position: center center;
    background-size: cover;
  }

  .hero-title {
    top: 38%;
    width: calc(100% - 32px);
  }

  .hero-title p {
    font-size: 16px;
  }

  .hero-title h2 {
    font-size: 44px;
  }

  .site-logo {
    font-size: 22px;
  }

  .listen-section {
    padding-top: 46px;
  }

  .section-container,
  .video-inner,
  .credits-container {
    width: auto;
    max-width: none;
    margin-inline: 20px;
  }

  .listen-section h2 {
    font-size: 20px;
  }

  .listen-links {
    gap: 20px 32px;
  }

  .listen-links a {
    font-size: 15px;
  }

  .section-title h2 {
    font-size: 42px;
  }

  .about-copy-panel {
    padding: 64px 24px;
  }

  .about-copy-wrap h2 {
    font-size: 30px;
  }

  .about-image-panel {
    min-height: 460px;
  }

  .signature {
    width: 83px;
  }

  .video-inner {
    transform: translateY(-70px);
  }

  .youtube-player {
    margin-top: 78px;
  }

  .video-copy {
    margin-top: 42px;
    padding-inline: 0;
  }

  .video-copy h3 {
    font-size: 23px;
  }

  .video-copy p {
    font-size: 14px;
  }

  .credits-section {
    padding-inline: 0;
  }

  .credits-track {
    gap: 20px;
    padding-inline: 6px 96px;
  }

  .credits-track .credit-button {
    width: 154px;
    min-height: 146px;
  }

  .credits-track .credit-name,
  .credits-track .credit-role {
    max-width: 146px;
  }

  .credit-detail {
    margin-top: 62px;
    font-size: 16px;
  }

  .credit-detail h3 {
    font-size: 24px;
  }

  .footer-logo {
    font-size: 28px;
  }

  .footer-nav,
  .site-footer p {
    font-size: 12px;
  }
}

@media (max-width: 389px) {
  .hero-title h2 {
    font-size: 40px;
  }

  .credits-scroll {
    margin-inline: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* FIX CREDITS TITLES 1024–1180 + MOBILE/TABLET
   Исправляет обрезанные имена в credits-карусели.
   Причина: .credits-mobile включается до 1180px,
   а титлы были слишком высоко/низко внутри clipped-scroll зоны.
*/

@media (max-width: 1180px) {
  .credits-mobile {
    display: block;
    overflow: visible;
  }

  .credits-carousel-shell {
    overflow: visible;
  }

  .credits-scroll {
    overflow-x: auto;
    overflow-y: visible;
    padding-top: 18px;
    padding-bottom: 10px;
  }

  .credits-track {
    align-items: flex-start;
    padding-top: 0;
  }

  .credits-track .credit-button {
    min-height: 168px;
    padding-top: 0;
    overflow: visible;
  }

  .credits-track .credit-name {
    top: 0;
    z-index: 30;
    max-width: 166px;
    line-height: 1.35;
    white-space: normal;
    overflow: visible;
  }

  .credits-track .credit-dot {
    top: 44px;
    z-index: 25;
  }

  .credits-track .credit-role {
    top: 84px;
    z-index: 20;
    max-width: 166px;
    overflow: visible;
  }

  .credits-line {
    top: 49px;
  }

  .credits-arrow {
    top: 32px;
  }
}

@media (max-width: 479px) {
  .credits-scroll {
    padding-top: 16px;
  }

  .credits-track {
    gap: 20px;
    padding-inline: 6px 96px;
  }

  .credits-track .credit-button {
    width: 154px;
    min-height: 162px;
  }

  .credits-track .credit-name {
    max-width: 146px;
  }

  .credits-track .credit-dot {
    top: 42px;
  }

  .credits-track .credit-role {
    top: 80px;
    max-width: 146px;
  }

  .credits-line {
    top: 47px;
  }

  .credits-arrow {
    top: 30px;
  }
}