:root {
  color-scheme: dark;
  --bg: #0b0b0a;
  --bg-2: #131311;
  --panel: #17150f;
  --panel-solid: #14130f;
  --panel-raised: #1c1a14;
  --steel-1: #2a2822;
  --steel-2: #3a382f;
  --edge: rgba(255, 255, 255, 0.09);
  --edge-strong: #e3b81e;
  --text: #f4f0e6;
  --muted: #b1a892;
  --dim: #746c5c;
  --accent: #e3b81e;
  --accent-hi: #ffd12d;
  --accent-soft: rgba(227, 184, 30, 0.12);
  --accent-ink: #0a0800;
  --danger: #1a1712;
  --shadow: 0 2px 0 rgba(0,0,0,0.6), 0 18px 40px rgba(0,0,0,0.55);
  --radius: 2px;
  --radius-sm: 2px;
  --max: 1200px;
  --header-height: 68px;
  --hazard: repeating-linear-gradient(
    45deg,
    #e3b81e 0 14px,
    #0a0800 14px 28px
  );
  --stripe-dim: repeating-linear-gradient(
    45deg,
    rgba(227,184,30,0.14) 0 8px,
    transparent 8px 16px
  );
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 12% 6%, rgba(227, 184, 30, 0.09), transparent 22rem),
    linear-gradient(180deg, #0b0b0a 0%, #101010 100%);
  color: var(--text);
  font-family: "Barlow Condensed", "Oswald", "Arial Narrow", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Concrete / brushed-metal noise + grid */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 3px);
  background-size: 80px 80px, 80px 80px, 3px 3px;
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, transparent 60%, rgba(0,0,0,0.55) 100%);
}

img,
iframe,
svg {
  display: block;
}

img,
iframe {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

p,
h1,
h2,
h3,
dl,
dd {
  margin-top: 0;
}

p {
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

h1,
h2,
h3 {
  margin-bottom: 0.75rem;
  font-family: "Oswald", "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  font-weight: 800;
  letter-spacing: 0.005em;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 8.5vw, 7.2rem);
  letter-spacing: -0.01em;
}

h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 5vw, 4.2rem);
}

h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
}

ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

li::marker {
  color: var(--accent);
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon,
.feature-icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  padding: 0.7rem 1rem;
  border-radius: 0;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  margin: 0;
  padding: 8px 18px;
  border: 0;
  border-bottom: 1px solid var(--edge);
  border-radius: 0;
  background: #0a0a09;
  box-shadow: 0 2px 0 #000, 0 8px 20px rgba(0,0,0,0.4);
  transition: transform 0.24s ease, background 0.18s ease, border-color 0.18s ease;
}

/* hazard tape strip under header */
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 6px;
  background: var(--hazard);
  background-size: 40px 6px;
  opacity: 0.85;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(227, 184, 30, 0.5);
  background: #0a0a09;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(227, 184, 30, 0.22));
}

.brand-copy {
  display: grid;
  line-height: 1.04;
  min-width: 0;
}

.brand-copy strong {
  font-family: "Oswald", "Barlow Condensed", Impact, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--dim);
  font-family: "JetBrains Mono", "Consolas", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 42px;
  padding: 0.66rem 0.95rem;
  border: 1px solid transparent;
  border-radius: 0;
  color: var(--muted);
  font-family: "Oswald", "Barlow Condensed", Impact, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(227, 184, 30, 0.08);
  border-color: rgba(227, 184, 30, 0.4);
  color: var(--text);
}

.site-nav .nav-cta {
  background: var(--accent);
  color: var(--accent-ink);
  border: 1px solid #000;
  box-shadow: 3px 3px 0 #000;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--accent-hi);
  color: var(--accent-ink);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 #000;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--edge);
  border-radius: 0;
  background: #050505;
  color: var(--text);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hamburger-container {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.ham {
  width: 100%;
  height: 100%;
  transition: transform 400ms;
  user-select: none;
}

.line {
  fill: none;
  stroke: currentColor;
  stroke-width: 5.5;
  stroke-linecap: round;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
}

.ham7 .top { stroke-dasharray: 40 82; }
.ham7 .middle { stroke-dasharray: 40 111; }
.ham7 .bottom { stroke-dasharray: 40 161; }

.nav-toggle.is-open .hamRotate { transform: rotate(45deg); }
.nav-toggle.is-open .ham7 .top { stroke-dasharray: 17 82; stroke-dashoffset: -62px; }
.nav-toggle.is-open .ham7 .middle { stroke-dashoffset: 23px; }
.nav-toggle.is-open .ham7 .bottom { stroke-dasharray: 40 161; stroke-dashoffset: -83px; }

/* ============ SOCIAL DOCK ============ */
.social-dock {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 90;
  display: grid;
  gap: 0;
  transform: translateY(-50%);
  border-left: 2px solid var(--accent);
}

.social-dock a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--edge);
  border-left: 0;
  border-radius: 0;
  background: #0a0a09;
  color: var(--muted);
  transition: color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.social-dock a:hover,
.social-dock a:focus-visible {
  background: var(--accent);
  color: var(--accent-ink);
  transform: translateX(-4px);
}

/* ============ INDUSTRIAL PANEL SHARED ============ */
.media-frame,
.player-card,
.video-carousel,
.feature-band,
.crew-preview,
.social-section,
.about-hero-card,
.belief-grid article,
.crew-card,
.intro-strip {
  position: relative;
  border: 1px solid var(--edge);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 60%),
    var(--panel);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

/* rivet corners */
.player-card::before,
.player-card::after,
.video-carousel::before,
.video-carousel::after,
.feature-band::before,
.feature-band::after,
.crew-preview::before,
.crew-preview::after,
.social-section::before,
.social-section::after,
.about-hero-card::before,
.about-hero-card::after,
.intro-strip::before,
.intro-strip::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #6b6558, #1a1813 70%);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.6);
  pointer-events: none;
}

.player-card::before, .video-carousel::before, .feature-band::before, .crew-preview::before, .social-section::before, .about-hero-card::before, .intro-strip::before {
  top: 8px; left: 8px;
}
.player-card::after, .video-carousel::after, .feature-band::after, .crew-preview::after, .social-section::after, .about-hero-card::after, .intro-strip::after {
  top: 8px; right: 8px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 18px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding-block: clamp(4rem, 9vw, 8rem) clamp(3rem, 8vw, 6rem);
}

/* replace clock face with gear / crosshair */
.hero-grid {
  position: absolute;
  inset: 5% auto auto -5%;
  width: min(620px, 74vw);
  aspect-ratio: 1;
  opacity: 0.28;
  pointer-events: none;
  background:
    conic-gradient(from 0deg, rgba(227,184,30,0.55) 0 2deg, transparent 2deg 30deg,
                              rgba(227,184,30,0.55) 30deg 32deg, transparent 32deg 60deg,
                              rgba(227,184,30,0.55) 60deg 62deg, transparent 62deg 90deg,
                              rgba(227,184,30,0.55) 90deg 92deg, transparent 92deg 120deg,
                              rgba(227,184,30,0.55) 120deg 122deg, transparent 122deg 150deg,
                              rgba(227,184,30,0.55) 150deg 152deg, transparent 152deg 180deg,
                              rgba(227,184,30,0.55) 180deg 182deg, transparent 182deg 210deg,
                              rgba(227,184,30,0.55) 210deg 212deg, transparent 212deg 240deg,
                              rgba(227,184,30,0.55) 240deg 242deg, transparent 242deg 270deg,
                              rgba(227,184,30,0.55) 270deg 272deg, transparent 272deg 300deg,
                              rgba(227,184,30,0.55) 300deg 302deg, transparent 302deg 330deg,
                              rgba(227,184,30,0.55) 330deg 332deg, transparent 332deg 360deg);
  mask-image: radial-gradient(circle, transparent 0 42%, #000 44% 62%, transparent 66%);
}

.hero-copy,
.hero-media,
.about-hero-copy,
.about-hero-card {
  position: relative;
}

/* mono eyebrow with bracket */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-family: "JetBrains Mono", "Consolas", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "//";
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0;
  background: none;
  width: auto;
  height: auto;
}

.hero-lead {
  max-width: 39rem;
  margin-bottom: 1.6rem;
  color: #d6cfc0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.02rem, 1.9vw, 1.2rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 1px solid #000;
  border-radius: 0;
  font-family: "Oswald", "Barlow Condensed", Impact, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.1;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-1px, -1px);
}

.button-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 4px 4px 0 #000;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-hi);
  box-shadow: 5px 5px 0 #000;
}

.button-ghost {
  border-color: var(--accent);
  background: transparent;
  color: var(--text);
  box-shadow: 4px 4px 0 rgba(227,184,30,0.35);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: var(--accent-soft);
  color: var(--accent);
  box-shadow: 5px 5px 0 rgba(227,184,30,0.5);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 620px;
  margin-bottom: 0;
  border: 1px solid var(--edge);
  background: #0a0a09;
}

.mini-stats div {
  padding: 0.9rem 0.9rem;
  border-right: 1px solid var(--edge);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
}

.mini-stats div:last-child { border-right: 0; }

.mini-stats dt {
  margin-bottom: 0.3rem;
  color: var(--dim);
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mini-stats dd {
  margin-bottom: 0;
  color: var(--accent);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

/* corner brackets on media frame */
.media-frame > .media-frame-tape,
.media-frame::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 8px;
  background: var(--hazard);
  background-size: 32px 8px;
  z-index: 2;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.7)),
    linear-gradient(135deg, rgba(227,184,30,0.1), transparent 40%);
  pointer-events: none;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.12);
}

.media-tag {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 3;
  padding: 0.42rem 0.7rem;
  border: 1px solid var(--accent);
  border-radius: 0;
  background: #0a0800;
  color: var(--accent);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-social-card {
  position: absolute;
  right: -1rem;
  bottom: 1rem;
  z-index: 3;
  display: grid;
  gap: 0.5rem;
  width: min(230px, 74%);
  padding: 0.85rem;
  border: 1px solid var(--accent);
  border-radius: 0;
  background: #0a0a09;
  box-shadow: 4px 4px 0 #000;
}

.hero-social-card span {
  color: var(--dim);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-social-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-social-card a:hover,
.hero-social-card a:focus-visible {
  color: var(--accent);
}

/* ============ INTRO STRIP ============ */
.intro-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  gap: 2rem;
  margin-block: 0 5rem;
  padding: clamp(1.3rem, 3vw, 1.8rem);
  border-left: 4px solid var(--accent);
}

.intro-strip h2,
.feature-heading h2,
.social-section h2,
.crew-copy h2 {
  margin-bottom: 0;
}

.intro-strip p:last-child {
  margin-bottom: 0;
}

/* ============ LATEST ============ */
.latest-section,
.crew-section {
  padding-block: clamp(2rem, 7vw, 5rem);
}

.section-heading {
  display: grid;
  gap: 0.3rem;
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p:last-child {
  max-width: 47rem;
  margin-bottom: 0;
}

.latest-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1rem;
  align-items: stretch;
}

.player-card {
  overflow: hidden;
}

.player-topline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--edge);
  background: #0a0a09;
  color: var(--muted);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.live-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(227, 184, 30, 0.2), 0 0 20px rgba(227,184,30,0.7);
  animation: live-pulse 1.6s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.youtube-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #050505;
}

.youtube-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.player-note {
  margin: 0;
  padding: 0.75rem 0.95rem 0.9rem;
  color: var(--dim);
  font-size: 0.84rem;
}

.video-carousel {
  position: relative;
  min-width: 0;
  padding: 1rem;
}

.carousel-controls {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 5;
  display: flex;
  gap: 0.4rem;
}

.round-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent);
  border-radius: 0;
  background: #0a0a09;
  color: var(--accent);
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.carousel-pause {
  width: auto;
  min-width: 4.5rem;
  padding-inline: 0.7rem;
  font-family: "Oswald", Impact, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.round-button:hover,
.round-button:focus-visible {
  background: var(--accent);
  color: var(--accent-ink);
  transform: translate(-1px, -1px);
}

.video-viewport {
  overflow: hidden;
  border-radius: 0;
  scroll-behavior: smooth;
}

.video-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0.8rem;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.video-track::-webkit-scrollbar {
  display: none;
}

.video-card {
  position: relative;
  min-height: 100%;
  padding: clamp(1.1rem, 3vw, 1.5rem);
  border: 1px solid var(--edge);
  border-left: 3px solid var(--accent);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(227,184,30,0.05), transparent 40%),
    #101010;
  scroll-snap-align: start;
}

.video-number {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--accent);
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(3.4rem, 10vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.8;
  opacity: 0.9;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.5);
}

.video-card p:not(.eyebrow) {
  min-height: 5rem;
  margin-bottom: 1.1rem;
}

.video-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.15s ease, color 0.15s ease;
}

.video-card a:hover,
.text-link:hover,
.video-card a:focus-visible,
.text-link:focus-visible {
  color: var(--accent-hi);
  transform: translateX(2px);
}

.carousel-dots {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.carousel-dots button {
  width: 2rem;
  height: 0.3rem;
  border-radius: 0;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: background 0.15s ease, width 0.15s ease;
}

.carousel-dots button[aria-current="true"] {
  width: 3.4rem;
  background: var(--accent);
}

/* ============ FEATURE BAND ============ */
.feature-band {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(1.25rem, 4vw, 3rem);
  margin-block: clamp(2.5rem, 8vw, 5.5rem);
  padding: clamp(1.3rem, 4vw, 2.2rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.feature-grid article {
  padding: 1.15rem;
  border: 1px solid var(--edge);
  border-top: 3px solid var(--accent);
  border-radius: 0;
  background: #0f0f0d;
}

.feature-icon {
  width: 1.9rem;
  height: 1.9rem;
  margin-bottom: 0.8rem;
  color: var(--accent);
}

.feature-grid h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.feature-grid p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ============ CREW PREVIEW ============ */
.crew-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  gap: clamp(1.2rem, 4vw, 2.5rem);
  align-items: center;
  margin-block: clamp(3rem, 8vw, 5.5rem);
  padding: clamp(1.2rem, 4vw, 2.2rem);
}

.crew-copy p:not(.eyebrow) {
  max-width: 39rem;
}

.crew-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.crew-mini-grid article {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid var(--edge);
  border-radius: 0;
  background: #0b0b0a;
}

.crew-mini-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.12);
}

.crew-mini-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.85));
}

.crew-mini-grid span {
  position: absolute;
  left: 0.75rem;
  bottom: 0.65rem;
  z-index: 1;
  color: var(--text);
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============ SOCIAL ============ */
.social-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(1rem, 4vw, 2.6rem);
  align-items: center;
  margin-block: clamp(2.5rem, 8vw, 5.5rem);
  padding: clamp(1.2rem, 4vw, 2.2rem);
}

.social-section p:last-child {
  max-width: 41rem;
  margin-bottom: 0;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.social-grid a {
  display: grid;
  place-items: center;
  gap: 0.55rem;
  min-height: 116px;
  padding: 1rem 0.65rem;
  border: 1px solid var(--edge);
  border-bottom: 3px solid var(--accent);
  border-radius: 0;
  background: #0f0f0d;
  color: var(--muted);
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.social-grid .icon {
  width: 1.7rem;
  height: 1.7rem;
}

.social-grid a:hover,
.social-grid a:focus-visible {
  background: var(--accent);
  color: var(--accent-ink);
  transform: translate(-1px, -1px);
}

/* ============ FOOTER ============ */
.site-footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 2.6rem 2.8rem;
  border-top: 1px solid var(--edge);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -6px;
  height: 6px;
  background: var(--hazard);
  background-size: 40px 6px;
  opacity: 0.85;
}

.site-footer p {
  max-width: 34rem;
  margin: 0.7rem 0 0;
  color: var(--dim);
}

.site-footer nav {
  display: flex;
  align-items: start;
  gap: 1.1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--accent);
}

/* ============ ABOUT ============ */
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(5rem, 10vw, 8rem) clamp(2rem, 6vw, 4rem);
}

.about-hero h1 {
  max-width: 14ch;
}

.about-hero-card {
  display: grid;
  place-items: center;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  text-align: center;
}

.about-hero-card img {
  width: min(180px, 56vw);
  height: auto;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 22px rgba(227, 184, 30, 0.28));
}

.about-hero-card p {
  max-width: 18rem;
  margin-bottom: 0;
  color: var(--text);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.belief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-block: 0 clamp(2.5rem, 7vw, 5rem);
}

.belief-grid article {
  min-height: 260px;
  padding: 1.3rem;
  border-top: 3px solid var(--accent);
}

.belief-grid span {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--accent);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.8;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.5);
}

.belief-grid h2 {
  max-width: 8ch;
  margin-bottom: 0.75rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.belief-grid p {
  margin-bottom: 0;
}

.crew-grid {
  display: grid;
  gap: 1rem;
}

.crew-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  overflow: hidden;
}

.crew-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.crew-card:nth-child(even) .crew-photo {
  order: 2;
}

.crew-photo {
  position: relative;
  min-height: 330px;
  background: #0b0b0a;
  border-right: 1px solid var(--edge);
}

.crew-card:nth-child(even) .crew-photo {
  border-right: 0;
  border-left: 1px solid var(--edge);
}

.crew-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.12);
}

.crew-body {
  display: grid;
  align-content: center;
  padding: clamp(1.4rem, 4vw, 2.2rem);
}

.crew-body h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  letter-spacing: -0.01em;
}

.crew-body p:not(.eyebrow) {
  max-width: 42rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1040px) {
  .social-dock {
    display: none;
  }

  .hero,
  .latest-layout,
  .feature-band,
  .crew-preview,
  .social-section,
  .intro-strip,
  .about-hero {
    grid-template-columns: 1fr;
  }

  .intro-strip,
  .feature-band,
  .crew-preview,
  .social-section {
    align-items: start;
  }

  .feature-grid,
  .belief-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-frame img {
    aspect-ratio: 16 / 10;
  }

  .crew-card,
  .crew-card:nth-child(even) {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .crew-card:nth-child(even) .crew-photo {
    order: initial;
    border-left: 0;
    border-right: 1px solid var(--edge);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 62px;
  }

  .section-shell {
    width: min(var(--max), calc(100% - 20px));
  }

  .site-header {
    padding: 6px 12px;
  }

  .site-header.is-hidden {
    transform: translateY(-100%);
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    display: none;
  }

  .nav-ready .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    display: grid;
    gap: 0;
    padding: 0;
    border: 1px solid var(--accent);
    border-radius: 0;
    background: #0a0a09;
    box-shadow: 4px 4px 0 #000;
  }

  .nav-ready .site-nav {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: visibility 0s linear 0.18s, opacity 0.18s ease, transform 0.18s ease;
  }

  .nav-ready .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav a {
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    border: 0;
    border-bottom: 1px solid var(--edge);
    border-radius: 0;
  }

  .site-nav a:last-child { border-bottom: 0; }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.75rem, 16vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .hero {
    min-height: auto;
    padding-block: 3rem 2.5rem;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .button {
    padding-inline: 0.85rem;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .mini-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--edge);
  }

  .mini-stats div:last-child { border-bottom: 0; }

  .media-frame img {
    aspect-ratio: 4 / 3;
  }

  .hero-social-card {
    position: static;
    width: auto;
    margin-top: 0.75rem;
  }

  .latest-section,
  .crew-section {
    padding-block: 2.4rem;
  }

  .video-number {
    margin-bottom: 1.4rem;
  }

  .feature-grid,
  .crew-mini-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .crew-mini-grid article {
    min-height: 260px;
  }

  .site-footer {
    display: grid;
    gap: 1.2rem;
  }

  .about-hero {
    padding-block: 3.4rem 2rem;
  }

  .crew-card,
  .crew-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .crew-photo,
  .crew-card:nth-child(even) .crew-photo {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--edge);
    min-height: 280px;
  }
}

@media (max-width: 440px) {
  .brand {
    gap: 0.5rem;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .carousel-controls {
    position: static;
    justify-content: flex-end;
    margin-bottom: 0.65rem;
  }

  .video-card p:not(.eyebrow) {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal,
  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
