@charset "UTF-8";

@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("./fonts/oswald.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #11110f;
  --surface: #1c1c19;
  --text: #f2efe7;
  --muted: #aaa79f;
  --accent: #d6b67b;
  --line: #34342f;
  --font: "Manrope", Arial, sans-serif;
  --display: "Oswald", "Arial Narrow", sans-serif;
  --gutter: clamp(22px, 5.2vw, 88px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
body.player-open {
  overflow: hidden;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
::selection {
  color: var(--bg);
  background: var(--accent);
}
h1,
h2,
h3,
p {
  margin: 0;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  width: min(1440px, calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}
.icon-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.play-icon {
  fill: currentColor;
  stroke: none;
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  line-height: 1.6;
  text-transform: uppercase;
}
.muted {
  color: var(--muted);
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 20;
  padding: 15px 20px;
  color: var(--bg);
  background: var(--accent);
}
.skip-link:focus {
  top: 16px;
}

.site-header {
  position: relative;
  z-index: 5;
  background: var(--bg);
}
.header-inner {
  height: 94px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}
.brand-monogram {
  font-family: var(--display);
  font-size: 37px;
  font-weight: 500;
  letter-spacing: -2.5px;
  line-height: 1;
}
.brand-monogram span,
.footer-name span {
  color: var(--accent);
}
.brand-name {
  font-size: 8px;
  letter-spacing: 1.7px;
  line-height: 1.5;
  font-weight: 700;
}
.navigation {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 12px;
}
.navigation > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  transition: color 180ms;
}
.navigation > a:hover {
  color: var(--accent);
}
.navigation .nav-listen {
  gap: 16px;
  margin-left: 30px;
}
.nav-listen .icon {
  width: 17px;
  height: 17px;
}
.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 710px;
  height: min(760px, calc(100svh - 94px));
  isolation: isolate;
  overflow: hidden;
}
.hero-art {
  position: absolute;
  inset: -15px 0 0 auto;
  width: 73%;
  z-index: -3;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 38%;
  mask-image: linear-gradient(90deg, transparent 48%, #000 57%);
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, var(--bg) 0%, #11110ff5 24%, #11110f9c 43%, #11110f00 64%),
    linear-gradient(0deg, var(--bg), #11110f00 25%);
}
.hero-content {
  padding-top: 67px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
}
.small-star {
  font-size: 22px;
  line-height: 1;
}
.hero h1 {
  position: relative;
  margin: 29px 0 0 -5px;
  font-family: var(--display);
  font-size: clamp(96px, 10.8vw, 168px);
  font-weight: 500;
  line-height: 1.01;
  letter-spacing: -5px;
  width: max-content;
}
.hero h1 > span {
  display: block;
}
.hero-second-line {
  color: var(--accent);
}
.title-dot {
  color: var(--text);
}
.hero-description {
  margin-top: 26px;
  color: #d7d3ca;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.4;
}
.hero-description em {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 54px;
  padding: 16px 26px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 2px;
  transition:
    background 180ms,
    transform 180ms;
}
.button-accent {
  color: var(--bg);
  background: var(--accent);
}
.button-accent:hover {
  background: #e9cea0;
  transform: translateY(-2px);
}
.button-accent:focus-visible {
  outline-color: var(--text);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 19px;
  min-height: 44px;
  font-size: 12px;
  line-height: 1.5;
}
.text-link .icon {
  width: 18px;
  height: 18px;
  transition: transform 180ms;
}
.text-link:hover .icon {
  transform: translate(2px, -2px);
}
.hero-side-note {
  position: absolute;
  right: 25px;
  top: 48%;
  writing-mode: vertical-rl;
  color: #b7b5ae;
  font-size: 8px;
  letter-spacing: 2.2px;
}
.hero-caption {
  position: absolute;
  bottom: 26px;
  inset-inline: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 10px;
}
.hero-caption > span {
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-caption a {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  min-height: 44px;
}
.hero-caption .icon {
  width: 16px;
  height: 16px;
}

.featured-release {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 25px;
  border-block: 1px solid var(--line);
}
.featured-cover {
  width: 73px;
  height: 73px;
  object-fit: cover;
}
.featured-info .eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  color: var(--accent);
}
.status-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.featured-info h2 {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.7px;
}
.featured-meta {
  margin-left: auto;
  margin-right: 30px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}
.featured-meta span {
  display: block;
}
.round-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  flex-shrink: 0;
  border: 1px solid #62615b;
  background: none;
  border-radius: 50%;
  transition:
    color 180ms,
    background 180ms;
}
.round-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.round-link .play-icon {
  width: 20px;
  height: 20px;
  margin-left: -2px;
}

.section {
  padding-block: 98px 106px;
}
.section-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-topline > .eyebrow:first-child {
  color: var(--accent);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-block: 30px 44px;
}
.section-heading h2,
.tracks-intro h2,
.listen-heading h2 {
  font-size: clamp(34px, 3.7vw, 56px);
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1.12;
}
.section-heading h2 em,
.tracks-intro h2 em,
.listen-heading h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.section-heading h2 em {
  color: var(--accent);
}
.section-heading .text-link {
  margin-bottom: 3px;
}
.release-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}
.release-art {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--surface);
}
.release-art > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 500ms;
}
.release-art:hover > img {
  transform: scale(1.04);
}
.art-play {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: #f2efe7ec;
  color: var(--bg);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 180ms,
    transform 180ms;
}
.release-art:hover .art-play,
.release-art:focus-visible .art-play {
  opacity: 1;
  transform: none;
}
.release-caption {
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: space-between;
  margin-top: 20px;
}
.release-caption h3 {
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.5px;
}
.release-index {
  font-size: 9px;
  color: #9f9c92;
  font-variant-numeric: tabular-nums;
}
.release-meta {
  margin-top: 9px;
  color: var(--muted);
  font-size: 10px;
}
.release-meta span::before {
  content: "·";
  padding-inline: 8px;
}

.tracks-section {
  background: #eae6dc;
  color: #20201c;
  padding-block: 90px 94px;
}
.tracks-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 80px;
}
.tracks-intro .eyebrow {
  color: #656158;
}
.tracks-intro h2 {
  margin-top: 33px;
  font-size: clamp(40px, 4.7vw, 68px);
}
.tracks-intro > p:last-of-type {
  color: #626056;
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.9;
}
.sound-symbol {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 40px;
  margin-top: 34px;
}
.sound-symbol i {
  width: 3px;
  height: 9px;
  background: #83724f;
}
.sound-symbol i:nth-child(2n) {
  height: 23px;
}
.sound-symbol i:nth-child(3n) {
  height: 34px;
}
.sound-symbol i:nth-child(5) {
  height: 42px;
}
.track-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.track {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 93px;
  padding: 16px 6px;
  border-bottom: 1px solid #c8c4ba;
  transition: background 180ms;
}
.track-list li:first-child .track {
  border-top: 1px solid #c8c4ba;
}
.track:hover {
  background: #dfdbd0;
}
.track:focus-visible {
  outline-color: #765924;
  outline-offset: 2px;
}
.track-number {
  flex-shrink: 0;
  width: 21px;
  color: #746f65;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}
.track > img {
  width: 54px;
  height: 54px;
  object-fit: cover;
}
.track-description {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.track-description strong {
  font-size: 13px;
  font-weight: 650;
}
.track-description > span {
  font-size: 10px;
  color: #69665e;
}
.track-time {
  margin-left: auto;
  padding-left: 8px;
  color: #706a60;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}
.track-play {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: 5px;
  border: 1px solid #b9b4a8;
  border-radius: 50%;
  flex-shrink: 0;
}
.track-play .icon {
  width: 17px;
  height: 17px;
}
.track:hover .track-play {
  color: var(--text);
  background: #20201c;
  border-color: #20201c;
}

.label-section {
  padding-block: 78px 88px;
  background: #1e1d18;
  border-bottom: 1px solid var(--line);
}
.label-section > .wrap > .eyebrow {
  color: var(--accent);
}
.label-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
  margin-top: 45px;
}
.label-wordmark {
  font-family: var(--display);
}
.label-wordmark > span {
  display: block;
  font-size: clamp(40px, 5.5vw, 82px);
  line-height: 1;
  letter-spacing: -2px;
}
.label-wordmark > strong {
  display: block;
  color: var(--accent);
  font-size: clamp(95px, 13vw, 192px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -6px;
}
.label-wordmark > p {
  margin-top: 10px;
  font-family: var(--font);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.label-copy h2 {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 1.15;
}
.label-copy h2 em {
  font-family: Georgia, serif;
  color: var(--accent);
}
.label-copy > p {
  margin-top: 22px;
  color: #b9b5ac;
  font-size: 12px;
  line-height: 1.9;
  max-width: 420px;
}
.label-copy > p strong {
  color: var(--text);
  font-weight: 500;
}
.label-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 27px;
  color: var(--accent);
  font-size: 10px;
}
.label-copy > .label-announcement {
  font-size: 10px;
  margin-top: 10px;
}
.label-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 24px;
  padding-block: 20px 5px;
  max-width: 420px;
  border-top: 1px solid #514a3b;
  color: var(--accent);
  font-size: 12px;
}
.label-contact small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 10px;
  overflow-wrap: anywhere;
}
.label-contact:hover > span {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.listen-section {
  padding-block: 96px 82px;
}
.listen-section > .eyebrow {
  color: var(--accent);
}
.listen-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 31px;
}
.listen-heading h2 {
  font-size: clamp(35px, 4.5vw, 67px);
}
.listen-heading em {
  color: var(--accent);
}
.listen-circle {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border: 1px solid #7d7057;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  transition:
    color 180ms,
    background 180ms;
}
.listen-circle:hover {
  background: var(--accent);
  color: var(--bg);
}
.listen-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: end;
  margin-top: 36px;
}
.listen-bottom p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.listen-bottom .text-link {
  font-size: 11px;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 105px;
  border-top: 1px solid var(--line);
}
.footer-name {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.6px;
}
.secondary-profile {
  color: var(--muted);
  font-size: 11px;
  padding-block: 12px;
}
.secondary-profile:hover {
  color: var(--accent);
}
.back-top {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 44px;
  color: var(--muted);
  font-size: 11px;
}

.player-dialog {
  width: min(520px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 30px;
  border: 1px solid #555346;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 25px 100px #0008;
}
.player-dialog::backdrop {
  background: #000c;
  backdrop-filter: blur(7px);
}
.player-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 25px;
}
.player-heading .eyebrow {
  font-size: 9px;
  color: var(--accent);
}
.player-heading h2 {
  margin-top: 9px;
  font-size: 25px;
  font-weight: 500;
}
.player-close {
  width: 40px;
  height: 40px;
}
.player-container {
  min-height: 180px;
  background: #eae6dc;
}
.player-container iframe {
  display: block;
  width: 100%;
  height: 180px;
  border: 0;
}
.player-help {
  margin-top: 22px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}
.player-external {
  width: 100%;
  margin-top: 15px;
}
.reveal-pending {
  opacity: 0;
  transform: translateY(16px);
}
[data-reveal] {
  transition:
    opacity 550ms ease,
    transform 550ms ease;
}

@media (min-width: 1600px) {
  .hero-art {
    width: 66%;
  }
  .hero-content {
    padding-top: 55px;
  }
}
@media (max-width: 1100px) {
  .hero {
    min-height: 640px;
    height: 690px;
  }
  .hero-art {
    width: 82%;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, var(--bg), #11110ff0 23%, #11110f63 56%, #11110f00 80%),
      linear-gradient(0deg, var(--bg), #11110f00 28%);
  }
  .hero h1 {
    font-size: 112px;
  }
  .hero-content {
    padding-top: 55px;
  }
  .release-grid {
    gap: 18px;
  }
  .tracks-layout {
    gap: 45px;
  }
  .track {
    gap: 12px;
  }
  .navigation {
    gap: 30px;
  }
}
@media (max-width: 760px) {
  .label-section {
    padding-block: 62px;
  }
  .label-layout {
    gap: 30px;
  }
  .label-wordmark > strong {
    font-size: 110px;
    letter-spacing: -4px;
  }
  .label-copy h2 {
    font-size: 34px;
  }
  .header-inner {
    height: 78px;
  }
  .brand-name {
    font-size: 7px;
  }
  .brand-monogram {
    font-size: 33px;
  }
  .navigation {
    gap: 22px;
  }
  .navigation .nav-listen {
    margin-left: 0;
  }
  .hero {
    min-height: 610px;
    height: 640px;
  }
  .hero-art {
    width: 108%;
    right: -11%;
  }
  .hero-art img {
    object-position: 100% 34%;
  }
  .hero h1 {
    font-size: 99px;
    letter-spacing: -3px;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #11110fe0, #11110faa 35%, #11110f14 90%),
      linear-gradient(0deg, var(--bg), #11110f00 40%);
  }
  .hero-content {
    padding-top: 52px;
  }
  .hero-description {
    margin-top: 27px;
  }
  .hero-side-note {
    display: none;
  }
  .hero-eyebrow {
    font-size: 9px;
  }
  .featured-release {
    gap: 18px;
  }
  .featured-meta {
    margin-right: 0;
  }
  .featured-info h2 {
    font-size: 22px;
  }
  .section {
    padding-block: 66px 72px;
  }
  .section-heading h2 {
    font-size: 37px;
  }
  .release-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 20px;
  }
  .art-play {
    opacity: 1;
    transform: none;
    width: 36px;
    height: 36px;
  }
  .release-caption {
    margin-top: 15px;
  }
  .release-caption h3 {
    font-size: 16px;
  }
  .tracks-section {
    padding-block: 64px 68px;
  }
  .tracks-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .tracks-intro {
    position: relative;
  }
  .tracks-intro h2 {
    font-size: 49px;
    margin-top: 22px;
  }
  .tracks-intro > p:last-of-type {
    margin-top: 20px;
  }
  .sound-symbol {
    position: absolute;
    bottom: 6px;
    right: 0;
  }
  .track {
    min-height: 90px;
  }
  .track-description strong {
    font-size: 14px;
  }
  .listen-section {
    padding-block: 68px 57px;
  }
  .listen-heading h2 {
    font-size: 43px;
  }
  .listen-circle {
    width: 74px;
    height: 74px;
  }
  .listen-bottom {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .site-footer {
    flex-wrap: wrap;
    min-height: 100px;
    padding-block: 25px;
    gap: 16px;
  }
  .secondary-profile {
    order: 3;
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 540px) {
  .label-layout {
    grid-template-columns: 1fr;
    gap: 37px;
    margin-top: 35px;
  }
  .label-wordmark > span {
    font-size: 50px;
  }
  .label-wordmark > strong {
    font-size: 128px;
    line-height: 1.18;
  }
  .label-wordmark > p {
    margin-top: 16px;
    font-size: 9px;
    letter-spacing: 1.3px;
  }
  .label-copy h2 {
    font-size: 34px;
  }
  .header-inner {
    flex-wrap: wrap;
    height: auto;
    min-height: 76px;
  }
  .navigation {
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-block: 5px;
    font-size: 10px;
  }
  .js .header-inner {
    height: 76px;
    flex-wrap: nowrap;
  }
  .js .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: none;
    border: 1px solid var(--line);
    width: 43px;
    height: 43px;
  }
  .menu-toggle span {
    width: 19px;
    height: 1px;
    background: var(--text);
    transition: transform 180ms;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .js .navigation {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 20px var(--gutter);
    background: var(--surface);
    border-bottom: 1px solid var(--line);
  }
  .js .navigation.is-open {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
  }
  .js .navigation .nav-listen {
    justify-content: space-between;
  }
  .hero {
    min-height: 650px;
    height: 690px;
  }
  .hero-art {
    width: 152%;
    height: 85%;
    top: -3%;
    right: -26%;
  }
  .hero-art img {
    object-fit: cover;
    object-position: 91% 17%;
  }
  .hero-shade {
    background:
      linear-gradient(0deg, var(--bg) 7%, #11110ff5 23%, #11110f65 54%, #11110f00 78%),
      linear-gradient(90deg, #11110f98 0%, #11110f00 62%);
  }
  .hero-content {
    padding-top: 36px;
  }
  .hero-eyebrow {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  .small-star {
    font-size: 17px;
  }
  .hero h1 {
    margin-top: 208px;
    margin-left: -2px;
    font-size: clamp(66px, 18vw, 96px);
    line-height: 1.04;
    letter-spacing: -2.5px;
  }
  .hero-description {
    margin-top: 20px;
    font-size: 15px;
  }
  .hero-description br {
    display: none;
  }
  .hero-description em {
    font-size: 20px;
    margin-left: 4px;
  }
  .hero-actions {
    gap: 20px;
    margin-top: 23px;
  }
  .hero-actions .button {
    min-height: 50px;
    padding: 14px 18px;
    gap: 9px;
    font-size: 11px;
  }
  .hero-actions .text-link {
    gap: 10px;
    font-size: 10px;
  }
  .hero-actions .icon {
    width: 18px;
    height: 18px;
  }
  .hero-caption {
    bottom: 15px;
    font-size: 8px;
  }
  .hero-caption > span {
    letter-spacing: 0.7px;
  }
  .featured-release {
    gap: 14px;
    padding-block: 22px;
  }
  .featured-cover {
    width: 57px;
    height: 57px;
  }
  .featured-info .eyebrow {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .featured-info h2 {
    font-size: 20px;
    margin-top: 7px;
  }
  .featured-meta {
    display: none;
  }
  .featured-play {
    margin-left: auto;
    width: 43px;
    height: 43px;
  }
  .section-topline .muted {
    display: none;
  }
  .section-heading {
    margin-top: 23px;
    margin-bottom: 29px;
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }
  .section-heading h2 {
    font-size: 34px;
    letter-spacing: -1.4px;
  }
  .section-heading .text-link {
    min-height: 35px;
  }
  .release-grid {
    gap: 29px 17px;
  }
  .release-caption h3 {
    font-size: 13px;
    letter-spacing: -0.25px;
  }
  .release-meta {
    font-size: 9px;
  }
  .release-index {
    display: none;
  }
  .art-play {
    width: 31px;
    height: 31px;
    right: 9px;
    bottom: 9px;
  }
  .art-play .icon {
    width: 18px;
    height: 18px;
  }
  .track {
    gap: 12px;
    padding-inline: 0;
    min-height: 84px;
  }
  .track-number {
    width: 13px;
    font-size: 8px;
  }
  .track > img {
    width: 43px;
    height: 43px;
  }
  .track-description strong {
    font-size: 12px;
  }
  .track-description > span {
    font-size: 8px;
  }
  .track-time {
    font-size: 9px;
    padding-left: 0;
  }
  .track-play {
    margin-left: 0;
    width: 29px;
    height: 29px;
  }
  .listen-heading {
    gap: 15px;
    align-items: start;
  }
  .listen-heading h2 {
    font-size: clamp(29px, 7.8vw, 42px);
    letter-spacing: -1px;
  }
  .listen-circle {
    width: 45px;
    height: 45px;
    margin-top: 6px;
  }
  .listen-circle .icon {
    width: 23px;
    height: 23px;
  }
  .listen-bottom .text-link {
    font-size: 10px;
    gap: 10px;
  }
  .footer-name {
    font-size: 21px;
  }
  .player-dialog {
    padding: 22px 18px;
  }
  .player-heading h2 {
    font-size: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal-pending {
    opacity: 1;
    transform: none;
  }
}
