@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin-wght-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin-wght-italic.woff2") format("woff2");
}

:root {
  --font-body: "Source Sans 3", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans CJK JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #0b0c0b;
  --bg-soft: #111211;
  --bg-panel: #171817;
  --paper: #f7f6f1;
  --paper-alt: #efeee9;
  --ink: #f4f4ef;
  --paper-ink: #171b17;
  --muted: #a8aaa4;
  --paper-muted: #62645f;
  --line: rgba(244, 244, 239, 0.12);
  --paper-line: rgba(23, 27, 23, 0.12);
  --highlight-color: #f4f4ef;
  --accent-red: #a64035;
  --accent-cyan: #7b9294;
  --accent-gold: #928462;
  --text-color: var(--paper-ink);
  --bg-light: var(--paper);
  --bg-dark: var(--bg);
  --accent-gradient: none;
  --glass-bg: rgba(11, 12, 11, 0.92);
  --glass-border: rgba(244, 244, 239, 0.12);
  --shadow-soft: none;
  --shadow-hover: none;
  --transition-smooth: 150ms ease;
}

.site-icon {
  width: 1em;
  height: 1em;
  flex: none;
  fill: currentColor;
  vertical-align: -0.125em;
}

.external-link-mark {
  font-size: 0.92em;
  line-height: 1;
}

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

html {
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg);
  opacity: 1;
  visibility: visible;
  transition: opacity 320ms ease, visibility 320ms ease;
  animation: loader-failsafe 0s 3s forwards;
}

.site-loader__wordmark {
  width: clamp(210px, 34vw, 420px);
  height: auto;
  animation: loader-wordmark 900ms ease-in-out infinite alternate;
}

.site-loader.is-complete {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

@keyframes loader-wordmark {
  from { opacity: 0.45; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes loader-failsafe {
  to {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }
}

body::selection {
  background: var(--paper-ink);
  color: var(--paper);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

p {
  max-width: 68ch;
}

main {
  min-height: 70vh;
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: page-out 120ms ease-in both;
}

::view-transition-new(root) {
  animation: page-in 180ms ease-out both;
}

@keyframes page-out {
  to { opacity: 0; }
}

@keyframes page-in {
  from { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader {
    display: none;
  }

  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }
}
.site-header {
  --site-header-height: 72px;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--site-header-height);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1228px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  list-style: none;
}

.desktop-nav li {
  display: flex;
}

.desktop-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 0;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color var(--transition-smooth);
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-smooth);
}

.desktop-nav a:focus-visible,
.desktop-nav a:hover,
.desktop-nav a[aria-current] {
  color: var(--ink);
  outline: none;
}

.desktop-nav a:focus-visible::after,
.desktop-nav a:hover::after,
.desktop-nav a[aria-current]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-menu {
  display: none;
}
.brand-mark {
  display: flex;
  align-items: center;
  min-height: 48px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

.brand-mark span {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#hero {
  min-height: 84vh;
  display: grid;
  align-items: end;
  padding: 124px 24px 48px;
  background-image: linear-gradient(90deg, rgba(11, 12, 11, 0.92) 0%, rgba(11, 12, 11, 0.7) 52%, rgba(11, 12, 11, 0.38) 100%), url("../images/background.webp");
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  color: var(--ink);
}

.hero-background-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(11, 12, 11, 0.92) 0%, rgba(11, 12, 11, 0.7) 52%, rgba(11, 12, 11, 0.46) 100%);
  pointer-events: none;
}

#hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 88px;
  background: linear-gradient(180deg, rgba(11, 12, 11, 0), var(--bg));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

#hero h1 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: 4.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

#hero .tagline {
  max-width: 650px;
  color: rgba(244, 244, 239, 0.74);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  width: min(720px, 100%);
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.hero-stat {
  min-height: auto;
  padding: 0;
  background: transparent;
}

.hero-stat strong {
  display: block;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1;
  font-weight: 700;
}

.hero-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.hero-portrait {
  display: none;
}

.hero-portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-portrait figcaption {
  padding: 10px 12px;
  background: rgba(7, 8, 7, 0.86);
  color: rgba(247, 249, 243, 0.72);
  font-size: 0.8rem;
}

.scroll-down {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  text-decoration: none;
  color: var(--ink);
  transition: background var(--transition-smooth), color var(--transition-smooth);
}

.scroll-down:focus-visible,
.scroll-down:hover {
  background: var(--ink);
  color: var(--bg);
  outline: none;
}

#about {
  background: var(--paper);
  color: var(--paper-ink);
  padding: 86px 24px;
  position: relative;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 44px;
  align-items: center;
  width: min(1180px, 100%);
  margin: 44px auto 0;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy p {
  color: var(--paper-muted);
  font-size: 1rem;
  line-height: 1.78;
}

.about-media {
  display: grid;
  gap: 12px;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--paper-line);
  border-radius: 4px;
}

/* About page */
.about-page {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 136px 24px 72px;
  color: var(--paper-ink);
}

.about-profile__header {
  padding-bottom: 42px;
  border-bottom: 1px solid var(--paper-line);
}

.about-profile__header h1 {
  margin-top: 8px;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.about-profile__dek {
  margin-top: 22px;
  color: var(--paper-muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.about-profile__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1.35fr) minmax(180px, 0.65fr);
  gap: 42px;
  padding: 52px 0 88px;
}

.about-profile__portrait img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--paper-line);
  border-radius: 4px;
  object-fit: cover;
}

.about-profile__copy h2,
.about-profile__links h2 {
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--paper-line);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-profile__copy p {
  margin-bottom: 20px;
  color: var(--paper-muted);
  line-height: 1.82;
}

.about-profile__links {
  display: grid;
  align-content: start;
  gap: 36px;
}

.about-profile__links ul {
  list-style: none;
}

.about-profile__links li + li {
  margin-top: 8px;
}

.about-profile__links a,
.works a,
.about-contact a {
  color: var(--paper-ink);
  text-decoration: none;
}

.about-profile__links a:hover,
.about-profile__links a:focus-visible,
.works a:hover,
.works a:focus-visible,
.about-contact a:hover,
.about-contact a:focus-visible {
  color: var(--accent-red);
}

.about-profile__email {
  overflow-wrap: anywhere;
  font-weight: 700;
}

.works {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.6fr);
  column-gap: 64px;
  padding: 88px 0;
  border-top: 1px solid var(--paper-line);
}

.works__header {
  align-self: start;
  position: sticky;
  top: 116px;
}

.works__header h2,
.about-contact h2 {
  margin: 8px 0 18px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.works__header > p:last-child,
.about-contact p {
  color: var(--paper-muted);
  line-height: 1.7;
}

.works-year {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 24px;
}

.works-year + .works-year {
  margin-top: 56px;
}

.works-year h3 {
  padding-top: 18px;
  color: var(--accent-red);
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}

.works-year ul {
  list-style: none;
}

.works-year li {
  border-top: 1px solid var(--paper-line);
}

.works-year li:last-child {
  border-bottom: 1px solid var(--paper-line);
}

.works-year a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.8fr);
  gap: 24px;
  padding: 17px 0;
}

.works-year strong {
  font-size: 1.02rem;
}

.works-year span {
  color: var(--paper-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.works__catalog-link {
  grid-column: 2;
  justify-self: start;
  margin-top: 38px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.about-contact {
  padding: 88px 0 30px;
  border-top: 1px solid var(--paper-line);
}

.about-contact p:last-child {
  max-width: 46ch;
}

.about-contact a {
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

#music {
  padding: 86px 24px;
  background: var(--bg);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

#music::before {
  content: none;
}

#music > * {
  position: relative;
  z-index: 1;
}

.latest-release {
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  width: min(1180px, 100%);
  margin: 40px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.release-cover-link,
.release-cover-frame {
  display: block;
  background: var(--bg-soft);
}

.latest-release img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.latest-release .release-info {
  height: 100%;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  background: transparent;
}

.latest-release .release-label {
  display: inline-block;
  width: fit-content;
  margin-bottom: 12px;
  padding: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.latest-release h3 {
  margin-bottom: 12px;
  font-size: 2.35rem;
  font-weight: 800;
}

.latest-release h3 a {
  color: inherit;
  text-decoration: none;
}

.latest-release .release-date {
  color: var(--muted);
  margin-bottom: 20px;
}

.latest-release p {
  color: rgba(244, 244, 239, 0.72);
  margin-bottom: 24px;
}

.latest-release .listen-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.latest-release .listen-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.88rem;
  transition: background var(--transition-smooth), color var(--transition-smooth), border-color var(--transition-smooth);
}

.latest-release .listen-btn:focus-visible,
.latest-release .listen-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  outline: none;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  transition: background var(--transition-smooth), border-color var(--transition-smooth), color var(--transition-smooth);
}

.view-all-link:focus-visible,
.view-all-link:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  outline: none;
}

#blog .view-all-link:focus-visible,
#blog .view-all-link:hover {
  background: var(--paper-ink);
  border-color: var(--paper-ink);
  color: var(--paper);
}

.music-actions {
  width: min(1180px, 100%);
  margin: 24px auto 0;
  display: flex;
  justify-content: flex-end;
}

.platform-availability {
  width: min(1180px, 100%);
  margin: 32px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.platform-availability h3 {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.platform-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 34px;
  list-style: none;
}

.platform-logos li {
  display: flex;
  align-items: center;
  min-height: 48px;
}

.platform-logos img {
  width: auto;
  max-width: 150px;
  height: auto;
  max-height: 34px;
  object-fit: contain;
}

.platform-availability--catalog {
  width: 100%;
  margin-top: 48px;
  padding: 28px 24px;
  border: 1px solid var(--paper-line);
  border-radius: 4px;
  background: var(--bg);
  text-align: center;
}

.page-shell .platform-availability--catalog h2 {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-shell .platform-availability--catalog .platform-logos {
  justify-content: center;
  margin-bottom: 0;
  padding-left: 0;
}

.page-shell .platform-availability--catalog .platform-logos li {
  justify-content: center;
}

.release-proof {
  width: min(1180px, 100%);
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.release-proof div {
  min-height: auto;
  padding: 0;
  background: transparent;
}

.release-proof strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.release-proof span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.release-artwork {
  margin: 28px 0 0;
}

.release-artwork img {
  display: block;
  width: min(100%, 720px);
  height: auto;
  border: 1px solid var(--paper-line);
  border-radius: 4px;
}

.press-page {
  width: min(1120px, 100%);
}

.press-header {
  max-width: 760px;
  margin-bottom: clamp(54px, 8vw, 92px);
}

.press-header > p:last-child {
  margin-top: 16px;
  color: var(--paper-muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.press-section {
  padding-top: 30px;
  margin-top: 46px;
  border-top: 1px solid var(--paper-line);
}

.press-section h2 {
  margin-bottom: 24px;
}

.press-bios {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 64px);
}

.press-bios h3 {
  margin-bottom: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.press-bios p {
  max-width: 68ch;
  line-height: 1.75;
}

.press-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.press-section__heading h2,
.press-section__heading p {
  margin-bottom: 0;
}

.press-section__heading > p {
  max-width: 430px;
  color: var(--paper-muted);
}

.press-assets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 24px;
}

.press-asset {
  margin: 0;
}

.press-asset--main {
  grid-column: 1 / -1;
}

.press-asset > img,
.press-asset__wordmark {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--paper-line);
  border-radius: 4px;
  object-fit: cover;
  background: #fff;
}

.press-asset--main > img {
  max-height: 660px;
}

.press-asset__wordmark {
  display: grid;
  place-items: center;
  padding: clamp(28px, 6vw, 72px);
}

.press-asset__wordmark img {
  width: min(100%, 440px);
  height: auto;
}

.press-asset figcaption {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
}

.press-asset figcaption span {
  display: block;
  margin-top: 3px;
  color: var(--paper-muted);
  font-size: 0.88rem;
}

.press-asset__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
  text-align: right;
}

.press-asset__links a,
.press-details a {
  color: var(--paper-ink);
  font-weight: 700;
  text-underline-offset: 3px;
}

.press-asset__links a:hover,
.press-asset__links a:focus-visible,
.press-details a:hover,
.press-details a:focus-visible {
  color: var(--accent-red);
}

.press-details {
  max-width: 760px;
}

.press-details dl {
  margin: 0;
}

.press-details dl > div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--paper-line);
}

.press-details dt {
  color: var(--paper-muted);
  font-weight: 700;
}

.press-details dd {
  margin: 0;
}

.press-credit {
  margin-top: 24px;
  color: var(--paper-muted);
}
#blog {
  padding: 86px 24px;
  background: var(--paper-alt);
  color: var(--paper-ink);
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1180px, 100%);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--paper-line);
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.blog-card {
  min-height: 236px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-smooth);
}

.blog-card:focus-visible,
.blog-card:hover {
  color: var(--accent-red);
  outline: none;
}

.blog-card .date {
  color: var(--paper-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.blog-card h3 {
  margin: 16px 0 12px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.blog-card .excerpt {
  color: var(--paper-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

#blog .view-all-link-container {
  width: min(1180px, 100%);
  display: flex;
  justify-content: flex-end;
  margin: 24px auto 0;
}

#video {
  padding: 86px 24px;
  background: var(--bg);
  color: var(--ink);
}

.video-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.video-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.video-copy p {
  color: var(--muted);
}

.embed-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  background: #000;
}

.embed-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.post-body > iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
  margin: 1.6em 0;
  border-radius: 4px;
}

#video .video-title {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

footer {
  background: var(--bg);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 46px 24px 32px;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-brand strong {
  font-size: 1.5rem;
  line-height: 1;
}

.footer-brand p {
  color: var(--muted);
}

footer .socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

footer .socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  font-size: 1.05rem;
  text-decoration: none;
  transition: background var(--transition-smooth), color var(--transition-smooth), border-color var(--transition-smooth);
}

footer .socials a:focus-visible,
footer .socials a:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  outline: none;
}

.contact-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-footer a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-smooth);
}

.contact-footer a:focus-visible,
.contact-footer a:hover {
  color: var(--highlight-color);
  outline: none;
}

footer .copyright {
  color: var(--muted);
  font-size: 0.86rem;
}

.text-center { text-align: center; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

.section-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.5fr);
  gap: 32px;
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-label {
  display: block;
  width: fit-content;
  min-height: 0;
  padding: 0;
  margin-bottom: 14px;
  border: 0;
  border-radius: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

#about .section-label,
#blog .section-label,
.page-content .section-label,
.page-shell .section-label {
  color: var(--paper-muted);
}

.section-heading h2 {
  max-width: 720px;
  font-size: 3.15rem;
  font-weight: 800;
  text-transform: none;
}

.section-heading p {
  color: inherit;
  opacity: 0.72;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition-smooth), border-color var(--transition-smooth), color var(--transition-smooth);
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}

.btn-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.btn-dark {
  background: var(--paper-ink);
  color: var(--paper);
}

.btn-light-outline {
  border-color: var(--paper-line);
  color: var(--paper-ink);
}

.btn:focus-visible,
.btn:hover {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
  outline: none;
}

.btn-dark:focus-visible,
.btn-dark:hover,
.btn-light-outline:focus-visible,
.btn-light-outline:hover {
  background: var(--paper-ink);
  border-color: var(--paper-ink);
  color: var(--paper);
}

.page-content,
.page-shell {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 136px 24px 72px;
  color: var(--paper-ink);
}

body.about,
body.privacy,
body.legal,
body:has(.site-page) {
  background: var(--paper);
  color: var(--paper-ink);
}

.page-content h1,
.page-shell h1 {
  margin-bottom: 14px;
  color: var(--paper-ink);
  font-size: 3.1rem;
  font-weight: 800;
  text-transform: none;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.page-content .tagline,
.page-kicker,
.effective-date {
  color: var(--paper-muted);
  font-size: 1rem;
  font-weight: 700;
}

.page-content h2,
.page-shell h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  color: var(--paper-ink);
  font-size: 1.42rem;
  line-height: 1.2;
}

.page-content p,
.page-content li,
.page-shell p,
.page-shell li {
  color: var(--paper-muted);
  line-height: 1.82;
}

.page-content p,
.page-shell p {
  margin-bottom: 18px;
}

.page-content ul,
.page-shell ul,
.page-content ol,
.page-shell ol {
  padding-left: 1.25rem;
  margin-bottom: 22px;
}

.page-content hr,
.page-shell hr {
  width: 64px;
  margin: 18px 0 26px;
  border: 0;
  border-top: 1px solid var(--paper-line);
}

.page-content a,
.page-shell a,
.post-body a {
  color: var(--accent-red);
  font-weight: 700;
  text-decoration: none;
}

.page-content a:hover,
.page-content a:focus-visible,
.page-shell a:hover,
.page-shell a:focus-visible,
.post-body a:hover,
.post-body a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.intro-section {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 48px;
}

.artist-photo {
  width: 180px;
  height: 180px;
  border: 1px solid var(--paper-line);
  border-radius: 4px;
  object-fit: cover;
}

.site-page {
  background: var(--paper);
  color: var(--paper-ink);
}

.page-shell {
  width: min(1080px, 100%);
}

.page-list-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.page-list-heading > div {
  min-width: 0;
}

.back-link {
  margin-bottom: 28px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-count {
  color: var(--paper-muted);
  font-weight: 700;
}

.blog-index-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--paper-line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper-line);
}

.site-index-list {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  list-style: none;
  background: var(--paper-line);
  border: 1px solid var(--paper-line);
  border-radius: 4px;
}

.site-index-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  color: var(--paper-ink);
  text-decoration: none;
  background: #fff;
  transition: background var(--transition-smooth);
}

.site-index-item:hover,
.site-index-item:focus-visible {
  background: var(--paper);
  outline: none;
}

.site-index-item span {
  font-weight: 700;
}

.site-index-item small {
  color: var(--paper-muted);
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px) clamp(18px, 3vw, 32px);
  padding: 0;
  margin-top: 36px;
  list-style: none;
}

.album-card {
  display: block;
  color: var(--paper-ink);
  text-decoration: none;
}

.album-card:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--accent-red);
  outline-offset: 5px;
}

.album-card__cover {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  object-fit: cover;
  transition: opacity var(--transition-smooth);
}

.album-card:hover .album-card__cover {
  opacity: 0.88;
}

.album-card__body {
  padding-top: 12px;
}

.album-card__eyebrow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  color: var(--paper-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.album-type,
.work-type {
  color: var(--accent-red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.album-title,
.blog-index-title {
  margin-top: 6px;
  color: var(--paper-ink);
  font-size: 1.18rem;
  font-weight: 400;
}

.album-meta,
.blog-index-meta {
  color: var(--paper-muted);
  font-size: 0.9rem;
}

.album-count {
  color: var(--paper-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.release-header,
.track-page-header {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 32px;
}

.release-header img,
.track-page-header img {
  width: 220px;
  height: 220px;
  border-radius: 4px;
  object-fit: cover;
}

.stream-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.stream-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--paper-line);
  border-radius: 4px;
  color: var(--paper-ink);
  font-size: 0.9rem;
}

.track-list {
  list-style: none;
  padding: 0;
  border: 1px solid var(--paper-line);
  border-radius: 4px;
  overflow: hidden;
}

.track-list li + li {
  border-top: 1px solid var(--paper-line);
}

.track-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  color: var(--paper-ink);
  text-decoration: none;
}

.track-list a:hover,
.track-list a:focus-visible {
  background: #fff;
  outline: none;
}

.track-duration,
.duration {
  color: var(--paper-muted);
  white-space: nowrap;
}

.track-header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}

.track-header h1 {
  margin-bottom: 0;
}

.video-wrapper {
  position: relative;
  height: 0;
  margin: 28px 0;
  padding-bottom: 56.25%;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.content-panel {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--paper-line);
}

.credits-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
}

.credits-label {
  color: var(--paper-muted);
  font-weight: 700;
}

.blog-index-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  padding: 18px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: background var(--transition-smooth);
}

.blog-index-item:hover,
.blog-index-item:focus-visible {
  background: var(--paper);
  outline: none;
}

.post-body {
  max-width: 760px;
}

.post-body p {
  margin: 0 0 1.4em;
  max-width: 100%;
}

.post-body h1,
.post-body h2,
.post-body h3 {
  margin: 1.8em 0 0.6em;
  color: var(--paper-ink);
  line-height: 1.15;
}

.post-body hr {
  border: none;
  border-top: 1px solid var(--paper-line);
  margin: 2em 0;
}

.post-body ul,
.post-body ol {
  padding-left: 1.4em;
  margin-bottom: 1.4em;
}

.post-body li {
  margin-bottom: 0.3em;
}

.post-body blockquote {
  border-left: 3px solid var(--accent-red);
  margin: 1.6em 0;
  padding: 0.2em 0 0.2em 1.2em;
  color: var(--paper-muted);
  font-style: italic;
}

.post-body pre {
  padding: 1.2em;
  margin-bottom: 1.4em;
  border-radius: 4px;
  background: #101310;
  color: var(--ink);
  overflow-x: auto;
}

.post-body code {
  padding: 0.15em 0.4em;
  border-radius: 3px;
  background: rgba(23, 27, 23, 0.08);
  font-size: 0.88em;
}

.post-body pre code {
  padding: 0;
  background: none;
}

.post-body img {
  max-width: 100%;
  margin: 1.4em 0;
  border-radius: 4px;
}

.article-feature-image {
  width: min(520px, 100%);
  margin: 30px 0;
}

.article-feature-image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.article-feature-image figcaption {
  margin-top: 8px;
  color: var(--paper-muted);
  font-size: 0.78rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 12px;
  color: var(--paper-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 760px;
  margin: 4px 0 34px;
  color: var(--paper-muted);
}

.article-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.support-panel { max-width: 760px; }
.support-panel h2 { margin-top: 6px; }

.support-page {
  max-width: 880px;
}

.support-page > h1 {
  margin-bottom: 34px;
  text-transform: lowercase;
}

.support-page .support-panel > p {
  max-width: 620px;
}

.support-page .crypto-support {
  margin-top: 48px;
}

.support-page .crypto-support h2 {
  text-transform: lowercase;
}

.support-signoff {
  margin-top: 42px;
  font-size: 0.92rem;
}

.support-primary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border-radius: 4px;
  background: var(--accent-red);
  color: #fff !important;
  text-decoration: none !important;
}

.crypto-support { margin-top: 20px; }

.crypto-support summary {
  width: fit-content;
  color: var(--paper-ink);
  font-weight: 800;
  cursor: pointer;
}

.wallet-list { display: grid; gap: 10px; }

.wallet-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--paper-line);
  border-radius: 4px;
}

.wallet-row > div { display: grid; }
.wallet-row span { color: var(--paper-muted); font-size: 0.78rem; }

.wallet-row code {
  min-width: 0;
  padding: 0;
  background: transparent;
  overflow-wrap: anywhere;
  user-select: all;
}

.copy-address {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--paper-line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--paper-ink);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
}

.copy-address:hover,
.copy-address:focus-visible { border-color: var(--accent-red); }

@media (max-width: 680px) {
  .wallet-row { grid-template-columns: minmax(0, 1fr) auto; }
  .wallet-row code { grid-column: 1 / -1; grid-row: 2; }
}

.feature-person {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
  padding: 1rem;
  border: 1px solid var(--paper-line);
  border-radius: 4px;
  background: var(--paper);
}

.feature-person--compact {
  gap: 1.25rem;
  margin: 1.25rem 0 1.5rem;
}

.feature-person__image {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  margin: 0;
  border-radius: 50%;
  object-fit: cover;
}

.feature-person--compact .feature-person__image {
  width: 72px;
  height: 72px;
}

.feature-person__name {
  color: var(--paper-ink);
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.2;
}

.feature-person--compact .feature-person__name {
  font-size: 1rem;
}

.feature-person__meta {
  margin-top: 0.25rem;
  color: var(--paper-muted);
  font-size: 0.9rem;
}

.feature-person__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.work-card,
.mini-release {
  color: inherit;
  text-decoration: none;
}

.work-card__inner {
  overflow: hidden;
  border: 1px solid var(--paper-line);
  border-radius: 4px;
  background: var(--paper);
  transition: border-color var(--transition-smooth), background var(--transition-smooth);
}

.work-card:hover .work-card__inner,
.work-card:focus-visible .work-card__inner {
  border-color: rgba(166, 61, 47, 0.35);
  background: #fff;
}

.work-card:focus-visible,
.mini-release:focus-visible {
  outline: 2px solid var(--accent-red);
  outline-offset: 4px;
}

.work-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
}

.work-card__body {
  padding: 0.75rem;
}

.work-card__title,
.mini-release__title {
  color: var(--paper-ink);
  font-weight: 800;
}

.work-card__meta,
.mini-release__meta {
  margin-top: 0.2rem;
  color: var(--paper-muted);
  font-size: 0.82rem;
}

.mini-release {
  display: block;
  margin: 1.25rem 0;
}

.mini-release__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  border: 1px solid var(--paper-line);
  border-radius: 4px;
  background: var(--paper);
  transition: border-color var(--transition-smooth), background var(--transition-smooth);
}

.mini-release:hover .mini-release__inner,
.mini-release:focus-visible .mini-release__inner {
  border-color: rgba(166, 61, 47, 0.35);
  background: #fff;
}

.mini-release__image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
}

.lyrics {
  max-width: 760px;
  white-space: pre-wrap;
  line-height: 2.2;
  font-size: 1.1rem;
  text-align: left;
}

.lyrics p {
  margin: 0 0 1em;
}

.lyrics-source {
  max-width: 760px;
  margin-top: 24px;
  color: var(--paper-muted);
  font-size: 0.82rem;
}

.copyright-page .post-body {
  max-width: 820px;
}

.copyright-heading {
  align-items: start;
}

.copyright-heading .page-count {
  max-width: 280px;
  text-align: right;
}

.copyright-subheading {
  align-items: center;
  margin-bottom: 16px;
}

.copyright-subheading h2 {
  margin: 0;
}

.copyright-list {
  list-style: none;
  padding: 0;
  border: 1px solid var(--paper-line);
  border-radius: 4px;
  overflow: hidden;
}

.copyright-list-item + .copyright-list-item {
  border-top: 1px solid var(--paper-line);
}

.copyright-list-link {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  background: #fff;
  color: var(--paper-ink);
  font-size: 1rem;
  text-decoration: none;
  transition: background var(--transition-smooth);
}

.copyright-list-link:hover,
.copyright-list-link:focus-visible {
  background: var(--paper);
  outline: none;
}

.copyright-list-meta,
.copyright-image-type,
.copyright-image-meta {
  color: var(--paper-muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.copyright-list-meta {
  white-space: nowrap;
}

.copyright-intro {
  margin-bottom: 28px;
}

.copyright-image-list {
  display: grid;
  gap: 16px;
}

.copyright-image-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--paper-line);
  border-radius: 4px;
  background: var(--paper);
}

.copyright-image-card img {
  width: 120px;
  height: 120px;
  border-radius: 4px;
  object-fit: cover;
}

.copyright-image-type {
  display: inline-block;
  text-transform: uppercase;
}

.copyright-image-title {
  margin: 4px 0;
  color: var(--paper-ink);
  font-size: 1.1rem;
  font-weight: 800;
}

.copyright-image-title a {
  color: inherit;
}

.copyright-image-figure {
  margin: 2rem 0;
}

.copyright-image-figure img {
  width: min(100%, 760px);
  height: auto;
  border: 1px solid var(--paper-line);
  border-radius: 4px;
}

.copyright-image-figure figcaption {
  margin-top: 12px;
  color: var(--paper-muted);
}

.copyright-meta-list {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 9px 16px;
  margin-top: 16px;
}

.copyright-meta-list dt {
  color: var(--paper-muted);
  font-weight: 700;
}

.copyright-meta-list dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 600px) {
  .copyright-heading,
  .copyright-subheading {
    align-items: start;
  }

  .copyright-heading .page-count {
    max-width: none;
    text-align: left;
  }

  .copyright-list-link {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .copyright-image-card {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
  }

  .copyright-image-card img {
    width: 82px;
    height: 82px;
  }

  .copyright-meta-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    --site-header-height: 64px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 44px;
    padding: 0 4px 0 16px;
    color: var(--ink);
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary:focus-visible {
    outline: 1px solid var(--ink);
    outline-offset: 4px;
  }

  .mobile-menu__icon {
    position: relative;
    width: 16px;
    height: 12px;
  }

  .mobile-menu__icon i {
    position: absolute;
    right: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    transition: transform var(--transition-smooth), top var(--transition-smooth), bottom var(--transition-smooth);
  }

  .mobile-menu__icon i:first-child {
    top: 2px;
  }

  .mobile-menu__icon i:last-child {
    bottom: 2px;
  }

  .mobile-menu[open] .mobile-menu__icon i:first-child {
    top: 5px;
    transform: rotate(45deg);
  }

  .mobile-menu[open] .mobile-menu__icon i:last-child {
    bottom: 6px;
    transform: rotate(-45deg);
  }

  .mobile-menu[open] summary {
    position: fixed;
    top: 10px;
    right: 24px;
    z-index: 1001;
  }

  .mobile-menu__panel {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    grid-template-rows: 1fr auto;
    padding: calc(var(--site-header-height) + 28px) 24px 28px;
    color: var(--ink);
    background: var(--bg);
    overflow-y: auto;
  }

  .mobile-menu__panel ul {
    list-style: none;
  }

  .mobile-menu__panel a {
    display: block;
    padding: 10px 0;
    color: var(--ink);
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.15;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-menu__panel a:focus-visible,
  .mobile-menu__panel a:hover,
  .mobile-menu__panel a[aria-current] {
    color: var(--accent-red);
    outline: none;
  }

  .mobile-menu__panel > p {
    margin-top: 40px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.4;
    text-transform: uppercase;
  }

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

  .about-layout,
  .latest-release,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .release-proof,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-portrait {
    display: none;
  }

  footer .socials {
    justify-content: flex-start;
  }

  .about-profile__grid {
    grid-template-columns: minmax(200px, 0.7fr) minmax(0, 1.3fr);
  }

  .about-profile__links {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .press-bios,
  .press-assets {
    grid-template-columns: 1fr;
  }

  .press-asset--main {
    grid-column: auto;
  }

  .press-section__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  #hero {
    min-height: 82vh;
    padding-top: 108px;
  }

  #hero h1 {
    font-size: 3.65rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading h2,
  .page-content h1,
  .page-shell h1 {
    font-size: 2.35rem;
  }

  .video-copy {
    display: grid;
  }

  .latest-release h3 {
    font-size: 2rem;
  }

  .page-content,
  .page-shell {
    padding-top: 110px;
  }

  .about-page {
    padding-top: 110px;
  }

  .works {
    grid-template-columns: 1fr;
    row-gap: 44px;
  }

  .works__header {
    position: static;
  }

  .works__catalog-link {
    grid-column: 1;
  }
}

@media (max-width: 600px) {
  .press-asset figcaption {
    flex-direction: column;
  }

  .press-asset__links {
    justify-content: flex-start;
    text-align: left;
  }

  .press-details dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-header__inner {
    padding: 0 16px;
  }

  .mobile-menu[open] summary {
    right: 16px;
  }

  .mobile-menu__panel {
    padding-right: 16px;
    padding-left: 16px;
  }

  #hero {
    min-height: min(76vh, 620px);
    padding: 96px 16px 42px;
    background-position: 63% center;
  }

  #hero h1 {
    font-size: 2.75rem;
  }

  #hero .tagline {
    font-size: 1rem;
  }

  .hero-actions,
  .page-actions,
  .listen-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  #about,
  #music,
  #blog,
  #video {
    padding: 40px 16px 64px;
  }

  .hero-stats {
    display: none;
  }

  .scroll-down {
    display: none;
  }

  .release-proof,
  .blog-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .platform-logos {
    gap: 18px 24px;
  }

  .platform-logos li {
    flex: 1 1 120px;
  }

  .feature-person {
    align-items: flex-start;
    gap: 1rem;
  }

  .latest-release .release-info {
    min-height: auto;
    padding: 0;
  }

  .about-layout {
    margin-top: 152px;
  }

  .contact-footer {
    padding-bottom: 84px;
  }

  .page-content,
  .page-shell {
    padding: 96px 16px 120px;
  }

  .about-page {
    padding: 96px 16px 120px;
  }

  .about-profile__header {
    padding-bottom: 30px;
  }

  .about-profile__header h1 {
    font-size: 3.4rem;
  }

  .about-profile__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 0 64px;
  }

  .about-profile__portrait {
    max-width: 280px;
  }

  .about-profile__links {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .works,
  .about-contact {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .works-year {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .works-year h3 {
    padding-top: 0;
  }

  .works-year a {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .page-list-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .page-content h1,
  .page-shell h1 {
    font-size: 1.9rem;
    line-height: 1.04;
  }

  .release-header,
  .track-page-header {
    grid-template-columns: 92px 1fr;
    gap: 14px;
  }

  .release-header img,
  .track-page-header img {
    width: 92px;
    height: 92px;
  }

  .album-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
