/* =========================================================
   Sebastián Oliwa — Site V1

   MAIN KNOB TO TWEAK:
   --overlay-opacity controls how dark the veil over the photo is.
   Try values between 0.15 and 0.60.
   ========================================================= */

:root {
  --overlay-opacity: 0.32;

  --text-color: #ffffff;
  --muted-color: rgba(255, 255, 255, 0.72);
  --line-color: rgba(255, 255, 255, 0.24);

  --page-padding: clamp(1.25rem, 3vw, 3.5rem);
  --header-height: 6rem;

  --fade-speed: 900ms;
  --content-speed: 420ms;
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text-color);
  background: #111;
  font-family:"Courier Prime","Courier New",monospace;
  font-weight: 300;
  letter-spacing: -0.015em;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

.background-layer,
.background-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.background-layer {
  z-index: -3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.01);
  transition: opacity var(--fade-speed) ease;
}

.background-current {
  opacity: 1;
}

.background-next {
  opacity: 0;
}

.background-overlay {
  z-index: -2;
  background: rgba(0, 0, 0, var(--overlay-opacity));
}

/* Optional gentle shading for slightly more reliable readability */
.background-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.16) 0%,
      rgba(0, 0, 0, 0.04) 45%,
      rgba(0, 0, 0, 0.12) 100%
    );
}

.site-header {
  position: fixed;
  z-index: 10;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  padding: var(--page-padding);
  text-align: center;
  pointer-events: none;
}

.artist-name,
.site-nav,
.menu-toggle {
  pointer-events: auto;
}

.artist-name {
  position: relative;
  z-index: 2;
  font-size: clamp(1.7rem, 2.7vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.015em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2.1rem);
  margin: 0;
}

.site-nav a,
.social-links a,
.text-link,
.background-info,
.menu-toggle {
  position: relative;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after,
.social-links a:hover::after,
.social-links a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a {
  color: var(--muted-color);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text-color);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.site-main {
  min-height: 100vh;
}

.page-section {
  min-height: 100vh;
  display: none;
  align-items: flex-end;
  padding:
    calc(var(--header-height) + 3rem)
    var(--page-padding)
    clamp(5rem, 10vh, 8rem);
  opacity: 0;
  transform: translateY(10px);
}

.page-section.is-active {
  display: flex;
  animation: section-in var(--content-speed) ease forwards;
}

@keyframes section-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-copy {
  max-width: min(900px, 90vw);
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--muted-color);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 14ch;
  margin-bottom: 0;
  font-size: clamp(2.7rem, 7.8vw, 8.8rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: clamp(2rem, 4vw, 4rem);
  font-size: clamp(2.8rem, 6vw, 6.7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 2vw, 2.2rem);
  font-weight: 400;
}

p {
  line-height: 1.6;
}

.content-wrap {
  width: min(1080px, 100%);
}

.content-wrap.narrow {
  width: min(760px, 100%);
}

.lead {
  max-width: 28ch;
  font-size: clamp(1.45rem, 2.8vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.work-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-bottom: 3rem;
}

.work-list article {
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-color);
}

.meta {
  color: var(--muted-color);
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-list {
  display: grid;
  gap: 2.3rem;
  max-width: 930px;
  margin-bottom: 3rem;
}

blockquote {
  margin: 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-color);
}

blockquote p {
  max-width: 38ch;
  margin-bottom: 0.8rem;
  font-size: clamp(1.35rem, 2.4vw, 2.45rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

blockquote footer {
  color: var(--muted-color);
  font-size: 0.84rem;
}

.text-link,
.contact-email {
  display: inline-block;
  font-weight: 400;
}

.contact-email {
  margin-top: 1rem;
  font-size: clamp(1.4rem, 3vw, 3rem);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
  color: var(--muted-color);
  font-size: 0.9rem;
}


@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: none;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.4rem;
    margin: 0;
    padding: 7rem var(--page-padding) 4rem;
    background: rgba(10, 10, 10, 0.93);
    backdrop-filter: blur(14px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    font-size: clamp(1.4rem, 5vw, 2.7rem);
    letter-spacing: -0.025em;
    text-transform: none;
  }

  .work-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 5rem;
  }

  .page-section {
    padding-bottom: 5.5rem;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 5.5rem);
  }

  h2 {
    font-size: clamp(2.8rem, 14vw, 5rem);
  }

}

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


/* V2: centered home identity and navigation */
body:not(.is-home) .site-header {
  inset: 0 0 auto 0;
  min-height: var(--header-height);
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 var(--page-padding);
  text-align: left;
  pointer-events: auto;
}

body:not(.is-home) .artist-name {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 500;
}

body:not(.is-home) .site-nav {
  margin-left: auto;
  justify-content: flex-end;
}


/* =========================================================
   V3 — fixed lower navigation
   ========================================================= */

.site-footer {
  position: fixed;
  z-index: 10;
  right: var(--page-padding);
  bottom: 1.35rem;
  left: var(--page-padding);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 2rem;
  pointer-events: none;
}

.footer-left,
.listen-link,
.footer-socials {
  pointer-events: auto;
}

.footer-left {
  justify-self: start;
  min-width: 0;
}

.background-info {
  max-width: 34vw;
  overflow: hidden;
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.52);
  background: transparent;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: default;
}

.listen-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 0.65rem;
  color: var(--text-color);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
}

.listen-icon {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.listen-link::after {
  content: "";
  position: absolute;
  right: 0.30em;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.listen-link:hover::after,
.listen-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.9rem;
}

.footer-socials a {
  display: grid;
  width: 1.05rem;
  height: 1.05rem;
  place-items: center;
  color: rgba(255, 255, 255, 0.84);
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--text-color);
  transform: translateY(-1px);
}

.footer-socials svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

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

@media (max-width: 700px) {
  .site-footer {
    right: var(--page-padding);
    bottom: 1rem;
    left: var(--page-padding);
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "listen socials"
      "credit credit";
    row-gap: 0.8rem;
  }

  .listen-link {
    grid-area: listen;
    justify-self: start;
  }

  .footer-socials {
    grid-area: socials;
    justify-self: end;
  }

  .footer-left {
    grid-area: credit;
    justify-self: start;
  }

  .background-info {
    max-width: 80vw;
    font-size: 0.56rem;
  }
}


/* =========================================================
   V6 — long-form Music page
   ========================================================= */

.page-section.scroll-page {
  display: none;
  align-items: flex-start;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 8rem;
}

.page-section.scroll-page.is-active {
  display: block;
}

.music-page {
  padding-bottom: 2rem;
}

.music-group {
  margin-top: clamp(4rem, 8vw, 8rem);
}

.section-heading-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-color);
}

.section-heading-row h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.section-heading-row p {
  margin: 0;
  color: var(--muted-color);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem) clamp(1rem, 2vw, 2rem);
}

.release-card {
  min-width: 0;
}

.release-thumb {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  transition: background 220ms ease, transform 220ms ease;
}

.release-card:hover .release-thumb {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.square-thumb {
  aspect-ratio: 1 / 1;
}

.video-thumb {
  aspect-ratio: 16 / 9;
}

.release-thumb span {
  color: rgba(255,255,255,0.48);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.release-card .meta {
  margin-bottom: 0.45rem;
}

.release-card h4 {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

@media (max-width: 1000px) {
  .release-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .page-section.scroll-page {
    padding-top: calc(var(--header-height) + 3rem);
  }

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

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 430px) {
  .release-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   V7 — Press page
   ========================================================= */

.press-page {
  padding-bottom: 2rem;
}

.press-featured,
.press-archive {
  margin-top: clamp(4rem, 8vw, 8rem);
}

.press-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-color);
  background: var(--line-color);
}

.press-feature {
  position: relative;
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: rgba(15, 15, 15, 0.28);
  backdrop-filter: blur(4px);
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.press-feature:hover,
.press-feature:focus-visible {
  background: rgba(255, 255, 255, 0.10);
}

.press-quote {
  max-width: 25ch;
  margin-bottom: auto;
  font-size: clamp(1.55rem, 2.6vw, 2.85rem);
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.press-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-color);
  color: var(--muted-color);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.press-meta-row span:last-child {
  text-align: right;
}

.press-read {
  margin-top: 1.1rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.press-year {
  margin-top: 3.5rem;
}

.press-year h4 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.press-row {
  display: grid;
  grid-template-columns: minmax(12rem, 1.25fr) minmax(10rem, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line-color);
  transition:
    padding-left 180ms ease,
    background 180ms ease;
}

.press-row:last-child {
  border-bottom: 1px solid var(--line-color);
}

.press-row:hover,
.press-row:focus-visible {
  padding-left: 0.55rem;
  background: rgba(255,255,255,0.045);
}

.press-row div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.press-row strong {
  font-size: 1rem;
  font-weight: 500;
}

.press-row div span,
.archive-link {
  color: var(--muted-color);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.press-row p {
  margin: 0;
  color: rgba(255,255,255,0.84);
}

.archive-link {
  white-space: nowrap;
}

@media (max-width: 800px) {
  .press-feature-grid {
    grid-template-columns: 1fr;
  }

  .press-feature {
    min-height: 18rem;
  }

  .press-row {
    grid-template-columns: 1fr auto;
    gap: 0.8rem 1.5rem;
  }

  .press-row p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .archive-link {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 520px) {
  .press-meta-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .press-meta-row span:last-child {
    text-align: left;
  }

  .press-row {
    grid-template-columns: 1fr;
  }

  .press-row p,
  .archive-link {
    grid-column: 1;
    grid-row: auto;
  }
}


/* =========================================================
   V8 — Music mini navigation
   ========================================================= */

.section-jump-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.9rem 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.30),
    rgba(0, 0, 0, 0)
  );
  backdrop-filter: blur(3px);
}

.section-jump-nav a {
  position: relative;
  color: var(--muted-color);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.section-jump-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.section-jump-nav a:hover,
.section-jump-nav a:focus-visible {
  color: var(--text-color);
}

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

.anchor-section {
  scroll-margin-top: calc(var(--header-height) + 4rem);
}

/* =========================================================
   V8 — compact Press page grouped by release
   ========================================================= */

.press-intro,
.press-by-release {
  margin-top: clamp(4rem, 8vw, 7rem);
}

.compact-heading {
  margin-bottom: 1.25rem;
}

.selected-press-list {
  border-top: 1px solid var(--line-color);
}

.selected-press-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line-color);
  transition: padding-left 180ms ease;
}

.selected-press-list a:hover,
.selected-press-list a:focus-visible {
  padding-left: 0.45rem;
}

.selected-press-list p {
  max-width: 48ch;
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.85rem);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.selected-press-list span {
  color: var(--muted-color);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.press-release-block {
  display: grid;
  grid-template-columns: minmax(10rem, 14rem) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: 2.25rem 0;
  border-top: 1px solid var(--line-color);
}

.press-release-block:last-child {
  border-bottom: 1px solid var(--line-color);
}

.press-release-cover .release-thumb {
  width: 100%;
  margin-bottom: 1rem;
}

.press-release-cover h4 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.press-release-links {
  align-self: start;
}

.press-release-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  transition: padding-left 180ms ease;
}

.press-release-links a:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.press-release-links a:hover,
.press-release-links a:focus-visible {
  padding-left: 0.45rem;
}

.press-release-links div {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.press-release-links strong {
  font-size: 0.98rem;
  font-weight: 500;
}

.press-release-links div span,
.press-release-links > a > span {
  color: var(--muted-color);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.press-release-links > a > span {
  white-space: nowrap;
}

@media (max-width: 760px) {
  .section-jump-nav {
    gap: 1rem;
  }

  .selected-press-list a {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.65rem;
  }

  .selected-press-list span {
    text-align: left;
  }

  .press-release-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .press-release-cover {
    display: grid;
    grid-template-columns: 7rem 1fr;
    align-items: end;
    gap: 1.25rem;
  }

  .press-release-cover .release-thumb {
    margin-bottom: 0;
  }
}


/* V9 — unified Press / Placements feed */
.feed-intro{max-width:42rem;margin:0 0 clamp(3rem,6vw,5rem)}
.feed-intro p{margin:0;color:rgba(255,255,255,.82);font-size:clamp(1.15rem,2vw,1.8rem);line-height:1.35;letter-spacing:-.03em}
.press-feed{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:clamp(1.2rem,2.2vw,2.2rem)}
.feed-card{min-width:0;overflow:hidden;border:1px solid rgba(255,255,255,.18);background:rgba(10,10,10,.22);backdrop-filter:blur(3px);transition:transform 180ms ease,background 180ms ease}
.feed-card:hover{transform:translateY(-2px);background:rgba(255,255,255,.06)}
.feed-thumb{display:grid;place-items:center;overflow:hidden;border-bottom:1px solid rgba(255,255,255,.16);background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.02))}
.album-thumb{aspect-ratio:1/1}.placement-thumb{aspect-ratio:16/10}
.feed-thumb span{color:rgba(255,255,255,.45);font-size:.62rem;letter-spacing:.14em;text-transform:uppercase}
.feed-card-body{padding:1.2rem 1.2rem 1.3rem}
.feed-kicker{margin:0 0 .55rem;color:var(--muted-color);font-size:.65rem;letter-spacing:.11em;text-transform:uppercase}
.feed-card h3{margin:0 0 .8rem;font-size:clamp(1.15rem,1.6vw,1.55rem);font-weight:500;letter-spacing:-.035em}
.feed-summary{margin:0;color:rgba(255,255,255,.78);font-size:.9rem;line-height:1.55}
.feed-meta{display:flex;align-items:center;flex-wrap:wrap;gap:.45rem .8rem;margin-top:1.25rem;padding-top:.9rem;border-top:1px solid rgba(255,255,255,.14);color:var(--muted-color);font-size:.66rem;letter-spacing:.08em;text-transform:uppercase}
.feed-meta a{color:var(--text-color);font-weight:500}
.feed-meta a:hover,.feed-meta a:focus-visible{text-decoration:underline;text-underline-offset:.25rem}
@media(max-width:1050px){.press-feed{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:620px){.press-feed{grid-template-columns:1fr}}


/* =========================================================
   V10 — compact Music
   ========================================================= */

.section-jump-nav {
  position: static;
  top: auto;
  margin: -1rem 0 1.5rem;
  padding: 0;
  background: none;
  backdrop-filter: none;
}

.music-group {
  margin-top: clamp(3rem, 5vw, 5rem);
}

.release-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1.5rem, 2.5vw, 2.5rem) clamp(0.8rem, 1.5vw, 1.4rem);
}

.release-thumb {
  margin-bottom: 0.75rem;
}

.release-card h4 {
  font-size: clamp(0.82rem, 1vw, 1rem);
  line-height: 1.2;
}

.release-card .meta {
  margin-bottom: 0.3rem;
  font-size: 0.6rem;
}

.section-heading-row h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.section-heading-row p {
  font-size: 0.58rem;
}

@media (max-width: 1100px) {
  .release-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .release-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .release-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   V10 — Live
   ========================================================= */

.live-page {
  max-width: 980px;
}

.live-status {
  display: grid;
  grid-template-columns: minmax(12rem, 0.7fr) minmax(0, 1.3fr);
  gap: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
}

.live-status-label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted-color);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.live-status p {
  margin: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
}

.live-note {
  max-width: 42rem;
  margin: clamp(2.5rem, 5vw, 5rem) 0 2.5rem;
}

.live-note p {
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  line-height: 1.55;
}

.live-note p:last-child {
  color: var(--muted-color);
}

@media (max-width: 680px) {
  .live-status {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

/* =========================================================
   V10 — Films & Installations
   ========================================================= */

.art-page {
  padding-bottom: 2rem;
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 2.8vw, 2.8rem);
}

.art-card {
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-color);
}

.art-copy h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.art-copy p:not(.meta) {
  margin-bottom: 1.1rem;
  color: rgba(255,255,255,0.76);
  font-size: 0.82rem;
  line-height: 1.5;
}

.art-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
}

.art-thumb span {
  color: rgba(255,255,255,0.42);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .art-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   V10 — denser Press feed
   ========================================================= */

.press-feed {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feed-card-body {
  padding: 0.85rem 0.85rem 0.95rem;
}

.feed-card h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
}

.feed-summary {
  font-size: 0.72rem;
  line-height: 1.48;
}

.feed-kicker {
  margin-bottom: 0.4rem;
  font-size: 0.54rem;
}

.feed-meta {
  gap: 0.35rem 0.55rem;
  margin-top: 0.85rem;
  padding-top: 0.65rem;
  font-size: 0.54rem;
}

.feed-thumb span {
  font-size: 0.52rem;
}

@media (max-width: 1200px) {
  .press-feed {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 850px) {
  .press-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .press-feed {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   V10 — About
   ========================================================= */

.about-page {
  max-width: 820px;
}

.about-copy {
  max-width: 46rem;
}

.about-copy p {
  margin-bottom: 1.25rem;
  font-size: clamp(0.9rem, 1.25vw, 1.08rem);
  line-height: 1.68;
}

.about-closing {
  margin-top: 2.4rem;
  color: rgba(255,255,255,0.72);
}


/* =========================================================
   V11 — compact 16:9 Press feed
   ========================================================= */

.press-feed {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.feed-card {
  display: flex;
  flex-direction: column;
}

.feed-thumb,
.album-thumb,
.placement-thumb {
  aspect-ratio: 16 / 9;
}

.feed-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0.72rem 0.72rem 0.8rem;
}

.feed-kicker {
  margin-bottom: 0.32rem;
  font-size: 0.48rem;
}

.feed-card h3 {
  margin-bottom: 0.42rem;
  font-size: clamp(0.8rem, 0.9vw, 0.96rem);
}

.feed-summary {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: auto;
  font-size: 0.63rem;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.feed-meta {
  margin-top: 0.68rem;
  padding-top: 0.52rem;
  font-size: 0.47rem;
}

.feed-thumb span {
  font-size: 0.46rem;
}

@media (max-width: 1350px) {
  .press-feed {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .press-feed {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .press-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .press-feed {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   V11 — LISTEN chooser
   ========================================================= */

.listen-menu {
  position: relative;
  justify-self: center;
  pointer-events: auto;
}

.listen-link {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.listen-options {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 1rem);
  min-width: 12rem;
  padding: 0.45rem;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  transform: translateX(-50%);
}

.listen-options[hidden] {
  display: none;
}

.listen-options a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 0.8rem;
  color: rgba(255,255,255,0.86);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  transition: background 160ms ease, color 160ms ease;
}

.listen-options a:hover,
.listen-options a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.listen-options svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.listen-options small {
  color: rgba(255,255,255,0.45);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listen-options .is-coming-soon {
  cursor: default;
  opacity: 0.65;
}



/* =========================================================
   V12 — global cinematic background motion
   ========================================================= */

.background-layer {
  will-change: transform, filter;
  transform: scale(1.025);
  animation:
    background-drift var(--background-motion-duration, 18s)
    ease-in-out
    infinite alternate;
}

@keyframes background-drift {
  0% {
    transform:
      scale(var(--background-scale-start, 1.03))
      translate3d(
        var(--background-x-start, -1.2%),
        var(--background-y-start, -0.8%),
        0
      );
    filter:
      blur(var(--background-blur-start, 0px))
      saturate(var(--background-saturation-start, 1));
  }

  50% {
    filter:
      blur(var(--background-blur-mid, 0.8px))
      saturate(var(--background-saturation-mid, 1.08));
  }

  100% {
    transform:
      scale(var(--background-scale-end, 1.12))
      translate3d(
        var(--background-x-end, 1.4%),
        var(--background-y-end, 1.0%),
        0
      );
    filter:
      blur(var(--background-blur-end, 0.35px))
      saturate(var(--background-saturation-end, 1.12));
  }
}

/*
The values below are intentionally subtle.
To increase the motion later, try:
--background-scale-end: 1.09;
To reduce it:
--background-scale-end: 1.04;
*/

@media (prefers-reduced-motion: reduce) {
  .background-layer {
    animation: none;
    transform: scale(1.025);
    filter: none;
  }
}


/* V13 — lighter floating LISTEN options */
.listen-options {
  padding: 0;
}

.listen-options a {
  width: max-content;
  margin: 0.18rem auto;
  padding: 0.38rem 0.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.listen-options a:hover,
.listen-options a:focus-visible {
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}


/* =========================================================
   V14 — more compact Art Installations & Films
   ========================================================= */

.art-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.art-card {
  padding-top: 0.8rem;
}

.art-copy h3 {
  margin-bottom: 0.4rem;
  font-size: clamp(0.85rem, 1vw, 1rem);
}

.art-copy p:not(.meta) {
  margin-bottom: 0.8rem;
  font-size: 0.68rem;
  line-height: 1.45;
}

.art-copy .meta {
  margin-bottom: 0.35rem;
  font-size: 0.52rem;
}

.art-thumb span {
  font-size: 0.48rem;
}

@media (max-width: 1100px) {
  .art-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .art-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .art-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   V14 — normalized Contact sizing
   ========================================================= */

#contact .lead {
  max-width: 34rem;
  font-size: clamp(0.95rem, 1.35vw, 1.15rem);
  line-height: 1.55;
  letter-spacing: -0.015em;
}

#contact .contact-email {
  margin-top: 0.8rem;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
}

#contact .social-links {
  margin-top: 2rem;
  gap: 1.1rem;
  font-size: 0.72rem;
}

/* =========================================================
   V14 — horizontal LISTEN options
   ========================================================= */

.listen-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: max-content;
}

.listen-options[hidden] {
  display: none;
}

.listen-options a {
  margin: 0;
}

/* Slightly slower global background motion */
.background-layer {
  animation-duration: var(--background-motion-duration, 22s);
}


/* =========================================================
   V15 — vertical positioning for short pages
   ========================================================= */

#live.page-section,
#contact.page-section {
  align-items: flex-start;
  padding-top: clamp(9rem, 18vh, 13rem);
  padding-bottom: 6rem;
}

#live .content-wrap,
#contact .content-wrap {
  margin-top: 0;
}

/* Give the booking link a more deliberate editorial treatment */
#live .text-link {
  margin-top: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================================================
   V15 — aligned thumbnails in Art Installations & Films
   ========================================================= */

.art-card {
  display: flex;
  flex-direction: column;
}

.art-copy {
  display: flex;
  flex-direction: column;
  min-height: 12.5rem;
}

.art-copy p:not(.meta) {
  margin-bottom: 0;
}

.art-thumb {
  margin-top: auto;
  width: 100%;
}

/* On smaller screens, fixed copy height is unnecessary */
@media (max-width: 800px) {
  .art-copy {
    min-height: 11.5rem;
  }
}

@media (max-width: 520px) {
  .art-copy {
    min-height: 0;
  }

  .art-thumb {
    margin-top: 0.8rem;
  }
}


/* =========================================================
   V16 — tighter aligned Art cards
   ========================================================= */

.art-copy {
  min-height: 9.4rem;
}

.art-copy p:not(.meta) {
  margin-bottom: 0.7rem;
}

.art-thumb {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .art-copy {
    min-height: 10rem;
  }
}

@media (max-width: 800px) {
  .art-copy {
    min-height: 9.2rem;
  }
}

@media (max-width: 520px) {
  .art-copy {
    min-height: 0;
  }
}


/* =========================================================
   V17 — small-type early-web system
   ========================================================= */

:root {
  --micro-size: 0.64rem;
}

h1 {
  max-width: none;
  font-size: clamp(1.7rem, 3.3vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: clamp(1.8rem, 3vw, 3rem);
  font-size: clamp(1.45rem, 2.6vw, 2.55rem);
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(0.95rem, 1.25vw, 1.2rem);
  line-height: 1.25;
}

.artist-name {
  font-size: clamp(1.3rem, 2vw, 2rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 0.8rem;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.site-nav a {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.section-heading-row h3 {
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  text-transform: uppercase;
}

.section-heading-row h3::before {
  content: "< ";
  color: var(--muted-color);
}

.section-heading-row h3::after {
  content: " >";
  color: var(--muted-color);
}

.section-heading-row p {
  font-size: 0.52rem;
}

.section-jump-nav {
  gap: 0.75rem 1.1rem;
}

.section-jump-nav a {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.release-card h4,
.art-copy h3,
.feed-card h3 {
  font-size: 0.82rem;
  letter-spacing: 0;
}

.release-card .meta,
.art-copy .meta,
.feed-kicker,
.feed-meta,
.background-info {
  font-size: 0.48rem;
}

.release-thumb span,
.art-thumb span,
.feed-thumb span {
  font-size: 0.44rem;
}

.feed-summary,
.art-copy p:not(.meta) {
  font-size: 0.62rem;
  line-height: 1.5;
}

.feed-intro p,
#contact .lead,
.about-copy p,
.live-status p {
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  line-height: 1.65;
  letter-spacing: 0;
}

.about-copy {
  max-width: 39rem;
}

.about-closing::before {
  content: "> ";
}

.text-link,
.contact-email {
  font-size: 0.76rem !important;
}

.social-links {
  font-size: 0.62rem !important;
}

.listen-link {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}

.listen-options a {
  font-size: 0.64rem;
}

.press-page,
.music-page,
.art-page {
  max-width: 1180px;
}

/* Tiny structural markers */
.release-card::before,
.art-card::before,
.feed-card::before {
  display: block;
  color: rgba(255,255,255,0.35);
  font-size: 0.46rem;
  letter-spacing: 0.08em;
}

.release-card::before {
  content: "> item";
  margin-bottom: 0.35rem;
}

.art-card::before {
  content: "> project";
  margin-bottom: 0.35rem;
}

.feed-card::before {
  content: "> entry";
  padding: 0.45rem 0.55rem 0;
}

/* Keep the language subtle rather than decorative everywhere */
.feed-card,
.art-card,
.release-card {
  position: relative;
}

/* =========================================================
   V17 — back to top
   ========================================================= */

.back-to-top {
  position: fixed;
  z-index: 20;
  right: var(--page-padding);
  bottom: 4.5rem;
  border: 0;
  padding: 0.4rem 0;
  color: rgba(255,255,255,0.72);
  background: transparent;
  font-family: inherit;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(0.4rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    color 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: #fff;
}

.back-to-top::before {
  content: "[ ";
}

.back-to-top::after {
  content: " ]";
}

@media (max-width: 700px) {
  h2 {
    font-size: clamp(1.25rem, 7vw, 1.8rem);
  }

  .back-to-top {
    bottom: 6rem;
  }
}


/* =========================================================
   V18 — smaller section headers
   ========================================================= */

h2 {
  margin-bottom: clamp(1.2rem, 2vw, 2rem);
  font-size: clamp(0.9rem, 1.35vw, 1.3rem);
  line-height: 1.1;
  letter-spacing: 0;
}

@media (max-width: 700px) {
  h2 {
    font-size: clamp(0.85rem, 4vw, 1.1rem);
  }
}

.eyebrow {
  display: none;
}

/* =========================================================
   V18 — Art Installations & Films spacing
   ========================================================= */

.art-grid {
  row-gap: clamp(2.4rem, 4vw, 4rem);
}

.art-copy {
  min-height: 8.2rem;
}

.art-copy p:not(.meta) {
  margin-bottom: 0.25rem;
}

.art-thumb {
  margin-top: 0.15rem;
}

@media (max-width: 1100px) {
  .art-copy {
    min-height: 8.8rem;
  }
}

@media (max-width: 800px) {
  .art-copy {
    min-height: 8rem;
  }
}

@media (max-width: 520px) {
  .art-copy {
    min-height: 0;
  }

  .art-thumb {
    margin-top: 0.3rem;
  }
}

/* =========================================================
   V18 — stronger LISTEN presence
   ========================================================= */

.listen-link {
  font-size: 0.9rem;
  letter-spacing: 0.24em;
}

.listen-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.listen-options a {
  font-size: 0.72rem;
}


/* =========================================================
   V19 — medium-strength global background motion
   ========================================================= */

.background-layer {
  animation-duration: var(--background-motion-duration, 20s);
}

@keyframes background-drift {
  0% {
    transform:
      scale(var(--background-scale-start, 1.025))
      translate3d(
        var(--background-x-start, -0.9%),
        var(--background-y-start, -0.55%),
        0
      );
    filter:
      blur(var(--background-blur-start, 0px))
      saturate(var(--background-saturation-start, 1));
  }

  50% {
    filter:
      blur(var(--background-blur-mid, 0.45px))
      saturate(var(--background-saturation-mid, 1.045));
  }

  100% {
    transform:
      scale(var(--background-scale-end, 1.09))
      translate3d(
        var(--background-x-end, 1.0%),
        var(--background-y-end, 0.7%),
        0
      );
    filter:
      blur(var(--background-blur-end, 0.2px))
      saturate(var(--background-saturation-end, 1.07));
  }
}

/* =========================================================
   V19 — horizontal compact Press feed
   ========================================================= */

.press-feed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.feed-card {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  min-height: 7rem;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(10,10,10,0.18);
}

.feed-card::before {
  display: none;
}

.feed-thumb,
.album-thumb,
.placement-thumb {
  aspect-ratio: auto;
  min-height: 100%;
  border-right: 1px solid rgba(255,255,255,0.14);
  border-bottom: 0;
}

.feed-card-body {
  display: flex;
  flex-direction: column;
  padding: 0.68rem 0.75rem 0.72rem;
}

.feed-kicker {
  margin-bottom: 0.25rem;
  font-size: 0.45rem;
}

.feed-card h3 {
  margin-bottom: 0.35rem;
  font-size: 0.76rem;
  line-height: 1.15;
}

.feed-summary {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: auto;
  font-size: 0.58rem;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.feed-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem 0.55rem;
  margin-top: 0.55rem;
  padding-top: 0.45rem;
  font-size: 0.45rem;
}

.feed-meta a {
  margin-left: 0;
}

.feed-thumb span {
  font-size: 0.42rem;
}

@media (max-width: 1050px) {
  .press-feed {
    grid-template-columns: 1fr;
  }

  .feed-card {
    grid-template-columns: 9rem minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .feed-card {
    grid-template-columns: 6.5rem minmax(0, 1fr);
  }

  .feed-card h3 {
    font-size: 0.72rem;
  }

  .feed-summary {
    -webkit-line-clamp: 3;
  }
}


/* =========================================================
   V20 — subtle top and bottom contrast bands
   ========================================================= */

.site-header::before,
.site-footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.site-header::before {
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.34) 0%,
      rgba(0,0,0,0.20) 58%,
      rgba(0,0,0,0) 100%
    );
}

.site-footer::before {
  right: calc(-1 * var(--page-padding));
  bottom: -1.35rem;
  left: calc(-1 * var(--page-padding));
  height: 5.25rem;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.38) 0%,
      rgba(0,0,0,0.22) 58%,
      rgba(0,0,0,0) 100%
    );
}

/* Keep text above the bands */
.artist-name,
.site-nav,
.menu-toggle,
.footer-left,
.listen-menu,
.footer-socials {
  position: relative;
  z-index: 1;
}

/* Press intro removed */
.feed-intro {
  display: none;
}


/* =========================================================
   V21 — visible top and bottom contrast bands
   ========================================================= */

.site-header,
.site-footer {
  isolation: isolate;
}

.site-header::before,
.site-footer::before {
  z-index: 0;
}

.site-header::before {
  inset: 0;
  height: 7rem;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.62) 0%,
      rgba(0,0,0,0.44) 42%,
      rgba(0,0,0,0.16) 78%,
      rgba(0,0,0,0) 100%
    );
}

.site-footer::before {
  right: calc(-1 * var(--page-padding));
  bottom: -1.35rem;
  left: calc(-1 * var(--page-padding));
  height: 6.5rem;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.66) 0%,
      rgba(0,0,0,0.46) 42%,
      rgba(0,0,0,0.18) 78%,
      rgba(0,0,0,0) 100%
    );
}

.artist-name,
.site-nav,
.menu-toggle,
.footer-left,
.listen-menu,
.footer-socials {
  z-index: 2;
}


/* =========================================================
   V22 — solid translucent top and bottom bars
   ========================================================= */

.site-header::before {
  inset: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.site-footer::before {
  right: calc(-1 * var(--page-padding));
  bottom: -1.35rem;
  left: calc(-1 * var(--page-padding));
  height: 4.8rem;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* On the home screen the centered header occupies the full viewport.
   Limit the visual bar to a compact strip around the centered identity. */
body.is-home .site-header::before {
  top: 50%;
  bottom: auto;
  height: 8.5rem;
  transform: translateY(-50%);
}


/* =========================================================
   V23 — lighter, tighter navigation bars
   ========================================================= */

/* No central translucent strip on the home screen */
body.is-home .site-header::before {
  display: none;
}

/* Internal top bar: lower opacity and tighter height */
body:not(.is-home) .site-header::before {
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  height: var(--header-height);
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* Bottom bar: tighter and closer to the footer content */
.site-footer::before {
  right: calc(-1 * var(--page-padding));
  bottom: -0.75rem;
  left: calc(-1 * var(--page-padding));
  height: 3.35rem;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}


/* =========================================================
   V24 — tighter top bar, flush bottom bar
   ========================================================= */

/* Top bar: more compact */
body:not(.is-home) .site-header::before {
  height: 4.35rem;
}

/* Bottom bar: extend fully to viewport bottom */
.site-footer::before {
  bottom: -1.35rem;
  height: 4.1rem;
}


/* =========================================================
   V25 — optical centering and lighter bars
   ========================================================= */

/* Slightly lighter bars */
body:not(.is-home) .site-header::before {
  background: rgba(0, 0, 0, 0.18);
}

.site-footer::before {
  background: rgba(0, 0, 0, 0.20);
}

/* Move header content slightly upward within the top bar */
body:not(.is-home) .site-header {
  transform: translateY(-0.22rem);
}

/* Move footer content slightly downward within the bottom bar */
.site-footer {
  transform: translateY(0.18rem);
}


/* =========================================================
   V26 — home navigation and footer cleanup
   ========================================================= */

body.is-home .site-nav a {
  font-size: 1.36rem;
  letter-spacing: 0.06em;
}

body:not(.is-home) .site-header {
  transform: translateY(-0.38rem);
}

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

.listen-menu {
  grid-column: 2;
}

.footer-socials {
  grid-column: 3;
}

.footer-left,
.background-info {
  display: none !important;
}

#contact .contact-email {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

@media (max-width: 900px) {
  body.is-home .site-nav a {
    font-size: clamp(1.2rem, 6vw, 2rem);
  }
}


/* =========================================================
   V27 — optical alignment refinements
   ========================================================= */

/* Internal header content slightly higher */
body:not(.is-home) .site-header {
  transform: translateY(-0.62rem);
}

/* Home navigation: a little smaller than V26 */
body.is-home .site-nav a {
  font-size: 1.1rem;
}

/* Move only the artist name slightly upward in the home composition */
body.is-home .artist-name {
  transform: translateY(-0.55rem);
}

/* Contact link integrated into the sentence */
#contact .inline-contact-link {
  position: relative;
  color: var(--text-color);
  font-size: inherit;
  text-decoration: none;
}

#contact .inline-contact-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.16rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 180ms ease;
}

#contact .inline-contact-link:hover::after,
#contact .inline-contact-link:focus-visible::after {
  transform: scaleX(0);
  transform-origin: right;
}

@media (max-width: 900px) {
  body.is-home .site-nav a {
    font-size: clamp(1rem, 4.8vw, 1.55rem);
  }
}


/* =========================================================
   V28 — Music cleanup and inline TOP control
   ========================================================= */

.inline-top-link {
  border: 0;
  padding: 0;
  color: var(--muted-color);
  background: transparent;
  font-family: inherit;
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.inline-top-link::before {
  content: "[ ";
}

.inline-top-link::after {
  content: " ]";
}

.inline-top-link:hover,
.inline-top-link:focus-visible {
  color: var(--text-color);
}

.back-to-top {
  display: none !important;
}


/* =========================================================
   V29 — floating TOP control
   ========================================================= */

.inline-top-link {
  display: none !important;
}

.floating-top {
  position: fixed;
  z-index: 25;
  top: 5.2rem;
  right: var(--page-padding);
  border: 0;
  padding: 0.35rem 0;
  color: rgba(255,255,255,0.72);
  background: transparent;
  font-family: inherit;
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(-0.25rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    color 180ms ease;
}

.floating-top::before {
  content: "[ ";
}

.floating-top::after {
  content: " ]";
}

.floating-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-top:hover,
.floating-top:focus-visible {
  color: #fff;
}

@media (max-width: 700px) {
  .floating-top {
    top: 4.6rem;
  }
}


/* =========================================================
   V30 — home navigation moved to the top
   ========================================================= */

body.is-home .site-header {
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  height: auto;
  min-height: 0;
  padding-top: 1.1rem;
  padding-bottom: 0;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

body.is-home .artist-name {
  order: 1;
  transform: none;
  margin: 0 0 0.7rem;
}

body.is-home .site-nav {
  order: 2;
  margin: 0;
}

body.is-home .site-header::before {
  display: none;
}

@media (max-width: 900px) {
  body.is-home .site-header {
    padding-top: 1rem;
  }

  body.is-home .artist-name {
    margin-bottom: 0.55rem;
  }
}


/* =========================================================
   V31 — centered artist name, top-only home navigation
   ========================================================= */

body.is-home .site-header {
  inset: 0;
  height: 100vh;
  min-height: 100vh;
  padding: 0;
  display: block;
  transform: none;
  pointer-events: none;
}

body.is-home .artist-name {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -0.55rem);
  pointer-events: auto;
}

body.is-home .site-nav {
  position: absolute;
  top: 0.55rem;
  left: 50%;
  width: max-content;
  max-width: calc(100vw - (2 * var(--page-padding)));
  margin: 0;
  transform: translateX(-50%);
  pointer-events: auto;
}

@media (max-width: 900px) {
  body.is-home .site-nav {
    top: 0.45rem;
    width: calc(100vw - (2 * var(--page-padding)));
  }

  body.is-home .artist-name {
    transform: translate(-50%, -0.45rem);
  }
}


/* =========================================================
   V32 — final home positioning refinement
   ========================================================= */

body.is-home .artist-name {
  top: 47.8%;
}

body.is-home .site-nav {
  top: 0.82rem;
}

@media (max-width: 900px) {
  body.is-home .artist-name {
    top: 48.2%;
  }

  body.is-home .site-nav {
    top: 0.72rem;
  }
}


/* =========================================================
   V33 — definitive discography and cover artwork
   ========================================================= */

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

.release-note {
  margin-top: 0.18rem;
  max-width: 28ch;
  color: var(--muted-color);
  font-size: 0.52rem;
  line-height: 1.38;
}

/* V34 — album grid and detail modal */
.album-card .release-thumb{width:100%;border:0;padding:0;background:transparent;cursor:pointer}
.album-card .release-thumb img{transition:transform .45s ease,filter .45s ease}
.album-card .release-thumb:hover img,.album-card .release-thumb:focus-visible img{transform:scale(1.025);filter:brightness(1.04)}
.release-title-row{display:flex;align-items:baseline;justify-content:space-between;gap:.75rem;margin-top:.45rem}
.release-title-row h4{margin:0;min-width:0}
.release-year{flex:0 0 auto;color:var(--text-color);font-size:.72rem;letter-spacing:.06em}
.album-modal{position:fixed;inset:0;z-index:80;display:grid;place-items:center;padding:clamp(1rem,4vw,4rem);visibility:hidden;opacity:0;transition:opacity .22s ease,visibility .22s ease}
.album-modal.is-open{visibility:visible;opacity:1}
.album-modal-backdrop{position:absolute;inset:0;border:0;background:rgba(0,0,0,.78);backdrop-filter:blur(8px)}
.album-modal-panel{position:relative;z-index:1;display:grid;grid-template-columns:minmax(18rem,34rem) minmax(17rem,28rem);gap:clamp(2rem,5vw,6rem);width:min(72rem,100%);max-height:calc(100vh - 2rem);overflow:auto;padding:clamp(1rem,2vw,1.5rem);background:rgba(16,16,18,.94);border:1px solid rgba(255,255,255,.14);box-shadow:0 1.5rem 5rem rgba(0,0,0,.45)}
.album-modal-art{aspect-ratio:1/1;overflow:hidden}
.album-modal-art img{width:100%;height:100%;display:block;object-fit:cover}
.album-modal-copy{align-self:center}
.album-modal-year{margin:0 0 .55rem;color:var(--muted-color);font-size:.78rem;letter-spacing:.12em}
.album-modal-copy h2{margin:0;font-size:clamp(1.5rem,3vw,2.8rem);line-height:1}
.album-modal-description{max-width:34rem;margin:1.4rem 0 2rem;color:var(--muted-color);font-size:.72rem;line-height:1.7}
.album-modal-close{position:absolute;top:.55rem;right:.7rem;z-index:2;border:0;padding:.25rem;color:rgba(255,255,255,.78);background:transparent;font:inherit;font-size:1.25rem;cursor:pointer}
.album-stream{position:relative;display:inline-block}
.album-stream-trigger{border:1px solid rgba(255,255,255,.3);padding:.75rem 1rem;color:var(--text-color);background:rgba(255,255,255,.08);font:inherit;font-size:.62rem;letter-spacing:.08em;cursor:pointer}
.album-stream-options{position:absolute;top:calc(100% + .5rem);left:0;display:flex;gap:1rem;width:max-content;padding:.65rem .8rem;background:rgba(0,0,0,.74);border:1px solid rgba(255,255,255,.16);opacity:0;pointer-events:none;transform:translateY(-.25rem);transition:.18s ease}
.album-stream-options.is-open{opacity:1;pointer-events:auto;transform:translateY(0)}
.album-stream-options a,.album-stream-options span{font-size:.58rem;white-space:nowrap;text-decoration:none;color:var(--text-color)}
.album-stream-options span{color:var(--muted-color)}
body.album-modal-open{overflow:hidden}
@media(max-width:820px){.album-modal-panel{grid-template-columns:1fr;gap:1.4rem;width:min(34rem,100%)}.album-stream-options{position:static;margin-top:.5rem}}


/* =========================================================
   V35 — album carousel and release metadata
   ========================================================= */

.album-modal-panel {
  overflow: visible;
}

.album-modal-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: rgba(255,255,255,0.82);
  background: rgba(0,0,0,0.45);
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.album-modal-prev {
  left: -4.3rem;
}

.album-modal-next {
  right: -4.3rem;
}

.album-modal-nav:hover,
.album-modal-nav:focus-visible {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
}

.album-modal-meta {
  display: grid;
  gap: 0.42rem;
  margin: 1.35rem 0 0;
}

.album-modal-meta > div {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: baseline;
}

.album-modal-meta > div[hidden] {
  display: none;
}

.album-modal-meta dt,
.album-modal-meta dd {
  margin: 0;
  font-size: 0.62rem;
  line-height: 1.45;
}

.album-modal-meta dt {
  color: var(--muted-color);
}

.album-modal-meta dd {
  color: var(--text-color);
}

.album-modal-description {
  margin-top: 1.45rem;
}

@media (max-width: 980px) {
  .album-modal-prev {
    left: 0.55rem;
  }

  .album-modal-next {
    right: 0.55rem;
  }

  .album-modal-nav {
    top: auto;
    bottom: 0.65rem;
    transform: none;
  }

  .album-modal-panel {
    padding-bottom: 4.2rem;
  }
}


/* =========================================================
   V36 — tighter Albums opening and numbered News / Press art
   ========================================================= */

/* First music block sits closer to the internal section navigation */
#albums.music-group {
  margin-top: 1.15rem;
}

/* Remove the grey divider above Albums only */
#albums .section-heading-row {
  padding-top: 0;
  border-top: 0;
  margin-bottom: 1.25rem;
}

/* Real image support for the numbered News & Press thumbnails */
.feed-thumb {
  overflow: hidden;
}

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


/* =========================================================
   V37 — News & Press carousel + spacing refinement
   ========================================================= */

/* Restore a little breathing room below the internal music navigation */
#albums.music-group {
  margin-top: 1.75rem;
}

/* Press cards become interactive */
.press-open {
  cursor: pointer;
}

.press-open:focus-visible {
  outline: 1px solid rgba(255,255,255,0.55);
  outline-offset: 0.3rem;
}

.press-open .feed-thumb img {
  transition: transform 450ms ease, filter 450ms ease;
}

.press-open:hover .feed-thumb img,
.press-open:focus-visible .feed-thumb img {
  transform: scale(1.025);
  filter: brightness(1.04);
}

/* News & Press detail overlay */
.press-modal {
  position: fixed;
  inset: 0;
  z-index: 82;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 4rem);
  visibility: hidden;
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.press-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.press-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.press-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(20rem, 36rem) minmax(18rem, 29rem);
  gap: clamp(2rem, 5vw, 6rem);
  width: min(76rem, 100%);
  max-height: calc(100vh - 2rem);
  overflow: visible;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(16,16,18,0.94);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 1.5rem 5rem rgba(0,0,0,0.48);
}

.press-modal-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  align-self: center;
  background: rgba(255,255,255,0.04);
}

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

.press-modal-copy {
  align-self: center;
}

.press-modal-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.press-modal-type,
.press-modal-count,
.press-modal-kicker,
.press-modal-meta {
  margin: 0;
  color: var(--muted-color);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.press-modal-type,
.press-modal-count {
  text-transform: uppercase;
}

.press-modal-kicker {
  margin-bottom: 0.6rem;
}

.press-modal-copy h2 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.4rem, 3vw, 2.7rem);
  line-height: 1.04;
}

.press-modal-summary {
  max-width: 40rem;
  margin: 1.3rem 0 1rem;
  color: var(--text-color);
  font-size: 0.76rem;
  line-height: 1.7;
}

.press-modal-meta {
  margin-bottom: 1.8rem;
}

.press-modal-link {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.75rem 1rem;
  color: var(--text-color);
  background: rgba(255,255,255,0.08);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.press-modal-link.is-disabled {
  color: var(--muted-color);
  pointer-events: none;
  opacity: 0.58;
}

.press-modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  z-index: 3;
  border: 0;
  padding: 0.25rem;
  color: rgba(255,255,255,0.78);
  background: transparent;
  font-family: inherit;
  font-size: 1.25rem;
  cursor: pointer;
}

.press-modal-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: rgba(255,255,255,0.82);
  background: rgba(0,0,0,0.45);
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.press-modal-prev {
  left: -4.3rem;
}

.press-modal-next {
  right: -4.3rem;
}

.press-modal-nav:hover,
.press-modal-nav:focus-visible {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
}

body.press-modal-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .press-modal-panel {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    width: min(38rem, 100%);
    overflow: auto;
    padding-bottom: 4.2rem;
  }

  .press-modal-prev {
    left: 0.55rem;
  }

  .press-modal-next {
    right: 0.55rem;
  }

  .press-modal-nav {
    top: auto;
    bottom: 0.65rem;
    transform: none;
  }

  .press-modal-copy {
    align-self: start;
  }
}


/* =========================================================
   V38 — larger album grid and platform hover
   ========================================================= */

#albums .album-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4.6rem) clamp(1.6rem, 3vw, 3rem);
}

#albums .album-card {
  min-width: 0;
}

#albums .album-card .release-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: #090909;
  box-shadow: 0 0.9rem 2.2rem rgba(0,0,0,0.16);
}

#albums .album-card .release-thumb img {
  border-radius: inherit;
  transition:
    transform 650ms cubic-bezier(.2,.7,.2,1),
    filter 400ms ease;
}

#albums .album-card .release-title-row {
  margin-top: 0.75rem;
}

#albums .album-card .release-title-row h4 {
  font-size: 0.72rem;
  letter-spacing: 0.015em;
}

#albums .album-card .release-year {
  font-size: 0.72rem;
}

.album-platform-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: inherit;
  background: rgba(5,5,6,0.73);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 260ms ease,
    visibility 260ms ease;
}

.album-platform-menu {
  display: grid;
  gap: 0.8rem;
  width: min(12rem, 74%);
  text-align: center;
}

.album-platform-menu a {
  position: relative;
  color: rgba(255,255,255,0.92);
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(0.45rem);
  opacity: 0;
  transition:
    transform 260ms ease,
    opacity 260ms ease,
    color 180ms ease;
}

.album-platform-menu a:nth-child(1) { transition-delay: 20ms; }
.album-platform-menu a:nth-child(2) { transition-delay: 55ms; }
.album-platform-menu a:nth-child(3) { transition-delay: 90ms; }
.album-platform-menu a:nth-child(4) { transition-delay: 125ms; }

.album-platform-menu a:hover,
.album-platform-menu a:focus-visible {
  color: #fff;
}

.album-platform-menu a::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: -0.22rem;
  left: 18%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.album-platform-menu a:hover::after,
.album-platform-menu a:focus-visible::after {
  transform: scaleX(1);
}

.album-platform-menu a.is-placeholder {
  color: rgba(255,255,255,0.7);
}

.album-card .release-thumb:hover .album-platform-overlay,
.album-card .release-thumb:focus-within .album-platform-overlay {
  opacity: 1;
  visibility: visible;
}

.album-card .release-thumb:hover img,
.album-card .release-thumb:focus-within img {
  transform: scale(1.045);
  filter: brightness(0.68) saturate(0.88);
}

.album-card .release-thumb:hover .album-platform-menu a,
.album-card .release-thumb:focus-within .album-platform-menu a {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 980px) {
  #albums .album-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  #albums .album-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  #albums .album-card .release-thumb {
    border-radius: 0.8rem;
  }

  .album-platform-overlay {
    opacity: 1;
    visibility: visible;
    background: linear-gradient(
      to top,
      rgba(5,5,6,0.78) 0%,
      rgba(5,5,6,0.18) 48%,
      rgba(5,5,6,0) 68%
    );
    place-items: end center;
    padding-bottom: 1rem;
    pointer-events: none;
  }

  .album-platform-menu {
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 0.55rem 1rem;
  }

  .album-platform-menu a {
    font-size: 0.56rem;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
}


/* =========================================================
   V39 — Music Videos visual grid + simplified Albums
   ========================================================= */

#albums .item-label,
#albums .release-label,
#albums [data-label="item"] { display:none !important; }

#albums .album-cover{
  position:relative;overflow:hidden;width:100%;aspect-ratio:1/1;
  border-radius:1rem;background:#090909;
  box-shadow:0 .9rem 2.2rem rgba(0,0,0,.16)
}
#albums .album-cover img{
  width:100%;height:100%;display:block;object-fit:cover;border-radius:inherit;
  transition:transform 650ms cubic-bezier(.2,.7,.2,1),filter 400ms ease
}
#albums .album-cover:hover .album-platform-overlay,
#albums .album-cover:focus-within .album-platform-overlay{opacity:1;visibility:visible}
#albums .album-cover:hover img,
#albums .album-cover:focus-within img{transform:scale(1.045);filter:brightness(.68) saturate(.88)}
#albums .album-cover:hover .album-platform-menu a,
#albums .album-cover:focus-within .album-platform-menu a{transform:translateY(0);opacity:1}

#music-videos .video-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:clamp(2.4rem,4.5vw,5rem) clamp(1.6rem,3vw,3rem)
}
.video-card{min-width:0}
.video-cover{
  position:relative;display:block;overflow:hidden;aspect-ratio:16/10;
  border-radius:1rem;background:#080808;
  box-shadow:0 .9rem 2.2rem rgba(0,0,0,.16)
}
.video-cover img{
  width:100%;height:100%;display:block;object-fit:cover;
  transition:transform 650ms cubic-bezier(.2,.7,.2,1),filter 350ms ease
}
.video-hover-label{
  position:absolute;inset:0;display:grid;place-items:center;padding:1rem;
  color:rgba(255,255,255,.94);background:rgba(5,5,6,.64);
  backdrop-filter:blur(2px);font-size:.67rem;letter-spacing:.15em;
  text-align:center;opacity:0;transform:translateY(.25rem);
  transition:opacity 250ms ease,transform 250ms ease
}
.video-cover:hover img,.video-cover:focus-visible img{
  transform:scale(1.04);filter:brightness(.66) saturate(.9)
}
.video-cover:hover .video-hover-label,
.video-cover:focus-visible .video-hover-label{opacity:1;transform:translateY(0)}
.video-title-row{
  display:flex;align-items:baseline;justify-content:space-between;
  gap:.8rem;margin-top:.75rem
}
.video-title-row h4{
  margin:0;font-size:.72rem;font-weight:400;letter-spacing:.015em
}
.video-artist{
  flex:0 0 auto;color:var(--muted-color);font-size:.6rem;letter-spacing:.06em
}
@media(max-width:980px){
  #music-videos .video-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:620px){
  #music-videos .video-grid{grid-template-columns:1fr;gap:2.5rem}
  .video-cover{border-radius:.8rem}
  .video-hover-label{
    align-items:end;opacity:1;transform:none;
    background:linear-gradient(to top,rgba(5,5,6,.76) 0%,rgba(5,5,6,.08) 52%,rgba(5,5,6,0) 72%)
  }
}


/* =========================================================
   V40 — remove all legacy item labels + inline video playback
   ========================================================= */

/* The screenshot revealed this was generated by a pseudo-element. */
.release-card::before,
#albums .release-card::before,
#collaborations .release-card::before,
#music-videos .release-card::before {
  content: none !important;
  display: none !important;
}

/* In-page YouTube player */
.video-play-button {
  width: 100%;
  border: 0;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}

.video-card.is-playing .video-cover {
  background: #000;
}

.video-inline-player {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.video-card.is-playing .video-hover-label {
  display: none;
}

.video-card.is-playing .video-cover img {
  opacity: 0;
}

.video-play-button::after {
  content: "▶";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  color: rgba(255,255,255,0.95);
  background: rgba(0,0,0,0.26);
  font-size: 0.8rem;
  line-height: 1;
  text-indent: 0.12rem;
  transform: translate(-50%, -50%);
  transition:
    transform 220ms ease,
    background 220ms ease,
    opacity 220ms ease;
}

.video-play-button:hover::after,
.video-play-button:focus-visible::after {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(0,0,0,0.52);
}

.video-card.is-playing .video-play-button::after {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 620px) {
  .video-play-button::after {
    width: 2.8rem;
    height: 2.8rem;
  }
}


/* =========================================================
   V41 — local-preview-safe YouTube embeds
   ========================================================= */

.video-local-note {
  display: none;
}


/* =========================================================
   V44 — Collaborations aligned with Albums + upcoming videos
   ========================================================= */

/* Collaborations now share the visual language of Albums */
#collaborations .collaboration-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4.6rem) clamp(1.6rem, 3vw, 3rem);
}

.collaboration-card {
  min-width: 0;
}

.collaboration-cover {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  background: #090909;
  box-shadow: 0 0.9rem 2.2rem rgba(0,0,0,0.16);
}

.collaboration-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
  transition:
    transform 650ms cubic-bezier(.2,.7,.2,1),
    filter 400ms ease;
}

.collaboration-card:hover .collaboration-cover img {
  transform: scale(1.035);
  filter: brightness(1.03);
}

.collaboration-card .release-title-row {
  margin-top: 0.75rem;
}

.collaboration-card .release-title-row h4,
.collaboration-card .release-year {
  font-size: 0.72rem;
}

.collaboration-card .release-note {
  margin-top: 0.35rem;
  max-width: none;
  font-size: 0.58rem;
  line-height: 1.45;
}

/* Upcoming video placeholders */
.video-cover-upcoming {
  cursor: default;
}

.video-placeholder-art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.12)),
    #0a0a0b;
}

.video-coming-soon {
  color: rgba(255,255,255,0.58);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.video-card-upcoming .video-cover::after {
  display: none;
}

@media (max-width: 980px) {
  #collaborations .collaboration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  #collaborations .collaboration-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .collaboration-cover {
    border-radius: 0.8rem;
  }
}


/* =========================================================
   V45 — expanded artistic biography
   ========================================================= */

#about .about-copy {
  max-width: 62rem;
}

#about .about-copy p {
  max-width: 68ch;
  margin: 0 0 1.15rem;
  font-size: clamp(0.72rem, 0.9vw, 0.88rem);
  line-height: 1.72;
}

#about .about-copy p:last-child {
  margin-top: 1.8rem;
  margin-bottom: 0;
}

#about .about-copy a,
#about .bio-name {
  color: var(--text-color);
}

#about .about-copy a {
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.32);
  transition: border-color 180ms ease;
}

#about .about-copy a:hover,
#about .about-copy a:focus-visible {
  border-color: rgba(255,255,255,0.85);
}


/* =========================================================
   V47 — wider About, label links and album link menus
   ========================================================= */

#about .about-copy {
  max-width: 78rem;
}

#about .about-copy p {
  max-width: 86ch;
  font-size: clamp(0.82rem, 1vw, 1rem);
  line-height: 1.68;
}

/* Label links */
#about .bio-label-link {
  color: var(--text-color);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.28);
  transition:
    border-color 180ms ease,
    opacity 180ms ease;
}

#about .bio-label-link:hover,
#about .bio-label-link:focus-visible {
  border-color: rgba(255,255,255,0.86);
  opacity: 0.92;
}

/* Inline album dropdowns */
.bio-album-link-wrap {
  position: relative;
  display: inline-block;
}

.bio-album-link {
  border: 0;
  padding: 0;
  color: var(--text-color);
  background: transparent;
  font: inherit;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.32);
}

.bio-album-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 0.45rem);
  left: 0;
  display: flex;
  gap: 0.85rem;
  width: max-content;
  padding: 0.58rem 0.7rem;
  background: rgba(0,0,0,0.78);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.2rem);
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease;
}

.bio-album-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.bio-album-menu a {
  border: 0 !important;
  color: var(--text-color);
  font-size: 0.62rem;
  font-style: normal;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-decoration: none;
}

.bio-album-menu a.is-placeholder {
  color: var(--muted-color);
  pointer-events: none;
}

@media (max-width: 700px) {
  #about .about-copy p {
    max-width: none;
    font-size: 0.86rem;
  }

  .bio-album-menu {
    left: 50%;
    transform: translate(-50%, -0.2rem);
  }

  .bio-album-menu.is-open {
    transform: translate(-50%, 0);
  }
}


/* =========================================================
   V48 — wider biography and direct contextual links
   ========================================================= */

#about .about-copy {
  max-width: 92rem;
}

#about .about-copy p {
  max-width: 102ch;
  font-size: clamp(0.9rem, 1.08vw, 1.08rem);
  line-height: 1.66;
}

#about .bio-direct-album-link,
#about .bio-press-trigger {
  color: var(--text-color);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.34);
}

#about .bio-direct-album-link {
  transition: border-color 180ms ease;
}

#about .bio-direct-album-link:hover,
#about .bio-direct-album-link:focus-visible {
  border-color: rgba(255,255,255,0.88);
}

#about .bio-press-trigger {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: border-color 180ms ease;
}

#about .bio-press-trigger:hover,
#about .bio-press-trigger:focus-visible {
  border-bottom-color: rgba(255,255,255,0.88);
}

#about .bio-unreleased-album {
  color: var(--text-color);
}

/* Old dropdown styling is no longer used for biography albums. */
.bio-album-menu,
.bio-album-link {
  display: none !important;
}

@media (max-width: 700px) {
  #about .about-copy p {
    font-size: 0.94rem;
  }
}


/* =========================================================
   V49 — centered site language + compact Bio
   ========================================================= */

/* HOME — menu slightly lower and larger */
body.is-home .site-nav {
  top: 1.15rem;
}

body.is-home .site-nav a {
  font-size: 1.2rem;
}

/* BIO — lifted and compacted to fit more comfortably in one viewport */
#bio.page-section {
  padding-top: calc(var(--header-height) + 2.2rem);
  padding-bottom: 3.5rem;
}

#bio .content-wrap {
  max-width: min(94rem, calc(100vw - (2 * var(--page-padding))));
}

#bio .about-copy {
  max-width: 94rem;
}

#bio .about-copy p {
  max-width: 104ch;
  margin-bottom: 0.9rem;
  font-size: clamp(0.86rem, 1vw, 1.02rem);
  line-height: 1.56;
}

#bio .about-copy p:last-child {
  margin-top: 1.15rem;
}

#bio h2 {
  margin-bottom: 1.25rem;
}

/* GENERAL CENTERED LANGUAGE — everything except Bio */
.page-section:not(#bio) .content-wrap {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.page-section:not(#bio) h2,
.page-section:not(#bio) h3,
.page-section:not(#bio) h4,
.page-section:not(#bio) .lead,
.page-section:not(#bio) .section-heading-row {
  text-align: center;
}

.page-section:not(#bio) .section-heading-row {
  justify-content: center;
}

.page-section:not(#bio) .section-jump-nav {
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}

.page-section:not(#bio) .release-title-row,
.page-section:not(#bio) .video-title-row {
  justify-content: center;
  gap: 0.8rem;
}

.page-section:not(#bio) .release-note,
.page-section:not(#bio) .video-artist {
  text-align: center;
}

#music .release-grid,
#press .press-feed {
  margin-right: auto;
  margin-left: auto;
}

/* Center shorter text blocks */
#live .content-wrap,
#contact .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#live .lead,
#contact .lead {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

#contact .inline-contact-link {
  display: inline-block;
}

/* Press cards remain readable while visually centered */
#press .feed-card {
  text-align: left;
}

#press > .content-wrap > h2 {
  text-align: center;
}

/* Keep modal copy readable */
.album-modal-copy,
.press-modal-copy {
  text-align: left;
}

/* Mobile refinements */
@media (max-width: 900px) {
  body.is-home .site-nav {
    top: 1rem;
  }

  body.is-home .site-nav a {
    font-size: clamp(1.05rem, 5vw, 1.65rem);
  }

  #bio.page-section {
    padding-top: calc(var(--header-height) + 1.4rem);
  }

  #bio .about-copy p {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.58;
  }
}


/* =========================================================
   V50 — centered and lifted Bio + lower Home menu
   ========================================================= */

/* HOME — move menu substantially lower */
body.is-home .site-nav {
  top: 3.15rem;
}

/* BIO — move whole section upward */
#bio.page-section {
  padding-top: calc(var(--header-height) + 0.65rem);
}

/* Center the entire Bio composition */
#bio .content-wrap {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

#bio h2 {
  text-align: center;
  margin-bottom: 0.85rem;
}

#bio .about-copy {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

#bio .about-copy p {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

/* Keep inline menus and links naturally centered within the paragraph flow */
#bio .bio-album-link-wrap {
  text-align: center;
}

@media (max-width: 900px) {
  body.is-home .site-nav {
    top: 2.7rem;
  }

  #bio.page-section {
    padding-top: calc(var(--header-height) + 0.35rem);
  }
}


/* =========================================================
   V51 — Bio positioned from the top, justified, no title
   ========================================================= */

/* Override the original bottom alignment inherited by page sections */
#bio.page-section,
#bio.page-section.is-active {
  align-items: flex-start;
}

/* Place the first paragraph near the marked reference height */
#bio.page-section {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 6.2rem);
  padding-bottom: 4.5rem;
}

/* Center the text block itself, but justify the paragraph copy */
#bio .content-wrap {
  width: min(92rem, calc(100vw - (2 * var(--page-padding))));
  margin-right: auto;
  margin-left: auto;
}

#bio .about-copy {
  width: min(100%, 72rem);
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

#bio .about-copy p {
  width: 100%;
  max-width: none;
  margin-right: auto;
  margin-bottom: 1rem;
  margin-left: auto;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

/* The final short line reads better centered */
#bio .about-copy p:last-child {
  width: auto;
  text-align: center;
  text-align-last: center;
}

/* Remove the accidental white active/focus fill on the press trigger */
#bio .bio-press-trigger,
#bio .bio-press-trigger:hover,
#bio .bio-press-trigger:focus,
#bio .bio-press-trigger:focus-visible,
#bio .bio-press-trigger:active {
  appearance: none;
  -webkit-appearance: none;
  color: inherit !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none;
}

#bio .bio-press-trigger:focus-visible {
  border-bottom-color: rgba(255,255,255,0.9);
}

@media (max-width: 900px) {
  #bio.page-section {
    padding-top: calc(var(--header-height) + 3.2rem);
  }

  #bio .about-copy {
    width: min(100%, 46rem);
  }

  #bio .about-copy p {
    text-align: left;
    text-align-last: left;
    hyphens: none;
  }
}


/* =========================================================
   V52 — narrower/lifted Bio, clean links, softer album years
   ========================================================= */

/* Narrow Bio by roughly 30% compared with V51 */
#bio .about-copy {
  width: min(100%, 50rem);
}

/* Lift the complete Bio block further upward */
#bio.page-section {
  padding-top: calc(var(--header-height) + 4.6rem);
}

/* Consistent clickable treatment inside Bio */
#bio a,
#bio button {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

/* Remove every possible browser/button box from the Changi trigger */
#bio .bio-press-trigger,
#bio .bio-press-trigger:hover,
#bio .bio-press-trigger:focus,
#bio .bio-press-trigger:focus-visible,
#bio .bio-press-trigger:active {
  display: inline;
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  color: inherit !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  font: inherit !important;
  line-height: inherit !important;
  vertical-align: baseline;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 0.16em !important;
}

/* Album year treatment */
#albums .release-year {
  color: rgba(255,255,255,0.54);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}

@media (max-width: 900px) {
  #bio .about-copy {
    width: min(100%, 38rem);
  }

  #bio.page-section {
    padding-top: calc(var(--header-height) + 2.7rem);
  }
}


/* =========================================================
   V53 — Bio copy/link refinements + stronger News & Press tags
   ========================================================= */

/* Keep justified paragraphs natural at the final line */
#bio .about-copy p,
#bio .about-copy p:last-child {
  text-align: justify;
  text-align-last: left;
  hyphens: none;
  word-spacing: normal;
}

/* Changi Airport link */
#bio .bio-external-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

/* News & Press: former lower tag becomes the main upper label */
#press .feed-primary-tag {
  margin: 0 0 0.5rem;
  color: rgba(255,255,255,0.96);
  font-size: 0.68rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#press .feed-kicker {
  display: none !important;
}

#press .feed-card h3 {
  font-size: 0.95rem;
  line-height: 1.22;
}

#press .feed-summary {
  font-size: 0.68rem;
  line-height: 1.58;
}

#press .feed-meta {
  margin-top: 0.58rem;
}

#press .feed-meta a {
  font-size: 0.62rem;
}

@media (max-width: 700px) {
  #press .feed-primary-tag {
    font-size: 0.64rem;
  }

  #press .feed-card h3 {
    font-size: 0.9rem;
  }

  #press .feed-summary {
    font-size: 0.66rem;
  }
}


/* =========================================================
   V54 — Home menu returned below artist name
   ========================================================= */

body.is-home .site-nav {
  top: calc(47.8% + 2.25rem);
  left: 50%;
  width: max-content;
  max-width: calc(100vw - (2 * var(--page-padding)));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

body.is-home .site-nav a {
  display: inline-flex;
  align-items: center;
  font-size: 1.05rem;
}

body.is-home .site-nav a + a::before {
  content: "·";
  display: inline-block;
  margin: 0 0.7rem;
  color: rgba(255,255,255,0.62);
  font-size: 0.92em;
  pointer-events: none;
}

@media (max-width: 900px) {
  body.is-home .site-nav {
    top: calc(48.2% + 2.1rem);
    width: calc(100vw - (2 * var(--page-padding)));
    flex-wrap: wrap;
    row-gap: 0.45rem;
  }

  body.is-home .site-nav a {
    font-size: clamp(0.92rem, 4.2vw, 1.3rem);
  }

  body.is-home .site-nav a + a::before {
    margin: 0 0.48rem;
  }
}


/* =========================================================
   V55 — clean nav separators + generic News / Press tags
   ========================================================= */

/* Real separators: outside links, therefore never underlined */
body.is-home .site-nav a + a::before {
  content: none !important;
  display: none !important;
}

.nav-separator {
  display: none;
  color: rgba(255,255,255,0.62);
  font-size: 0.96rem;
  line-height: 1;
  text-decoration: none !important;
  pointer-events: none;
}

body.is-home .nav-separator {
  display: inline-block;
  margin: 0 0.7rem;
}

/* Keep only the actual menu words interactive */
body.is-home .site-nav a {
  text-decoration-skip-ink: auto;
}

/* Generic News & Press category labels */
#press .feed-primary-tag {
  font-weight: 500;
}

/* Changi Airport link and project trigger share a clean underline */
#bio .bio-external-link,
#bio .bio-press-trigger {
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 0.16em !important;
}

@media (max-width: 900px) {
  body.is-home .nav-separator {
    margin: 0 0.48rem;
  }
}


/* =========================================================
   V56 — bilingual language switcher
   ========================================================= */

.language-switcher {
  position: fixed;
  z-index: 42;
  left: var(--page-padding);
  bottom: 0.7rem;
}

.language-trigger {
  border: 0;
  padding: 0.25rem 0;
  color: rgba(255,255,255,0.82);
  background: transparent;
  font-family: inherit;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.language-trigger::after {
  content: " +";
  color: rgba(255,255,255,0.48);
}

.language-trigger[aria-expanded="true"]::after {
  content: " −";
}

.language-menu {
  position: absolute;
  left: 0;
  bottom: calc(100% + 0.55rem);
  display: grid;
  min-width: 7.6rem;
  padding: 0.42rem;
  background: rgba(0,0,0,0.78);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.25rem);
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease;
}

.language-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu button {
  border: 0;
  padding: 0.48rem 0.58rem;
  color: rgba(255,255,255,0.72);
  background: transparent;
  font-family: inherit;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  text-align: left;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button.is-active {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

html[lang="es"] .language-current::before {
  content: "ESP";
}

html[lang="es"] .language-current {
  font-size: 0;
}

html[lang="es"] .language-current::before {
  font-size: 0.62rem;
}

@media (max-width: 700px) {
  .language-switcher {
    bottom: 0.55rem;
  }
}

/* V57 */
body.is-home .artist-name{top:46.5%;left:var(--page-padding);transform:translateY(-50%);text-align:left}
body.is-home .site-nav{top:calc(46.5% + 2.2rem);left:var(--page-padding);width:max-content;max-width:calc(100vw - (2 * var(--page-padding)));transform:none;justify-content:flex-start;text-align:left}
body.is-home .site-nav a{text-align:left}
.site-footer .language-switcher{position:static;z-index:auto;display:inline-flex;align-items:center;margin-right:.9rem}
.site-footer .language-trigger{display:inline-flex;align-items:center;gap:.42rem;padding:0;font-size:.78rem;letter-spacing:.08em}
.language-icon{width:1rem;height:1rem;fill:none;stroke:currentColor;stroke-width:1.35;stroke-linecap:round;stroke-linejoin:round;opacity:.82}
.site-footer .language-menu{left:auto;right:0;bottom:calc(100% + .6rem)}
.site-footer .footer-socials{display:flex;align-items:center;justify-content:flex-end}
#press .press-feed,#press .feed-card,#press .feed-card-body,#press .feed-primary-tag,#press .feed-card h3,#press .feed-meta{text-align:left!important}
#press .feed-card{min-height:5.6rem;grid-template-columns:7.1rem minmax(0,1fr);gap:1rem}
#press .feed-summary{display:none}
#press .feed-primary-tag{margin-bottom:.35rem}
#press .feed-card h3{margin-bottom:.25rem}
#press .feed-meta{margin-top:.38rem}
.press-modal-summary{display:block}
.album-platform-menu a.is-placeholder{opacity:.6}
@media(max-width:900px){
body.is-home .artist-name{top:45.5%;left:var(--page-padding);transform:translateY(-50%)}
body.is-home .site-nav{top:calc(45.5% + 2.1rem);left:var(--page-padding);width:calc(100vw - (2 * var(--page-padding)));justify-content:flex-start}
.site-footer .language-switcher{margin-right:.55rem}}
@media(max-width:700px){#press .feed-card{grid-template-columns:5.8rem minmax(0,1fr);min-height:4.9rem}}


/* =========================================================
   V58 — language control restored + new Home composition
   ========================================================= */

/* Restore language control to bottom-left, aligned with footer bar */
.language-switcher {
  position: fixed !important;
  z-index: 42 !important;
  left: var(--page-padding) !important;
  bottom: 0.72rem !important;
  margin: 0 !important;
  display: block !important;
}

.language-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 0.42rem;
  padding: 0.15rem 0 !important;
  font-size: 0.82rem !important;
  line-height: 1;
  letter-spacing: 0.08em;
}

html[lang="es"] .language-current::before {
  font-size: 0.82rem !important;
}

.language-icon {
  width: 1rem;
  height: 1rem;
}

.language-menu {
  left: 0 !important;
  right: auto !important;
  bottom: calc(100% + 0.55rem) !important;
}

/* Restore LISTEN to its intended prominence */
.site-footer .listen-trigger,
.site-footer .listen-label,
.site-footer [data-listen-trigger] {
  font-size: 0.82rem !important;
}

/* HOME: artist name top-left, matching internal-page language */
body.is-home .artist-name {
  top: 1.18rem !important;
  left: var(--page-padding) !important;
  transform: none !important;
  text-align: left !important;
  font-size: inherit;
}

/* HOME: menu centered in the viewport */
body.is-home .site-nav {
  top: 50% !important;
  left: 50% !important;
  width: max-content !important;
  max-width: calc(100vw - (2 * var(--page-padding))) !important;
  transform: translate(-50%, -50%) !important;
  justify-content: center !important;
  text-align: center !important;
}

body.is-home .site-nav a {
  text-align: center !important;
}

@media (max-width: 900px) {
  body.is-home .artist-name {
    top: 1rem !important;
    left: var(--page-padding) !important;
  }

  body.is-home .site-nav {
    top: 50% !important;
    left: 50% !important;
    width: calc(100vw - (2 * var(--page-padding))) !important;
    transform: translate(-50%, -50%) !important;
    justify-content: center !important;
  }

  .language-switcher {
    bottom: 0.6rem !important;
  }
}


/* =========================================================
   V59 — header aligned to album-grid bounds
   + language selector top-right
   ========================================================= */

:root {
  --site-content-width: 1080px;
  --site-content-side: max(
    var(--page-padding),
    calc((100vw - var(--site-content-width)) / 2)
  );
}

/* Internal pages: align artist name and menu to the album-grid limits */
body:not(.is-home) .site-header {
  padding-left: var(--site-content-side) !important;
  padding-right: var(--site-content-side) !important;
}

body:not(.is-home) .artist-name {
  margin-left: 0 !important;
}

body:not(.is-home) .site-nav {
  margin-left: auto !important;
  margin-right: 0 !important;
}

/* Home artist name: exact same scale and position as internal pages */
body.is-home .site-header {
  inset: 0 0 auto 0 !important;
  min-height: var(--header-height) !important;
  height: var(--header-height) !important;
  padding: 0 var(--site-content-side) !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  pointer-events: none;
}

body.is-home .artist-name {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  margin: 0 !important;
  font-size: clamp(1rem, 1.2vw, 1.2rem) !important;
  font-weight: 500 !important;
  pointer-events: auto;
}

/* Home menu remains visually centered in the viewport */
body.is-home .site-nav {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  width: max-content !important;
  max-width: calc(100vw - (2 * var(--page-padding))) !important;
  margin: 0 !important;
  transform: translate(-50%, -50%) !important;
  justify-content: center !important;
  text-align: center !important;
  pointer-events: auto;
}

/* Language selector: top-right, aligned with content boundary */
.language-switcher {
  position: fixed !important;
  z-index: 42 !important;
  top: calc((var(--header-height) - 1rem) / 2) !important;
  right: var(--site-content-side) !important;
  bottom: auto !important;
  left: auto !important;
  margin: 0 !important;
  transform: translateY(-50%);
}

.language-trigger {
  font-size: 0.82rem !important;
}

html[lang="es"] .language-current::before {
  font-size: 0.82rem !important;
}

.language-menu {
  top: calc(100% + 0.55rem) !important;
  right: 0 !important;
  bottom: auto !important;
  left: auto !important;
}

/* Give internal navigation enough room before the language switcher */
body:not(.is-home) .site-nav {
  padding-right: 4.2rem;
}

@media (max-width: 1180px) {
  :root {
    --site-content-side: var(--page-padding);
  }
}

@media (max-width: 900px) {
  body.is-home .site-header {
    padding-left: var(--page-padding) !important;
    padding-right: var(--page-padding) !important;
  }

  body.is-home .site-nav {
    top: 50% !important;
    left: 50% !important;
  }

  .language-switcher {
    right: var(--page-padding) !important;
  }

  body:not(.is-home) .site-nav {
    padding-right: 0;
  }
}


/* =========================================================
   V60 — precise header/footer alignment + complete ES press
   ========================================================= */

/* Internal header: same horizontal limits as album grid */
body:not(.is-home) .site-header {
  padding-left: var(--site-content-side) !important;
  padding-right: var(--site-content-side) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

body:not(.is-home) .artist-name {
  position: static !important;
  margin: 0 !important;
  flex: 0 0 auto;
}

body:not(.is-home) .site-nav {
  position: static !important;
  width: auto !important;
  margin: 0 0 0 auto !important;
  padding: 0 !important;
  transform: none !important;
  flex: 0 0 auto;
  justify-content: flex-end !important;
  text-align: right !important;
}

/* Home name uses the same header position and size */
body.is-home .site-header {
  padding-left: var(--site-content-side) !important;
  padding-right: var(--site-content-side) !important;
}

body.is-home .artist-name {
  font-size: clamp(1rem, 1.2vw, 1.2rem) !important;
}

/* Language selector sits on the same baseline as social icons */
.site-footer {
  padding-left: var(--site-content-side) !important;
  padding-right: var(--site-content-side) !important;
}

.site-footer .language-switcher {
  position: absolute !important;
  z-index: 42 !important;
  top: 50% !important;
  right: calc(var(--site-content-side) + 7.2rem) !important;
  bottom: auto !important;
  left: auto !important;
  margin: 0 !important;
  transform: translateY(-50%) !important;
  display: inline-flex !important;
  align-items: center !important;
}

.site-footer .language-trigger {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.42rem;
  padding: 0 !important;
  font-size: 0.82rem !important;
  line-height: 1 !important;
}

html[lang="es"] .language-current::before {
  font-size: 0.82rem !important;
}

.site-footer .language-menu {
  top: auto !important;
  right: 0 !important;
  bottom: calc(100% + 0.65rem) !important;
  left: auto !important;
}

.site-footer .footer-socials {
  margin-left: auto !important;
  display: flex !important;
  align-items: center !important;
}

@media (max-width: 900px) {
  body:not(.is-home) .site-header {
    padding-left: var(--page-padding) !important;
    padding-right: var(--page-padding) !important;
  }

  .site-footer {
    padding-left: var(--page-padding) !important;
    padding-right: var(--page-padding) !important;
  }

  .site-footer .language-switcher {
    right: calc(var(--page-padding) + 6.4rem) !important;
  }
}


/* =========================================================
   V61 — language top-right, socials farther right
   ========================================================= */

/* Language selector moves to the upper-right corner */
.site-footer .language-switcher,
.language-switcher {
  position: fixed !important;
  z-index: 45 !important;
  top: 1.08rem !important;
  right: var(--site-content-side) !important;
  bottom: auto !important;
  left: auto !important;
  margin: 0 !important;
  transform: none !important;
  display: inline-flex !important;
  align-items: center !important;
}

.language-trigger {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.42rem;
  padding: 0 !important;
  font-size: 0.82rem !important;
  line-height: 1 !important;
}

html[lang="es"] .language-current::before {
  font-size: 0.82rem !important;
}

.language-menu {
  top: calc(100% + 0.58rem) !important;
  right: 0 !important;
  bottom: auto !important;
  left: auto !important;
}

/* Social icons move to the far-right edge of the footer content */
.site-footer .footer-socials {
  position: absolute !important;
  top: 50% !important;
  right: var(--site-content-side) !important;
  left: auto !important;
  margin: 0 !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

/* Keep LISTEN visually centered */
.site-footer .listen-wrap,
.site-footer .listen-trigger,
.site-footer [data-listen-trigger] {
  position: relative;
  z-index: 2;
}

@media (max-width: 1180px) {
  .language-switcher {
    right: var(--page-padding) !important;
  }

  .site-footer .footer-socials {
    right: var(--page-padding) !important;
  }
}

@media (max-width: 700px) {
  .language-switcher {
    top: 0.92rem !important;
  }
}


/* =========================================================
   V62 — language selector restored to footer left
   ========================================================= */

.site-footer .language-switcher,
.language-switcher {
  position: fixed !important;
  z-index: 45 !important;
  top: auto !important;
  right: auto !important;
  bottom: 0.72rem !important;
  left: var(--site-content-side) !important;
  margin: 0 !important;
  transform: none !important;
  display: inline-flex !important;
  align-items: center !important;
}

.language-trigger {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.42rem;
  padding: 0 !important;
  font-size: 0.82rem !important;
  line-height: 1 !important;
}

html[lang="es"] .language-current::before {
  font-size: 0.82rem !important;
}

.language-menu {
  top: auto !important;
  right: auto !important;
  bottom: calc(100% + 0.62rem) !important;
  left: 0 !important;
}

@media (max-width: 1180px) {
  .language-switcher {
    left: var(--page-padding) !important;
  }
}

@media (max-width: 700px) {
  .language-switcher {
    bottom: 0.58rem !important;
  }
}


/* =========================================================
   V63 — restore language-switcher interaction
   ========================================================= */

.site-footer .language-switcher,
.language-switcher,
.language-trigger,
.language-menu,
.language-menu button {
  pointer-events: auto !important;
}

.language-switcher {
  cursor: default;
}

.language-trigger,
.language-menu button {
  cursor: pointer;
}


/* =========================================================
   V64 — unified layout alignment across the entire site
   ========================================================= */

:root {
  --layout-width: 1080px;
  --layout-left: max(var(--page-padding), calc((100vw - var(--layout-width)) / 2));
  --layout-right: var(--layout-left);
}

/* Identical header layout on Home and every internal page */
.site-header,
body.is-home .site-header,
body:not(.is-home) .site-header {
  position: fixed !important;
  inset: 0 0 auto 0 !important;
  height: var(--header-height) !important;
  min-height: var(--header-height) !important;
  padding: 0 var(--layout-right) 0 var(--layout-left) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.artist-name,
body.is-home .artist-name,
body:not(.is-home) .artist-name {
  position: static !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  margin: 0 !important;
  transform: none !important;
  flex: 0 0 auto !important;
  font-size: clamp(1rem, 1.2vw, 1.2rem) !important;
  text-align: left !important;
}

.site-nav,
body.is-home .site-nav,
body:not(.is-home) .site-nav {
  position: static !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 0 0 auto !important;
  padding: 0 !important;
  transform: none !important;
  flex: 0 0 auto !important;
  justify-content: flex-end !important;
  text-align: right !important;
}

/* Footer outer elements align to the exact same layout boundaries */
.site-footer {
  padding-left: var(--layout-left) !important;
  padding-right: var(--layout-right) !important;
}

.language-switcher,
.site-footer .language-switcher {
  position: fixed !important;
  z-index: 45 !important;
  top: auto !important;
  right: auto !important;
  bottom: 0.72rem !important;
  left: var(--layout-left) !important;
  margin: 0 !important;
  transform: none !important;
  pointer-events: auto !important;
}

.site-footer .footer-socials {
  position: absolute !important;
  top: 50% !important;
  right: var(--layout-right) !important;
  left: auto !important;
  margin: 0 !important;
  transform: translateY(-50%) !important;
}

@media (max-width: 1180px) {
  :root {
    --layout-left: var(--page-padding);
    --layout-right: var(--page-padding);
  }
}

@media (max-width: 900px) {
  .site-header,
  body.is-home .site-header,
  body:not(.is-home) .site-header {
    padding-left: var(--page-padding) !important;
    padding-right: var(--page-padding) !important;
  }
}


/* =========================================================
   V65 — exact footer controls alignment to header boundaries
   ========================================================= */

/*
  Language and social controls now live outside .site-footer.
  This prevents backdrop-filter / transformed ancestor offsets.
*/

.language-switcher {
  position: fixed !important;
  z-index: 46 !important;
  top: auto !important;
  right: auto !important;
  bottom: 0.72rem !important;
  left: var(--layout-left) !important;
  margin: 0 !important;
  transform: none !important;
  display: inline-flex !important;
  align-items: center !important;
  pointer-events: auto !important;
}

.footer-socials {
  position: fixed !important;
  z-index: 46 !important;
  top: auto !important;
  right: var(--layout-right) !important;
  bottom: 0.72rem !important;
  left: auto !important;
  margin: 0 !important;
  transform: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  pointer-events: auto !important;
}

/* Remove obsolete footer-contained positioning rules */
.site-footer .language-switcher,
.site-footer .footer-socials {
  position: static !important;
}

/* Keep popup opening upward from the left-aligned selector */
.language-menu {
  top: auto !important;
  right: auto !important;
  bottom: calc(100% + 0.62rem) !important;
  left: 0 !important;
}

/* Match the vertical optical baseline of LISTEN */
.language-trigger,
.footer-socials {
  line-height: 1 !important;
}

@media (max-width: 1180px) {
  .language-switcher {
    left: var(--page-padding) !important;
  }

  .footer-socials {
    right: var(--page-padding) !important;
  }
}

@media (max-width: 700px) {
  .language-switcher,
  .footer-socials {
    bottom: 0.58rem !important;
  }
}


/* =========================================================
   V66 — exact vertical centering inside footer bar
   ========================================================= */

/*
  Match the actual footer content box:
  bottom: 1.35rem
  min-height: 2rem
  optical footer translation: +0.18rem
*/
.language-switcher,
.footer-socials {
  top: auto !important;
  bottom: calc(1.35rem - 0.18rem) !important;
  min-height: 2rem !important;
  height: 2rem !important;
  transform: none !important;
  display: flex !important;
  align-items: center !important;
}

.language-switcher {
  justify-content: flex-start !important;
}

.footer-socials {
  justify-content: flex-end !important;
}

/* Remove baseline variations inside the two aligned boxes */
.language-trigger,
.footer-socials a {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1 !important;
}

/* Popup still opens upward from the language control */
.language-menu {
  bottom: calc(100% + 0.45rem) !important;
}

@media (max-width: 700px) {
  .language-switcher,
  .footer-socials {
    bottom: calc(1.35rem - 0.18rem) !important;
    min-height: 2rem !important;
    height: 2rem !important;
  }
}


/* =========================================================
   V69 ONLINE READY — final social/video/platform refinements
   ========================================================= */

/* Tighter crops for the two lower-resolution YouTube thumbnails */
#music-videos .video-card-tight-thumb .video-cover img {
  transform: scale(1.14);
}

#music-videos .video-card-tight-thumb .video-cover:hover img,
#music-videos .video-card-tight-thumb .video-cover:focus-visible img {
  transform: scale(1.19);
}

/* Keep "soon" visibly attached to inactive album platforms */
#albums .album-platform-menu .platform-soon {
  display: inline;
  margin-left: 0.24em;
  color: rgba(255,255,255,0.58);
  font-size: 0.72em;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

#albums .album-platform-menu a.is-coming-soon {
  cursor: default;
}

/* Improve focus visibility online without changing the visual language */
a:focus-visible,
button:focus-visible {
  outline: 1px solid rgba(255,255,255,0.82);
  outline-offset: 0.28rem;
}


/* =========================================================
   V70 — mobile navigation without dropdown
   ========================================================= */

@media (max-width: 760px) {
  .menu-toggle,
  .mobile-menu-toggle,
  .nav-toggle,
  .hamburger { display:none !important; }

  .site-nav,
  body.is-home .site-nav,
  body:not(.is-home) .site-nav,
  .site-nav.is-open,
  .site-nav[aria-hidden="true"] {
    display:flex !important;
    visibility:visible !important;
    opacity:1 !important;
    pointer-events:auto !important;
    max-height:none !important;
    overflow:visible !important;
  }

  body.is-home .site-header {
    height:auto !important;
    min-height:5.15rem !important;
    padding-top:.82rem !important;
    padding-bottom:.72rem !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    justify-content:center !important;
    gap:.72rem !important;
  }

  body.is-home .artist-name {
    display:block !important;
    font-size:.98rem !important;
    line-height:1 !important;
  }

  body.is-home .site-nav {
    position:static !important;
    width:100% !important;
    margin:0 !important;
    transform:none !important;
    justify-content:flex-start !important;
  }

  body:not(.is-home) .site-header {
    height:3.55rem !important;
    min-height:3.55rem !important;
    padding-top:0 !important;
    padding-bottom:0 !important;
    justify-content:center !important;
  }

  body:not(.is-home) .artist-name { display:none !important; }

  body:not(.is-home) .site-nav {
    width:100% !important;
    margin:0 !important;
    justify-content:center !important;
  }

  .site-nav {
    flex-wrap:nowrap !important;
    align-items:center !important;
    gap:0 !important;
    white-space:nowrap !important;
  }

  .site-nav a {
    font-size:clamp(.58rem,2.65vw,.72rem) !important;
    line-height:1 !important;
    letter-spacing:.055em !important;
  }

  .site-nav .nav-separator {
    display:inline-block !important;
    margin:0 .36rem !important;
    font-size:.68rem !important;
  }

  body.is-home .page-section { padding-top:6.2rem !important; }
  body:not(.is-home) .page-section { padding-top:4.5rem !important; }
  .page-section h2,.section-heading { font-size:.94rem !important; }
}

@media (max-width:390px) {
  .site-nav a { font-size:.55rem !important; letter-spacing:.035em !important; }
  .site-nav .nav-separator { margin:0 .24rem !important; }
}


/* =========================================================
   V71 — definitive mobile menu + tap-to-open album platforms
   ========================================================= */

@media (max-width: 760px) {
  /* Never use the old dropdown panel on mobile */
  .menu-toggle {
    display: none !important;
  }

  .site-header,
  body.is-home .site-header,
  body:not(.is-home) .site-header {
    overflow: visible !important;
  }

  /* HOME: name first, navigation below */
  body.is-home .site-header {
    min-height: 6.15rem !important;
    height: auto !important;
    padding: 0.82rem var(--page-padding) 0.72rem !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0.72rem !important;
  }

  body.is-home .artist-name {
    display: block !important;
    flex: 0 0 auto !important;
    font-size: 0.98rem !important;
    line-height: 1 !important;
  }

  /* INTERNAL: no artist name; only the navigation */
  body:not(.is-home) .site-header {
    min-height: 4.5rem !important;
    height: auto !important;
    padding: 0.72rem var(--page-padding) !important;
    align-items: center !important;
    justify-content: center !important;
  }

  body:not(.is-home) .artist-name {
    display: none !important;
  }

  /* Explicitly neutralize every legacy dropdown property */
  .site-nav,
  body.is-home .site-nav,
  body:not(.is-home) .site-nav,
  .site-nav.is-open,
  .site-nav[aria-hidden="true"] {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.48rem 0 !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    white-space: normal !important;
  }

  body.is-home .site-nav {
    justify-content: flex-start !important;
  }

  .site-nav a {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: clamp(0.58rem, 2.55vw, 0.69rem) !important;
    line-height: 1.15 !important;
    letter-spacing: 0.045em !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .site-nav .nav-separator {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    margin: 0 0.3rem !important;
    font-size: 0.64rem !important;
    line-height: 1 !important;
  }

  body.is-home .page-section {
    padding-top: 7rem !important;
  }

  body:not(.is-home) .page-section {
    padding-top: 5.35rem !important;
  }

  /* Albums: touch must not inherit permanent :focus-within state */
  #albums .album-card .release-thumb:hover .album-platform-overlay,
  #albums .album-card .release-thumb:focus-within .album-platform-overlay,
  #albums .album-card .release-thumb:hover .album-platform-menu a,
  #albums .album-card .release-thumb:focus-within .album-platform-menu a {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  #albums .album-card .release-thumb:hover img,
  #albums .album-card .release-thumb:focus-within img {
    transform: none !important;
    filter: none !important;
  }

  #albums .album-platform-overlay {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 180ms ease, visibility 180ms ease !important;
  }

  #albums .album-platform-menu a {
    opacity: 0 !important;
    transform: translateY(0.35rem) !important;
    pointer-events: none !important;
  }

  #albums .album-card.is-platform-open .album-platform-overlay {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  #albums .album-card.is-platform-open .album-platform-menu a {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  #albums .album-card.is-platform-open .release-thumb img {
    transform: scale(1.015) !important;
    filter: brightness(0.52) !important;
  }

  #albums .release-thumb {
    -webkit-tap-highlight-color: transparent;
  }
}

@media (max-width: 390px) {
  .site-nav a {
    font-size: 0.56rem !important;
    letter-spacing: 0.025em !important;
  }

  .site-nav .nav-separator {
    margin: 0 0.22rem !important;
  }
}


/* =========================================================
   V72 — mobile uses the desktop-style horizontal navigation
   ========================================================= */
@media (max-width:900px){
.menu-toggle{display:none!important}
.site-nav,.site-nav.is-open,.site-nav[aria-hidden="true"]{display:grid!important;grid-template-columns:repeat(5,auto)!important;justify-content:space-between!important;position:static!important;inset:auto!important;width:100%!important;height:auto!important;margin:0!important;padding:0!important;transform:none!important;background:transparent!important;backdrop-filter:none!important;-webkit-backdrop-filter:none!important;box-shadow:none!important;opacity:1!important;visibility:visible!important;overflow:visible!important;pointer-events:auto!important}
.site-nav .nav-separator{display:none!important}
.site-nav a{font-size:clamp(.48rem,2.05vw,.62rem)!important;letter-spacing:.025em!important;line-height:1.1!important;white-space:nowrap!important;margin:0!important;padding:0!important;width:auto!important}
}
