/* ============================================================
   SODAMAN MUSIC — Design System
   Minimal. Editorial. Rock.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;500;600&family=Inter:wght@400;500&display=swap');

:root {
  --black: #111111;
  --off-white: #F6F2EA;
  --red: #A32020;
  --red-dim: #7c1818;
  --line: rgba(17,17,17,0.14);
  --line-inverse: rgba(246,242,234,0.16);

  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-sub: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  --gutter: clamp(24px, 5vw, 64px);
  --max: 1360px;
}

* { box-sizing: border-box; }

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--off-white);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Typography ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.94;
  text-transform: uppercase;
  margin: 0;
}

h1, .h1 { font-size: clamp(48px, 9vw, 128px); }
h2, .h2 { font-size: clamp(36px, 5.5vw, 72px); }
h3, .h3 { font-size: clamp(24px, 3vw, 34px); }

.eyebrow {
  font-family: var(--font-sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--red);
}

.eyebrow--inverse { color: var(--red); }

.lede {
  font-family: var(--font-sub);
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
  max-width: 46ch;
}

p { margin: 0 0 1em; max-width: 62ch; }
p:last-child { margin-bottom: 0; }

.section-label {
  font-family: var(--font-sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
}

/* ---------- Buttons / CTA ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  padding: 16px 30px;
  border: 1px solid var(--black);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover { background: var(--black); color: var(--off-white); }

.btn--solid {
  background: var(--black);
  color: var(--off-white);
}
.btn--solid:hover { background: var(--red); border-color: var(--red); }

.btn--red {
  border-color: var(--red);
  color: var(--red);
}
.btn--red:hover { background: var(--red); color: var(--off-white); }

.btn--inverse {
  border-color: var(--off-white);
  color: var(--off-white);
}
.btn--inverse:hover { background: var(--off-white); color: var(--black); }

.text-link {
  font-family: var(--font-sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  display: inline-block;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  color: var(--off-white);
  border-bottom: 1px solid var(--line-inverse);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}

.logo { display: block; }
.logo--primary { width: clamp(140px, 12vw, 166px); height: auto; }
.site-footer .logo--primary { width: clamp(220px, 22vw, 270px); }

.logo__bolt { width: 24px; height: 38px; flex-shrink: 0; }
.logo__bolt path { fill: var(--off-white); }

.logo__divider {
  width: 2px;
  height: 40px;
  background: var(--red);
  flex-shrink: 0;
}

.logo__wordmark { display: flex; flex-direction: column; }

.logo__brand {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.035em;
  color: var(--off-white);
  line-height: 0.9;
}

.logo__sub {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.52em;
  color: var(--red);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__list {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  font-family: var(--font-sub);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  position: relative;
  padding-bottom: 4px;
}

.nav__list a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav__list a:hover::after,
.nav__list a[aria-current="page"]::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  /* 44px minimum touch target */
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-right: -6px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--off-white);
  margin: 6px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */

.hero { padding: 0; border-bottom: 1px solid var(--line); }

.hero--image {
  position: relative;
  height: min(760px, calc(100vh - 68px));
  min-height: 600px;
  background: var(--black);
  overflow: hidden;
}

.hero--image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(.92) contrast(1.05);
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .45s ease;
}

.hero--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04) 35%, rgba(0,0,0,.62) 100%);
  pointer-events: none;
}

.hero__disciplines {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  transform: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  width: 100%;
  max-width: none;
  color: var(--off-white);
  background: rgba(9,9,9,.72);
  border-top: 1px solid rgba(246,242,234,.2);
  box-shadow: 0 -18px 60px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  /* 100% not 100vw — 100vw includes the scrollbar and causes horizontal scroll */
  max-width: 100%;
}

.hero__discipline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  padding: 18px clamp(18px, 2.3vw, 34px);
  font-family: var(--font-sub);
  text-transform: uppercase;
  transition: background .25s ease;
}

.hero__discipline + .hero__discipline {
  border-left: 1px solid rgba(246,242,234,.18);
}

.hero__discipline strong {
  font-size: clamp(12px, 1.15vw, 16px);
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.25;
  white-space: nowrap;
  transition: color .25s ease, transform .3s cubic-bezier(.2,.7,.2,1);
}

.hero__discipline:hover {
  background: rgba(163,32,32,.2);
}

.hero__discipline:hover strong {
  color: #fff;
  transform: translateY(-2px);
}

.hero--image:has(.hero__discipline:hover) > img {
  transform: scale(1.006);
  filter: saturate(1) contrast(1.05);
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  min-height: min(760px, calc(100vh - 64px));
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(72px, 10vw, 128px) clamp(36px, 6vw, 84px) clamp(72px, 10vw, 128px) 0;
}

.hero__eyebrow { margin-bottom: 22px; }

.hero h1 {
  font-size: clamp(58px, 6.8vw, 102px);
  margin-bottom: 26px;
}

.hero__sub {
  font-family: var(--font-sub);
  font-size: clamp(17px, 2vw, 22px);
  max-width: 50ch;
  margin-bottom: 40px;
  color: var(--black);
}

.hero__media {
  position: relative;
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  background: var(--black);
}

.hero__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
  transition: filter 0.35s ease, transform 0.7s ease;
}

.hero__media:hover > img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.012);
}

.hero__media--poster > img {
  object-fit: contain;
  padding: clamp(16px, 3vw, 34px);
  background: #0c0c0c;
}

.hero__media--rotator > img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.8s ease, transform 6s ease, filter 0.35s ease;
}

.hero__media--rotator > img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__media--rotator > img.is-contain {
  object-fit: contain;
  padding: clamp(16px, 3vw, 34px);
  background: #0c0c0c;
}

.hero__controls {
  position: absolute;
  z-index: 3;
  left: 20px;
  bottom: 20px;
  display: flex;
  gap: 8px;
}

.hero__controls button {
  width: 28px;
  height: 4px;
  border: 0;
  padding: 0;
  background: rgba(246,242,234,0.5);
  cursor: pointer;
}

.hero__controls button.is-active { background: var(--off-white); }

@media (max-width: 900px) {
  .hero .container {
    display: block;
    min-height: 0;
  }

  .hero__copy {
    padding: clamp(60px, 12vw, 100px) 0 clamp(48px, 9vw, 72px);
  }

  .hero__media {
    aspect-ratio: 16 / 10;
    min-height: 0;
    margin-bottom: var(--gutter);
  }
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--red);
  color: var(--off-white);
  border-bottom: 1px solid var(--red-dim);
}

.signal-strip span {
  padding: 14px var(--gutter);
  border-right: 1px solid rgba(246,242,234,0.22);
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-strip span:last-child { border-right: 0; }

@media (max-width: 800px) {
  .signal-strip { grid-template-columns: repeat(2, 1fr); }
  .signal-strip span:nth-child(2) { border-right: 0; }
  .signal-strip span:nth-child(-n+2) { border-bottom: 1px solid rgba(246,242,234,0.22); }
}

.page-hero {
  padding: clamp(48px, 9vw, 100px) 0 clamp(36px, 6vw, 60px);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 { margin-top: 20px; margin-bottom: 20px; }

/* ---------- Sections ---------- */

section { padding: clamp(56px, 9vw, 110px) 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: clamp(36px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.section-head h2 { max-width: 16ch; }

.rule { border: none; border-top: 1px solid var(--line); margin: 0; }

/* Section heads: let the trailing link drop below the heading rather than
   squeezing both onto one cramped line. */
@media (max-width: 620px) {
  .section-head {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 16px;
  }
  .section-head h2 { max-width: none; flex: 1 1 100%; }
  .section-head > a { flex: 0 0 auto; }
}

/* ---------- Intro block ---------- */

.intro {
  padding-top: clamp(56px, 9vw, 100px);
}

.intro__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: start;
}

.intro__grid .eyebrow { grid-column: span 3; }
.intro__grid .lede { grid-column: 4 / span 8; }

@media (max-width: 800px) {
  .intro__grid .eyebrow, .intro__grid .lede { grid-column: 1 / -1; }
  .intro__grid .eyebrow { margin-bottom: 16px; }
}

/* ---------- Project Cards ---------- */

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-grid--home { grid-template-columns: repeat(3, 1fr); }
.project-grid--four { grid-template-columns: repeat(2, 1fr); }

.project-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--off-white);
  padding: clamp(32px, 3.5vw, 48px) clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: background 0.25s ease, color 0.25s ease;
}

.project-card > *:not(.project-card__image) { position: relative; z-index: 2; }

.project-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: var(--black);
  transition: opacity 0.35s ease;
}

.project-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Scrim strength is set by the worst case (a bright photo): 0.72 at the top
     keeps off-white text at 6.3:1. The previous 0.35 measured ~1.9:1. */
  background: linear-gradient(180deg, rgba(17,17,17,0.72), rgba(17,17,17,0.86) 45%, rgba(17,17,17,0.96));
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
  transform: scale(1.05);
  transition: transform 0.65s ease, filter 0.35s ease;
}

/* Over a photograph, red tag text tops out around 3:1 against a bright image no
   matter how dark the scrim gets. A solid red chip is backdrop-independent and
   measures 6.75:1, so the tag switches to a chip whenever a photo is showing. */
.project-card__tag--onphoto,
.project-card:focus-visible .project-card__tag {
  background: var(--red);
  color: var(--off-white);
  padding: 4px 8px 3px;
  line-height: 1;
}

/* Keyboard focus gets the same reveal as hover, on every device */
.project-card:focus-visible .project-card__image { opacity: 1; }

.project-card:focus-visible .project-card__image img {
  transform: scale(1);
  filter: saturate(1) contrast(1.04);
}

.project-card:focus-visible {
  background: var(--black);
  color: var(--off-white);
}

.project-card:focus-visible .project-card__number { color: var(--off-white); }

.project-card:focus-visible .btn {
  border-color: var(--off-white);
  color: var(--off-white);
}

/* Pointer devices: reveal on hover only */
@media (hover: hover) and (pointer: fine) {
  .project-card:hover .project-card__image { opacity: 1; }

  .project-card:hover .project-card__image img {
    transform: scale(1);
    filter: saturate(1) contrast(1.04);
  }

  .project-card:hover {
    background: var(--black);
    color: var(--off-white);
  }

  .project-card:hover .project-card__number { color: var(--off-white); }

  .project-card:hover .project-card__tag {
    background: var(--red);
    color: var(--off-white);
    padding: 4px 8px 3px;
    line-height: 1;
  }

  .project-card:hover .btn {
    border-color: var(--off-white);
    color: var(--off-white);
  }
  .project-card:hover .btn:hover { background: var(--red); border-color: var(--red); color: var(--off-white); }
}

/* Touch devices: no hover exists, so show the photo treatment permanently.
   Scoped to --image so a card without a photo never turns black with invisible text.
   The width clause is deliberate belt-and-braces: some hybrid/tablet browsers
   report (hover: hover) despite being touch-first, and a blank card is a far
   worse failure than a permanently-revealed one on a narrow window. */
@media (hover: none), (max-width: 900px) {
  .project-card--image {
    background: var(--black);
    color: var(--off-white);
  }

  .project-card--image .project-card__image { opacity: 1; }

  .project-card--image .project-card__image img {
    transform: scale(1);
    filter: saturate(1) contrast(1.04);
  }

  .project-card--image .project-card__number { color: var(--off-white); }

  .project-card--image .project-card__tag {
    background: var(--red);
    color: var(--off-white);
    padding: 4px 8px 3px;
    line-height: 1;
  }

  .project-card--image p { opacity: 0.92; }

  .project-card--image .btn {
    border-color: var(--off-white);
    color: var(--off-white);
  }

  /* Press feedback in place of hover */
  .project-card--image:active .project-card__image img { transform: scale(1.02); }
}

.project-card__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: auto;
}

.project-card__number {
  font-family: var(--font-sub);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.project-card__tag {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
}

.project-card h3 { margin: 36px 0 14px; }

.project-card p { font-size: 15px; opacity: 0.85; margin-bottom: 28px; }

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

/* Stacked cards on phones: four 380px cards is a long scroll, and the desktop
   36px heading margin is wasted space once the card is full-bleed. */
@media (max-width: 620px) {
  .project-card {
    min-height: 300px;
    padding: 28px 24px 30px;
  }
  .project-card h3 { margin: 28px 0 10px; }
  .project-card p { margin-bottom: 20px; }
}

/* ---------- Release cards (home preview) ---------- */

.release-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.release-grid--four {
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.6vw, 36px);
}

.release-grid--three {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.2vw, 44px);
}

.release-grid--four .release-card h3 { font-size: clamp(23px, 2.4vw, 30px); }
.release-grid--three .release-card h3 { font-size: clamp(23px, 2.4vw, 30px); }

.release-card {
  display: block;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), color .25s ease;
}

.release-card__art {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--black);
  margin-bottom: 20px;
}

.release-card__art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(163,32,32,.08), rgba(9,9,9,.36));
  opacity: 0;
  transition: opacity .35s ease;
}

.release-card__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}

.release-card:hover,
.release-card:focus-visible { transform: translateY(-6px); }

.release-card:hover .release-card__art::after,
.release-card:focus-visible .release-card__art::after { opacity: 1; }

.release-card:hover .release-card__art img,
.release-card:focus-visible .release-card__art img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.04);
}

.release-card:hover h3,
.release-card:focus-visible h3 { color: var(--red); }

.release-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-sub);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.release-card h3 { margin-bottom: 6px; }
.release-card__feat {
  font-family: var(--font-sub);
  font-size: 14px;
  color: rgba(17,17,17,0.65);
}

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

@media (max-width: 1000px) and (min-width: 701px) {
  .release-grid--four,
  .release-grid--three { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Videos ---------- */

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 54px);
}

.video-card__frame {
  aspect-ratio: 16 / 9;
  background: #000;
  margin-bottom: 22px;
}

.video-card__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Click-to-play facade.
   Eager iframes were throwing YouTube "Error 153" — the player refuses to load
   when the embedding page sends no referrer, which is what happens over file://
   and behind some strict privacy settings. Loading nothing from YouTube until
   the user clicks sidesteps that, cuts four third-party iframes from initial
   page load, and sets no YouTube cookies until the visitor opts in. Without
   JavaScript the facade stays a plain link to YouTube. */
.video-embed {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.video-embed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.03);
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}

.video-embed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9,9,9,.28);
  transition: background .3s ease;
}

/* Sharp red play marker — no rounded corners, consistent with the brand */
.video-embed__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 62px;
  height: 62px;
  background: var(--red);
  transition: transform .25s cubic-bezier(.2,.7,.2,1), background .25s ease;
}

.video-embed__play::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--off-white);
}

@media (hover: hover) and (pointer: fine) {
  .video-embed:hover img { transform: scale(1.04); filter: saturate(1) contrast(1.03); }
  .video-embed:hover::after { background: rgba(9,9,9,.14); }
  .video-embed:hover .video-embed__play { transform: translate(-50%, -50%) scale(1.08); }
}

.video-embed:focus-visible .video-embed__play { transform: translate(-50%, -50%) scale(1.08); }

@media (max-width: 560px) {
  .video-embed__play { width: 52px; height: 52px; }
  .video-embed__play::before { border-width: 9px 0 9px 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .video-embed img,
  .video-embed__play { transition: none; }
}

.video-card .eyebrow { display: block; margin-bottom: 10px; }
.video-card h3 { color: var(--off-white); }

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

/* ---------- News ---------- */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.news-card {
  border-top: 1px solid var(--black);
  padding-top: 22px;
  display: grid;
  grid-template-rows: auto auto 52px auto;
  align-content: start;
  align-items: flex-start;
  min-height: 0;
}

.news-card > .text-link { margin-top: 0; justify-self: start; }

.news-card__date {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: block;
}

.news-card h3 { font-size: 24px; margin-bottom: 12px; }
.news-card p { font-size: 15px; margin-bottom: 4px; }

@media (max-width: 900px) {
  .news-grid { grid-template-columns: 1fr; gap: 36px; }
  .news-card { min-height: 0; grid-template-rows: auto; }
  .news-card > .text-link { margin-top: 4px; }
}

/* --- Mobile hero -----------------------------------------------------------
   Three columns of 8–11px type cannot hold "Independent music releases" or
   "Media production & promotion" at phone widths. Below 760px the disciplines
   become three equal rows overlaid on the photograph.

   Scrim strength is derived from the actual hero image, not a guess. Measured
   at the mobile crop, the 95th-percentile luminance per band is 0.387 / 0.411 /
   0.209 (it is a dark club photo with bright stage-light highlights). A flat
   overlay would have to be heavy everywhere; instead each row uses a vertical
   gradient that peaks at ~0.68 alpha exactly where the text sits and eases to
   ~0.38 at the row edges. That measures ~8.6:1 for off-white on the worst band
   while letting the photograph stay visible between the labels.              */
@media (max-width: 760px) {
  .hero--image {
    --hero-img-h: max(420px, 62svh);
    height: var(--hero-img-h);
    min-height: 0;
  }

  .hero--image > img {
    height: 100%;
    min-height: 0;
    object-position: 52% center;
  }

  /* Row scrims carry the contrast now — keep only a light overall vignette */
  .hero--image::after {
    inset: 0;
    height: auto;
    background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.20));
  }

  .hero__disciplines {
    position: absolute;
    inset: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    background: none;
    border-top: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero__discipline {
    justify-content: center;
    align-items: center;
    min-height: 0;
    padding: 12px var(--gutter);
    background: linear-gradient(180deg,
      rgba(9,9,9,.38) 0%,
      rgba(9,9,9,.68) 50%,
      rgba(9,9,9,.38) 100%);
  }

  .hero__discipline + .hero__discipline {
    border-left: none;
    border-top: 1px solid rgba(246,242,234,.24);
  }

  .hero__discipline strong {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .1em;
    line-height: 1.3;
    white-space: normal;
    text-align: center;
  }

  /* No rule marker on mobile — centred type carries the rows on its own */
  .hero__discipline::before { content: none; }

  .hero__discipline:hover { background: linear-gradient(180deg,
      rgba(9,9,9,.38) 0%,
      rgba(9,9,9,.68) 50%,
      rgba(9,9,9,.38) 100%); }
  .hero__discipline:hover strong { transform: none; color: var(--off-white); }
}

/* Very small phones — keep the photo from eating the whole first screen */
@media (max-width: 380px) {
  .hero--image { --hero-img-h: max(380px, 56svh); }
  .hero__discipline strong { font-size: 14px; }
  .hero__discipline { padding-left: 20px; padding-right: 20px; }
}

/* ---------- Dark section ---------- */

.section--dark {
  background: var(--black);
  color: var(--off-white);
}

.section--dark .section-head { border-color: var(--line-inverse); }
.section--dark p { color: rgba(246,242,234,0.78); }
.inverse-link { color: var(--off-white); }


/* ---------- About page ---------- */

.about-lede {
  padding-bottom: 0;
}

.about-lede .lede { max-width: 56ch; font-size: clamp(20px, 2.6vw, 28px); }

.about-story {
  display: grid;
  grid-template-columns: minmax(180px, .65fr) minmax(0, 1.7fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: center;
}

.about-story h2 { margin-bottom: 24px; }
.about-story .brand-roundel { max-width: 270px; }

/* Who operates the company — the line a reviewer looks for */
.about-operator {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--font-sub);
  font-size: 15px;
  letter-spacing: .02em;
}


.pillars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px 16px;
}

.pillar {
  font-family: var(--font-sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--black);
}

@media (max-width: 900px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line-inverse);
  padding-top: 40px;
}

.stat { }
.stat__num { font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); color: var(--red); line-height: 1; }
.stat__label { font-family: var(--font-sub); text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; margin-top: 10px; }

@media (max-width: 700px) {
  .stat-row { grid-template-columns: 1fr; gap: 32px; }
  .about-story { grid-template-columns: 1fr; }
}

/* ---------- Releases page ---------- */

.release-full {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(48px, 7vw, 80px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.release-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 64px);
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(56px, 9vw, 110px);
}

.release-catalog .release-full {
  display: block;
  padding: 0 0 clamp(36px, 5vw, 56px);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}

.release-catalog .release-full__art { margin-bottom: 28px; }
.release-catalog .release-full h2 { font-size: clamp(36px, 4.2vw, 60px); }
.release-catalog .release-full:hover { transform: translateY(-5px); }
.release-catalog .release-full:hover h2 { color: var(--red); }
.release-catalog .release-full:hover .release-full__art img { transform: scale(1.035); }
.release-catalog .release-full:hover .release-full__art::after { opacity: 1; }

.release-full__art { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--black); }
.release-full__art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(163,32,32,.06), rgba(9,9,9,.28));
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.release-full__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}

.release-full__date {
  font-family: var(--font-sub);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--red);
  margin-bottom: 14px;
}


.release-full h2 { margin-bottom: 6px; transition: color .25s ease; }
.release-full__feat {
  font-family: var(--font-sub);
  font-size: 18px;
  margin-bottom: 26px;
  color: rgba(17,17,17,0.65);
}

.release-full__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 32px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sub);
  font-size: 14px;
  margin-bottom: 28px;
}

.data-table tr { border-top: 1px solid var(--line); }
.data-table tr:last-child { border-bottom: 1px solid var(--line); }

.data-table th, .data-table td {
  text-align: left;
  padding: 12px 0;
  font-weight: 400;
}

.data-table th {
  width: 40%;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
}

.release-full__assets {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Identifiers (ISRC, UPC) — monospace so a reviewer can read and copy them
   without ambiguity between 0/O and 1/I. */
.code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  letter-spacing: .04em;
  overflow-wrap: anywhere;
}

/* Per-track ISRC listing inside the album tracklist */
.track-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sub);
  font-size: 14px;
}

.track-table tr { border-top: 1px solid var(--line); }
.track-table tr:first-child { border-top: none; }

.track-table td {
  padding: 9px 0;
  vertical-align: baseline;
}

.track-table__no {
  width: 30px;
  color: var(--red);
  font-weight: 600;
}

.track-table td:last-child {
  text-align: right;
  white-space: nowrap;
  color: rgba(17,17,17,0.62);
}

@media (max-width: 560px) {
  .track-table td:last-child {
    text-align: left;
    white-space: normal;
  }
  .track-table tr { display: grid; grid-template-columns: 26px 1fr; padding: 9px 0; }
  .track-table td { padding: 0; }
  .track-table td:last-child { grid-column: 2; padding-top: 3px; font-size: 13px; }
}

details.lyrics {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 6px;
}

details.lyrics summary {
  font-family: var(--font-sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  cursor: pointer;
  color: var(--red);
}

details.lyrics .lyrics__body {
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 15px;
  white-space: pre-line;
  color: rgba(17,17,17,0.75);
}

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

/* A 40/60 split crushes long credit values at phone widths — stack label over
   value so every row gets the full column width. */
@media (max-width: 620px) {
  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table th,
  .data-table td { display: block; width: 100%; }

  .data-table tr {
    border-top: 1px solid var(--line);
    padding: 14px 0;
  }

  .data-table th {
    width: auto;
    padding: 0 0 4px;
    font-size: 11px;
  }

  .data-table td {
    padding: 0;
    font-size: 15px;
    line-height: 1.45;
  }
}

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-card {
  background: var(--off-white);
  padding: 36px 28px;
}

.contact-card h3 { font-size: 22px; margin-bottom: 10px; }
.contact-card p { font-size: 14px; margin-bottom: 18px; opacity: 0.8; }

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

.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-main--single { grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); }
.contact-links { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 28px; }

.contact-email {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 52px);
  text-transform: none;
  display: inline-block;
  overflow-wrap: anywhere;
  max-width: 100%;
}

.contact-note {
  border-top: 1px solid var(--black);
  padding-top: 24px;
}

.contact-note h2 {
  font-size: clamp(34px, 5vw, 58px);
  margin: 16px 0 18px;
}

.contact-note p { margin-bottom: 24px; }

/* Standard industry submissions policy — set quietly, not as a warning banner */
.policy-note {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  max-width: 62ch;
}

.policy-note .eyebrow { display: block; margin-bottom: 14px; }

.policy-note p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(17,17,17,0.68);
}

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

/* ---------- Footer ---------- */

.site-footer {
  background: var(--black);
  color: var(--off-white);
  padding: clamp(48px, 7vw, 80px) 0 28px;
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: clamp(36px, 6vw, 56px);
  border-bottom: 1px solid var(--line-inverse);
}

.site-footer .logo__brand { color: var(--off-white); }
.site-footer .logo__bolt path { fill: var(--off-white); }

.brand-roundel {
  width: clamp(150px, 18vw, 240px);
  height: auto;
}

.footer-tagline {
  font-family: var(--font-sub);
  font-size: 14px;
  color: rgba(246,242,234,0.65);
  margin-top: 14px;
  max-width: 32ch;
}

.footer-nav {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-nav__col { display: flex; flex-direction: column; gap: 12px; }

.footer-nav__label {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}

.footer-nav a {
  font-family: var(--font-sub);
  font-size: 14px;
  color: rgba(246,242,234,0.85);
}
.footer-nav a:hover { color: var(--off-white); }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  font-family: var(--font-sub);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(246,242,234,0.5);
}

/* Footer on phones: a 3-across flex row with a 48px gap wraps awkwardly at
   375px. Use an explicit 2-column grid and give links real tap heights. */
@media (max-width: 640px) {
  .site-footer__top { gap: 40px; }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
    width: 100%;
  }

  .footer-nav__col { gap: 2px; }

  .footer-nav a {
    display: flex;
    align-items: center;
    min-height: 40px;
    /* long email address must never push the layout wide */
    overflow-wrap: anywhere;
  }

  .footer-tagline { max-width: none; }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ---------- Fade-in on scroll ---------- */

.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in,
  .hero__media img,
  .project-card__image img,
  .hero--image > img,
  .hero__discipline small,
  .hero__discipline strong {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

@media (max-width: 860px) {
  /* The panel is positioned against .site-header (which is sticky, therefore a
     containing block), NOT against .nav. On mobile .nav only wraps the 44px
     toggle, so anchoring to it collapsed the dropdown to a 44px sliver pinned
     to the right edge. `position: static` here hands the job to the header. */
  .nav { position: static; gap: 0; }

  .nav__list { display: none; }
  .nav__toggle { display: flex; }

  .nav__list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    background: var(--black);
    border-bottom: 1px solid var(--line-inverse);
    padding: 4px var(--gutter) 18px;
    gap: 0;
    z-index: 99;
    /* Never taller than the space under the header; scroll if it is */
    max-height: calc(100svh - 100%);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav[data-open="true"] .nav__list { display: flex; }

  /* Full-width, 52px-tall rows instead of 13px text with a 20px gap */
  .nav__list li { display: block; }

  .nav__list a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 4px 0;
    font-size: 16px;
    letter-spacing: .08em;
    border-bottom: 1px solid rgba(246,242,234,.10);
  }

  .nav__list li:last-child a { border-bottom: none; }

  /* Underline animation is a pointer affordance; on the stacked menu use colour */
  .nav__list a::after { display: none; }
  .nav__list a[aria-current="page"] { color: var(--red); }
  .nav__list a:active { color: var(--red); }

  /* Burger morphs into a close X so the control reads as a toggle.
     Spans are 1px tall with 6px margins -> 13px centre-to-centre. */
  .nav__toggle span { transition: transform .25s ease, opacity .2s ease; }
  .nav[data-open="true"] .nav__toggle span:nth-child(1) { transform: translateY(13px) rotate(45deg); }
  .nav[data-open="true"] .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav[data-open="true"] .nav__toggle span:nth-child(3) { transform: translateY(-13px) rotate(-45deg); }

  /* Dim the page behind the open menu, tap anywhere to dismiss */
  .nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(9,9,9,.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 90;
  }

  .nav-scrim.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  /* Stop the page scrolling underneath the open menu */
  body.nav-open { overflow: hidden; }
}

/* Scrim must never appear on desktop, even if a stale class survives a resize */
@media (min-width: 861px) {
  .nav-scrim { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .nav__toggle span,
  .nav-scrim { transition: none; }
}

/* Touch: give inline text links a real tap area without shifting desktop layout */
@media (hover: none) {
  .text-link {
    padding-top: 6px;
    padding-bottom: 9px;
  }
}
