/* =========================================================
   BTS NINJAS — design tokens
   Palette matches the logo mark: pure black, white and a
   neutral grayscale ramp — no colour, on purpose.
   ========================================================= */
:root {
  --ink: #0a0a0a;
  --ink-raised: #161616;
  --ink-raised-2: #1e1e1e;
  --bone: #f0f0f0;
  --bone-dim: #999999;
  --ember: #ffffff;
  --signal: #c9c9c9;
  --line: #2a2a2a;

  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "IBM Plex Sans", -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --container: 1220px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

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

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
}

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

h1 { font-size: clamp(44px, 8vw, 104px); }
h2 { font-size: clamp(32px, 5vw, 56px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); }

p { color: var(--bone-dim); margin: 0; }
p.lede { color: var(--bone); font-size: clamp(18px, 2vw, 22px); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 26px;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn-primary:hover { background: var(--ember); border-color: var(--ember); transform: translateY(-1px); }
.btn-ghost { color: var(--bone); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--signal); color: var(--signal); }
.btn svg { width: 14px; height: 14px; }

/* ---------- iris mark (logo + load transition) ---------- */
.iris {
  width: var(--s, 30px);
  height: var(--s, 30px);
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.iris-blade { fill: currentColor; transform-origin: 50px 50px; }
a.brand:hover .iris,
a.brand:focus-visible .iris { transform: rotate(35deg); }

#iris-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
#iris-overlay img { width: 30vmax; height: 30vmax; object-fit: contain; }
#iris-overlay.run {
  animation: iris-wipe 1.1s cubic-bezier(.5,0,.2,1) forwards;
  animation-delay: 0.15s;
}
@keyframes iris-wipe {
  0% { clip-path: circle(0% at 50% 50%); }
  100% { clip-path: circle(75% at 50% 50%); opacity: 0; }
}
#iris-overlay.done { display: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  #iris-overlay { display: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
header.site .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--bone);
}
.brand-word {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.brand-word b { color: var(--ember); font-weight: 700; }

nav.primary { display: flex; align-items: center; gap: 6px; }
nav.primary a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone-dim);
  padding: 10px 16px;
  border-radius: 2px;
  transition: color 0.2s ease, background 0.2s ease;
}
nav.primary a:hover { color: var(--bone); background: var(--ink-raised); }
nav.primary a.is-current { color: var(--signal); }
nav.primary a.cta { color: var(--ink); background: var(--bone); margin-left: 6px; }
nav.primary a.cta:hover { background: var(--ember); color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--bone);
  width: 42px;
  height: 42px;
  border-radius: 2px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 780px) {
  nav.primary {
    position: fixed;
    inset: 78px 0 0 0;
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
    padding: 10px var(--gutter) 30px;
    gap: 2px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border-bottom: 1px solid var(--line);
  }
  nav.primary a { padding: 16px 4px; border-bottom: 1px solid var(--line); }
  nav.primary a.cta { margin-left: 0; text-align: center; margin-top: 10px; }
  body.nav-open nav.primary { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-toggle { display: flex; }
}

/* ---------- hero (video-backed) ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero.hero--center { align-items: center; justify-content: center; min-height: 78vh; }
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;      /* 16:9 */
  min-height: 100vh;
  min-width: 177.78vh;  /* 16:9 */
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
/* whichever source isn't in use gets hidden by JS */
.hero-media .is-hidden { display: none; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, var(--ink) 6%, rgba(10,10,10,0.35) 46%, rgba(10,10,10,0.55) 100%),
    linear-gradient(100deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.15) 55%);
}
.hero-scrim.hero-scrim--even {
  background: linear-gradient(0deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.55) 100%);
}
.hero-content { position: relative; padding: 64px 0 56px; width: 100%; }
.hero-content .eyebrow { margin-bottom: 18px; }
.hero-content h1 { max-width: 15ch; }
.hero-content p.lede { max-width: 46ch; margin-top: 22px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.hero-tagline {
  position: relative;
  text-align: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: clamp(30px, 6.4vw, 88px);
  color: var(--bone);
  padding: 0 var(--gutter);
}

/* sound toggle on hero video */
.sound-toggle {
  position: absolute;
  right: var(--gutter);
  bottom: 28px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(240, 240, 240, 0.25);
  border-radius: 2px;
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.sound-toggle:hover { background: rgba(10, 10, 10, 0.8); border-color: var(--bone); }
.sound-toggle svg { width: 17px; height: 17px; }
.sound-toggle .ico-loud { display: none; }
.sound-toggle[aria-pressed="true"] .ico-loud { display: block; }
.sound-toggle[aria-pressed="true"] .ico-muted { display: none; }
@media (max-width: 600px) {
  .sound-toggle { bottom: 18px; padding: 9px 14px; font-size: 11px; }
  .sound-toggle .label { display: none; }
}

/* generic page hero (no video) */
.page-hero { padding: 74px 0 44px; }
.page-hero.no-border { border-bottom: none; }
.page-hero h1 { max-width: 18ch; }
.page-hero p.lede { max-width: 52ch; margin-top: 20px; }

/* ---------- stat strip ---------- */
.stat-strip {
  border-bottom: 1px solid var(--line);
  background: var(--ink-raised);
}
.stat-strip .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat {
  padding: 30px var(--gutter) 30px 0;
  border-left: 1px solid var(--line);
  padding-left: var(--gutter);
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat .num {
  font-family: var(--font-mono);
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--ember);
}
.stat .label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-top: 6px;
}
.stat-strip.cols-2 .wrap { grid-template-columns: repeat(2, 1fr); }
.stat-strip.cols-2 { border-top: 1px solid var(--line); }

@media (max-width: 700px) {
  .stat-strip .wrap { grid-template-columns: 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 22px; margin-top: 0; }
  .stat:first-child { border-top: none; }
}

/* ---------- sections ---------- */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 48px; flex-wrap: wrap; }
.section-head h2 { max-width: 16ch; }
.section-head p { max-width: 40ch; }

/* services */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service {
  background: var(--ink);
  padding: 38px 32px 34px;
}
.service .tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--signal);
}
.service .icon { width: 34px; height: 34px; color: var(--ember); display: block; }
.service .icon svg { width: 100%; height: 100%; }
.service h3 { margin-top: 16px; }
.service p { margin-top: 14px; }
.service .mark { color: var(--ember); margin-bottom: 8px; }
@media (max-width: 820px) {
  .services { grid-template-columns: 1fr; }
}

/* credits roll */
.credits { border-top: 1px solid var(--line); }
.credit-row {
  display: grid;
  grid-template-columns: 64px 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.credit-row .idx { font-family: var(--font-mono); color: var(--bone-dim); font-size: 13px; }
.credit-row .title { font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 30px); text-transform: uppercase; letter-spacing: 0.01em; }
.credit-row .kind { font-family: var(--font-mono); font-size: 12px; color: var(--bone-dim); letter-spacing: 0.05em; }
.tags { display: flex; gap: 8px; flex-wrap: wrap; justify-self: end; }
.tag-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border: 1px solid var(--line);
  color: var(--bone-dim);
  border-radius: 2px;
}
@media (max-width: 700px) {
  .credit-row { grid-template-columns: 40px 1fr; row-gap: 10px; }
  .credit-row .kind { grid-column: 2; }
  .tags { grid-column: 1 / -1; justify-self: start; }
}
.credits-more { padding: 22px 0; font-family: var(--font-mono); font-size: 13px; color: var(--bone-dim); }

/* video embed block */
.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--ink-raised);
  border: 1px solid var(--line);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-frame.video-frame--vertical {
  max-width: 380px;
  padding-bottom: calc(380px * 1.7778);
  margin: 0 auto;
}
@media (max-width: 480px) {
  .video-frame.video-frame--vertical { max-width: 100%; padding-bottom: 177.78%; }
}

/* how-we-work */
.method { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.method-step { background: var(--ink); padding: 30px 26px; }
.method-step .k { font-family: var(--font-mono); color: var(--ember); font-size: 13px; letter-spacing: 0.08em; }
.method-step h3 { margin-top: 14px; font-size: 19px; }
.method-step p { margin-top: 10px; font-size: 14px; }
@media (max-width: 900px) { .method { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .method { grid-template-columns: 1fr; } }

/* pull quote / statement block */
.statement { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.statement p { font-family: var(--font-display); text-transform: uppercase; color: var(--bone); font-size: clamp(24px, 4vw, 42px); line-height: 1.1; max-width: 22ch; }

/* about narrative */
.narrative { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; }
.narrative .col-label .eyebrow { display: block; }
.narrative .col-body p + p { margin-top: 20px; }
.narrative .col-body p.lede { margin-top: 0; }
@media (max-width: 820px) { .narrative { grid-template-columns: 1fr; gap: 24px; } }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.contact-grid.single { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; text-align: center; }
.contact-grid.single .big-link { border-bottom: none; }
.contact-card { background: var(--ink); padding: 40px 36px; }
.contact-card .eyebrow { display: block; margin-bottom: 16px; }
.contact-card .big-link { font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); text-transform: none; display: inline-block; margin-top: 4px; border-bottom: 1px solid var(--line); padding-bottom: 6px; transition: border-color 0.2s ease, color 0.2s ease; }
.contact-card .big-link:hover { color: var(--signal); border-color: var(--signal); }
.contact-card ul { list-style: none; margin: 6px 0 0; padding: 0; font-family: var(--font-mono); font-size: 14px; color: var(--bone-dim); }
.contact-card li { padding: 10px 0; border-top: 1px solid var(--line); }
.contact-card li:first-child { border-top: none; }
.social-row { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }

.note-flag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--bone-dim);
  border: 1px dashed var(--line);
  padding: 12px 16px;
  margin-top: 26px;
  max-width: 60ch;
}
.note-flag b { color: var(--ember); }

/* cta band */
.cta-band { text-align: left; }
.cta-band .wrap { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { max-width: 14ch; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* footer */
footer.site { border-top: 1px solid var(--line); padding: 46px 0 40px; }
footer.site .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
footer.site .brand-word { font-size: 18px; }
footer.site .foot-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 2px; }
footer.site .foot-brand .iris { width: 22px; height: 22px; }
footer.site .cols { display: flex; gap: 56px; flex-wrap: wrap; }
footer.site .col h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--bone-dim); text-transform: uppercase; margin: 0 0 12px; font-weight: 400; }
footer.site .col a, footer.site .col span { display: block; font-size: 14px; color: var(--bone-dim); padding: 5px 0; }
footer.site .col a:hover { color: var(--signal); }
footer.site .bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 12px; color: var(--bone-dim); }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- testimonials ---------- */
.quote-block { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-raised); }
.quote-block .inner { display: flex; align-items: center; gap: 44px; padding: 64px 0; }
.quote-block .avatar { width: 200px; height: 200px; flex: none; border-radius: 3px; overflow: hidden; background: var(--ink-raised-2); }
.quote-block .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.quote-block .body { flex: 1; }
.quote-block .stars { display: block; color: var(--ember); letter-spacing: 6px; font-size: 26px; margin-bottom: 18px; }
.quote-block blockquote { margin: 0; font-family: var(--font-display); text-transform: none; font-weight: 600; font-size: clamp(22px, 3.2vw, 34px); line-height: 1.3; color: var(--bone); }
.quote-block cite { display: block; margin-top: 20px; font-family: var(--font-mono); font-style: normal; font-size: 14px; letter-spacing: 0.04em; color: var(--bone-dim); }
.quote-block cite b { color: var(--signal); font-weight: 500; font-size: 15px; }
@media (max-width: 700px) {
  .quote-block .inner { flex-direction: column; align-items: flex-start; gap: 22px; padding: 40px 0; }
  .quote-block .avatar { width: 120px; height: 120px; }
}

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.testimonial { background: var(--ink); padding: 30px 26px; display: flex; flex-direction: column; }
.testimonial .stars { display: block; color: var(--ember); letter-spacing: 2px; font-size: 12px; margin-bottom: 12px; }
.testimonial blockquote { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--bone); flex: 1; }
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testimonial .avatar { width: 44px; height: 44px; flex: none; border-radius: 3px; overflow: hidden; background: var(--ink-raised-2); }
.testimonial .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.testimonial cite { font-style: normal; font-family: var(--font-mono); font-size: 11px; line-height: 1.5; color: var(--bone-dim); }
.testimonial cite b { display: block; color: var(--bone); font-size: 12px; font-weight: 500; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ---------- pending-asset placeholder ---------- */
.pending {
  border: 1px dashed var(--line);
  padding: 34px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pending .txt { max-width: 56ch; }
.pending .eyebrow { display: block; margin-bottom: 8px; }
.pending p { color: var(--bone-dim); font-size: 14px; }

/* ---------- map ---------- */
.map-frame { position: relative; width: 100%; padding-bottom: 46%; border: 1px solid var(--line); filter: grayscale(1) invert(0.92) contrast(0.9); }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 780px) { .map-frame { padding-bottom: 80%; } }

/* ---------- full-bleed media ---------- */
.bleed { width: 100%; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bleed img { width: 100%; height: auto; display: block; }
.bleed-caption { text-align: center; padding: 14px var(--gutter) 0; font-family: var(--font-mono); font-size: 12px; color: var(--bone-dim); letter-spacing: 0.02em; }
.photo-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.photo-duo img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/5; }
@media (max-width: 700px) { .photo-duo { grid-template-columns: 1fr; } }
.bleed-pending {
  width: 100%;
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, var(--ink-raised) 0 2px, var(--ink) 2px 22px);
}
.bleed-pending .txt { max-width: 46ch; }
.bleed-pending .eyebrow { display: block; margin-bottom: 10px; }
.bleed-pending p { color: var(--bone-dim); font-size: 14px; }

/* ---------- centered CTA ---------- */
.cta-center { text-align: center; }
.cta-center .wrap { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.cta-center .btn-primary { padding: 22px 48px; font-size: 15px; }

/* ---------- work: per-project sections ---------- */
.project { padding: 76px 0; border-bottom: 1px solid var(--line); }
.project:first-of-type { padding-top: 0; }
.project:last-of-type { border-bottom: none; }
.project-head { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; margin-bottom: 36px; }
.project-head .studio { display: block; margin-bottom: 12px; }
.project-head h3 { font-size: clamp(24px, 3.2vw, 38px); text-transform: uppercase; letter-spacing: 0.01em; max-width: 14ch; }
.project-head .kind { display: block; margin-top: 10px; font-family: var(--font-mono); font-size: 12px; color: var(--bone-dim); letter-spacing: 0.04em; }
.project-head p.desc { margin-top: 4px; font-size: 15.5px; line-height: 1.7; }
@media (max-width: 820px) { .project-head { grid-template-columns: 1fr; gap: 16px; } }

.video-pending {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--ink-raised);
  border: 1px dashed var(--line);
  display: flex;
}
.video-pending .txt { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px; }
.video-pending .eyebrow { display: block; margin-bottom: 8px; }
.video-pending p { color: var(--bone-dim); font-size: 13px; max-width: 40ch; }

/* ---------- about: gear + crew ---------- */
.kit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.kit-item { background: var(--ink); padding: 26px 24px; display: flex; align-items: center; gap: 18px; }
.kit-item .icon { width: 32px; height: 32px; flex: none; color: var(--ember); }
.kit-item .icon svg { width: 100%; height: 100%; }
.kit-item .text { display: flex; flex-direction: column; gap: 3px; }
.kit-item .n { font-family: var(--font-mono); font-size: 11px; color: var(--bone-dim); }
.kit-item .name { font-family: var(--font-display); font-size: 19px; text-transform: uppercase; letter-spacing: 0.01em; color: var(--bone); }
@media (max-width: 820px) { .kit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .kit-grid { grid-template-columns: 1fr; } }

.photo-pending {
  width: 100%;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px dashed var(--line);
  background: var(--ink-raised);
}
.photo-pending .txt { max-width: 42ch; }
.photo-pending .eyebrow { display: block; margin-bottom: 10px; }
.photo-pending p { color: var(--bone-dim); font-size: 14px; }

.crew-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.crew-grid figure { margin: 0; background: var(--ink); }
.crew-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.crew-grid figcaption { padding: 14px 16px; font-family: var(--font-mono); font-size: 12px; color: var(--bone-dim); letter-spacing: 0.02em; }
@media (max-width: 700px) { .crew-grid { grid-template-columns: 1fr; } }
