.discography-page {
  gap: clamp(24px, 3.2vw, 36px);
}

.discography-page-intro {
  width: min(100%, 760px);
  margin: -6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Inter", sans-serif;
  font-size: clamp(0.98rem, 1.18vw, 1.06rem);
  line-height: 1.72;
  letter-spacing: 0.01em;
}

.discography-section {
  width: min(100%, 1080px);
  display: grid;
  gap: clamp(16px, 2.2vw, 20px);
}

.discography-section + .discography-section {
  margin-top: clamp(18px, 2.8vw, 28px);
}

.discography-section-title {
  margin: 0;
  color: var(--text-main);
  font-size: clamp(2rem, 4.4vw, 2.8rem);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.discography-albums-showcase {
  width: min(100%, 930px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 20px);
  justify-self: center;
}

.discography-release-grid {
  width: min(100%, 1080px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(16px, 2vw, 20px);
}

.discography-album-feature {
  --discography-feature-art: none;
  --discography-feature-glow: rgba(255, 191, 0, 0.12);
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 34vw, 460px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0%, rgba(255, 255, 255, 0.006) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 22px 56px rgba(0, 0, 0, 0.28);
}

.discography-album-feature::before,
.discography-album-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.discography-album-feature::before {
  inset: -10%;
  background:
    radial-gradient(circle at 18% 20%, var(--discography-feature-glow) 0%, rgba(255, 191, 0, 0) 34%),
    radial-gradient(circle at 78% 76%, rgba(0, 158, 134, 0.08) 0%, rgba(0, 158, 134, 0) 30%),
    linear-gradient(180deg, rgba(24, 24, 24, 0.18) 0%, rgba(24, 24, 24, 0.34) 32%, rgba(24, 24, 24, 0.74) 100%),
    var(--discography-feature-art) center center / cover no-repeat;
  filter: blur(34px) saturate(0.84);
  transform: translate3d(-2.6%, -0.4%, 0) scale(1.17);
  transform-origin: center;
  opacity: 0.38;
  animation: discography-feature-drift 18s ease-in-out infinite alternate;
}

.discography-album-feature::after {
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.02) 0%, rgba(24, 24, 24, 0.14) 18%, rgba(24, 24, 24, 0.52) 62%, rgba(24, 24, 24, 0.82) 100%),
    linear-gradient(90deg, rgba(24, 24, 24, 0.18) 0%, rgba(24, 24, 24, 0.34) 40%, rgba(24, 24, 24, 0.62) 100%);
}

.discography-album-feature-link {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: start;
  gap: clamp(14px, 2vw, 18px);
  min-height: inherit;
  padding: clamp(16px, 2vw, 20px);
  text-decoration: none;
}

.discography-album-feature-link:focus-visible {
  outline: 2px solid rgba(0, 158, 134, 0.8);
  outline-offset: 8px;
}

.discography-album-feature-cover {
  display: block;
  width: min(100%, 264px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  justify-self: center;
  border-radius: 20px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.36);
}

.discography-album-feature-copy {
  display: grid;
  gap: clamp(8px, 1.4vw, 12px);
  align-content: start;
  align-self: end;
  justify-items: center;
  text-align: center;
}

.discography-release-blurb {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  line-height: 1.56;
  letter-spacing: 0.01em;
}

.discography-album-feature-kicker {
  margin: 0;
  color: rgba(0, 158, 134, 0.88);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.discography-album-feature-title {
  margin: 0;
  color: var(--text-main);
  font-size: clamp(2.3rem, 3.5vw, 3.2rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.discography-album-feature-year {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Inter", sans-serif;
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.discography-album-feature-cta {
  color: rgba(255, 255, 255, 0.62);
  font-family: "Inter", sans-serif;
  font-size: 0.76rem;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-top: 8px;
  transition: color 180ms ease, opacity 180ms ease;
  text-align: center;
}

.discography-album-feature-link:hover .discography-album-feature-cta,
.discography-album-feature-link:focus-visible .discography-album-feature-cta {
  color: var(--accent);
}

.discography-album-feature:nth-child(2)::before {
  animation-direction: alternate-reverse;
}

@keyframes discography-feature-drift {
  0% {
    transform: translate3d(-2.6%, -0.7%, 0) scale(1.17);
  }

  50% {
    transform: translate3d(2.2%, 0.25%, 0) scale(1.13);
  }

  100% {
    transform: translate3d(-1.1%, 0.8%, 0) scale(1.18);
  }
}

.discography-placeholder-shell {
  width: min(100%, 420px);
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.016) 0%, rgba(255, 255, 255, 0.008) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.discography-placeholder {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-shell.subpage.discography-album-page {
  width: min(100%, 1180px);
  align-content: start;
  padding-top: clamp(18px, 3vw, 28px);
  gap: clamp(18px, 2.6vw, 26px);
  position: relative;
  z-index: 1;
}

body.discography-album-view {
  --album-backdrop-opacity-max: 0.35;
  --album-backdrop-opacity: var(--album-backdrop-opacity-max);
}

.discography-album-backdrop {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: var(--album-backdrop-opacity);
  z-index: 0;
  transition: opacity 140ms linear;
}

.discography-album-backdrop::before,
.discography-album-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
}

.discography-album-backdrop::before {
  background-image: var(--album-backdrop-image);
  background-size: cover;
  background-position: center 26%;
  transform: scale(1.02);
}

.discography-album-backdrop::after {
  background:
    linear-gradient(
      180deg,
      rgba(24, 24, 24, 0.16) 0%,
      rgba(24, 24, 24, 0.38) 24%,
      rgba(24, 24, 24, 0.7) 48%,
      rgba(24, 24, 24, 0.94) 62%,
      rgba(24, 24, 24, 1) 72%,
      rgba(24, 24, 24, 1) 100%
    );
}

.discography-album-hero {
  width: min(100%, 1080px);
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(320px, 1fr);
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
}

.discography-album-hero-media {
  display: grid;
}

.discography-album-hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
}

.discography-album-hero-copy {
  display: grid;
  gap: clamp(10px, 1.8vw, 14px);
  align-content: start;
  padding-top: clamp(4px, 0.6vw, 8px);
}

.discography-album-hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
  padding-top: clamp(8px, 1.6vw, 16px);
}

.discography-album-hero-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Inter", sans-serif;
  font-size: clamp(0.96rem, 1.12vw, 1.02rem);
  line-height: 1.68;
  letter-spacing: 0.01em;
}

.discography-album-kicker {
  margin: 0;
  color: rgba(0, 158, 134, 0.88);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  line-height: 1.35;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.discography-album-title {
  margin: 0;
  color: var(--text-main);
  font-size: clamp(3rem, 6vw, 4.4rem);
  line-height: 0.94;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.discography-album-yearline {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Inter", sans-serif;
  font-size: clamp(0.96rem, 1.16vw, 1.04rem);
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.discography-album-body {
  width: min(100%, 980px);
  display: grid;
  gap: clamp(28px, 3.4vw, 40px);
}

.discography-album-description {
  display: grid;
  gap: clamp(16px, 2vw, 20px);
}

.discography-album-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.24vw, 1.06rem);
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.discography-album-rich-copy {
  display: grid;
  gap: 0.95em;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.24vw, 1.06rem);
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.discography-album-rich-copy p,
.discography-album-rich-copy ul {
  margin: 0;
}

.discography-album-rich-copy ul {
  padding-left: 1.1rem;
  display: grid;
  gap: 0.46rem;
}

.discography-album-rich-copy li {
  margin: 0;
}

.discography-album-rich-copy [data-tone="yellow"] {
  color: rgba(255, 191, 0, 0.94);
}

.discography-album-rich-copy [data-tone="turquoise"] {
  color: rgba(0, 200, 170, 0.94);
}

.discography-album-rich-copy [data-tone="red"] {
  color: rgba(255, 158, 158, 0.96);
}

.discography-album-rich-copy [data-tone="white"] {
  color: rgba(255, 255, 255, 0.98);
}

.discography-album-rich-copy a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.discography-album-rich-copy a:hover,
.discography-album-rich-copy a:focus-visible {
  color: var(--text-main);
  outline: none;
}

.discography-contributors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.discography-contributor-card {
  display: grid;
  gap: 8px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.discography-contributor-role {
  margin: 0;
  color: rgba(0, 158, 134, 0.88);
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.discography-contributor-name {
  margin: 0;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.42;
  font-weight: 600;
}

.discography-album-backdrop-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.discography-release-page-message {
  width: min(100%, 460px);
}

.discography-album-section {
  width: min(100%, 980px);
  display: grid;
  gap: clamp(12px, 1.8vw, 16px);
}

.discography-album-listen-section {
  width: min(100%, 760px);
  gap: clamp(16px, 2.2vw, 20px);
}

.discography-album-listen-section--hero {
  width: 100%;
  gap: 14px;
}

.discography-album-section-title {
  margin: 0;
  color: var(--text-main);
  font-size: clamp(1.9rem, 3.8vw, 2.4rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.discography-album-listen-title {
  margin: 0;
  color: var(--text-main);
  font-size: clamp(2rem, 3vw, 2.4rem);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discography-credits-list,
.discography-streaming-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.discography-credit {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Inter", sans-serif;
  font-size: clamp(0.98rem, 1.16vw, 1.02rem);
  line-height: 1.65;
  letter-spacing: 0.01em;
}

.discography-streaming-list {
  width: min(100%, 760px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(22px, 3vw, 34px);
}

.discography-album-listen-section--hero .discography-streaming-list {
  width: 100%;
}

.discography-stream-link {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.06rem);
  line-height: 1.45;
  letter-spacing: 0.01em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 191, 0, 0.12);
  transition: color 180ms ease, border-color 180ms ease;
}

.discography-stream-link:hover,
.discography-stream-link:focus-visible {
  color: var(--accent);
  border-color: rgba(0, 158, 134, 0.34);
  outline: none;
}

@media (max-width: 860px) {
  .discography-albums-showcase,
  .discography-album-hero,
  .discography-streaming-list {
    grid-template-columns: 1fr;
  }

  .discography-album-hero-actions {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .discography-release-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .discography-album-feature {
    border-radius: 24px;
    min-height: auto;
  }

  .discography-album-feature-link {
    gap: 18px;
  }

  .discography-album-feature-cover {
    width: min(100%, 260px);
    justify-self: center;
  }

  .discography-album-listen-section--hero {
    width: 100%;
  }
}

@media (max-width: 700px) {
  body.discography-album-view {
    --album-backdrop-opacity-max: 0.26;
  }

  .discography-page {
    gap: 22px;
  }

  .discography-page-intro {
    font-size: 0.96rem;
    line-height: 1.66;
  }

  .discography-album-feature-link {
    padding: 16px;
  }

  .discography-album-feature-title {
      font-size: clamp(2rem, 8.8vw, 2.56rem);
    }

  .discography-album-feature-cover {
    width: min(100%, 100%);
  }

  .discography-album-backdrop::before {
    background-position: center 22%;
  }

  .discography-album-title {
    font-size: clamp(2.44rem, 12vw, 3.2rem);
  }

  .discography-album-hero {
    gap: 18px;
  }

  .discography-album-body {
    gap: 28px;
  }

  .discography-release-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .discography-album-feature::before {
    animation: none;
    transform: scale(1.14);
  }
}
