@font-face {
  font-family: "Gurty Display";
  src: url("assets/fonts/BarlowCondensed-800.woff2") format("woff2");
  font-display: swap;
  font-weight: 800;
}

@font-face {
  font-family: "Gurty Text";
  src: url("assets/fonts/Manrope-300.woff2") format("woff2");
  font-display: swap;
  font-weight: 300;
}

:root {
  --paper: #ece8dc;
  --paper-bright: #f7f4ea;
  --ink: #171717;
  --muted: #5e5b54;
  --signal: #ef5935;
  --blue: #345bd8;
  --rule: rgb(23 23 23 / 0.34);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --gutter: clamp(1.1rem, 3vw, 3.5rem);
  --nav-height: 4.5rem;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scrollbar-color: var(--signal) var(--paper);
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Gurty Text", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.92rem, 0.84rem + 0.28vw, 1.08rem);
  font-weight: 300;
  line-height: 1.45;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  border: 0.45rem solid var(--ink);
  pointer-events: none;
  content: "";
}

::selection {
  background: var(--signal);
  color: var(--paper-bright);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.6;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.9rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  transform: translateY(-180%);
  background: var(--blue);
  color: white;
  text-decoration: none;
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-nav {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: var(--nav-height);
  padding: 0 var(--gutter);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  background: rgb(236 232 220 / 0.78);
  backdrop-filter: blur(18px) saturate(125%);
}

.mark {
  display: inline-grid;
  width: min-content;
  font-family: "Gurty Display", sans-serif;
  font-size: 1.15rem;
  line-height: 0.72;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-place,
.nav-links {
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: clamp(0.9rem, 2.5vw, 2.4rem);
}

.nav-links a {
  position: relative;
  padding: 0.7rem 0;
  text-decoration: none;
}

.nav-links a::after,
.text-link::after,
.source-link::after {
  position: absolute;
  right: 0;
  bottom: 0.38rem;
  left: 0;
  height: 1px;
  transform: scaleX(0.18);
  transform-origin: left;
  background: currentColor;
  content: "";
  transition: transform 220ms var(--ease-out);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: calc(var(--nav-height) + clamp(2.2rem, 5vw, 5rem)) var(--gutter) clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: minmax(15rem, 0.9fr) minmax(15rem, 0.8fr) minmax(19rem, 1.05fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(1rem, 2vw, 2rem);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, transparent calc(33.333% - 0.5px), var(--rule) 33.333%, transparent calc(33.333% + 0.5px)),
    linear-gradient(90deg, transparent calc(66.666% - 0.5px), var(--rule) 66.666%, transparent calc(66.666% + 0.5px));
  content: "";
  opacity: 0.55;
}

.hero-word {
  position: absolute;
  z-index: -1;
  top: clamp(4.2rem, 6vw, 6.4rem);
  left: calc(var(--gutter) - 0.02em);
  color: var(--signal);
  font-family: "Gurty Display", sans-serif;
  font-size: clamp(10rem, 25.8vw, 29rem);
  line-height: 0.72;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.hero-copy {
  z-index: 2;
  display: flex;
  padding-top: clamp(13rem, 23vh, 19rem);
  flex-direction: column;
  align-items: flex-start;
}

h1,
h2 {
  margin: 0;
  font-family: "Gurty Display", sans-serif;
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.035em;
  text-wrap: balance;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 5.4vw, 6.2rem);
}

.hero-copy > p {
  margin: 1.5rem 0 2rem;
  font-size: clamp(1.05rem, 1.3vw, 1.38rem);
  line-height: 1.25;
}

.text-link,
.source-link {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  gap: 0.65rem;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
}

.text-link svg,
.source-link svg {
  width: 1rem;
}

.portrait-sheet,
.cover-sheet {
  position: relative;
  margin: 0;
  align-self: center;
  background: var(--paper-bright);
  box-shadow: 0 1.75rem 4.5rem rgb(23 23 23 / 0.18);
  will-change: transform;
}

.portrait-sheet {
  z-index: 3;
  display: grid;
  width: min(100%, 28rem);
  padding: clamp(0.75rem, 1.2vw, 1.1rem);
  transform: translateY(clamp(4.8rem, 11vh, 8.5rem)) rotate(-2deg);
  grid-template-rows: minmax(0, 1fr) auto;
}

.portrait-sheet::before,
.portrait-sheet::after {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.portrait-sheet::before {
  top: 0.55rem;
  left: 0.55rem;
}

.portrait-sheet::after {
  right: 0.55rem;
  bottom: 0.55rem;
}

.portrait-crop {
  position: relative;
  min-height: clamp(20rem, 52vh, 38rem);
  overflow: hidden;
  background: white;
}

.portrait-crop img {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(2.15) translateY(2.2%);
  object-fit: cover;
}

.portrait-sheet figcaption {
  display: flex;
  padding-top: 0.8rem;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cover-sheet {
  z-index: 1;
  width: min(100%, 34rem);
  transform: translate(-14%, 5%) rotate(3.5deg);
}

.cover-sheet img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.cover-index {
  position: absolute;
  right: 0.65rem;
  bottom: 0.55rem;
  padding: 0.35rem 0.5rem;
  background: var(--ink);
  color: var(--paper-bright);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.player {
  z-index: 5;
  display: grid;
  min-height: 6.6rem;
  padding: 0.85rem;
  grid-column: 2 / 4;
  grid-template-columns: 4.75rem minmax(10rem, 1fr) minmax(10rem, 1.2fr) 4.75rem auto;
  align-items: center;
  gap: clamp(0.8rem, 1.5vw, 1.5rem);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-bright);
  box-shadow: 0 1.4rem 3.8rem rgb(23 23 23 / 0.22);
}

.play-toggle,
.next-toggle {
  display: grid;
  width: 4.75rem;
  height: 4.75rem;
  padding: 0;
  place-items: center;
  border: 1px solid rgb(247 244 234 / 0.7);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 120ms var(--ease-out);
}

.play-toggle svg {
  width: 2rem;
  stroke-width: 1.4;
}

.play-toggle .icon-pause,
.play-toggle[aria-pressed="true"] .icon-play {
  display: none;
}

.play-toggle[aria-pressed="true"] .icon-pause {
  display: block;
}

.player-copy {
  display: grid;
  gap: 0.12rem;
}

.player-label,
.player-copy > span:last-child,
.player-time,
.next-toggle span,
.source-link {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.player-label {
  color: var(--signal);
}

.player-copy strong {
  overflow: hidden;
  font-family: "Gurty Display", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.7rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-time {
  display: grid;
  gap: 0.45rem;
  align-items: center;
  color: rgb(247 244 234 / 0.7);
}

.player-time span {
  font-variant-numeric: tabular-nums;
}

#seek {
  width: 100%;
  height: 1.4rem;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

#seek::-webkit-slider-runnable-track {
  height: 1px;
  background: linear-gradient(90deg, var(--signal) var(--seek-progress, 0%), rgb(247 244 234 / 0.35) var(--seek-progress, 0%));
}

#seek::-webkit-slider-thumb {
  width: 0.72rem;
  height: 0.72rem;
  margin-top: -0.34rem;
  appearance: none;
  border: 0;
  border-radius: 50%;
  background: var(--signal);
}

#seek::-moz-range-track {
  height: 1px;
  background: rgb(247 244 234 / 0.35);
}

#seek::-moz-range-progress {
  height: 1px;
  background: var(--signal);
}

#seek::-moz-range-thumb {
  width: 0.72rem;
  height: 0.72rem;
  border: 0;
  border-radius: 50%;
  background: var(--signal);
}

.next-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.next-toggle svg {
  width: 1.35rem;
}

.source-link {
  align-self: stretch;
  padding: 0 0.45rem;
}

#soundcloud-player {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  opacity: 0.01;
  pointer-events: none;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 1.6rem;
  left: var(--gutter);
  display: flex;
  gap: 0.8rem;
  align-items: center;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.scroll-cue svg {
  width: 0.8rem;
  transition: transform 180ms var(--ease-out);
}

.picks {
  position: relative;
  min-height: 220svh;
  background: var(--ink);
  color: var(--paper-bright);
}

.picks-pin {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100svh;
  padding: clamp(3.5rem, 7vw, 7rem) var(--gutter);
  grid-template-columns: minmax(13rem, 0.75fr) minmax(20rem, 1fr) minmax(18rem, 0.9fr);
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: center;
  overflow: hidden;
}

.picks-copy h2,
.catalog h2,
.about h2 {
  font-size: clamp(4rem, 9vw, 9.5rem);
}

.picks-copy > p,
.catalog-head > p {
  max-width: 29ch;
  margin: 1.5rem 0 0;
  color: rgb(247 244 234 / 0.68);
  font-size: clamp(1rem, 1.2vw, 1.3rem);
}

.active-track-copy {
  display: grid;
  margin-top: clamp(4rem, 12vh, 8rem);
  gap: 0.4rem;
}

.active-track-copy > span {
  color: var(--signal);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.active-track-copy strong {
  max-width: 13ch;
  font-family: "Gurty Display", sans-serif;
  font-size: clamp(2.2rem, 4vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.art-stage {
  position: relative;
  width: min(100%, 39rem);
  aspect-ratio: 1;
  perspective: 75rem;
}

.art-shadow,
.art-frame {
  position: absolute;
  inset: 0;
}

.art-shadow {
  transform: translate(1.5rem, 2rem) rotate(3deg);
  border: 1px solid rgb(247 244 234 / 0.3);
}

.art-frame {
  width: 100%;
  height: 100%;
  transform: translate3d(12%, 4%, -80px) rotateY(-12deg) rotate(4deg);
  object-fit: cover;
  opacity: 0;
  box-shadow: 0 2.2rem 5rem rgb(0 0 0 / 0.42);
  transition: transform 700ms var(--ease-in-out), opacity 350ms var(--ease-out), filter 500ms var(--ease-out);
  filter: grayscale(0.8) contrast(1.1);
  will-change: transform, opacity;
}

.art-frame.is-current {
  z-index: 2;
  transform: translate3d(0, 0, 0) rotateY(0deg) rotate(-1.25deg);
  opacity: 1;
  filter: grayscale(0) contrast(1.02);
}

.art-frame.is-previous {
  z-index: 1;
  transform: translate3d(-10%, -3%, -50px) rotateY(11deg) rotate(-5deg);
  opacity: 0;
}

.art-registration {
  position: absolute;
  z-index: 4;
  inset: -1.1rem;
  pointer-events: none;
}

.art-registration i {
  position: absolute;
  width: 0.65rem;
  height: 0.65rem;
  border: 1px solid var(--signal);
  border-radius: 50%;
}

.art-registration i:nth-child(1) { top: 0; left: 0; }
.art-registration i:nth-child(2) { top: 0; right: 0; }
.art-registration i:nth-child(3) { right: 0; bottom: 0; }
.art-registration i:nth-child(4) { bottom: 0; left: 0; }

.track-list,
.release-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.track-list {
  border-top: 1px solid rgb(247 244 234 / 0.4);
}

.track-list li {
  border-bottom: 1px solid rgb(247 244 234 / 0.4);
}

.track-button {
  display: grid;
  width: 100%;
  min-height: 5.2rem;
  padding: 0.9rem 0;
  grid-template-columns: 2.1rem 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  border: 0;
  background: transparent;
  color: rgb(247 244 234 / 0.55);
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms var(--ease-out);
}

.track-number,
.track-kind {
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.track-number {
  grid-row: 1 / 3;
  align-self: start;
  padding-top: 0.35rem;
  font-variant-numeric: tabular-nums;
}

.track-name {
  font-family: "Gurty Display", sans-serif;
  font-size: clamp(1.55rem, 2.3vw, 2.7rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.track-kind {
  margin-top: 0.24rem;
}

.track-button.is-active {
  color: var(--paper-bright);
}

.track-button.is-active .track-number,
.track-button.is-active .track-kind {
  color: var(--signal);
}

.scroll-track {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  pointer-events: none;
}

.catalog {
  padding: clamp(5rem, 11vw, 11rem) var(--gutter);
  background: var(--blue);
  color: var(--paper-bright);
}

.catalog-head {
  display: grid;
  margin-bottom: clamp(5rem, 10vw, 10rem);
  grid-template-columns: 1.45fr 0.55fr;
  gap: 4rem;
  align-items: end;
}

.release-list {
  border-top: 1px solid rgb(247 244 234 / 0.55);
}

.release-list li {
  display: grid;
  grid-template-columns: clamp(4rem, 8vw, 8rem) 1fr;
  border-bottom: 1px solid rgb(247 244 234 / 0.55);
  align-items: stretch;
}

.release-list time {
  padding: 1.65rem 1rem 1.65rem 0;
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.release-list a {
  display: grid;
  min-height: 7.5rem;
  padding: 1.25rem 0 1.25rem clamp(1rem, 2.4vw, 2.5rem);
  grid-template-columns: 1fr auto 3.5rem;
  gap: 1rem;
  align-items: center;
  border-left: 1px solid rgb(247 244 234 / 0.55);
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.release-list a > span:first-child {
  font-family: "Gurty Display", sans-serif;
  font-size: clamp(2.25rem, 5.2vw, 6rem);
  line-height: 0.86;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.release-list a > span:nth-child(2) {
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.release-list svg {
  width: 2rem;
  transition: transform 180ms var(--ease-out);
}

.release-now {
  color: var(--paper);
}

.about {
  display: grid;
  min-height: 100svh;
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  grid-template-columns: minmax(18rem, 0.85fr) minmax(20rem, 1.15fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  background: var(--paper-bright);
}

.about-portrait {
  position: relative;
  background: var(--ink);
  box-shadow: 0 2rem 5rem rgb(23 23 23 / 0.2);
}

.about-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
}

.about-portrait span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.55rem;
  background: var(--paper-bright);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-copy > p {
  max-width: 24ch;
  margin: clamp(2rem, 5vw, 4.5rem) 0;
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  line-height: 1.22;
}

.about-copy nav {
  display: flex;
  max-width: 37rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--ink);
}

.about-copy nav a {
  display: inline-flex;
  min-height: 3.4rem;
  padding: 0 1.2rem;
  align-items: center;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

footer {
  display: grid;
  min-height: 11rem;
  padding: 2.5rem var(--gutter);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  background: var(--signal);
  color: var(--ink);
}

footer p,
footer > a:last-child {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer > a:last-child {
  justify-self: end;
}

@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover::after,
  .text-link:hover::after,
  .source-link:hover::after {
    transform: scaleX(1);
  }

  .play-toggle:hover,
  .next-toggle:hover {
    background: var(--signal);
    color: var(--ink);
  }

  .play-toggle:active,
  .next-toggle:active {
    transform: scale(0.96);
  }

  .scroll-cue:hover svg {
    transform: translateY(0.3rem);
  }

  .track-button:hover {
    transform: translateX(0.4rem);
    color: var(--paper-bright);
  }

  .release-list a:hover {
    background: var(--paper-bright);
    color: var(--blue);
  }

  .release-list a:hover svg {
    transform: translateX(0.4rem);
  }

  .about-copy nav a:hover {
    background: var(--ink);
    color: var(--paper-bright);
  }
}

@media (max-width: 68rem) {
  .hero {
    grid-template-columns: minmax(15rem, 0.9fr) minmax(17rem, 1.1fr);
  }

  .hero::after {
    background: linear-gradient(90deg, transparent calc(50% - 0.5px), var(--rule) 50%, transparent calc(50% + 0.5px));
  }

  .hero-copy {
    padding-top: clamp(12rem, 18vh, 16rem);
  }

  .cover-sheet {
    display: none;
  }

  .player {
    grid-column: 1 / -1;
  }

  .picks-pin {
    grid-template-columns: minmax(15rem, 0.9fr) minmax(20rem, 1.1fr);
  }

  .track-list {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .track-list li:nth-child(odd) {
    border-right: 1px solid rgb(247 244 234 / 0.4);
  }
}

@media (max-width: 47.5rem) {
  :root {
    --gutter: 1.15rem;
    --nav-height: 4rem;
  }

  body::before {
    border-width: 0.25rem;
  }

  .site-nav {
    position: absolute;
    grid-template-columns: 1fr auto;
  }

  .nav-place,
  .nav-links a:nth-child(2),
  .nav-links a:nth-child(3) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 1.8rem);
    padding-bottom: 1.2rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem;
  }

  .hero::after {
    background: none;
  }

  .hero-word {
    position: relative;
    top: auto;
    left: auto;
    grid-row: 1;
    font-size: clamp(7rem, 35vw, 10rem);
    line-height: 0.7;
  }

  .hero-copy {
    grid-row: 2;
    padding-top: 0;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 13.8vw, 4.35rem);
  }

  .hero-copy > p {
    margin: 1rem 0 1.3rem;
  }

  .portrait-sheet {
    grid-row: 3;
    width: calc(100% - 2rem);
    justify-self: end;
    transform: rotate(1.4deg);
  }

  .portrait-crop {
    min-height: 14.5rem;
  }

  .portrait-crop img {
    transform: scale(1.9) translateY(3%);
  }

  .player {
    position: relative;
    grid-row: 4;
    grid-column: 1;
    min-height: 0;
    padding: 0.8rem;
    grid-template-columns: 3.75rem 1fr 3.75rem;
    grid-template-rows: auto auto;
    gap: 0.75rem;
  }

  .play-toggle,
  .next-toggle {
    width: 3.75rem;
    height: 3.75rem;
  }

  .player-copy strong {
    font-size: 1.75rem;
  }

  .player-time {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .source-link {
    position: absolute;
    right: 0.85rem;
    bottom: 0.7rem;
    min-height: 2rem;
  }

  .scroll-cue {
    display: none;
  }

  .picks {
    min-height: auto;
  }

  .picks-pin {
    position: relative;
    min-height: auto;
    padding: 5rem var(--gutter);
    grid-template-columns: 1fr;
    gap: 3rem;
    overflow: visible;
  }

  .picks-copy h2,
  .catalog h2,
  .about h2 {
    font-size: clamp(3.5rem, 16vw, 5.2rem);
  }

  .active-track-copy {
    margin-top: 3rem;
  }

  .art-stage {
    width: calc(100% - 1.4rem);
    justify-self: center;
  }

  .track-list {
    display: block;
    grid-column: auto;
  }

  .track-list li:nth-child(odd) {
    border-right: 0;
  }

  .track-button {
    min-height: 4.8rem;
  }

  .scroll-track {
    display: none;
  }

  .catalog {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .catalog-head {
    display: block;
    margin-bottom: 4rem;
  }

  .catalog-head > p {
    color: rgb(247 244 234 / 0.78);
  }

  .release-list li {
    grid-template-columns: 3.5rem 1fr;
  }

  .release-list a {
    min-height: 6.2rem;
    padding-left: 1rem;
    grid-template-columns: 1fr 2rem;
  }

  .release-list a > span:first-child {
    font-size: clamp(2.1rem, 10vw, 3.3rem);
  }

  .release-list a > span:nth-child(2) {
    display: none;
  }

  .release-list svg {
    width: 1.5rem;
  }

  .about {
    min-height: auto;
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
    grid-template-columns: 1fr;
  }

  .about-portrait {
    order: 2;
  }

  .about-copy nav a {
    flex: 1 1 45%;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer p {
    display: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .site-nav {
    animation: enter-down 700ms var(--ease-out) both;
  }

  .hero-word {
    animation: enter-word 900ms 80ms var(--ease-out) both;
  }

  .hero-copy {
    animation: enter-up 700ms 220ms var(--ease-out) both;
  }

  .portrait-sheet {
    animation: enter-portrait 950ms 120ms var(--ease-out) both;
  }

  .cover-sheet {
    animation: enter-cover 950ms 190ms var(--ease-out) both;
  }

  .player {
    animation: enter-up 700ms 360ms var(--ease-out) both;
  }

  @keyframes enter-down {
    from { transform: translateY(-100%); opacity: 0; }
  }

  @keyframes enter-word {
    from { transform: translateY(8%); opacity: 0; }
  }

  @keyframes enter-up {
    from { transform: translateY(1.5rem); opacity: 0; }
  }

  @keyframes enter-portrait {
    from { transform: translateY(calc(clamp(4.8rem, 11vh, 8.5rem) + 2rem)) rotate(-6deg); opacity: 0; }
  }

  @keyframes enter-cover {
    from { transform: translate(-7%, 10%) rotate(8deg); opacity: 0; }
  }
}

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

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

  .picks {
    min-height: auto;
  }

  .picks-pin {
    position: relative;
  }

  .scroll-track {
    display: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-nav {
    background: var(--paper);
    backdrop-filter: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --rule: var(--ink);
  }

  .site-nav {
    background: var(--paper);
  }

  .picks-copy > p,
  .catalog-head > p {
    color: var(--paper-bright);
  }
}
