:root {
  color-scheme: dark;
  --ash: #070806;
  --ash-deep: #020302;
  --smoke: #d9d2bf;
  --bone: #f5edd6;
  --muted: rgba(245, 237, 214, 0.66);
  --line: rgba(217, 210, 191, 0.24);
  --line-strong: rgba(217, 210, 191, 0.48);
  --ember: #c9873f;
  --teal: #8fb9ad;
  --panel: rgba(9, 10, 8, 0.72);
  --panel-strong: rgba(14, 15, 12, 0.88);
  --shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.52);
  --font-sans: "Avenir Next", "Segoe UI", Arial, sans-serif;
  background: var(--ash);
  color: var(--bone);
  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  min-height: 100dvh;
  background: var(--ash);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #070806 0%, #11120f 44%, #050604 100%),
    var(--ash);
  color: var(--bone);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

body,
button,
input {
  font: 500 1rem/1.5 var(--font-sans);
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

img,
video {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 40;
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(5, 6, 4, 0.94);
  color: var(--bone);
  transform: translateY(-220%);
}

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

.asset-guarded {
  -webkit-user-drag: none;
  user-select: none;
}

.smoke-page {
  min-height: 100vh;
  min-height: 100dvh;
}

.smoke-hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  min-height: 92dvh;
  overflow: hidden;
  padding:
    max(1rem, env(safe-area-inset-top))
    max(1rem, env(safe-area-inset-right))
    2rem
    max(1rem, env(safe-area-inset-left));
  isolation: isolate;
}

.smoke-hero::before,
.smoke-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.smoke-hero::before {
  background:
    linear-gradient(90deg, rgba(2, 3, 2, 0.86), rgba(7, 8, 6, 0.42) 52%, rgba(2, 3, 2, 0.66)),
    linear-gradient(180deg, rgba(2, 3, 2, 0.08), rgba(2, 3, 2, 0.78));
}

.smoke-hero::after {
  background:
    radial-gradient(circle at 70% 30%, rgba(201, 135, 63, 0.22), transparent 26rem),
    linear-gradient(180deg, transparent 58%, var(--ash) 100%);
  mix-blend-mode: screen;
  opacity: 0.58;
}

.smoke-hero-art {
  position: absolute;
  inset: -5vh -5vw;
  z-index: -2;
}

.smoke-hero-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.08) brightness(0.72);
}

.hero-shell {
  display: grid;
  align-items: end;
  align-self: end;
  grid-template-columns: minmax(0, 1fr) clamp(20rem, 31vw, 24rem);
  gap: clamp(2.25rem, 4vw, 3.25rem);
  width: min(100%, 72rem);
  margin: 0 auto;
}

.hero-copy {
  container-type: inline-size;
  display: grid;
  justify-items: start;
  width: 100%;
  min-width: 0;
  max-width: 40rem;
  text-shadow: 0 0.6rem 1.8rem rgba(0, 0, 0, 0.72);
}

.release-kicker,
.release-artist,
.section-heading p,
.track-number,
.format-status {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.release-kicker,
.section-heading p,
.track-number,
.format-status {
  color: var(--ember);
}

.release-artist {
  margin-top: 0.3rem;
  color: var(--bone);
  font-size: 1.08rem;
}

.release-title-inline {
  text-transform: none;
  white-space: nowrap;
}

.hero-copy h1 {
  max-width: 100%;
  margin: 0.65rem 0 0;
  color: var(--bone);
  font-size: clamp(2.45rem, 11cqw, 5rem);
  font-weight: 850;
  line-height: 0.9;
  overflow-wrap: normal;
  white-space: nowrap;
}

.release-standfirst {
  width: 100%;
  max-width: 34rem;
  margin: 1.2rem 0 0;
  color: rgba(245, 237, 214, 0.84);
  font-size: 1.12rem;
  overflow-wrap: break-word;
}

.hero-actions {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.45rem;
}

.primary-link,
.track-link,
.record-controls button,
.icon-action {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 8, 6, 0.68);
  color: var(--bone);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.primary-link,
.track-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.72rem 1rem;
  font-weight: 850;
}

.primary-link {
  min-width: 9rem;
  background: rgba(245, 237, 214, 0.94);
  color: #15120d;
}

.icon-action {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  cursor: pointer;
  place-items: center;
}

.icon-action svg {
  width: 1.26rem;
  height: 1.26rem;
}

.icon-action path,
.preview-button path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.primary-link:hover,
.primary-link:focus-visible,
.track-link:hover,
.track-link:focus-visible,
.record-controls button:hover,
.record-controls button:focus-visible,
.icon-action:hover,
.icon-action:focus-visible {
  outline: none;
  border-color: var(--line-strong);
  box-shadow:
    0 0.9rem 2.1rem rgba(0, 0, 0, 0.3),
    0 0 1.4rem rgba(143, 185, 173, 0.18);
  transform: translateY(-1px);
}

.icon-action:disabled {
  cursor: wait;
  opacity: 0.68;
}

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

.hero-object {
  position: relative;
  width: min(100%, 25rem);
  aspect-ratio: 1;
  justify-self: end;
  border: 1px solid rgba(245, 237, 214, 0.32);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-object::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.hero-object img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-heading {
  display: grid;
  gap: 0.45rem;
  width: min(100%, 72rem);
  margin: 0 auto 1.3rem;
}

.section-heading h2,
.side-b-copy h2 {
  margin: 0;
  color: var(--bone);
  font-size: 2.25rem;
  line-height: 1.02;
}

.album-section,
.track-run,
.package-section,
.formats-section,
.side-b-section {
  padding: 4rem max(1rem, env(safe-area-inset-right)) 4.2rem max(1rem, env(safe-area-inset-left));
}

.album-section,
.track-run {
  background:
    linear-gradient(180deg, var(--ash) 0%, #11120f 100%);
}

.album-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(17rem, 25rem) minmax(0, 1fr);
  gap: 1.6rem;
  width: min(100%, 72rem);
  margin: 0 auto;
}

.album-layout .bandcamp-embed-wrap {
  justify-self: start;
}

.album-actions-panel {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-width: 0;
  padding-top: 0.2rem;
}

.album-actions-panel h3 {
  margin: 0;
  color: var(--bone);
  font-size: 2rem;
  line-height: 1.05;
}

.album-actions-panel > p:not(.release-kicker) {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
}

.release-action-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
  margin-top: 0.1rem;
}

.release-action-card {
  display: grid;
  flex: 0 0 4.85rem;
  place-items: center;
  min-width: 4.85rem;
  min-height: 4.85rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 19, 16, 0.72);
  color: var(--bone);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 1rem 2.7rem rgba(0, 0, 0, 0.2);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.release-action-card:hover,
.release-action-card:focus-visible {
  outline: none;
  border-color: var(--line-strong);
  background: rgba(25, 27, 22, 0.82);
  box-shadow:
    0 0.9rem 2.1rem rgba(0, 0, 0, 0.3),
    0 0 1.2rem rgba(143, 185, 173, 0.14);
  transform: translateY(-1px);
}

.release-action-logo {
  display: block;
  width: 2.65rem;
  height: 2.65rem;
  object-fit: contain;
}

.release-action-logo-wide {
  width: 3.1rem;
  height: 1.86rem;
  margin-block: 0;
}

.release-action-logo-app {
  border-radius: 0.54rem;
  box-shadow: 0 0.45rem 1.2rem rgba(0, 0, 0, 0.22);
}

.release-action-card h4 {
  margin: 0;
  color: var(--bone);
  font-size: 1.12rem;
  line-height: 1.1;
}

.release-action-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.release-action-card-muted {
  background: rgba(11, 12, 10, 0.62);
}

.release-action-card.is-presaved {
  border-color: rgba(143, 185, 173, 0.52);
  background: rgba(22, 37, 33, 0.62);
}

.release-action-card.is-presaved > span {
  color: var(--teal);
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(100%, 72rem);
  margin: 0 auto;
}

.track-card,
.format-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 19, 16, 0.72);
  box-shadow: 0 1rem 2.7rem rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.track-card {
  grid-template-rows: auto 1fr auto auto;
  padding: 0.78rem;
}

.track-art,
.track-card picture {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
  overflow: hidden;
}

.track-card picture img {
  width: 100%;
  height: 100%;
}

.track-copy {
  display: grid;
  gap: 0.2rem;
}

.track-copy h3,
.format-card h3,
.record-copy h3 {
  margin: 0;
  color: var(--bone);
  font-size: 1.28rem;
  line-height: 1.1;
}

.track-copy p:last-child,
.format-card p,
.record-copy p,
.side-b-copy p {
  margin: 0;
  color: var(--muted);
}

.preview-block {
  display: grid;
  align-items: center;
  grid-template-columns: 2.35rem minmax(0, 1fr) 2.8rem;
  gap: 0.58rem;
  min-height: 3rem;
  padding: 0.5rem;
  border: 1px solid rgba(217, 210, 191, 0.16);
  border-radius: 8px;
  background: rgba(7, 8, 6, 0.58);
}

.preview-button {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border: 1px solid rgba(245, 237, 214, 0.28);
  border-radius: 50%;
  background: rgba(245, 237, 214, 0.92);
  color: #12100b;
  cursor: pointer;
  place-items: center;
}

.preview-button svg {
  width: 1.05rem;
  height: 1.05rem;
}

.voice-pause-icon,
.preview-block.is-playing .voice-play-icon {
  display: none;
}

.preview-block.is-playing .voice-pause-icon {
  display: block;
}

.voice-waveform {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  min-width: 0;
  height: 1.8rem;
  overflow: hidden;
}

.voice-waveform span {
  flex: 1 1 0.16rem;
  max-width: 0.28rem;
  height: var(--bar-height);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(245, 237, 214, 0.95), rgba(143, 185, 173, 0.52));
}

.preview-block.is-playing .voice-waveform span {
  animation: waveform-listen 1.05s ease-in-out infinite;
}

.preview-block.is-playing .voice-waveform span:nth-child(3n + 1) {
  animation-delay: 0.16s;
}

.preview-block.is-playing .voice-waveform span:nth-child(3n + 2) {
  animation-delay: 0.32s;
}

.voice-note-duration {
  color: var(--muted);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  text-align: right;
}

.voice-note-audio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.track-link {
  width: 100%;
}

.package-section {
  background:
    linear-gradient(180deg, #11120f 0%, #080907 100%);
}

.record-heading {
  margin-bottom: 1.6rem;
}

.record-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 1.6rem;
  width: min(100%, 72rem);
  margin: 0 auto;
}

.record-viewer,
.record-copy {
  min-width: 0;
}

.record-viewer {
  position: relative;
  display: grid;
  gap: 0.8rem;
}

.record-panel {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 32rem;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 48%, rgba(143, 185, 173, 0.16), transparent 12rem),
    linear-gradient(135deg, rgba(245, 237, 214, 0.08), transparent 34%),
    rgba(3, 4, 3, 0.68);
  box-shadow: var(--shadow);
}

.record-panel[hidden] {
  display: none;
}

.record-panel.is-active {
  animation: record-reveal 220ms ease-out both;
}

.record-panel img {
  display: block;
}

.record-panel-jacket {
  justify-items: start;
  padding: 1.2rem;
}

.record-jacket {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 39rem;
  aspect-ratio: 1;
  border-radius: 7px;
  object-fit: contain;
  box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.42);
}

.record-shadow-disc {
  position: absolute;
  z-index: 1;
  width: min(42%, 17rem);
  aspect-ratio: 1;
  border: 1px solid rgba(245, 237, 214, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(245, 237, 214, 0.08) 0 20%, transparent 21% 100%),
    repeating-radial-gradient(circle, rgba(245, 237, 214, 0.08) 0 1px, transparent 1px 8px),
    #050604;
  box-shadow: 0 1.2rem 2.6rem rgba(0, 0, 0, 0.44);
  overflow: hidden;
}

.record-shadow-disc-front {
  right: 8%;
  top: 18%;
  transform: rotate(12deg);
}

.record-shadow-disc-back {
  right: 8%;
  bottom: 16%;
  transform: rotate(-10deg);
}

.record-shadow-disc img {
  width: 45%;
  height: 45%;
  margin: 27.5%;
  border-radius: 50%;
  object-fit: cover;
}

.record-panel-open {
  padding: 1.1rem;
}

.sleeve-spread {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  width: 100%;
}

.sleeve-spread img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(217, 210, 191, 0.18);
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.34);
}

.record-panel-labels {
  justify-items: center;
  padding: 1.5rem;
}

.record-panel-labels .label-row {
  width: min(100%, 38rem);
}

.record-panel-cd,
.record-panel-vinyl {
  padding: 1.1rem;
}

.cd-spread {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 0.54fr);
  align-items: center;
  gap: 0.76rem;
  width: 100%;
}

.cd-spread .cd-cover,
.cd-spread .cd-inside {
  width: 100%;
  height: auto;
  align-self: center;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 1rem 2.2rem rgba(0, 0, 0, 0.3);
}

.cd-spread .cd-cover {
  grid-column: 1;
}

.cd-spread .cd-inside {
  grid-column: 1;
}

.cd-spread .cd-disc {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  height: auto;
  align-self: center;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 1rem 1.8rem rgba(0, 0, 0, 0.42));
}

.vinyl-exploded {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(9rem, 0.52fr);
  align-items: center;
  gap: 0.72rem;
  width: 100%;
}

.cd-spread[data-package-viewer-trigger],
.vinyl-exploded[data-package-viewer-trigger] {
  border-radius: 8px;
  cursor: zoom-in;
}

.cd-spread[data-package-viewer-trigger]:focus-visible,
.vinyl-exploded[data-package-viewer-trigger]:focus-visible {
  outline: 2px solid var(--line-strong);
  outline-offset: 0.28rem;
}

.vinyl-exploded > img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(217, 210, 191, 0.18);
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 1rem 2.2rem rgba(0, 0, 0, 0.3);
}

.vinyl-front {
  grid-column: 1;
  grid-row: 1;
}

.vinyl-back {
  grid-column: 2;
  grid-row: 1;
}

.vinyl-sleeve-left {
  grid-column: 1;
  grid-row: 2;
  transform: rotate(90deg);
}

.vinyl-sleeve-right {
  grid-column: 2;
  grid-row: 2;
  transform: rotate(-90deg);
}

.vinyl-record-stack {
  display: grid;
  align-content: center;
  grid-column: 3;
  grid-row: 1 / span 2;
  gap: 0.75rem;
}

.vinyl-record {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(245, 237, 214, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(245, 237, 214, 0.08) 0 18%, transparent 19% 100%),
    repeating-radial-gradient(circle, rgba(245, 237, 214, 0.08) 0 1px, transparent 1px 7px),
    #050604;
  box-shadow: 0 1rem 2.2rem rgba(0, 0, 0, 0.38);
  overflow: hidden;
  place-items: center;
}

.vinyl-record img {
  display: block;
  width: 44%;
  height: 44%;
  border: 1px solid rgba(217, 210, 191, 0.14);
  border-radius: 50%;
  object-fit: cover;
}

.record-controls {
  display: grid;
  order: -2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}

.record-controls button {
  min-height: 2.55rem;
  padding: 0.58rem 0.52rem;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 850;
}

.record-controls button[aria-selected="true"] {
  border-color: var(--line-strong);
  background: rgba(245, 237, 214, 0.92);
  color: #15120d;
}

.record-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.record-copy h3 {
  font-size: 1.65rem;
}

.record-copy-link {
  gap: 0.58rem;
  justify-self: start;
}

.record-copy-logo {
  display: block;
  width: 1.18rem;
  height: 1.18rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.record-copy-link span {
  min-width: 0;
}

.package-viewer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: auto;
  padding:
    max(4.6rem, env(safe-area-inset-top))
    max(1rem, env(safe-area-inset-right))
    max(1.2rem, env(safe-area-inset-bottom))
    max(1rem, env(safe-area-inset-left));
  background:
    radial-gradient(circle at 50% 45%, rgba(143, 185, 173, 0.18), transparent 36%),
    rgba(3, 4, 3, 0.94);
  opacity: 0;
  transform: scale(0.985);
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.package-viewer[hidden] {
  display: none;
}

.package-viewer.is-visible {
  opacity: 1;
  transform: scale(1);
}

.has-package-viewer-open {
  overflow: hidden;
}

.package-viewer-stage {
  width: min(94vw, 72rem, calc((100dvh - 7rem) * 1.28));
  min-width: min(94vw, 23rem);
}

.package-viewer-stage .cd-spread,
.package-viewer-stage .vinyl-exploded {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(245, 237, 214, 0.24);
  border-radius: 8px;
  background: rgba(7, 8, 6, 0.78);
  box-shadow:
    0 1.6rem 4.2rem rgba(0, 0, 0, 0.62),
    0 0 4rem rgba(143, 185, 173, 0.14);
  cursor: default;
}

.package-viewer-close {
  position: fixed;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  z-index: 1;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(7, 8, 6, 0.82);
  color: var(--bone);
  cursor: pointer;
  place-items: center;
}

.package-viewer-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.package-viewer-close path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.25;
}

.package-viewer-close:hover,
.package-viewer-close:focus-visible {
  outline: none;
  border-color: var(--line-strong);
  box-shadow:
    0 0.7rem 1.5rem rgba(0, 0, 0, 0.32),
    0 0 1.4rem rgba(143, 185, 173, 0.2);
}

.nowrap {
  white-space: nowrap;
}

.label-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.label-row img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(217, 210, 191, 0.2);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.28);
}

.record-track-strip {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.record-track-strip li {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 0.7rem;
  padding: 0.72rem;
  border: 1px solid rgba(217, 210, 191, 0.16);
  border-radius: 8px;
  background: rgba(7, 8, 6, 0.52);
  color: rgba(245, 237, 214, 0.82);
}

.record-track-strip span {
  color: var(--ember);
  font-weight: 850;
  text-transform: uppercase;
}

.side-b-section {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.88fr) minmax(18rem, 0.72fr);
  gap: 2rem;
  width: min(100%, 72rem);
  margin: 0 auto;
}

.side-b-copy {
  display: grid;
  gap: 0.8rem;
}

.teaser-frame {
  position: relative;
  width: min(100%, 22rem);
  aspect-ratio: 9 / 16;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #020302;
  box-shadow: var(--shadow);
}

.teaser-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.formats-section {
  background:
    linear-gradient(180deg, #080907 0%, #050604 100%);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(100%, 72rem);
  margin: 0 auto;
}

.format-card {
  min-height: 13rem;
  padding: 1rem;
}

.format-card p {
  min-height: 4.5rem;
}

.format-status {
  align-self: end;
  width: fit-content;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(201, 135, 63, 0.36);
  border-radius: 8px;
  background: rgba(201, 135, 63, 0.08);
}

.format-status-link {
  color: var(--ember);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.format-status-link:hover,
.format-status-link:focus-visible {
  outline: none;
  border-color: var(--line-strong);
  background: rgba(201, 135, 63, 0.16);
  box-shadow:
    0 0.8rem 1.8rem rgba(0, 0, 0, 0.24),
    0 0 1.1rem rgba(201, 135, 63, 0.14);
  color: var(--bone);
  transform: translateY(-1px);
}

.platform-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.platform-icon {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(7, 8, 6, 0.58);
  place-items: center;
}

a.platform-icon {
  color: inherit;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

a.platform-icon:hover,
a.platform-icon:focus-visible {
  outline: none;
  border-color: var(--line-strong);
  background: rgba(7, 8, 6, 0.78);
  box-shadow:
    0 0.8rem 1.8rem rgba(0, 0, 0, 0.28),
    0 0 1.2rem rgba(143, 185, 173, 0.16);
  transform: translateY(-1px);
}

.platform-icon img {
  display: block;
  width: 1.65rem;
  height: 1.65rem;
  object-fit: contain;
}

.bandcamp-player {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 25rem);
  gap: 1.6rem;
  width: min(100%, 72rem);
  margin: 1.4rem auto 0;
}

.bandcamp-player-copy {
  display: grid;
  justify-items: start;
  gap: 0.8rem;
  min-width: 0;
}

.bandcamp-player-copy h3 {
  margin: 0;
  color: var(--bone);
  font-size: 2rem;
  line-height: 1.05;
}

.bandcamp-player-copy p:not(.release-kicker) {
  max-width: 32rem;
  margin: 0;
  color: var(--muted);
}

.bandcamp-player-mark {
  width: 3rem;
  height: 3rem;
}

.bandcamp-player-link {
  gap: 0.56rem;
  margin-top: 0.3rem;
}

.bandcamp-player-link img {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
}

.bandcamp-embed-wrap {
  width: min(100%, 21.875rem);
  aspect-ratio: 350 / 621;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #333333;
  box-shadow: var(--shadow);
}

.bandcamp-embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.album-code {
  display: grid;
  justify-items: center;
  width: min(100%, 34rem);
  margin: 1.2rem auto 0;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 237, 214, 0.9);
}

.album-code img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer {
  display: grid;
  gap: 0.6rem;
  padding: 0 1rem 1.4rem;
  background: #050604;
  color: rgba(245, 237, 214, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  justify-items: center;
  text-align: center;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.release-footer-nav {
  display: grid;
  justify-items: center;
  text-align: center;
  text-transform: none;
}

.release-footer-nav ul {
  display: inline-grid;
  grid-template-columns: auto max-content max-content;
  column-gap: 0.28rem;
  row-gap: 0.18rem;
  justify-items: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.release-footer-nav li {
  display: contents;
}

.release-footer-nav a,
.release-footer-nav span[aria-current="page"] {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: subgrid;
  align-items: baseline;
}

.release-footer-nav a {
  color: rgba(217, 210, 191, 0.84);
  text-decoration: none;
}

.release-footer-nav span[aria-current="page"] {
  color: rgba(245, 237, 214, 0.42);
}

.release-footer-icon {
  display: inline-block;
  flex: 0 0 1em;
  grid-column: 1;
  width: 1em;
  height: 1em;
  object-fit: contain;
  transform: translateY(0.12em);
}

.release-footer-title {
  grid-column: 2;
  line-height: 1.1;
  text-transform: none;
  white-space: nowrap;
}

.release-footer-date {
  grid-column: 3;
  color: rgba(245, 237, 214, 0.36);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}

.release-footer-nav a:hover,
.release-footer-nav a:focus-visible {
  color: var(--bone);
  outline: none;
}

@keyframes waveform-listen {
  0%,
  100% {
    opacity: 0.52;
  }

  45% {
    opacity: 1;
  }
}

@keyframes record-reveal {
  0% {
    opacity: 0;
    transform: translateY(0.45rem) rotateX(2deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@media (min-width: 72rem) {
  .site-footer {
    grid-template-columns: minmax(10rem, 1fr) auto minmax(10rem, 1fr);
    align-items: center;
  }

  .site-footer > p {
    grid-column: 2;
  }

  .release-footer-nav {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 62rem) {
  .hero-shell,
  .album-layout,
  .record-layout,
  .side-b-section {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    align-self: center;
  }

  .hero-copy {
    max-width: 36rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 12cqw, 4.2rem);
  }

  .hero-object {
    width: min(100%, 19rem);
    justify-self: start;
  }

  .track-grid,
  .format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bandcamp-player {
    grid-template-columns: 1fr;
  }

  .bandcamp-embed-wrap {
    justify-self: start;
  }

  .teaser-frame {
    justify-self: start;
  }
}

@media (max-width: 42rem) {
  html {
    scroll-behavior: auto;
  }

  .smoke-hero {
    min-height: 92vh;
    min-height: 92dvh;
    padding:
      max(0.75rem, env(safe-area-inset-top))
      max(0.75rem, env(safe-area-inset-right))
      1.2rem
      max(0.75rem, env(safe-area-inset-left));
  }

  .hero-shell {
    gap: 1.1rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(1.65rem, 7.8cqw, 3.1rem);
  }

  .release-standfirst {
    font-size: 1rem;
    max-width: 20.75rem;
  }

  .hero-object {
    width: min(100%, 14rem);
  }

  .album-section,
  .track-run,
  .package-section,
  .formats-section,
  .side-b-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section-heading h2,
  .side-b-copy h2,
  .album-actions-panel h3 {
    font-size: 1.75rem;
  }

  .release-action-grid,
  .track-grid,
  .format-grid {
    grid-template-columns: 1fr;
  }

  .format-card p {
    min-height: 0;
  }

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

  .bandcamp-embed-wrap {
    width: min(100%, 21.875rem);
  }

  .record-panel {
    min-height: 0;
  }

  .record-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sleeve-spread,
  .record-panel-labels .label-row,
  .cd-spread,
  .vinyl-exploded {
    grid-template-columns: 1fr;
  }

  .cd-spread .cd-cover,
  .cd-spread .cd-inside,
  .cd-spread .cd-disc,
  .vinyl-exploded > img,
  .vinyl-record-stack {
    grid-column: auto;
    grid-row: auto;
  }

  .cd-spread .cd-disc,
  .vinyl-record-stack {
    width: min(100%, 15rem);
    justify-self: center;
  }

  .record-copy {
    padding: 1rem;
  }

  .label-row {
    max-width: 18rem;
  }

  .teaser-frame {
    width: min(100%, 18rem);
  }

  .nowrap {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
