@font-face {
  font-family: "Anton";
  src: url("../fonts/Anton-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --black: #050505;
  --ink: #0d0d0d;
  --white: #f2f1ed;
  --muted: #b8b7b2;
  --line: rgba(255, 255, 255, 0.2);
  --display: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", "Franklin Gothic Condensed", sans-serif;
  --condensed: "Arial Narrow", "Roboto Condensed", "Franklin Gothic Medium", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 17% 14%, rgba(255, 255, 255, 0.035), transparent 19rem),
    radial-gradient(circle at 76% 56%, rgba(255, 255, 255, 0.025), transparent 24rem),
    var(--black);
  font-family: var(--condensed);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  z-index: 99;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.15;
  background-image:
    repeating-radial-gradient(circle at 18% 32%, transparent 0 1px, rgba(255,255,255,.14) 1px 2px, transparent 2px 5px),
    repeating-linear-gradient(113deg, transparent 0 11px, rgba(255,255,255,.035) 11px 12px);
  background-size: 29px 31px, 71px 67px;
  mix-blend-mode: screen;
}

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font: inherit;
}

a {
  color: 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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: -5rem;
  padding: 0.8rem 1rem;
  color: var(--black);
  background: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 50%;
  width: min(100% - 3rem, 1380px);
  height: 88px;
  border-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}

.mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 3rem;
  line-height: 1;
  transition: transform .2s ease;
}

.mark:hover {
  transform: rotate(-8deg) scale(1.06);
}

.primary-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 4vw, 4rem);
}

.primary-nav a,
.footer-nav a {
  position: relative;
  padding: 0.55rem 0;
  color: var(--white);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.hero {
  isolation: isolate;
  position: relative;
  min-height: 1020px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.25);
}

.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.6) 49%, rgba(0,0,0,.13) 72%, rgba(0,0,0,.76) 100%),
    radial-gradient(circle at 67% 36%, #24211f 0, #0c0b0b 34%, #000 72%);
}

.hero::after {
  position: absolute;
  z-index: 1;
  top: 87px;
  left: 50%;
  width: min(100% - 3rem, 1380px);
  height: 1px;
  content: "";
  pointer-events: none;
  background: rgba(255,255,255,.11);
  transform: translateX(-50%);
}

.hero-star {
  position: absolute;
  z-index: -1;
  top: 4%;
  right: -5%;
  width: min(71vw, 1020px);
  aspect-ratio: 1;
  background: #e9e7e1;
  clip-path: polygon(50% 0, 61% 36%, 100% 36%, 68% 58%, 80% 96%, 50% 73%, 19% 96%, 31% 58%, 0 36%, 39% 36%);
  filter: drop-shadow(0 0 0.35rem rgba(255,255,255,.25));
  opacity: .95;
}

.hero-star::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(17deg, transparent 0 15px, rgba(0,0,0,.045) 15px 16px),
    radial-gradient(circle, rgba(0,0,0,.1) 0 1px, transparent 1.5px);
  background-size: auto, 13px 15px;
}

.hero-grain {
  position: absolute;
  z-index: 7;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,.48) 0 28%, transparent 55% 77%, rgba(0,0,0,.45));
}

.hero-title {
  position: absolute;
  z-index: 9;
  top: 122px;
  left: max(3rem, calc((100% - 1380px) / 2));
  width: 47%;
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(7rem, 13.9vw, 11.2rem);
  font-weight: 900;
  letter-spacing: .018em;
  line-height: .88;
  text-transform: uppercase;
  text-shadow: 0 .025em 0 rgba(0,0,0,.9);
}

.hero-title span {
  display: block;
}

.hero-title span + span {
  margin-top: .045em;
}

.hero-art {
  position: absolute;
  z-index: 2;
  right: max(-11rem, calc((100% - 1660px) / 2));
  bottom: 63px;
  width: min(78vw, 1250px);
  max-width: none;
  object-fit: contain;
  filter: saturate(.5) contrast(1.08) brightness(.94);
}

.hero-tagline {
  position: absolute;
  z-index: 9;
  left: max(3.4rem, calc((100% - 1360px) / 2));
  bottom: 228px;
  width: 282px;
  margin: 0;
  transform: translateY(1rem);
  padding: 1rem 1.3rem .9rem;
  border: 2px solid var(--white);
  color: var(--white);
  background: rgba(0,0,0,.77);
  font-family: var(--display);
  font-size: 2.35rem;
  letter-spacing: .02em;
  line-height: .97;
  text-transform: uppercase;
  box-shadow: 12px 12px 0 rgba(0,0,0,.36);
}

.audio-player {
  position: absolute;
  z-index: 12;
  left: 50%;
  bottom: 35px;
  width: min(calc(100% - 6rem), 1250px);
  min-height: 135px;
  padding: 1rem 1.6rem;
  border: 2px solid var(--white);
  border-radius: 15px;
  display: grid;
  grid-template-columns: 92px 1fr 64px;
  gap: 1.4rem;
  align-items: center;
  background: rgba(2,2,2,.94);
  box-shadow: 0 18px 50px rgba(0,0,0,.65);
  transform: translateX(-50%);
}

.play-button {
  width: 80px;
  height: 80px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--white);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}

.play-button:hover {
  transform: scale(1.05);
}

.play-button:active {
  transform: scale(.97);
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 27px solid var(--black);
}

.play-button.is-playing .play-icon {
  width: 24px;
  height: 34px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, var(--black) 0 35%, transparent 35% 65%, var(--black) 65% 100%);
}

.player-main {
  min-width: 0;
}

.player-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.player-heading p {
  margin: 0 0 .2rem;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: .035em;
  line-height: 1;
  text-transform: uppercase;
}

.player-status {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.waveform-shell {
  position: relative;
  height: 35px;
}

.waveform {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  overflow: hidden;
  pointer-events: none;
}

.waveform span {
  flex: 1 1 2px;
  min-width: 1px;
  height: var(--bar-height);
  max-height: 28px;
  background: linear-gradient(90deg, var(--white) 0 var(--played), #5e5e5e var(--played) 100%);
  border-radius: 1px;
}

.seek {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.seek::-webkit-slider-runnable-track {
  height: 2px;
  background: transparent;
}

.seek::-webkit-slider-thumb {
  width: 11px;
  height: 11px;
  margin-top: -4.5px;
  border: 2px solid var(--black);
  border-radius: 50%;
  appearance: none;
  background: var(--white);
  opacity: 0;
  transition: opacity .18s ease;
}

.seek::-moz-range-track {
  height: 2px;
  background: transparent;
}

.seek::-moz-range-thumb {
  width: 8px;
  height: 8px;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--white);
  opacity: 0;
}

.waveform-shell:hover .seek::-webkit-slider-thumb,
.seek:focus-visible::-webkit-slider-thumb,
.waveform-shell:hover .seek::-moz-range-thumb,
.seek:focus-visible::-moz-range-thumb {
  opacity: 1;
}

.time-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: .1em;
}

.volume-button {
  position: relative;
  width: 52px;
  height: 52px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.speaker,
.speaker::before,
.speaker::after {
  position: absolute;
  display: block;
  content: "";
}

.speaker {
  top: 21px;
  left: 12px;
  width: 12px;
  height: 14px;
  background: currentColor;
}

.speaker::before {
  top: -5px;
  left: 8px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 15px solid currentColor;
  transform: rotate(180deg);
}

.speaker::after {
  top: -7px;
  left: 24px;
  width: 15px;
  height: 25px;
  border-right: 3px solid currentColor;
  border-radius: 50%;
}

.volume-button.is-muted::after {
  position: absolute;
  z-index: 3;
  top: 9px;
  right: 7px;
  width: 3px;
  height: 37px;
  content: "";
  background: var(--white);
  transform: rotate(45deg);
}

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

.checker-band {
  height: 62px;
  border-block: 8px solid var(--black);
  background:
    conic-gradient(from 90deg, var(--black) 25%, var(--white) 0 50%, var(--black) 0 75%, var(--white) 0) 0 0 / 44px 44px;
}

.lyrics-section {
  position: relative;
  min-height: 930px;
  padding: 6rem max(2rem, calc((100% - 1380px) / 2)) 7rem;
  overflow: hidden;
  background:
    linear-gradient(164deg, transparent 0 22%, rgba(255,255,255,.08) 22% 33%, transparent 33% 64%, rgba(255,255,255,.045) 64% 71%, transparent 71%),
    radial-gradient(ellipse at center, #171717 0, #060606 69%);
}

.lyrics-section::before,
.lyrics-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.lyrics-section::before {
  top: 15%;
  left: -7%;
  width: 114%;
  height: 14px;
  border-block: 3px solid var(--white);
  opacity: .55;
  transform: rotate(-2.6deg);
}

.lyrics-section::after {
  right: -10%;
  bottom: 15%;
  width: 40%;
  height: 72px;
  background: repeating-linear-gradient(135deg, var(--white) 0 9px, transparent 9px 18px);
  opacity: .5;
  transform: rotate(-7deg);
}

.section-kicker,
.lyrics-section > h2 {
  position: relative;
  z-index: 2;
  text-align: center;
  text-transform: uppercase;
}

.section-kicker {
  margin-bottom: .35rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .38em;
}

.lyrics-section > h2 {
  margin: 0 0 3.5rem;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: .025em;
  line-height: 1;
}

.lyric-collage {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1350px;
  min-height: 680px;
  margin: 0 auto;
}

.lyric-card {
  position: absolute;
  margin: 0;
  padding: 2rem 2rem 1.75rem;
  border: 2px solid rgba(255,255,255,.85);
  box-shadow: 10px 16px 0 rgba(0,0,0,.32);
}

.lyric-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .2;
  background: repeating-linear-gradient(168deg, transparent 0 7px, rgba(0,0,0,.38) 7px 8px);
}

.lyric-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  letter-spacing: .015em;
  line-height: .96;
  text-transform: uppercase;
}

.card-dark {
  color: var(--white);
  background: #0b0b0b;
}

.card-light {
  color: var(--black);
  background: var(--white);
}

.quote-mark {
  position: absolute;
  z-index: 3;
  top: -2rem;
  left: -1.2rem;
  font-family: Georgia, serif;
  font-size: 8.5rem;
  font-weight: 900;
  line-height: 1;
}

.quote-end {
  top: auto;
  right: .5rem;
  bottom: -3.7rem;
  left: auto;
}

.mini-star {
  position: absolute;
  right: 1.5rem;
  bottom: .6rem;
  font-size: 5rem;
}

.card-one {
  top: 0;
  left: 2%;
  width: 45%;
  transform: rotate(-2.4deg);
}

.card-two {
  top: 2%;
  right: 1.5%;
  width: 45%;
  transform: rotate(3deg);
}

.card-three {
  top: 34%;
  left: 0;
  width: 43%;
  padding-right: 7rem;
  transform: rotate(.7deg);
}

.card-four {
  top: 35%;
  right: 0;
  width: 43%;
  transform: rotate(-1.2deg);
}

.card-five {
  bottom: 1%;
  left: 1.5%;
  width: 45%;
  transform: rotate(-2deg);
}

.card-six {
  right: 1.5%;
  bottom: 1%;
  width: 46%;
  transform: rotate(2deg);
}

.center-badge {
  position: absolute;
  z-index: 5;
  top: 44%;
  left: 50%;
  width: 190px;
  aspect-ratio: 1;
  border: 3px solid var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--black);
  box-shadow: 0 0 0 11px var(--black), 0 0 0 13px var(--white);
  transform: translate(-50%, -50%);
}

.center-badge span {
  font-size: 8.5rem;
  line-height: 1;
}

.about-section {
  position: relative;
  min-height: 760px;
  border-top: 2px solid var(--white);
  display: grid;
  grid-template-columns: minmax(350px, .75fr) 1.35fr;
  overflow: hidden;
  background: #020202;
}

.about-copy {
  position: relative;
  z-index: 4;
  padding: 5.5rem 2rem 4rem max(3rem, calc((100vw - 1380px) / 2));
  background: linear-gradient(90deg, #020202 60%, transparent);
}

.about-copy h2 {
  margin: .5rem 0 1.6rem;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(3.7rem, 5.5vw, 5.2rem);
  letter-spacing: .022em;
  line-height: .98;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-star {
  display: block;
  font-size: clamp(8rem, 15vw, 13rem);
  line-height: .75;
}

.about-copy p {
  max-width: 470px;
  margin: 0 0 0 auto;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.55;
  text-align: right;
  text-transform: uppercase;
}

.about-art-wrap {
  position: relative;
  min-width: 0;
}

.about-art-wrap::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #020202 0, transparent 34%, rgba(0,0,0,.05) 74%, rgba(0,0,0,.5));
}

.about-art-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  max-width: none;
  height: 116%;
  object-fit: cover;
  object-position: 49% 77%;
  filter: grayscale(1) contrast(1.22) brightness(.76);
  transform: translate(-50%, -50%);
}

.hazard-band {
  height: 52px;
  border-block: 3px solid var(--white);
  background: repeating-linear-gradient(135deg, var(--white) 0 23px, var(--black) 23px 46px);
}

.site-footer {
  position: relative;
  min-height: 190px;
  padding: 2.3rem max(2rem, calc((100% - 1380px) / 2)) 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem 3rem;
  background: var(--black);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-star {
  padding-right: 1.6rem;
  border-right: 1px solid rgba(255,255,255,.55);
  font-size: 4.4rem;
  line-height: 1;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .hero {
    min-height: 940px;
  }

  .hero-title {
    font-size: clamp(6.5rem, 15vw, 10rem);
  }

  .hero-art {
    right: -19rem;
    width: 1150px;
  }

  .hero-tagline {
    bottom: 215px;
    width: 240px;
    font-size: 2rem;
  }

  .lyrics-section {
    min-height: 870px;
  }

  .lyric-card p {
    font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  }

  .center-badge {
    width: 150px;
  }

  .center-badge span {
    font-size: 6.7rem;
  }

  .about-section {
    min-height: 650px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    width: calc(100% - 2rem);
    height: 72px;
  }

  .hero::after {
    top: 71px;
    width: calc(100% - 2rem);
  }

  .mark {
    width: 48px;
    height: 48px;
    font-size: 2.5rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    padding: 11px;
    border: 1px solid rgba(255,255,255,.45);
    display: grid;
    align-content: center;
    gap: 5px;
    color: var(--white);
    background: rgba(0,0,0,.82);
  }

  .menu-toggle > span:not(.sr-only) {
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: 60px;
    right: 0;
    width: min(290px, calc(100vw - 2rem));
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--white);
    display: grid;
    gap: .5rem;
    background: rgba(0,0,0,.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-nav a {
    padding: .8rem 0;
  }

  .hero {
    min-height: 990px;
  }

  .hero::before {
    background: radial-gradient(circle at 80% 37%, #1f1f1f 0, #050505 45%, #000 74%);
  }

  .hero-star {
    z-index: 0;
    top: 134px;
    right: -43vw;
    width: 126vw;
    opacity: .88;
  }

  .hero-grain {
    z-index: 4;
    background: linear-gradient(90deg, rgba(0,0,0,.42), transparent 85%);
  }

  .hero-title {
    z-index: 9;
    top: 128px;
    left: 1.1rem;
    width: calc(100% - 2.2rem);
    font-size: clamp(5.8rem, 27vw, 9.2rem);
    letter-spacing: .018em;
    line-height: .88;
  }

  .hero-title span:nth-child(2) {
    color: #fff;
    text-shadow: 0 .025em 0 rgba(0,0,0,.9);
  }

  .hero-art {
    display: none;
  }

  .hero-tagline {
    left: 1.2rem;
    bottom: 261px;
    width: 220px;
    padding: .85rem 1rem;
    font-size: 1.78rem;
  }

  .audio-player {
    bottom: 25px;
    width: calc(100% - 2rem);
    min-height: 198px;
    padding: 1rem;
    grid-template-columns: 66px 1fr 44px;
    grid-template-rows: auto auto;
    gap: .75rem .9rem;
    border-radius: 12px;
  }

  .play-button {
    width: 62px;
    height: 62px;
  }

  .play-icon {
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 21px;
  }

  .play-button.is-playing .play-icon {
    width: 20px;
    height: 28px;
  }

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

  .player-heading {
    position: absolute;
    top: 1.2rem;
    left: 6rem;
    right: 4.7rem;
    display: block;
  }

  .player-heading p {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
  }

  .player-status {
    display: block;
    margin-top: .25rem;
  }

  .volume-button {
    grid-column: 3;
    grid-row: 1;
    width: 42px;
    height: 46px;
  }

  .speaker {
    top: 18px;
    left: 4px;
  }

  .checker-band {
    height: 52px;
    background-size: 36px 36px;
  }

  .lyrics-section {
    min-height: 0;
    padding: 4.5rem 1rem 5rem;
  }

  .lyrics-section::before {
    top: 11%;
  }

  .lyrics-section > h2 {
    margin-bottom: 3rem;
  }

  .lyric-collage {
    min-height: 0;
    display: grid;
    gap: 1.25rem;
  }

  .lyric-card {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 160px;
    padding: 1.65rem 1.4rem;
    display: flex;
    align-items: center;
  }

  .lyric-card p {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .card-one,
  .card-three,
  .card-five {
    transform: rotate(-1.2deg);
  }

  .card-two,
  .card-four,
  .card-six {
    transform: rotate(1.2deg);
  }

  .card-three {
    padding-right: 6rem;
  }

  .center-badge {
    position: relative;
    inset: auto;
    grid-row: 4;
    width: 130px;
    margin: .75rem auto;
    transform: none;
  }

  .center-badge span {
    font-size: 5.7rem;
  }

  .quote-mark {
    left: -.4rem;
  }

  .quote-end {
    right: .2rem;
    left: auto;
  }

  .about-section {
    min-height: 720px;
    display: block;
  }

  .about-copy {
    height: 100%;
    min-height: 720px;
    padding: 5rem 1.5rem;
    background: linear-gradient(90deg, rgba(0,0,0,.98), rgba(0,0,0,.72));
  }

  .about-copy h2 {
    font-size: clamp(3.3rem, 14.5vw, 4.8rem);
    letter-spacing: .022em;
    line-height: 1;
    text-align: left;
  }

  .about-copy p {
    max-width: 390px;
    margin: 0;
    text-align: left;
  }

  .about-art-wrap {
    display: none;
  }

  .site-footer {
    padding: 2.5rem 1.5rem 1.8rem;
    display: block;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
    margin-bottom: 2rem;
  }

  .footer-star {
    font-size: 3.7rem;
  }

  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem 1.6rem;
  }

  .footer-nav a {
    font-size: .72rem;
  }

  .copyright {
    margin-top: 2rem;
    line-height: 1.6;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 900px;
  }

  .hero-title {
    top: 118px;
    font-size: 24vw;
  }

  .hero-tagline {
    bottom: 250px;
    width: 188px;
    font-size: 1.5rem;
  }

  .audio-player {
    min-height: 188px;
  }

  .player-heading p {
    font-size: 1.25rem;
  }

  .player-status {
    font-size: .62rem;
  }

  .waveform {
    gap: 1px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
