/* ============================================================
   STERFRY.COM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg:        #060606;
  --bg-2:      #090909;
  --bg-card:   #0d0d0d;
  --bg-card-2: #121212;
  --text:      #c8c8c8;
  --muted:     #525252;
  --dim:       #1e1e1e;
  --red:       #c41818;
  --red-hi:    #e02424;
  --red-lo:    #5c0c0c;
  --border:    #141414;
  --border-2:  #1c1c1c;
  --white:     #f0f0f0;

  --display: 'Barlow Condensed', Impact, 'Arial Narrow', sans-serif;
  --body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --gut: 32px;
  --max: 1080px;
}

/* ── reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--red-hi); }
ul, ol { list-style: none; }

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

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


/* ═══════════════════════════════════════════════════
   SIDEBAR — fixed left column, desktop only
   Creates a persistent asymmetric grid.
   Nav lives on the y-axis, not across the top.
═══════════════════════════════════════════════════ */
.sidebar {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: 48px;
  z-index: 100;
  background: var(--bg);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 0;
}

.sidebar-logo { display: block; flex-shrink: 0; }

.sidebar-logo-img {
  height: 18px;
  width: auto;
  mix-blend-mode: screen;
  opacity: 0.5;
  transition: opacity 0.15s;
}
.sidebar-logo:hover .sidebar-logo-img { opacity: 1; }

.sidebar-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: auto;
  margin-bottom: auto;
}

.sidebar-link {
  font-family: var(--body);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: color 0.18s;
  white-space: nowrap;
}
.sidebar-link:hover { color: var(--white); }
.sidebar-link.active { color: var(--red); }

.sidebar-pip {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.4;
  flex-shrink: 0;
  margin-top: auto;
}


/* ═══════════════════════════════════════════════════
   SITE HEADER — fixed top bar, all viewports
═══════════════════════════════════════════════════ */
.site-hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gut);
  z-index: 200;
  background: rgba(6,6,6,0.95);
  border-bottom: 1px solid var(--border);
}

.site-logo { display: flex; align-items: center; }

.site-logo-img {
  height: 24px;
  width: auto;
  mix-blend-mode: screen;
  display: block;
}

/* Desktop nav links — horizontal, inside site-hdr */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-family: var(--body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--red); }

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-btn span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--muted);
  transition: background 0.15s;
}
.menu-btn:hover span { background: var(--white); }


/* ═══════════════════════════════════════════════════
   MENU OVERLAY — full-screen, mobile only
═══════════════════════════════════════════════════ */
.menu-overlay {
  position: fixed; inset: 0;
  z-index: 500;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px var(--gut) 48px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.menu-overlay.open {
  visibility: visible;
  opacity: 1;
}

.menu-close {
  position: absolute;
  top: 16px; right: var(--gut);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-close span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--muted);
  transition: background 0.15s;
}
.menu-close:hover span { background: var(--white); }

.menu-nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}

.menu-link {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.8rem, 13vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.12s, padding-left 0.16s ease;
}
.menu-link:first-child { border-top: 1px solid var(--border); }
.menu-link:hover { color: var(--red); padding-left: 12px; }
.menu-link.active { color: var(--red); }

.menu-socials {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.menu-socials a {
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}
.menu-socials a:hover { color: var(--white); }


/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 52px;   /* mobile: clear the site-hdr */
  padding-bottom: 52px;
  position: relative;
  overflow: hidden;
}

/* ambient red bloom */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at -5% 70%, rgba(196,24,24,0.16) 0%, transparent 48%),
    radial-gradient(ellipse at 105% 5%,  rgba(196,24,24,0.07) 0%, transparent 38%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

/* The H1 wraps the logo image — alt="Sterfry" is the H1 text for SEO */
.hero-logotype { margin-bottom: 22px; line-height: 1; }

@keyframes glow {
  0%,100% { filter: drop-shadow(0 0 24px rgba(196,24,24,0.48)) drop-shadow(0 0 64px rgba(196,24,24,0.18)); }
  50%      { filter: drop-shadow(0 0 44px rgba(196,24,24,0.70)) drop-shadow(0 0 100px rgba(196,24,24,0.28)); }
}

.hero-logo-img {
  width: clamp(300px, 76vw, 960px);
  height: auto;
  mix-blend-mode: screen;
  animation: glow 3.6s ease-in-out infinite;
}

.hero-sub {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: none;
}

.hero-scroll {
  position: absolute;
  bottom: 44px;
  right: var(--gut);
  font-family: var(--body);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dim);
  writing-mode: vertical-rl;
  z-index: 1;
}

/* ── Hero poster strip — info bar at top of hero, desktop only ── */
.hero-hdr {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px var(--gut);
  border-bottom: 1px solid var(--border);
  z-index: 2;
  pointer-events: none;
}
.hero-hdr span {
  font-family: var(--body);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-hdr-center { color: var(--dim) !important; }


/* ═══════════════════════════════════════════════════
   MARQUEE — co-signs ticker
═══════════════════════════════════════════════════ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding: 13px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding: 0 32px;
}
.marquee-item em { color: var(--red); font-style: normal; }


/* ═══════════════════════════════════════════════════
   BIO
═══════════════════════════════════════════════════ */
.bio-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

/* giant ghosted word behind the bio */
.bio-section::before {
  content: 'STERFRY';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 900;
  color: var(--white);
  opacity: 0.022;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.bio-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Horizontal stats row — used on homepage instead of left-column grid */
.bio-stats-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.bio-numbers {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 4px;
}

.bio-stat { border-left: 2px solid var(--red); padding-left: 14px; }

.bio-stat-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.bio-stat-lbl {
  display: block;
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.bio-heading {
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.bio-text {
  font-family: var(--body);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text);
  max-width: 60ch;
}
.bio-text + .bio-text { margin-top: 16px; }

.bio-ctas {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.bio-cta {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--border-2);
  transition: color 0.15s, border-color 0.15s;
}
.bio-cta:hover { color: var(--white); border-color: var(--red); }


/* ═══════════════════════════════════════════════════
   RELEASES — full-width rows, not a card grid
═══════════════════════════════════════════════════ */
.releases-section {
  padding: 72px 0 80px;
  background: var(--bg-2);
}

.releases-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
}

.releases-head h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
}

.releases-more {
  font-family: var(--body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}
.releases-more:hover { color: var(--white); }

.release-list { border-top: 1px solid var(--border); }

.release-row {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: background 0.15s;
}
.release-row:hover { background: rgba(255,255,255,0.01); }

.release-art {
  width: 148px;
  height: 148px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.release-art-tbd {
  width: 148px;
  height: 148px;
  background:
    radial-gradient(circle at 35% 40%, rgba(196,24,24,0.22) 0%, transparent 55%),
    repeating-linear-gradient(
      -45deg,
      var(--bg-card) 0px, var(--bg-card) 2px,
      var(--bg-card-2) 2px, var(--bg-card-2) 12px
    );
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(196,24,24,0.5);
}

.release-n {
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--dim);
  margin-bottom: 7px;
}

.release-title {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.04;
  margin-bottom: 5px;
}

.release-meta {
  font-family: var(--body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.release-desc {
  font-family: var(--body);
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.74;
  max-width: 54ch;
  margin-bottom: 14px;
}

.release-link {
  font-family: var(--body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--border-2);
  transition: color 0.15s, border-color 0.15s;
}
.release-link:hover { color: var(--white); border-color: var(--red); }


/* ═══════════════════════════════════════════════════
   PULL QUOTE — massive type, no box
═══════════════════════════════════════════════════ */
.pull-section {
  overflow: hidden;
}

/* Full-bleed wrapper — no container max-width cap */
.pull-inner {
  padding: 96px var(--gut) 84px;
}

.pull-quote {
  font-family: var(--display);
  font-size: clamp(3rem, 10vw, 9.5rem);
  font-weight: 900;
  line-height: 0.93;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  max-width: none;
  margin-bottom: 32px;
}

.pull-quote em { color: var(--red); font-style: normal; }

.pull-attr {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 48px;
}
.pull-attr::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}
.pull-attr a { color: var(--muted); }
.pull-attr a:hover { color: var(--white); }

.pull-more {
  font-family: var(--body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--border-2);
  transition: color 0.15s, border-color 0.15s;
}
.pull-more:hover { color: var(--white); border-color: var(--red); }


/* ═══════════════════════════════════════════════════
   LISTEN — borderless grid of platform links
═══════════════════════════════════════════════════ */
.listen-section {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.listen-head {
  padding: 48px var(--gut) 0;
  max-width: calc(var(--max) + var(--gut) * 2);
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.listen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.listen-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px var(--gut) 28px;
  border-right: 1px solid var(--border);
  transition: background 0.15s;
  min-height: 110px;
}
.listen-link:last-child { border-right: none; }
.listen-link:hover { background: rgba(196,24,24,0.04); }

.listen-name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}
.listen-link:hover .listen-name { color: var(--white); }

.listen-handle {
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 8px;
  transition: color 0.15s;
}
.listen-link:hover .listen-handle { color: var(--muted); }


/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo-img {
  height: 26px;
  width: auto;
  mix-blend-mode: screen;
  opacity: 0.5;
  transition: opacity 0.15s;
}
.footer-logo:hover .footer-logo-img { opacity: 0.9; }

.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--white); }

.footer-copy {
  font-family: var(--body);
  font-size: 0.62rem;
  color: var(--dim);
}


/* ═══════════════════════════════════════════════════
   INNER PAGES (about, music, press, contact)
═══════════════════════════════════════════════════ */
.section       { padding: 88px 0; }
.section--dark { background: var(--bg-2); }
.divider       { height: 1px; background: var(--border); }

/* ── Inner page headers: full-bleed, raw typography ── */
.page-header {
  padding: 128px var(--gut) 52px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  background: radial-gradient(ellipse at 0% 100%, rgba(196,24,24,0.08) 0%, transparent 50%);
}

/* Ghost word — pulled from data-ghost attribute, bleeds off the right edge */
.page-header[data-ghost]::before {
  content: attr(data-ghost);
  position: absolute;
  bottom: -0.12em;
  left: -0.02em;
  font-family: var(--display);
  font-size: 36vw;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.038;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  letter-spacing: -0.04em;
}

.page-header-title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.88;
  letter-spacing: -0.02em;
  max-width: none;
  margin-bottom: 22px;
  position: relative; /* sits above ghost text */
  z-index: 1;
}

.page-header-desc {
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.72;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: block;
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.gold-rule { display: block; width: 28px; height: 1px; background: var(--red); margin-bottom: 18px; }

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

.section-head { margin-bottom: 40px; }
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 6px;
}
.section-head p { margin-top: 10px; color: var(--muted); font-size: 0.9rem; font-weight: 300; max-width: 54ch; }

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 22px;
  transition: border-color 0.15s, transform 0.15s;
}
.card:hover { border-color: var(--border-2); transform: translateY(-2px); }

.card-label {
  font-family: var(--body); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}
.card-title {
  font-family: var(--display); font-size: 1.3rem; font-weight: 800;
  color: var(--white); text-transform: uppercase; line-height: 1.1; margin-bottom: 6px;
}
.card-meta  { font-size: 0.72rem; color: var(--muted); margin-bottom: 10px; font-weight: 300; }
.card-desc  { font-size: 0.84rem; font-weight: 300; color: var(--text); line-height: 1.68; max-width: none; }
.card-tags  { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }

.tag {
  font-family: var(--body); font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 8px; border: 1px solid var(--border-2); color: var(--muted);
}
.tag--gold { border-color: var(--red-lo); color: var(--red); }

.card-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--body); font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red); margin-top: 14px;
}
.card-link::after { content: '→'; }
.card-link:hover { color: var(--red-hi); }

/* Press */
.press-card {
  border-left: 2px solid var(--red); padding: 18px 18px 18px 22px;
  background: var(--bg-card); margin-bottom: 14px;
}
.press-quote {
  font-family: var(--body); font-size: 0.95rem; font-style: italic;
  font-weight: 300; color: var(--text); margin-bottom: 10px; line-height: 1.75;
}
.press-source {
  font-family: var(--body); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.press-source a { color: var(--red); }

/* Supporters */
.supporters-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.supporter {
  padding: 7px 14px; background: var(--bg-card); border: 1px solid var(--border-2);
  font-family: var(--body); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
  transition: border-color 0.15s, color 0.15s;
}
.supporter:hover { border-color: var(--red); color: var(--white); }

/* Stats row */
.stats-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(130px,1fr));
  border: 1px solid var(--border); overflow: hidden; margin-top: 44px;
}
.stat-item { padding: 22px 18px; border-right: 1px solid var(--border); background: var(--bg-card); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--display); font-size: 2rem; font-weight: 900;
  color: var(--red); line-height: 1; margin-bottom: 4px;
}
.stat-lbl {
  font-family: var(--body); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}

/* About page bio */
.bio-body-inner { font-size: 0.97rem; font-weight: 300; line-height: 1.85; color: var(--text); }
.bio-body-inner p + p { margin-top: 18px; }

.skills-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 8px; }
.skill-badge {
  padding: 5px 12px; background: var(--bg-card-2); border: 1px solid var(--border-2);
  font-family: var(--body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}

/* Timeline */
.timeline { position: relative; padding-left: 22px; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 0;
  width: 1px; background: var(--border-2);
}
.timeline-item { position: relative; padding-bottom: 26px; }
.timeline-item::before {
  content: ''; position: absolute; left: -26px; top: 7px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 7px rgba(196,24,24,0.5);
}
.timeline-year {
  font-family: var(--body); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 4px;
}
.timeline-title {
  font-family: var(--display); font-size: 1.15rem; font-weight: 800;
  color: var(--white); text-transform: uppercase; margin-bottom: 4px;
}
.timeline-desc {
  font-family: var(--body); font-size: 0.82rem; font-weight: 300;
  color: var(--muted); line-height: 1.65; max-width: none;
}

/* Labels */
.labels-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.label-badge {
  padding: 9px 16px; background: var(--bg-card); border: 1px solid var(--border-2);
  font-family: var(--body); font-size: 0.82rem; font-weight: 600; color: var(--text);
  transition: all 0.15s;
}
.label-badge:hover { border-color: var(--red); color: var(--white); }
.label-role {
  font-size: 0.6rem; font-weight: 500; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-top: 2px;
}

/* Social links */
.social-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 8px; margin-top: 22px; }
.social-link {
  display: flex; align-items: center; gap: 10px; padding: 13px 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--muted); font-size: 0.82rem; font-weight: 500; transition: all 0.15s;
}
.social-link:hover { border-color: var(--red); color: var(--white); transform: translateY(-1px); }
.social-icon { font-size: 0.95rem; width: 17px; text-align: center; flex-shrink: 0; }

/* Form */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-family: var(--body); font-size: 0.63rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px;
}
.form-control {
  width: 100%; padding: 10px 13px; background: var(--bg-card);
  border: 1px solid var(--border-2); color: var(--text);
  font-family: var(--body); font-size: 0.91rem; outline: none;
  transition: border-color 0.15s; -webkit-appearance: none;
}
.form-control:focus { border-color: var(--red); }
textarea.form-control { resize: vertical; min-height: 118px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 7px; padding: 10px 24px;
  font-family: var(--body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.15s; text-decoration: none;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-hi); color: var(--white); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--muted); border: 1px solid var(--border-2); }
.btn-outline:hover { border-color: var(--red); color: var(--white); }


/* ═══════════════════════════════════════════════════
   INVERTED — red background accent sections
   Use sparingly: one per page max.
═══════════════════════════════════════════════════ */
.section--red {
  background: var(--red);
}

/* Text inversions inside red sections */
.section--red .pull-quote   { color: #080808; }
.section--red .pull-quote em { color: rgba(8,8,8,0.38); font-style: normal; }
.section--red .pull-attr    { color: rgba(8,8,8,0.55); }
.section--red .pull-attr::before { background: #080808; opacity: 0.35; }
.section--red .pull-attr a  { color: rgba(8,8,8,0.55); }
.section--red .pull-attr a:hover { color: #080808; }
.section--red .pull-more    { color: rgba(8,8,8,0.5); border-bottom-color: rgba(8,8,8,0.2); }
.section--red .pull-more:hover { color: #080808; border-bottom-color: #080808; }

.section--red .cosign-name      { color: #0a0a0a; }
.section--red .cosign-name--sm  { color: rgba(10,10,10,0.48); }
.section--red .cosign-sep       { color: rgba(10,10,10,0.22); }
.section--red .cosign-sep--sm   { color: rgba(10,10,10,0.22); }
.section--red .section-divider-label {
  color: rgba(10,10,10,0.45);
  border-top-color: rgba(10,10,10,0.15);
}
.section--red .release-link  { color: rgba(10,10,10,0.5); border-bottom-color: rgba(10,10,10,0.18); }
.section--red .release-link:hover { color: #0a0a0a; border-bottom-color: #0a0a0a; }


/* ═══════════════════════════════════════════════════
   SECTION DIVIDER LABEL
   Replaces the eyebrow + gold-rule + h2 triple pattern
   on inner pages
═══════════════════════════════════════════════════ */
.section-divider-label {
  display: block;
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 64px;
  padding-bottom: 36px;
  border-top: 1px solid var(--border);
}


/* ═══════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════ */
.about-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.about-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-strip-item {
  padding: 22px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-strip-item:last-child { border-right: none; }

.about-strip-label {
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

.about-strip-val {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.5;
}

/* Co-sign large-type names */
.cosign-names {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 20px;
  margin-top: 12px;
}
.cosign-names + .cosign-names { margin-top: 16px; }

.cosign-name {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.cosign-name--sm {
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  color: var(--muted);
}

.cosign-sep {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.cosign-sep--sm {
  font-family: var(--display);
  font-size: clamp(0.9rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}


/* ═══════════════════════════════════════════════════
   PRESS PAGE
═══════════════════════════════════════════════════ */
.press-article {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.press-article:first-of-type { border-top: 1px solid var(--border); }

.press-pull {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  text-transform: uppercase;
  max-width: 860px;
  margin-bottom: 28px;
}
.press-pull em { color: var(--red); font-style: normal; }

.press-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.press-meta-row::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}
.press-meta-row a { color: var(--muted); }
.press-meta-row a:hover { color: var(--white); }

.press-excerpt {
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.78;
  max-width: 64ch;
  font-style: italic;
  margin-bottom: 20px;
}


/* ═══════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* stagger children */
.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }
.fade-in:nth-child(5) { transition-delay: 0.32s; }


/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */

/* Desktop: top nav visible, hamburger hidden */
@media (min-width: 821px) {
  .menu-btn { display: none; }

  /* Inner page headers fill the first screen on desktop */
  .page-header {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 52px;
    padding-bottom: 72px;
  }

  /* Larger page title scale on desktop */
  .page-header-title { font-size: clamp(4rem, 11vw, 11rem); line-height: 0.86; }
}

/* Mobile: nav links hidden, hamburger visible */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .hero-hdr { display: none; }
  :root { --gut: 22px; }

  .bio-grid        { grid-template-columns: 1fr; gap: 28px; }
  .bio-numbers     { flex-direction: row; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  .listen-grid { grid-template-columns: 1fr 1fr; }
  .listen-link:nth-child(2)   { border-right: none; }
  .listen-link:nth-child(n+3) { border-top: 1px solid var(--border); }

  .release-row { grid-template-columns: 100px 1fr; gap: 16px; }
  .release-art, .release-art-tbd { width: 100px; height: 100px; }

  .footer-inner { flex-direction: column; gap: 18px; text-align: center; }
  .footer-nav   { justify-content: center; }
  .section      { padding: 60px 0; }

  .about-strip-inner { grid-template-columns: 1fr 1fr; }
  .about-strip-item:nth-child(2) { border-right: none; }
  .about-strip-item:nth-child(n+3) { border-top: 1px solid var(--border); }

  .menu-link { font-size: clamp(2.4rem, 10vw, 5rem); }

  /* Contact page two-column grid collapses on mobile */
  .contact-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
}

@media (max-width: 480px) {
  :root { --gut: 16px; }
  .hero-logo-img { width: 88vw; }
  .pull-quote    { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .listen-grid   { grid-template-columns: 1fr; }
  .listen-link   { border-right: none; border-bottom: 1px solid var(--border); min-height: auto; }
  .listen-link:last-child { border-bottom: none; }
  .release-row   { grid-template-columns: 1fr; }
  .release-art, .release-art-tbd { width: 100%; height: auto; aspect-ratio: 1/1; }
  .footer-nav    { gap: 14px; }
  .about-strip-inner { grid-template-columns: 1fr; }
  .about-strip-item { border-right: none; border-bottom: 1px solid var(--border); }
  .about-strip-item:last-child { border-bottom: none; }
  .cosign-name   { font-size: clamp(2rem, 9vw, 3.5rem); }
  .press-pull    { font-size: clamp(1.5rem, 7vw, 2.8rem); }
  .page-header-title { font-size: clamp(2.5rem, 15vw, 8rem); }
}
