/* =========================================================================
   MYLES A. CROSS — The Weight of What We Build
   Urban Mindstate · press & listening site
   ========================================================================= */

:root {
  /* Ink */
  --ink-0:   #060607;
  --ink-1:   #0A0A0C;
  --ink-2:   #101013;
  --ink-3:   #17171B;
  --ink-4:   #1F1F24;

  /* Gold — pulled from the album artwork */
  --gold:      #C9A45C;
  --gold-hi:   #E7CB92;
  --gold-lo:   #8A6F3A;
  --gold-glow: rgba(201, 164, 92, 0.18);

  /* Type */
  --bone:    #EFEAE1;
  --bone-2:  #C4BDB1;
  --muted:   #8A857C;
  --faint:   #5A564F;

  --line:      rgba(201, 164, 92, 0.20);
  --line-soft: rgba(239, 234, 225, 0.09);

  --serif: 'Cormorant Garamond', 'Didot', 'Bodoni MT', Garamond, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --measure: 64ch;
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --bar-h: 88px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------------------------------------------------ base -- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink-0);
  color: var(--bone-2);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: var(--bar-h);
}

/* height:auto is load-bearing — images carry width/height attributes for
   layout stability, and without it the attribute overrides the CSS width. */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--gold); color: var(--ink-0); }

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

/* Filmic grain over everything */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------- shared -- */

.wrap {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1rem;
}

.eyebrow--muted { color: var(--faint); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--bone);
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0.005em;
}

h2 {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  margin-bottom: 1.6rem;
}

h3 { font-size: clamp(1.35rem, 2.6vw, 1.9rem); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.lede {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.3vw, 1.6rem);
  line-height: 1.55;
  color: var(--bone);
  font-weight: 300;
}

.section {
  padding-block: clamp(5rem, 11vw, 9rem);
  position: relative;
}

.section + .section { border-top: 1px solid var(--line-soft); }

.section__head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section__head--split {
  display: grid;
  gap: 2rem clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
}
@media (min-width: 900px) {
  .section__head--split { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
}

.rule {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
  border: 0;
  margin: 0 0 2rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ------------------------------------------------------------------ nav -- */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem var(--gutter);
  background: linear-gradient(180deg, rgba(6,6,7,0.92), rgba(6,6,7,0));
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(8, 8, 10, 0.88);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line-soft);
}

.nav__mark {
  font-family: var(--serif);
  font-size: 1.02rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone);
  white-space: nowrap;
}
.nav__mark span { color: var(--gold); }

.nav__links {
  display: none;
  gap: clamp(1.2rem, 2.6vw, 2.4rem);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--muted);
}
@media (min-width: 860px) { .nav__links { display: flex; } }

.nav__links a { position: relative; padding-block: 4px; transition: color 0.3s; }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover { color: var(--bone); }
.nav__links a:hover::after { transform: scaleX(1); }

/* ---------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: clamp(7rem, 14vh, 10rem) clamp(4rem, 9vh, 7rem);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../img/street.jpg') center 18% / cover no-repeat;
  filter: grayscale(0.35) brightness(0.34) contrast(1.1);
  transform: scale(1.06);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(70% 60% at 68% 45%, var(--gold-glow), transparent 62%),
    linear-gradient(105deg, var(--ink-0) 12%, rgba(6,6,7,0.86) 46%, rgba(6,6,7,0.62) 100%),
    linear-gradient(0deg, var(--ink-0) 2%, transparent 34%);
}

.hero__grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  width: 100%;
}
@media (min-width: 1040px) {
  .hero__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
}

.hero__label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.62rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
}
.hero__label::before {
  content: '';
  width: clamp(24px, 5vw, 52px);
  height: 1px;
  background: var(--gold);
  flex: none;
}

.hero__title {
  font-size: clamp(2.6rem, 6.6vw, 5.6rem);
  line-height: 1.0;
  letter-spacing: 0.012em;
  color: var(--bone);
  margin-bottom: 1.5rem;
  max-width: 13ch;
  text-wrap: balance;
}
.hero__title em {
  display: block;
  font-style: normal;
  font-size: 0.42em;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  font-family: var(--sans);
  font-weight: 400;
}

.hero__logline {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.1vw, 1.5rem);
  font-style: italic;
  color: var(--bone-2);
  max-width: 30ch;
  margin-bottom: 2.4rem;
  line-height: 1.5;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.6rem;
}
.hero__meta span { display: flex; align-items: center; gap: 0.7rem; }
.hero__meta span + span::before {
  content: '';
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 0.35rem;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero__art {
  position: relative;
  max-width: 460px;
  margin-inline: auto;
  width: 100%;
}
.hero__art img {
  width: 100%;
  border: 1px solid var(--line);
  box-shadow:
    0 40px 90px -30px rgba(0,0,0,0.95),
    0 0 0 1px rgba(255,255,255,0.03),
    0 0 120px -40px var(--gold-glow);
}
.hero__art::after {
  content: '';
  position: absolute;
  left: 4%; right: 4%;
  top: 100%;
  height: 42%;
  background: url('../img/cover.jpg') center top / 100% auto no-repeat;
  transform: scaleY(-1);
  -webkit-mask-image: linear-gradient(to top, transparent 30%, rgba(0,0,0,0.16));
  mask-image: linear-gradient(to top, transparent 30%, rgba(0,0,0,0.16));
  filter: blur(4px) saturate(0.7);
  pointer-events: none;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.scroll-cue::after {
  content: '';
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cue 2.6s var(--ease) infinite;
}
@keyframes cue {
  0%, 100% { opacity: 0.25; transform: scaleY(0.5); transform-origin: top; }
  50%      { opacity: 1;    transform: scaleY(1);   transform-origin: top; }
}

/* --------------------------------------------------------------- button -- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.7rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--bone);
  background: rgba(201, 164, 92, 0.05);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink-0); }
.btn svg { width: 11px; height: 11px; fill: currentColor; flex: none; }

.btn--ghost { background: transparent; border-color: var(--line-soft); color: var(--muted); }
.btn--ghost:hover { color: var(--ink-0); }

/* ---------------------------------------------------------------- stats -- */

.stats {
  border-block: 1px solid var(--line-soft);
  background: var(--ink-1);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 760px) { .stats__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.stat {
  padding: clamp(1.8rem, 4vw, 2.8rem) clamp(1rem, 2.5vw, 2rem);
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}
@media (min-width: 760px) { .stat { border-bottom: 0; } }
.stat:last-child { border-right: 0; }

/* Odd count in a two-column grid — let the last tile span the full width
   rather than sit half-empty beside a gap. */
@media (max-width: 759px) {
  .stat:nth-child(2n) { border-right: 0; }
  .stat:last-child { grid-column: 1 / -1; border-bottom: 0; }
}

.stat__value {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.6rem;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------------------------------------------------------------- album -- */

.album__body { max-width: var(--measure); }
.album__body p + p { margin-top: 1.3em; }

.acts {
  margin-top: clamp(3rem, 7vw, 5rem);
  display: grid;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
@media (min-width: 880px) { .acts { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.act {
  background: var(--ink-1);
  padding: clamp(1.7rem, 3.4vw, 2.4rem);
  transition: background 0.4s var(--ease);
}
.act:hover { background: var(--ink-2); }

.act__numeral {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold-lo);
  line-height: 1;
  margin-bottom: 0.9rem;
}
.act__title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--bone);
  margin-bottom: 0.5rem;
}
.act__tracks {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  font-variant-numeric: tabular-nums;
}
.act__note { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

/* ------------------------------------------------------------ tracklist -- */

.listen { background: var(--ink-1); }

.tracklist {
  border-top: 1px solid var(--line-soft);
}

.track {
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.4s var(--ease);
}
.track:hover { background: rgba(201, 164, 92, 0.028); }
.track.is-active { background: rgba(201, 164, 92, 0.055); }

/* Four columns even on small screens — the wave and meta cells are display:none
   there, so the chevron must have a column of its own or it wraps to row two. */
.track__row {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.9rem, 2.4vw, 1.7rem);
  padding: clamp(1.15rem, 2.6vw, 1.6rem) 0;
  width: 100%;
  text-align: left;
}
/* Fixed trailing columns so every row's waveform starts and ends on the
   same axis — a ragged tracklist reads as amateur at a glance. */
@media (min-width: 1000px) {
  .track__row {
    grid-template-columns: 2.1ch 44px minmax(0, 1.05fr) minmax(0, 1.15fr) 8.5rem 34px;
  }
}

/* Pointer-only shortcut hint — meaningless on a touch device. */
.kbd-hint { display: none; }
@media (min-width: 860px) {
  .kbd-hint {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--faint);
  }
}

.track__n {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  width: 2.1ch;
  transition: color 0.35s;
}
.track.is-active .track__n { color: var(--gold); }

/* play control */
.track__play {
  position: relative;
  width: 44px;
  height: 44px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--bone);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
              color 0.35s var(--ease), transform 0.35s var(--ease);
}
.track__play svg { width: 12px; height: 12px; fill: currentColor; }
.track__play .icon-pause { display: none; }
.track:hover .track__play { border-color: var(--gold); }
.track__play:hover { background: var(--gold); color: var(--ink-0); transform: scale(1.06); }
.track.is-playing .track__play { background: var(--gold); border-color: var(--gold); color: var(--ink-0); }
.track.is-playing .track__play .icon-play  { display: none; }
.track.is-playing .track__play .icon-pause { display: block; }

.track__play[disabled] {
  border-color: var(--line-soft);
  color: var(--faint);
  cursor: not-allowed;
}
.track__play[disabled]:hover { background: none; transform: none; }

.track__id { min-width: 0; }

.track__title {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--bone);
  line-height: 1.2;
  margin-bottom: 0.3rem;
}
.track.is-active .track__title { color: var(--gold-hi); }

.track__thesis {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 46ch;
}

.track__wave { display: none; min-width: 0; }
@media (min-width: 1000px) { .track__wave { display: block; } }

.wave {
  width: 100%;
  height: 40px;
  display: block;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.4s var(--ease);
}
.track:hover .wave, .track.is-active .wave { opacity: 1; }
.wave--disabled { cursor: default; opacity: 0.2; }

.track__meta {
  display: none;
  text-align: right;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
@media (min-width: 1000px) { .track__meta { display: block; } }
.track__bpm { color: var(--gold); display: block; margin-bottom: 0.25rem; }

.track__toggle {
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  color: var(--faint);
  transition: color 0.3s, transform 0.4s var(--ease);
}
.track__toggle svg { width: 11px; height: 11px; fill: currentColor; }
.track__toggle:hover { color: var(--gold); }
.track.is-open .track__toggle { transform: rotate(180deg); color: var(--gold); }

/* expanded detail */
.track__detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--ease);
}
.track.is-open .track__detail { grid-template-rows: 1fr; }
.track__detail > div { overflow: hidden; }

.detail {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 0 0 clamp(2rem, 4vw, 2.8rem) calc(2.1ch + 44px + clamp(0.9rem, 2.4vw, 1.7rem) * 2);
}
@media (min-width: 860px) { .detail { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
@media (max-width: 620px) { .detail { padding-left: 0; } }

.detail__quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--bone);
  border-left: 1px solid var(--gold);
  padding-left: 1.5rem;
  margin: 0;
}
.detail__quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--faint);
}

.detail__notes h4 {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.detail__notes p { font-size: 0.9rem; color: var(--bone-2); line-height: 1.75; }

.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.3rem; }
.tag {
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line-soft);
  padding: 0.4rem 0.75rem;
}
.tag--gold { color: var(--gold); border-color: var(--line); }

.track__pending {
  display: none;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  border: 1px dashed var(--line-soft);
  padding: 0.35rem 0.7rem;
  white-space: nowrap;
}
.track.is-pending .track__pending { display: inline-block; }

/* ---------------------------------------------------------- player bar -- */

.player {
  position: fixed;
  inset: auto 0 0;
  z-index: 850;
  height: var(--bar-h);
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  padding-inline: clamp(0.9rem, 3vw, 2rem);
  background: rgba(10, 10, 12, 0.93);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-top: 1px solid var(--line);
  transform: translateY(100%);
  transition: transform 0.6s var(--ease);
}
.player.is-up { transform: none; }

.player__art {
  width: 52px; height: 52px;
  flex: none;
  border: 1px solid var(--line-soft);
  object-fit: cover;
}
@media (max-width: 560px) { .player__art { display: none; } }

.player__btn {
  width: 44px; height: 44px;
  flex: none;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink-0);
  transition: transform 0.3s var(--ease), filter 0.3s;
}
.player__btn:hover { transform: scale(1.06); filter: brightness(1.1); }
.player__btn svg { width: 12px; height: 12px; fill: currentColor; }
.player__btn .icon-pause { display: none; }
.player.is-playing .player__btn .icon-play  { display: none; }
.player.is-playing .player__btn .icon-pause { display: block; }

.player__skip {
  width: 34px; height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: color 0.3s;
}
.player__skip:hover { color: var(--gold); }
.player__skip svg { width: 13px; height: 13px; fill: currentColor; }
@media (max-width: 700px) { .player__skip { display: none; } }

.player__id { min-width: 0; flex: none; width: clamp(120px, 20vw, 230px); }
.player__title {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--bone);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.player__sub {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player__wave { flex: 1 1 auto; min-width: 0; display: none; }
@media (min-width: 700px) { .player__wave { display: block; } }
.player__wave .wave { height: 44px; opacity: 1; }

.player__bar {
  flex: 1 1 auto;
  height: 3px;
  background: var(--ink-4);
  position: relative;
  cursor: pointer;
}
@media (min-width: 700px) { .player__bar { display: none; } }
.player__bar i {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--gold);
  width: 0;
}

.player__time {
  flex: none;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.player__time b { color: var(--gold); font-weight: 400; }

.player__flag {
  flex: none;
  font-size: 0.53rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  border: 1px solid var(--line-soft);
  padding: 0.3rem 0.6rem;
}
@media (max-width: 1100px) { .player__flag { display: none; } }

/* --------------------------------------------------------------- sonics -- */

.sonics__grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}
@media (min-width: 900px) { .sonics__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }

.palette { list-style: none; margin: 0; padding: 0; }
.palette li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem;
  color: var(--bone-2);
  line-height: 1.6;
}
.palette li::before {
  content: '';
  width: 5px; height: 5px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  margin-top: 0.62em;
}

.spec { list-style: none; margin: 0; padding: 0; }
.spec li {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.spec dt, .spec b {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}
.spec span { font-size: 0.92rem; color: var(--bone); }

/* --------------------------------------------------------------- artist -- */

.artist__grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}
@media (min-width: 900px) { .artist__grid { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); } }

.artist__photo {
  position: relative;
  border: 1px solid var(--line-soft);
}
.artist__photo img { filter: grayscale(0.15) contrast(1.05); width: 100%; }
.artist__photo figcaption {
  position: absolute;
  left: 0; bottom: 0;
  padding: 0.7rem 1rem;
  background: rgba(6,6,7,0.85);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.pull {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--gold-hi);
  margin: clamp(2rem, 5vw, 3rem) 0;
  padding-left: 1.6rem;
  border-left: 1px solid var(--gold);
}

.tenets {
  list-style: none;
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
@media (min-width: 640px) { .tenets { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.tenets li {
  background: var(--ink-1);
  padding: 1.3rem 1.5rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: baseline;
  font-size: 0.88rem;
  color: var(--bone-2);
  line-height: 1.6;
}
.tenets b {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--gold-lo);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

/* -------------------------------------------------------------- gallery -- */

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.5rem, 1.4vw, 1rem);
}
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  aspect-ratio: 1 / 1.8;
  background: var(--ink-2);
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) brightness(0.9);
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}
.gallery figure:hover img { transform: scale(1.05); filter: none; }

/* ---------------------------------------------------------------- press -- */

.press { background: var(--ink-1); }

.press__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 900px) { .press__grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); } }

.assets { list-style: none; margin: 0; padding: 0; }
.assets li { border-bottom: 1px solid var(--line-soft); }
.assets a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.15rem 0;
  transition: padding-left 0.4s var(--ease), color 0.3s;
}
.assets a:hover { padding-left: 0.7rem; color: var(--gold); }
.assets strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: inherit;
  margin-bottom: 0.15rem;
}
.assets small {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}
.assets svg { width: 13px; height: 13px; fill: var(--gold); flex: none; }

.boiler {
  border: 1px solid var(--line-soft);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  background: var(--ink-2);
}
.boiler p { font-size: 0.92rem; line-height: 1.75; }

.contact-line {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.35;
  color: var(--gold-hi);
  margin-top: 0.6rem;
  overflow-wrap: anywhere;
  transition: opacity 0.3s;
}
.contact-line:hover { opacity: 0.75; }

/* --------------------------------------------------------------- footer -- */

.footer {
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(3rem, 7vw, 4.5rem);
  background: var(--ink-0);
}
.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}
@media (min-width: 820px) { .footer__grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); } }

.footer__mark {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 0.8rem;
}
.footer small {
  display: block;
  font-size: 0.7rem;
  color: var(--faint);
  line-height: 1.8;
  max-width: 56ch;
}
.footer__note {
  font-size: 0.68rem;
  color: var(--faint);
  line-height: 1.8;
  border-left: 1px solid var(--line-soft);
  padding-left: 1.3rem;
}

/* --------------------------------------------------- motion preferences -- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  body::after, .nav, .player, .scroll-cue { display: none !important; }
  body { background: #fff; color: #111; padding: 0; }
}
