:root {
  --paper: #fffaf4;
  --paper-deep: #f5f0e8;
  --ink: #262626;
  --muted: #6b655f;
  --line: rgba(38, 38, 38, 0.18);
  --light-line: rgba(255, 255, 255, 0.26);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --fast: 160ms;
  --standard: 300ms;
  --editorial: 650ms;
  --header-height: 72px;
  --editorial-heading: clamp(58px, 6vw, 92px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

button,
a {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button {
  border: 0;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  color: var(--ink);
  transition:
    background-color var(--standard) var(--ease-out),
    border-color var(--standard) var(--ease-out),
    color var(--standard) var(--ease-out);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(255, 249, 242, 0.88);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px) saturate(130%);
}

.scroll-progress {
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  overflow: hidden;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.wordmark {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.wordmark img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  transition: transform var(--standard) var(--ease-out);
}

.wordmark:hover img {
  transform: rotate(6deg);
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--standard) var(--ease-out);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle-lines {
  display: grid;
  gap: 6px;
}

.menu-toggle-lines i {
  display: block;
  width: 22px;
  height: 1px;
  margin: auto;
  background: currentColor;
  transition: transform var(--standard) var(--ease-out);
}

.hero {
  position: relative;
  min-height: 108svh;
  overflow: visible;
}

.hero-stage {
  position: relative;
  min-height: 108svh;
  padding: calc(var(--header-height) + 26px) 32px 36px;
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  align-items: center;
  row-gap: 20px;
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero-lockup {
  position: relative;
  justify-self: center;
  width: min(760px, 72vw, 60svh);
  aspect-ratio: 1;
  z-index: 1;
}

.hero-motion-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-layered-logo {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 1;
}

.hero-registered {
  position: absolute;
  top: 0.4%;
  right: 0.2%;
  z-index: 2;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(15px, 2.1vw, 28px);
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  opacity: 0;
  animation: registered-mark-in 500ms 650ms var(--ease-out) forwards;
}

.hero-statement {
  z-index: 1;
  margin: clamp(24px, 3.5svh, 42px) auto 0;
  max-width: none;
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 300;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(12px);
  animation: reveal-up var(--editorial) 500ms var(--ease-out) forwards;
}

.listen-button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform var(--standard) var(--ease-out);
}

.listen-button:hover svg {
  transform: translateX(5px);
}

.section-kicker {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 600;
}

.ethos-intro {
  min-height: 92svh;
  padding: 76px 32px 44px;
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(520px, 1.45fr);
  grid-template-rows: auto 1fr;
  column-gap: 64px;
  background: #eee7df;
  color: var(--ink);
}

.ethos-intro > .section-kicker {
  grid-column: 1 / -1;
}

.ethos-statement-block,
.chapter-statement-block {
  grid-column: 1 / -1;
  align-self: center;
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(520px, 1.45fr);
  column-gap: 64px;
}

.ethos-heading {
  grid-column: 1 / -1;
  margin: 0 0 24px;
}

.ethos-heading h2,
.section-heading h2,
.release-copy h2,
.chapter-copy h3 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.ethos-heading h2 {
  margin: 0;
  max-width: 100%;
  display: grid;
  row-gap: 0.06em;
  font-size: var(--editorial-heading);
  line-height: 0.95;
}

.ethos-heading h2 span,
.chapter-copy h3 span {
  display: block;
}

.ethos-copy {
  grid-column: 1 / -1;
  justify-self: start;
  max-width: none;
  margin: 0;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.42;
  font-weight: 300;
  color: var(--ink);
  white-space: nowrap;
}

.ethos-chapters {
  background: var(--paper);
}

.ethos-chapter {
  min-height: 92svh;
  border-bottom: 1px solid var(--line);
}

.chapter-copy {
  min-height: 92svh;
  padding: 76px 32px 44px;
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(520px, 1.45fr);
  grid-template-rows: auto 1fr;
  column-gap: 64px;
}

.chapter-copy > span {
  grid-column: 1 / -1;
  padding-bottom: 12px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 600;
}

.chapter-copy h3 {
  grid-column: 1 / -1;
  align-self: center;
  margin: 0 0 24px;
  max-width: 100%;
  display: grid;
  row-gap: 0.06em;
  font-size: var(--editorial-heading);
  line-height: 0.95;
  transform: translateY(28px);
  opacity: 0;
  transition:
    opacity 650ms ease,
    transform 900ms var(--ease-out);
}

.chapter-copy p {
  grid-column: 1 / -1;
  justify-self: start;
  max-width: none;
  margin: 0;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.42;
  font-weight: 300;
  color: var(--ink);
  white-space: nowrap;
}

.ethos-chapter.is-in-view .chapter-copy h3 {
  opacity: 1;
  transform: translateY(0);
}

.chapter-art-first {
  background: #aaa29a;
}

.chapter-full-stop {
  color: var(--paper);
  background: var(--ink);
  border-bottom-color: var(--light-line);
}

.chapter-full-stop .chapter-copy p {
  color: var(--paper);
}

.artists-section {
  padding: 128px 32px;
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 72px;
}

.section-heading h2 {
  margin: 0;
  font-size: var(--editorial-heading);
  line-height: 0.95;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 18px;
}

.artist-tile {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--paper-deep);
  border-radius: 2px;
  cursor: pointer;
  color: white;
  text-align: left;
}

.artist-wide {
  grid-column: span 7;
  grid-row: span 5;
}

.artist-portrait {
  grid-column: span 5;
  grid-row: span 7;
}

.artist-square {
  grid-column: span 4;
  grid-row: span 5;
}

.artist-tile:nth-child(4) {
  grid-column: span 4;
}

.artist-tile:nth-child(5) {
  grid-column: span 4;
  grid-row: span 5;
}

.artist-tile picture,
.artist-tile picture img {
  width: 100%;
  height: 100%;
}

.artist-tile picture {
  display: block;
}

.artist-tile picture img {
  object-fit: cover;
  transition:
    transform 700ms var(--ease-out),
    filter var(--standard) ease;
}

.artist-tile > span {
  position: absolute;
  inset: auto 12px 12px;
  padding: 10px 12px;
  background: rgba(38, 38, 38, 0.76);
  backdrop-filter: blur(12px);
  transform: translateY(8px);
  opacity: 0;
  transition:
    opacity var(--standard) ease,
    transform var(--standard) var(--ease-out);
}

.artist-tile strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.artist-tile:hover img,
.artist-tile:focus-visible img {
  transform: scale(1.025);
  filter: blur(2px) saturate(0.9) contrast(1.04);
}

.artist-tile:hover > span,
.artist-tile:focus-visible > span {
  opacity: 1;
  transform: translateY(0);
}

.archive-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0 10px;
  color: inherit;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.archive-link span:last-child {
  transition: transform var(--standard) var(--ease-out);
}

.archive-link:hover span:last-child,
.archive-link:focus-visible span:last-child {
  transform: translateX(6px);
}

.all-artists-link {
  margin-top: 42px;
}

.release-section {
  --release-bg: var(--ink);
  --release-fg: var(--paper);
  color: var(--release-fg);
  background: var(--release-bg);
  transition:
    background-color 700ms var(--ease-out),
    color 400ms ease;
}

.release-stage {
  min-height: 100svh;
  padding: 104px 32px 54px;
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 72px;
}

.release-art {
  position: relative;
  width: min(620px, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.release-art picture,
.release-art picture img {
  width: 100%;
  height: 100%;
}

.release-art picture {
  display: block;
}

.release-art img {
  object-fit: cover;
  transition:
    opacity 220ms ease,
    transform 700ms var(--ease-out);
}

.release-art:hover img {
  transform: scale(1.015);
}

.release-index {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 7px 9px;
  background: rgba(15, 15, 15, 0.72);
  color: white;
  font-size: 10px;
  font-weight: 600;
}

.release-copy {
  align-self: center;
}

.release-copy .section-kicker {
  margin-bottom: 70px;
}

.release-status {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
}

.release-copy h2 {
  margin: 0;
  font-size: 100px;
  line-height: 0.88;
}

.release-copy h3 {
  margin: 20px 0 0;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 400;
}

.release-date {
  margin: 22px 0 48px;
  font-size: 13px;
  font-weight: 600;
}

.listen-button {
  min-width: 190px;
  padding: 16px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 2px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition:
    background-color var(--fast) ease,
    color var(--fast) ease;
}

.listen-button:hover {
  color: var(--release-bg);
  background: var(--release-fg);
}

.release-stage.is-swapping .release-art img,
.release-stage.is-swapping .release-copy > * {
  opacity: 0;
  transform: translateY(10px);
}

.release-copy > * {
  transition:
    opacity 260ms ease,
    transform 500ms var(--ease-out);
}

.release-selector {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--light-line);
}

.release-option {
  min-height: 124px;
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 8px 14px;
  color: inherit;
  background: transparent;
  border-right: 1px solid var(--light-line);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition:
    color var(--fast) ease,
    background-color var(--fast) ease;
}

.release-option:last-child {
  border-right: 0;
}

.release-option:hover,
.release-option.is-active {
  color: var(--release-bg);
  background: var(--release-fg);
}

.release-option span {
  grid-row: 1 / 3;
  font-size: 10px;
}

.release-option strong {
  align-self: end;
  font-size: 14px;
}

.release-option em {
  align-self: start;
  font-size: 11px;
  font-style: normal;
  opacity: 0.68;
}

.all-releases-option {
  position: relative;
}

.all-releases-option::after {
  content: "\2192";
  position: absolute;
  right: 20px;
  bottom: 18px;
  font-size: 18px;
  transition: transform var(--standard) var(--ease-out);
}

.all-releases-option:hover::after,
.all-releases-option:focus-visible::after {
  transform: translateX(5px);
}

.label-section {
  min-height: 100svh;
  padding: 128px 32px;
  display: flex;
  align-items: center;
  color: var(--paper);
  background: var(--ink);
}

.label-copy {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 64px;
  align-items: start;
}

.label-copy .section-kicker {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
}

.label-lead {
  grid-column: 2;
  margin: 0;
  max-width: 900px;
  font-size: clamp(38px, 3.8vw, 64px);
  line-height: 1.06;
}

.label-final {
  grid-column: 2;
  margin: 96px 0 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: var(--editorial-heading);
  font-weight: 700;
  line-height: 0.95;
}

.label-scroll-reveal,
.artist-scroll-reveal {
  opacity: 0;
  will-change: opacity, transform;
}

.concept-footer {
  min-height: 240px;
  padding: 52px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 32px;
  color: white;
  background: var(--ink);
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: invert(1);
}

.footer-location {
  justify-self: center;
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
}

.footer-actions,
.footer-socials {
  display: flex;
  align-items: center;
}

.footer-actions {
  justify-self: end;
  gap: 20px;
}

.footer-socials {
  gap: 12px;
}

.footer-social-link,
.footer-back-top {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: white;
  background: transparent;
  transition: opacity var(--fast) ease;
}

.footer-social-link:hover,
.footer-back-top:hover {
  opacity: 0.65;
}

.footer-social-link img,
.footer-social-link svg {
  width: 22px;
  height: 22px;
}

.footer-social-link svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.footer-social-link .icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-back-top {
  padding: 0;
  border: 0;
  font-size: 20px;
  cursor: pointer;
}

.footer-back-top span {
  display: inline-block;
  transition: transform var(--standard) var(--ease-out);
}

.footer-back-top:hover span {
  transform: translateY(-4px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--editorial) ease,
    transform var(--editorial) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mock-toast {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: 24px;
  min-width: 240px;
  padding: 12px 16px;
  color: white;
  background: rgba(15, 15, 15, 0.9);
  border-radius: 4px;
  text-align: center;
  font-size: 12px;
  opacity: 0;
  transform: translate(-50%, 12px);
  pointer-events: none;
  transition:
    opacity var(--standard) ease,
    transform var(--standard) var(--ease-out);
}

.mock-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes hero-mark-in {
  0% {
    opacity: 0;
    transform: scale(0.965);
    clip-path: inset(0 50% 0 50%);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes registered-mark-in {
  to {
    opacity: 1;
  }
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  :root {
    --editorial-heading: 68px;
  }

  .artist-tile strong {
    font-size: 18px;
  }

  .release-stage {
    grid-template-columns: minmax(340px, 0.95fr) minmax(420px, 1.05fr);
    gap: 44px;
  }

  .release-copy h2 {
    font-size: 76px;
  }

  .label-lead {
    font-size: 44px;
  }

}

@media (max-width: 760px) {
  :root {
    --header-height: 62px;
    --editorial-heading: 50px;
  }

  .site-header {
    padding: 0 18px;
    grid-template-columns: 1fr auto;
  }

  .wordmark span {
    display: none;
  }

  .wordmark img {
    width: 36px;
    height: 36px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    padding: 24px 18px 30px;
    display: grid;
    gap: 2px;
    color: var(--paper);
    background: var(--ink);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform var(--standard) var(--ease-out),
      opacity var(--fast) ease,
      visibility var(--standard);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    padding: 11px 0;
    font-size: 22px;
  }

  .hero {
    min-height: 104svh;
    padding: 0;
  }

  .hero-stage {
    min-height: 104svh;
    padding: calc(var(--header-height) + 28px) 18px 24px;
    grid-template-rows: auto auto;
    row-gap: 18px;
  }

  .hero-statement {
    max-width: none;
    font-size: 13px;
    line-height: 1.45;
    white-space: nowrap;
  }

  .desktop-only {
    display: none;
  }

  .ethos-intro {
    min-height: 720px;
    padding: 82px 18px 38px;
    display: flex;
    flex-direction: column;
  }

  .ethos-statement-block,
  .chapter-statement-block {
    width: 100%;
    margin: auto 0;
    display: block;
  }

  .ethos-heading {
    margin: 0 0 22px;
  }

  .ethos-heading h2 {
    line-height: 0.95;
  }

  .ethos-copy {
    font-size: 20px;
    white-space: normal;
  }

  .ethos-chapter {
    min-height: 0;
  }

  .chapter-copy {
    position: static;
    min-height: 700px;
    padding: 82px 18px 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .chapter-copy > span {
    width: 100%;
    margin-bottom: 34px;
  }

  .chapter-copy h3 {
    margin: 0 0 24px;
    line-height: 0.95;
  }

  .chapter-copy p {
    width: 100%;
    margin: 0;
    font-size: 20px;
    white-space: normal;
  }

  .artists-section {
    padding: 92px 18px;
  }

  .section-heading {
    display: block;
    margin-bottom: 48px;
  }

  .section-heading .section-kicker {
    margin-bottom: 52px;
  }

  .artist-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 132px;
    gap: 10px;
  }

  .artist-wide,
  .artist-portrait,
  .artist-square,
  .artist-tile:nth-child(4),
  .artist-tile:nth-child(5) {
    grid-column: span 1;
    grid-row: span 2;
  }

  .artist-wide {
    grid-column: span 2;
  }

  .artist-tile > span {
    inset: auto 8px 8px;
    padding: 8px;
    opacity: 1;
    transform: none;
  }

  .artist-tile strong {
    font-size: 14px;
  }

  .release-stage {
    min-height: 0;
    padding: 96px 18px 54px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 44px;
  }

  .release-art {
    width: 100%;
  }

  .release-copy .section-kicker {
    margin-bottom: 44px;
  }

  .release-copy h2 {
    font-size: 62px;
  }

  .release-copy h3 {
    font-size: 34px;
  }

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

  .release-option {
    min-height: 80px;
    border-right: 0;
    border-bottom: 1px solid var(--light-line);
  }

  .release-option:last-child {
    border-bottom: 0;
  }

  .label-section {
    min-height: 0;
    padding: 96px 18px 74px;
    display: block;
  }

  .label-copy {
    width: 100%;
    display: block;
  }

  .label-copy .section-kicker {
    margin-bottom: 54px;
  }

  .label-lead {
    font-size: 29px;
  }

  .label-final {
    margin-top: 74px;
  }


  .concept-footer {
    min-height: 220px;
    padding: 42px 18px;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: end;
  }

  .footer-logo {
    grid-column: 1;
    grid-row: 1;
    width: 58px;
    height: 58px;
  }

  .footer-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-location {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
  }
}

@media (max-width: 370px) {
  :root {
    --editorial-heading: 46px;
  }

  .hero-statement {
    font-size: 11.5px;
  }

  .release-copy h2 {
    font-size: 86px;
  }

}

@media (hover: none) {
  .artist-tile > span {
    opacity: 1;
    transform: none;
  }
}

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

  .hero-motion-canvas,
  .chapter-copy h3 {
    transform: none !important;
  }
}
