/* OK Zombie — Main Stylesheet */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --black:       #060404;
  --near-black:  #0e0808;
  --dark-red:    #5a1010;
  --crimson:     #8b1a1a;
  --crimson-hi:  #b02020;
  --teal-dark:   #1a3a34;
  --teal:        #2a5a50;
  --brown:       #2e1a0a;
  --brown-mid:   #4a2a10;
  --gold:        #b8924a;
  --gold-pale:   #d4b06a;
  --gold-bright: #e8c878;
  --bone:        #e8dfc8;
  --bone-dim:    #b8aa90;
  --bone-faint:  #706858;

  --stripe-teal:  rgba(42, 90, 80, 0.9);
  --stripe-red:   rgba(139, 26, 26, 0.9);
  --stripe-brown: rgba(46, 26, 10, 0.85);

  --f-display: 'Bebas Neue', Impact, sans-serif;
  --f-serif:   'Playfair Display', Georgia, serif;
  --f-mono:    'DM Mono', monospace;

  --ease: cubic-bezier(0.25, 0, 0.1, 1);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--f-mono);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: crosshair;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

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

/* ── STRIPE RULE (reusable divider) ──────────────────────── */
.stripe-rule {
  width: 100%;
  height: 12px;
  background: repeating-linear-gradient(
    -45deg,
    var(--stripe-teal)  0px,  var(--stripe-teal)  28px,
    var(--gold)         28px, var(--gold)          30px,
    var(--stripe-brown) 30px, var(--stripe-brown)  58px,
    var(--gold)         58px, var(--gold)          60px,
    var(--stripe-red)   60px, var(--stripe-red)    88px,
    var(--gold)         88px, var(--gold)          90px
  );
  opacity: 0.85;
}

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 52px;
  background: rgba(6, 4, 4, 0.95);
  border-bottom: 1px solid rgba(184, 146, 74, 0.2);
  backdrop-filter: blur(6px);
  transition: background 0.3s, border-bottom-color 0.3s;
}

nav.scrolled {
  background: rgba(6, 4, 4, 0.98);
  border-bottom-color: rgba(184, 146, 74, 0.35);
}

.nav-logo-text {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--bone);
}
.nav-logo-text span { color: var(--crimson-hi); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}
.nav-links li a {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-faint);
  padding: 8px 18px;
  transition: color 0.2s;
  border-left: 1px solid rgba(184, 146, 74, 0.1);
  display: block;
}
.nav-links li:first-child a { border-left: none; }
.nav-links li a:hover,
.nav-links li a.active { color: var(--gold-pale); }

.nav-back {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-faint);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, opacity 0.2s;
  opacity: 0.5;
}
.nav-back:hover { color: var(--gold-pale); opacity: 1; }
.nav-back::before { content: '←'; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 52px;
}

/* Background image injected via PHP inline style */
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}

.hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, transparent 30%, rgba(6, 4, 4, 0.85) 80%),
    linear-gradient(to bottom, rgba(6, 4, 4, 0.4) 0%, transparent 20%, transparent 70%, rgba(6, 4, 4, 0.9) 100%);
  z-index: 1;
}

.hero-stripes {
  position: absolute; inset: -50%;
  width: 200%; height: 200%;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px,    transparent 60px,
    rgba(42, 90, 80, 0.06) 60px,  rgba(42, 90, 80, 0.06) 120px,
    transparent 120px,  transparent 130px,
    rgba(139, 26, 26, 0.06) 130px, rgba(139, 26, 26, 0.06) 190px,
    transparent 190px,  transparent 200px,
    rgba(46, 26, 10, 0.05) 200px, rgba(46, 26, 10, 0.05) 260px
  );
  z-index: 1;
  animation: driftStripes 60s linear infinite;
}

@keyframes driftStripes {
  from { transform: translateX(0) translateY(0); }
  to   { transform: translateX(260px) translateY(260px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
}

.hero-logo {
  width: min(700px, 90vw);
  margin-bottom: 40px;
  filter: drop-shadow(0 0 60px rgba(139, 26, 26, 0.4));
  animation: logoReveal 1.2s var(--ease) both;
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(20px);
    filter: drop-shadow(0 0 0px rgba(139, 26, 26, 0));
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 60px rgba(139, 26, 26, 0.4));
  }
}

.hero-tagline {
  font-family: var(--f-serif);
  font-size: clamp(16px, 2vw, 20px);
  font-style: italic;
  font-weight: 400;
  color: var(--bone-dim);
  letter-spacing: 0.04em;
  margin-bottom: 48px;
  animation: fadeUp 1s ease 0.5s both;
  max-width: 520px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s ease 0.7s both;
}

.btn-primary {
  background: var(--crimson);
  color: var(--bone);
  font-family: var(--f-display);
  font-size: 16px;
  letter-spacing: 0.12em;
  padding: 14px 32px;
  border: 1px solid var(--crimson-hi);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--crimson-hi); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--bone-dim);
  font-family: var(--f-display);
  font-size: 16px;
  letter-spacing: 0.12em;
  padding: 13px 32px;
  border: 1px solid rgba(184, 146, 74, 0.35);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-pale); }

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s ease 1.2s both;
}
.hero-scroll span {
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--crimson-hi));
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.8; } }

/* ── SECTION BASE ────────────────────────────────────────── */
section { padding: 100px 0; position: relative; }

.container { max-width: 1060px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }

.section-eyebrow {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); opacity: 0.6; }

.section-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: 0.06em;
  line-height: 0.95;
  color: var(--bone);
  margin-bottom: 40px;
}

.section-title-serif {
  font-family: var(--f-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1;
  color: var(--bone);
  margin-bottom: 40px;
}
.section-title-serif em { font-style: italic; color: var(--crimson-hi); }

/* ── ABOUT ───────────────────────────────────────────────── */
.about { background: var(--near-black); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.about-visual { position: relative; }

.about-frame {
  border: 1px solid rgba(184, 146, 74, 0.3);
  padding: 32px;
  background: var(--black);
  position: relative;
}
.about-frame::before,
.about-frame::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.5;
}
.about-frame::before { top: 8px; left: 8px; border-width: 1px 0 0 1px; }
.about-frame::after  { bottom: 8px; right: 8px; border-width: 0 1px 1px 0; }

.about-frame-inner {
  background: linear-gradient(160deg, var(--dark-red) 0%, var(--black) 100%);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-frame-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px, transparent 14px,
    rgba(139, 26, 26, 0.08) 14px, rgba(139, 26, 26, 0.08) 28px
  );
}

.about-frame-logo {
  font-family: var(--f-display);
  font-size: 72px;
  letter-spacing: 0.06em;
  color: rgba(232, 223, 200, 0.06);
  user-select: none;
  position: relative;
  z-index: 1;
}

.about-frame-badge {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
  white-space: nowrap;
}

.about-year-strip { display: flex; gap: 0; margin-top: 2px; }
.about-year-cell {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  border: 1px solid rgba(184, 146, 74, 0.15);
  border-left: none;
}
.about-year-cell:first-child { border-left: 1px solid rgba(184, 146, 74, 0.15); }
.about-year-cell span:first-child {
  display: block;
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--crimson-hi);
}
.about-year-cell span:last-child {
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-faint);
}

.about-body p {
  font-family: var(--f-serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--bone-dim);
  line-height: 1.8;
  padding: 14px 0;
  border-bottom: 1px solid rgba(184, 146, 74, 0.08);
}
.about-body p:last-child { border-bottom: none; }

/* ── MUSIC / RELEASES ────────────────────────────────────── */
.music { background: var(--black); }

.music-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 48px;
  gap: 32px;
  border-bottom: 1px solid rgba(184, 146, 74, 0.15);
  padding-bottom: 24px;
}

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

.release-card {
  background: var(--near-black);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s var(--ease);
  border: 1px solid rgba(184, 146, 74, 0.08);
}
.release-card:hover { transform: translateY(-4px); border-color: rgba(184, 146, 74, 0.25); }

.release-art {
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--dark-red) 0%, var(--black) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.release-art::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px,    transparent 8px,
    rgba(42, 90, 80, 0.12)  8px,  rgba(42, 90, 80, 0.12)  12px,
    transparent 12px,   transparent 20px,
    rgba(139, 26, 26, 0.1) 20px, rgba(139, 26, 26, 0.1) 24px
  );
  z-index: 1;
}
.release-art::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6, 4, 4, 0.9) 0%, transparent 60%);
  z-index: 2;
}

.release-art-text {
  font-family: var(--f-display);
  font-size: 48px;
  letter-spacing: 0.1em;
  color: rgba(232, 223, 200, 0.07);
  position: relative; z-index: 1;
  user-select: none;
}

.release-overlay {
  position: absolute; inset: 0;
  background: rgba(139, 26, 26, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 3;
}
.release-card:hover .release-overlay { opacity: 1; }
.release-overlay span {
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--bone);
}

.release-info { padding: 16px 18px 20px; }
.release-year {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 5px;
}
.release-title {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--bone);
  margin-bottom: 4px;
  line-height: 1.1;
}
.release-type {
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-bottom: 14px;
}
.release-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.release-pill {
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border: 1px solid rgba(184, 146, 74, 0.2);
  padding: 4px 10px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.release-pill:hover { border-color: var(--gold); color: var(--gold-pale); }

/* ── MANIFESTO ───────────────────────────────────────────── */
.manifesto {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
}

/* Background image injected via PHP inline style */
.manifesto-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.22;
}

.manifesto-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(6, 4, 4, 0.92) 0%,
    rgba(6, 4, 4, 0.6)  50%,
    rgba(6, 4, 4, 0.92) 100%
  );
}

.manifesto-inner {
  position: relative;
  z-index: 2;
  padding: 80px clamp(20px, 10vw, 140px);
  text-align: center;
  width: 100%;
}

.manifesto-quote {
  font-family: var(--f-serif);
  font-size: clamp(22px, 3.5vw, 40px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: var(--bone);
  max-width: 800px;
  margin: 0 auto 24px;
  position: relative;
}
.manifesto-quote::before {
  content: '\201C';
  font-size: clamp(60px, 10vw, 120px);
  line-height: 0.8;
  color: var(--crimson);
  opacity: 0.3;
  position: absolute;
  top: 0; left: -20px;
  font-style: normal;
}

.manifesto-source {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
}

/* ── LISTEN ──────────────────────────────────────────────── */
.listen { background: var(--near-black); }

.listen-embed {
  margin-bottom: 32px;
}
.listen-embed-label {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 12px;
}
.listen-embed iframe {
  width: 100%;
  display: block;
  border: none;
}

.listen-embed-placeholder {
  background: var(--black);
  border: 1px solid rgba(184, 146, 74, 0.15);
  padding: 48px;
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.listen-embed-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px, transparent 20px,
    rgba(139, 26, 26, 0.04) 20px, rgba(139, 26, 26, 0.04) 40px
  );
}
.listen-embed-placeholder p {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-faint);
  position: relative; z-index: 1;
}
.embed-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
  position: relative; z-index: 1;
  opacity: 0.4;
}

.listen-platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.platform-card {
  background: var(--black);
  border: 1px solid rgba(184, 146, 74, 0.1);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.platform-card:hover { background: var(--dark-red); border-color: rgba(184, 146, 74, 0.3); }
.platform-card span:first-child { font-size: 28px; }
.platform-card span:last-child {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-faint);
}

/* ── MERCH ───────────────────────────────────────────────── */
.merch { background: var(--black); padding: 80px 0; }

.merch-banner {
  border: 1px solid rgba(184, 146, 74, 0.25);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(90, 16, 16, 0.2) 0%, transparent 60%);
}
.merch-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    var(--stripe-teal)  0px,  var(--stripe-teal)  20px,
    var(--gold)         20px, var(--gold)          22px,
    var(--stripe-red)   22px, var(--stripe-red)    42px,
    var(--gold)         42px, var(--gold)          44px,
    var(--stripe-brown) 44px, var(--stripe-brown)  64px,
    var(--gold)         64px, var(--gold)          66px
  );
}
.merch-banner::after {
  content: '✦';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 14px;
  color: var(--gold);
  opacity: 0.25;
}

.merch-text h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.08em;
  line-height: 0.95;
  color: var(--bone);
  margin-bottom: 14px;
}
.merch-text p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--bone-dim);
  opacity: 0.75;
  line-height: 1.6;
  max-width: 440px;
}

/* ── CONNECT ─────────────────────────────────────────────── */
.connect { background: var(--near-black); padding: 80px 0; }

.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.connect-card {
  background: var(--black);
  border: 1px solid rgba(184, 146, 74, 0.1);
  padding: 36px 32px;
  border-top: 2px solid transparent;
  transition: border-top-color 0.2s;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.connect-card:hover { border-top-color: var(--crimson-hi); }
.connect-card-icon { font-size: 24px; margin-bottom: 14px; opacity: 0.7; }
.connect-card h3 {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--bone);
  margin-bottom: 8px;
}
.connect-card p {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--bone-faint);
  line-height: 1.6;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(184, 146, 74, 0.15);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand h3 {
  font-family: var(--f-display);
  font-size: 32px;
  letter-spacing: 0.08em;
  color: var(--bone);
  margin-bottom: 8px;
  line-height: 1;
}
.footer-brand h3 span { color: var(--crimson-hi); }
.footer-brand p {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-faint);
  opacity: 0.6;
  line-height: 1.6;
  max-width: 220px;
}

.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.55;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--bone-faint);
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}
.footer-col ul a:hover { opacity: 1; color: var(--gold-pale); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(184, 146, 74, 0.1);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-faint);
  opacity: 0.3;
}

.footer-nick-link {
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-faint);
  opacity: 0.35;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-nick-link:hover { opacity: 0.7; }
.footer-nick-link::before { content: '↗'; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 860px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .releases-grid { grid-template-columns: 1fr 1fr; }
  .listen-platforms { grid-template-columns: repeat(2, 1fr); }
  .merch-banner { grid-template-columns: 1fr; padding: 36px 28px; }
  .connect-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 520px) {
  .releases-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
}
