/* =========================================
   SITE NAV
   ========================================= */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 0 28px;
  height: 56px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s ease;
}

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
}

.nav-logo:hover img {
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item--has-dropdown {
  position: relative;
}

.nav-link {
  display: inline-block;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-text);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link--active {
  color: var(--white);
}

/* dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 160px;
  background: #111;
  border: 1px solid #222;
  list-style: none;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-text);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-dropdown li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

/* hamburger toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* offset page content so it doesn't hide under fixed nav */
.site-main {
  padding-top: 56px;
  overflow-x: clip;
}

/* subtle grey divider between every section */
.site-main > section {
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

@media (max-width: 600px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    flex-wrap: wrap;
    height: auto;
    padding: 0;
    align-items: stretch;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 56px;
  }

  .nav-toggle {
    margin-left: auto;
    height: 56px;
    padding: 0 16px;
  }

  .nav-links {
    /* full-width panel that collapses to 0 height when closed */
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background: #000;
    border-top: 1px solid #1a1a1a;
    transition: max-height 0.35s ease, padding 0.35s ease;
    /* remove any positioning that causes leaking */
    position: static;
    transform: none;
  }

  .nav-links.is-open {
    max-height: 400px;
    padding: 8px 0 16px;
  }

  .nav-link {
    padding: 12px 24px;
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    border: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 0 0 16px;
  }

  .nav-dropdown li a {
    padding: 8px 24px;
  }

  /* sub-pages: nav stays within flow so content below it naturally */
  .page--inner .site-main {
    padding-top: 0;
  }
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================================
   CUSTOM FONTS
   ========================================= */
@font-face {
  font-family: 'BombFont';
  src: url('/assets/fonts/bombfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Apply Bomb Font to any element via class */
.font-bomb,
h1.font-bomb,
h2.font-bomb,
h3.font-bomb {
  font-family: 'BombFont', 'Bebas Neue', Impact, sans-serif !important;
}

:root {
  --black: #000;
  --white: #fff;
  --grey-dark: #111;
  --grey-mid: #222;
  --grey-text: #999;
  --accent: #fff;
  --font-heading: 'Bebas Neue', Impact, sans-serif;
  --font-bomb: 'BombFont', 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  text-align: center;
}

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

/* =========================================
   INTRO SPLASH OVERLAY
   ========================================= */
@keyframes introLogoIn {
  0%   { opacity: 0; transform: scale(0.92); }
  30%  { opacity: 1; transform: scale(1); }
  75%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.04); }
}

@keyframes overlayOut {
  0%,  70% { opacity: 1; visibility: visible; }
  99%       { opacity: 0; visibility: visible; }
  100%      { opacity: 0; visibility: hidden; }
}

.intro-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: overlayOut 3.6s ease forwards;
}

.intro-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-logo {
  width: min(340px, 70vw);
  animation: introLogoIn 3.6s ease forwards;
  filter: drop-shadow(0 0 40px rgba(255,255,255,0.08));
}

/* =========================================
   MAIN CONTENT (fades in after intro)
   ========================================= */
@keyframes mainFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Homepage: delayed fade-in after intro splash */
.page--home .site-main {
  animation: mainFadeIn 1s ease forwards;
  animation-delay: 3s;
  opacity: 0;
}

/* =========================================
   SHARED SECTION LAYOUT
   ========================================= */
.section-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-inner--narrow {
  max-width: 640px;
}

section {
  padding: 80px 20px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  line-height: 1;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 120px 20px 40px;
  background: var(--black);
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--black));
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-inner .cta-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-logo {
  width: min(280px, 55vw);
  margin-bottom: 8px;
  filter: drop-shadow(0 0 60px rgba(255,255,255,0.06));
}

/* ---- VIDEO TEXT MASK ---- */
.hero-text-wrap {
  position: relative;
  display: inline-block;
  line-height: 1;
  overflow: hidden;
}

.hero-text-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  pointer-events: none;
  border-radius: 0;
  opacity: 1;
  z-index: 2;
}

/* h1 is white so multiply blend lets video colour show only through letter pixels */
h1.glitch {
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 15vw, 10.4rem);
  letter-spacing: 0.06em;
  line-height: 1;
  position: relative;
  color: var(--white);
  z-index: 1;
}

/* suppress all glitch pseudo-element lines while video text effect is active */
h1.glitch::before,
h1.glitch::after {
  display: none;
}

/* GLITCH LINES — saved for later, re-enable by uncommenting
h1.glitch::before,
h1.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

h1.glitch::before {
  color: #0ff;
  animation: glitch-1 3.5s infinite linear;
  clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%);
  opacity: 0.7;
}

h1.glitch::after {
  color: #f0f;
  animation: glitch-2 3.5s infinite linear;
  clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
  opacity: 0.7;
}
*/

/* Glitch variants → assets/css/glitch-variants.css */

@keyframes glitch-1 {
  0%   { transform: translate(0); }
  2%   { transform: translate(-3px, 1px); }
  4%   { transform: translate(0); }
  48%  { transform: translate(0); }
  50%  { transform: translate(2px, -1px); }
  52%  { transform: translate(0); }
  94%  { transform: translate(0); }
  96%  { transform: translate(-2px, 2px); }
  98%  { transform: translate(0); }
  100% { transform: translate(0); }
}

@keyframes glitch-2 {
  0%   { transform: translate(0); }
  3%   { transform: translate(3px, -1px); }
  5%   { transform: translate(0); }
  49%  { transform: translate(0); }
  51%  { transform: translate(-3px, 1px); }
  53%  { transform: translate(0); }
  95%  { transform: translate(0); }
  97%  { transform: translate(2px, -2px); }
  99%  { transform: translate(0); }
  100% { transform: translate(0); }
}

/* ---- TAGLINE & CTA ---- */
.tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-top: 4px;
}

.cta {
  display: inline-block;
  margin-top: 12px;
  padding: 13px 36px;
  border: 1px solid var(--white);
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

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

/* =========================================
   SECTION BACKGROUND VIDEO
   ========================================= */
.section-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}

/* sections that host a background video need stacking context */
.featured,
.bio,
.affiliates {
  position: relative;
  overflow: hidden;
}

/* keep content above the video layer */
.featured .section-inner,
.bio .section-inner,
.affiliates .section-inner {
  position: relative;
  z-index: 1;
}

/* =========================================
   FEATURED RELEASE
   ========================================= */
.featured {
  background: var(--grey-dark);
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 24px;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.spotify-wrap {
  margin-bottom: 28px;
}

.featured-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-block;
  padding: 11px 28px;
  border: 1px solid var(--white);
  background: var(--black);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

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

/* =========================================
   BIO
   ========================================= */
.bio {
  background: var(--black);
}

.bio-text {
  color: #bbb;
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 18px;
  text-align: left;
}

.bio-text strong {
  color: var(--white);
  font-weight: 500;
}

.bio-text:last-child {
  margin-bottom: 0;
}

/* =========================================
   CONNECT / LINKS
   ========================================= */
.connect {
  background: var(--grey-dark);
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.link-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.link-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border: 1px solid var(--white);
  background: var(--black);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.link-pill:hover {
  background: var(--white);
  color: var(--black);
}

.link-icon {
  font-style: normal;
  font-size: 0.9em;
  opacity: 0.6;
}

/* =========================================
   AFFILIATES
   ========================================= */
.affiliates {
  background: var(--black);
}

.affiliates .section-label {
  color: var(--white);
}

.affiliates-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.affiliate-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 28px 36px;
  border: 1px solid #222;
  background: #000;
  min-width: 200px;
  transition: border-color 0.2s ease;
}

.affiliate-card:hover {
  border-color: #555;
}

.affiliate-card--logo img {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.affiliate-card--logo:hover img {
  opacity: 1;
}

.affiliate-card--photo img {
  max-width: 140px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.affiliate-card--photo:hover img {
  opacity: 1;
}

/* CREW */
.crew {
  background: var(--grey-dark);
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.affiliate-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.affiliate-sub {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-text);
}

/* =========================================
   FEATURE CARD (generic reusable dark card)
   Usage: <div class="feature-card"> … </div>
   Modifiers:
     .feature-card--sm   — compact padding
     .feature-card--row  — horizontal layout
   ========================================= */
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 28px 26px;
  background: #0d0d0d;
  border: 1px solid #1e1e1e;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.feature-card:hover {
  border-color: #444;
}

/* grain overlay — same as cutout card */
.feature-card::before {
  content: '';
  position: absolute;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.35;
  z-index: 0;
}

/* all direct children sit above grain */
.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card__label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-text);
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--white);
}

.feature-card__body {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.75;
  text-align: center;
}

.feature-card__cta {
  display: inline-block;
  margin-top: 6px;
  padding: 9px 22px;
  border: 1px solid #444;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.feature-card__cta:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

/* modifier: compact */
.feature-card--sm {
  padding: 20px 20px 18px;
  gap: 8px;
}

/* modifier: horizontal row layout */
.feature-card--row {
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
}

/* =========================================
   CUTOUT / PROFILE IMAGE CARD
   ========================================= */
.affiliate-card--cutout {
  padding: 32px 36px 26px;
  background: #0d0d0d;
  min-width: 180px;
  position: relative;
  overflow: hidden;
}

/* subtle grain texture overlay */
.affiliate-card--cutout::before {
  content: '';
  position: absolute;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.35;
  z-index: 0;
}

/* circle avatar cutout */
.card-avatar {
  position: relative;
  z-index: 1;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  /* double-ring effect */
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 0 0 5px rgba(255,255,255,0.03),
    0 8px 32px rgba(0,0,0,0.6);
  transition: box-shadow 0.3s ease;
}

.affiliate-card--cutout:hover .card-avatar {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.28),
    0 0 0 5px rgba(255,255,255,0.06),
    0 8px 40px rgba(0,0,0,0.7);
}

.card-avatar--sm {
  width: 68px;
  height: 68px;
}

/* logo / SVG variant — transparent bg, no circle clip, no image filters */
.card-avatar--svg {
  width: 90px;
  height: 78px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.affiliate-card--cutout:hover .card-avatar--svg {
  box-shadow: none;
}

.card-avatar--svg svg {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.75;
  transition: opacity 0.25s ease, transform 0.35s ease;
}

.affiliate-card--cutout:hover .card-avatar--svg svg {
  opacity: 1;
  transform: scale(1.06);
}

.card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  opacity: 0.8;
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.35s ease;
}

.affiliate-card--cutout:hover .card-avatar img {
  opacity: 1;
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.04);
}

/* Joe Hunter PNG logo — contain so it stays crisp */
.affiliate-card--cutout .card-avatar img[src*="logo_joe_hunter"] {
  width: 72%;
  height: 72%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 44%;
  transform: translate(-50%, -50%);
}

/* text sits above the grain overlay */
.affiliate-card--cutout .affiliate-name,
.affiliate-card--cutout .affiliate-sub {
  position: relative;
  z-index: 1;
}

/* =========================================
   BLOG — LISTING PAGE
   ========================================= */
.blog-hero {
  padding: 90px 20px 50px;
  background: var(--black);
  border-bottom: 1px solid #1a1a1a;
}

.blog-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 8vw, 5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.blog-hero-sub {
  color: var(--grey-text);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.blog-listing {
  padding: 60px 20px 80px;
  background: var(--black);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  text-align: left;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 28px;
  border: 1px solid #1e1e1e;
  background: #0a0a0a;
  transition: border-color 0.2s ease;
  text-decoration: none;
}

.blog-card:hover {
  border-color: #444;
}

.blog-card-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-text);
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--white);
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.75;
  flex: 1;
}

.blog-card-read {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-top: 4px;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card-read {
  color: var(--white);
}

/* =========================================
   INNER PAGES (blog articles, sub-pages)
   ========================================= */
.inner-hero {
  padding: 90px 20px 40px;
  background: var(--black);
  border-bottom: 1px solid #1a1a1a;
  text-align: center;
}

.inner-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.inner-hero-meta {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-text);
}

/* center all h2s in inner articles */
.inner-article h2 {
  text-align: center;
}

.inner-article blockquote {
  border-left: 3px solid var(--white);
  margin: 40px auto;
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  max-width: 600px;
}

.inner-hero .section-label a {
  color: var(--grey-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.inner-hero .section-label a:hover {
  color: var(--white);
}

.inner-article {
  padding: 60px 20px 80px;
  background: var(--black);
  text-align: left;
}

.inner-article p {
  font-size: 1rem;
  color: #bbb;
  line-height: 1.9;
  margin-bottom: 24px;
  max-width: 640px;
}

.inner-article h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.04em;
  margin: 40px 0 16px;
  color: var(--white);
}

.inner-article strong {
  color: var(--white);
  font-weight: 500;
}

.article-back {
  margin-top: 48px;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  padding: 50px 20px 40px;
  background: var(--black);
  border-top: 1px solid #1a1a1a;
}

.footer-logo {
  width: 60px;
  opacity: 0.6;
  margin-bottom: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer-copy {
  font-size: 0.78rem;
  color: #444;
  margin-bottom: 10px;
}

.footer-links-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--white);
}

.footer-links-row a {
  color: var(--white);
  transition: color 0.2s ease;
}

.footer-links-row a:hover {
  color: var(--white);
}

.footer-dev {
  margin-top: 16px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}

.footer-dev-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-dev-link:hover {
  color: var(--white);
}

.footer-dev-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #555;
  transition: color 0.2s ease;
}

.footer-dev-link:hover {
  color: var(--white);
}

.footer-dev-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.footer-dev-link:hover .footer-dev-logo {
  opacity: 1;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 480px) {
  .bio-text {
    text-align: center;
  }

  .affiliate-card {
    min-width: 160px;
    padding: 20px 24px;
  }

  .featured-links {
    flex-direction: column;
    align-items: center;
  }
}

/* =========================================
   VIDEO BACKGROUND SECTIONS — OVERRIDES
   Make section backgrounds transparent so
   the injected section-video-bg shows through
   ========================================= */
[data-video-bg].featured,
[data-video-bg].connect,
[data-video-bg].crew {
  background: transparent;
}

/* sections that host a background video need stacking context */
[data-video-bg].connect,
[data-video-bg].crew {
  position: relative;
  overflow: hidden;
}

[data-video-bg].connect .section-inner,
[data-video-bg].crew .section-inner {
  position: relative;
  z-index: 1;
}

/* video opacity — full color for video bg sections */
[data-video-bg] .section-video-bg,
[data-video-bg-flip] .section-video-bg {
  opacity: 1;
}

/* flip the video vertically — add data-video-bg-flip to the section */
[data-video-bg-flip] .section-video-bg {
  transform: scaleY(-1);
}