/* ─── About page additions ─── */

/* David — portrait éditorial (photo modeste, texte large) */
.bio-feature {
  max-width: var(--max);
  margin: clamp(40px, 6vw, 96px) auto 0;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.bio-side {
  position: sticky;
  top: clamp(80px, 8vw, 120px);
}
.bio-portrait {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-2);
  filter: grayscale(1) contrast(1.04);
}
.bio-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s ease;
}
.bio-feature:hover .bio-portrait img { transform: scale(1.02); }
.bio-links { margin-top: 14px; }
.bio-content { display: flex; flex-direction: column; gap: clamp(14px, 1.5vw, 22px); }
.bio-content .film-badge { align-self: flex-start; }
.bio-name {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 8px 0 0;
}
.bio-kicker {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.bio-lead {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--fg);
  text-wrap: pretty;
  max-width: 56ch;
  margin-top: 12px;
}
.bio-lead .hl {
  font-style: normal;
  color: inherit;
  font-weight: 400;
  letter-spacing: -0.005em;
  background-image: linear-gradient(to right, color-mix(in oklab, var(--accent) 55%, transparent), color-mix(in oklab, var(--accent) 55%, transparent));
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0 92%;
  padding-bottom: 0.04em;
}
.bio-grid {
  margin-top: clamp(20px, 2.5vw, 36px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3vw, 48px) clamp(40px, 5vw, 72px);
}
.bio-grid .meta { border: 0; padding: 0; }
.bio-grid .meta-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.bio-grid .meta-body { color: var(--fg-mute); font-size: 14.5px; line-height: 1.65; }
.bio-grid .meta-body p + p { margin-top: 10px; }
.bio-grid > .meta:first-child { grid-column: 1 / -1; }

/* Co-fondateurs — vignettes plus petites, B&W, square */
.team-grid {
  max-width: var(--max);
  margin: clamp(80px, 10vw, 140px) auto 0;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 4vw, 64px);
}
.team-head { grid-column: 1 / -1; }
.team-head h2 {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: -0.012em;
  margin-top: 14px;
  max-width: 28ch;
  text-wrap: balance;
}
.team-card { display: flex; flex-direction: column; gap: 18px; max-width: 320px; }
.team-photo {
  width: 180px;
  height: 180px;
  overflow: hidden;
  background: var(--bg-2);
  filter: grayscale(1) contrast(1.03);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-meta { display: flex; flex-direction: column; gap: 8px; }
.team-name {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(19px, 1.5vw, 24px);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.team-role { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg-dim); }
.team-bio { font-size: 13.5px; line-height: 1.6; color: var(--fg-mute); margin-top: 6px; }
.team-bio strong { color: var(--fg); font-weight: 500; }

/* Logo wall — 2 groupes, couleur désaturée, hover saturate */
.logo-wall {
  max-width: var(--max);
  margin: clamp(96px, 12vw, 160px) auto 0;
  padding: clamp(56px, 7vw, 96px) var(--pad-x);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 88px);
}
.logo-group .eyebrow { margin-bottom: 32px; }
.logo-wall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: clamp(28px, 3vw, 48px) clamp(40px, 5vw, 72px);
  align-items: center;
}

/* ─── En Dev page ─── */
.dev-list {
  margin: clamp(12px, 2vw, 32px) 0 0;
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 10vw, 160px);
}
.dev-block { display: block; }

/* Solo image (Resurrection, Jiao, À notre image) — natural ratio, full visible */
.dev-fig {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--bg);
  --media-parallax-y: 0px;
}
.dev-fig--solo {
  text-align: center;
  background: var(--bg);
}
.dev-fig--solo > img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 95vh;
  object-fit: contain;
  margin: 0 auto;
  transform: translate3d(0, var(--media-parallax-y), 0) scale(1.085);
  transform-origin: center;
  will-change: transform;
}

/* Scrubber — fixed cinema frame, contain + letterbox */
.dev-fig--scrubber {
  cursor: ew-resize;
  background: var(--bg);
  min-height: 50vh;
  display: block;
}
.dev-fig--scrubber img.scrub {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translate3d(0, var(--media-parallax-y), 0) scale(1.085);
  transform-origin: center;
  will-change: transform;
  transition: opacity .12s ease;
}
.dev-fig--scrubber img.scrub.active { opacity: 1; }

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .dev-fig--solo > img {
    opacity: 0.6;
    transition: opacity 220ms ease;
  }
  .dev-fig--solo:hover > img {
    opacity: 1;
  }
  .dev-fig--scrubber img.scrub.active {
    opacity: 0.6;
  }
  .dev-fig--scrubber:hover img.scrub.active {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dev-fig--solo > img,
  .dev-fig--scrubber img.scrub,
  .home-hero video,
  .home-hero img.fallback {
    transform: none;
    will-change: auto;
  }
}

.scrub-hint {
  position: absolute; top: 16px; left: 16px;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.45); backdrop-filter: blur(8px);
  padding: 6px 10px;
  pointer-events: none;
  transition: opacity .4s ease;
  z-index: 2;
}
.dev-fig--scrubber:hover .scrub-hint { opacity: 0; }
.scrub-counter {
  position: absolute; bottom: 16px; right: 16px;
  font-size: 11px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.45); backdrop-filter: blur(8px);
  padding: 6px 10px;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  z-index: 2;
}
/* film-strip tick marks — one per image, active one is brighter & taller */
.scrub-ticks {
  position: absolute; left: 50%; bottom: 14px;
  transform: translateX(-50%);
  display: flex; align-items: flex-end; gap: 4px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.55;
  transition: opacity 240ms ease;
}
.dev-fig--scrubber:hover .scrub-ticks { opacity: 0.9; }
.scrub-ticks i {
  display: block;
  width: 1px; height: 6px;
  background: rgba(255,255,255,0.55);
  transition: height 180ms ease, background 180ms ease;
}
.scrub-ticks i.on {
  height: 10px;
  background: rgba(255,255,255,0.95);
}
/* legacy progress bar (kept for back-compat — hidden) */
.scrub-progress {
  display: none;
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: rgba(255,255,255,0.12);
  z-index: 2;
}
.scrub-progress span {
  display: block; height: 100%;
  background: var(--accent);
  width: 5%;
  transition: width .12s ease;
}

/* text block under image */
.dev-text {
  max-width: 760px;
  margin: clamp(32px, 4vw, 56px) auto 0;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dev-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none; padding: 0; margin: 0 0 4px;
}
.chip {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid color-mix(in oklab, var(--fg) 18%, transparent);
  color: var(--fg-mute);
  border-radius: 2px;
}
.chip-strong {
  background: var(--accent); border-color: var(--accent);
  color: var(--bg); font-weight: 500;
}
.chip-half {
  border-color: color-mix(in oklab, var(--accent) 60%, transparent);
  color: color-mix(in oklab, var(--accent) 75%, white);
}
.chip-award {
  background: color-mix(in oklab, var(--accent) 88%, white);
  border-color: color-mix(in oklab, var(--accent) 88%, white);
  color: var(--bg);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.11em;
  padding: 8px 12px;
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--fg) 8%, transparent);
}
.dev-title {
  font-family: var(--ff-display); font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.02em; line-height: 1.02;
  margin: 0; text-wrap: balance;
}
.dev-tagline {
  font-family: var(--ff-display); font-style: italic; font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.4;
  color: var(--fg); margin: 4px 0 6px;
  max-width: 32ch;
}
.dev-facts {
  display: grid; grid-template-columns: 1fr;
  gap: 0; margin: 12px 0 0;
}
.dev-facts > div {
  display: grid; grid-template-columns: 140px 1fr; gap: 24px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.dev-facts > div:last-child { border-bottom: 1px solid var(--line); }
.dev-facts dt {
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-dim); padding-top: 2px;
}
.dev-facts dd { font-size: 14.5px; color: var(--fg); margin: 0; line-height: 1.5; }
.dev-partners { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.dev-partners-label {
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 14px;
}
.dev-partners-row {
  display: flex; flex-wrap: wrap; gap: 24px 32px; align-items: center;
}
.dev-partners-row img {
  height: 56px; width: auto; max-width: 180px; object-fit: contain;
  filter: saturate(0.4) brightness(1.05); opacity: 0.75;
  transition: filter .3s ease, opacity .3s ease;
}
.dev-partners-row img:hover { filter: saturate(1) brightness(1); opacity: 1; }
.dev-partners-row--selection { gap: 20px 30px; }
.dev-partners-row--selection img.logo-saje { height: 58px; }
.dev-partners-row--selection img.logo-tmf { height: 66px; max-width: 210px; }
.dev-partners-row--selection img.logo-mediaclub { height: 56px; max-width: 170px; }

@media (max-width: 900px) {
  .dev-facts > div { grid-template-columns: 100px 1fr; gap: 12px; }
  .scrub-hint, .scrub-counter { font-size: 10px; padding: 5px 8px; }
  .dev-fig--scrubber { min-height: 60vh; }
  .dev-partners-row--selection { gap: 18px 24px; }
  .dev-partners-row--selection img.logo-saje { height: 50px; }
  .dev-partners-row--selection img.logo-tmf { height: 58px; }
  .dev-partners-row--selection img.logo-mediaclub { height: 50px; }
}

/* ─── Courts page ─── */
.shorts-list {
  margin-top: clamp(12px, 2vw, 32px);
}
.shorts-index {
  max-width: var(--max);
  margin: 0 auto clamp(48px, 6vw, 96px);
  padding: 0 var(--pad-x);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}
.shorts-index a {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  transition: color 200ms ease, border-color 200ms ease;
}
.shorts-index a:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.short-film {
  margin-top: 0;
}
.short-film + .short-film {
  margin-top: clamp(88px, 10vw, 176px);
}
.short-film-hero {
  aspect-ratio: 2.39 / 1;
}
.short-film-body {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  padding-top: clamp(40px, 5vw, 72px);
}
.short-film-body--compact {
  padding-bottom: clamp(48px, 6vw, 84px);
}
.shorts-logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 2.5vw, 34px);
  margin-top: 22px;
  filter: saturate(0.35);
  opacity: 0.68;
  transition: opacity 300ms ease, filter 300ms ease;
}
.shorts-logo-row:hover {
  filter: saturate(0.9);
  opacity: 0.95;
}
.shorts-logo-row img {
  height: 42px;
  width: auto;
  max-width: min(180px, 42vw);
  object-fit: contain;
}
.shorts-logo-row img[src$=".jpg"],
.shorts-logo-row img[src$=".jpeg"],
.shorts-logo-row img[src$=".webp"] {
  mix-blend-mode: screen;
}
.shorts-logo-row img[src*="cesar"],
.shorts-logo-row img[src*="hollyshorts"],
.shorts-logo-row img[src*="miami-film-festival"],
.shorts-logo-row img[src*="newport"],
.shorts-logo-row img[src*="clermont"] {
  height: 54px;
}
.shorts-logo-row img[src*="cine-plus"],
.shorts-logo-row img[src*="cleveland"],
.shorts-logo-row img[src*="cinequest"],
.shorts-logo-row img[src*="stage32"] {
  height: 34px;
}
.shorts-logo-row--many {
  gap: 18px 28px;
}

@media (max-width: 900px) {
  .shorts-index {
    margin-bottom: 44px;
  }
  .short-film-hero {
    aspect-ratio: 16 / 9;
  }
  .short-film-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .shorts-index {
    gap: 10px 16px;
  }
  .shorts-index a {
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .shorts-logo-row img,
  .shorts-logo-row img[src*="cesar"],
  .shorts-logo-row img[src*="hollyshorts"],
  .shorts-logo-row img[src*="miami-film-festival"],
  .shorts-logo-row img[src*="newport"],
  .shorts-logo-row img[src*="clermont"] {
    height: 34px;
  }
}

/* ─── Doc page ─── */
.doc-page {
  margin-top: clamp(12px, 2vw, 32px);
}
.doc-film {
  margin-top: 0;
}
.doc-film-hero {
  aspect-ratio: 2.39 / 1;
}
.doc-film-hero img {
  object-position: 50% 40%;
}
.doc-film-hero .film-presents {
  max-width: 780px;
}
.doc-film-body {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  padding-top: clamp(40px, 5vw, 72px);
}
.doc-logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 2.5vw, 34px);
  margin-top: 22px;
  filter: saturate(0.35);
  opacity: 0.7;
  transition: opacity 300ms ease, filter 300ms ease;
}
.doc-logo-row:hover {
  filter: saturate(0.9);
  opacity: 0.96;
}
.doc-logo-row img {
  height: 42px;
  width: auto;
  max-width: min(190px, 44vw);
  object-fit: contain;
}
.doc-logo-row img[src*="parallell"] {
  height: 28px;
}
.doc-logo-row img[src*="rtbf"],
.doc-logo-row img[src*="premiers"] {
  height: 58px;
}
.doc-logo-row img[src*="mutins"],
.doc-logo-row img[src*="panach"] {
  height: 54px;
}
.doc-logo-row img[src*="sacem"],
.doc-logo-row img[src*="sabam"] {
  height: 32px;
}
.doc-logo-row .text-mark {
  color: var(--fg-mute);
  font-family: var(--ff-display);
  font-size: 18px;
  font-style: italic;
}
.doc-logo-row--production {
  gap: 22px 30px;
}
.doc-logo-row--support {
  gap: 18px 28px;
}
@media (max-width: 900px) {
  .doc-film-hero {
    aspect-ratio: 16 / 9;
  }
  .doc-film-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .doc-film-hero .film-presents {
    font-size: 8.5px;
    letter-spacing: 0.12em;
    line-height: 1.35;
  }
  .doc-logo-row img,
  .doc-logo-row img[src*="rtbf"],
  .doc-logo-row img[src*="premiers"],
  .doc-logo-row img[src*="mutins"],
  .doc-logo-row img[src*="panach"] {
    height: 34px;
  }
  .doc-logo-row img[src*="sacem"],
  .doc-logo-row img[src*="sabam"],
  .doc-logo-row img[src*="parallell"] {
    height: 26px;
  }
}

/* ─── Innovation page ─── */
.innovation-page {
  margin-top: clamp(12px, 2vw, 32px);
}
.innovation-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #000;
}
.innovation-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.66;
  transform: scale(1.04);
}
.innovation-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    oklch(0.08 0.005 60 / .92) 0%,
    oklch(0.08 0.005 60 / .42) 48%,
    oklch(0.08 0.005 60 / .12) 100%);
}
.innovation-hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 780px;
  padding: clamp(32px, 5vw, 72px) 0;
}
.innovation-hero-copy p {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.34;
  color: var(--fg);
  max-width: 31ch;
  overflow-wrap: normal;
  hyphens: manual;
  text-wrap: pretty;
}
.innovation-stats {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) var(--pad-x) clamp(72px, 8vw, 120px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.innovation-stats article {
  border-top: 1px solid var(--line);
  padding: 22px clamp(18px, 2.4vw, 34px) 0 0;
}
.innovation-stats strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 46px;
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0;
  margin-bottom: 12px;
}
.innovation-stats span {
  display: block;
  max-width: 28ch;
  color: var(--fg-mute);
  font-size: 14px;
  line-height: 1.55;
}
.innovation-split {
  max-width: var(--max);
  margin: 0 auto clamp(88px, 10vw, 152px);
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 5vw, 84px);
  align-items: end;
}
.innovation-split--reverse {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
}
.innovation-split--reverse > .innovation-media,
.innovation-split--reverse > .innovation-place-media {
  grid-column: 2;
  grid-row: 1;
}
.innovation-split--reverse > .innovation-copy {
  grid-column: 1;
  grid-row: 1;
}
.innovation-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
}
.innovation-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04);
  transition: filter 340ms ease, transform 900ms ease;
}
.innovation-media:hover img {
  filter: saturate(1) contrast(1);
  transform: scale(1.015);
}
.innovation-media--wide {
  aspect-ratio: 2.39 / 1;
}
.innovation-media--current {
  aspect-ratio: 16 / 9;
  background: #000;
}
.innovation-media--nodes {
  aspect-ratio: 2.36 / 1;
}
.innovation-place-media {
  display: grid;
  gap: 14px;
}
.innovation-media-stack {
  display: grid;
  gap: 14px;
}
.innovation-mini-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.innovation-mini-pair img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--bg-2);
  filter: saturate(0.62) contrast(1.04);
}
.innovation-copy {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.innovation-copy h2,
.innovation-section-head h2,
.innovation-institutions-copy h2,
.innovation-proof-copy h2 {
  margin-top: 14px;
  font-family: var(--ff-display);
  font-size: 42px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}
.innovation-copy p,
.innovation-section-head p,
.innovation-institutions-copy p,
.innovation-proof-copy p {
  margin-top: 18px;
  color: var(--fg-mute);
  font-size: 15px;
  line-height: 1.7;
  text-wrap: pretty;
}
.innovation-copy em,
.innovation-section-head em,
.innovation-institutions-copy em,
.innovation-proof-copy em {
  color: var(--fg);
}
.innovation-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 30px;
  align-items: center;
  margin-top: 28px;
  filter: saturate(0.35);
  opacity: 0.74;
  transition: opacity 300ms ease, filter 300ms ease;
}
.innovation-logo-row:hover {
  filter: saturate(0.9);
  opacity: 0.98;
}
.innovation-logo-row img {
  height: 42px;
  width: auto;
  max-width: min(170px, 40vw);
  object-fit: contain;
}
.innovation-field {
  max-width: var(--max);
  margin: 0 auto clamp(88px, 10vw, 152px);
  padding: clamp(42px, 6vw, 84px) var(--pad-x);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 84px);
  align-items: start;
}
.innovation-field-copy {
  position: sticky;
  top: 104px;
}
.innovation-field-copy h2 {
  margin-top: 14px;
  font-family: var(--ff-display);
  font-size: 46px;
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}
#innovation-field-heading,
#innovation-institutions-heading,
#innovation-projects-heading {
  scroll-margin-top: 130px;
}
.innovation-field-copy p {
  margin-top: 18px;
  color: var(--fg-mute);
  font-size: 15px;
  line-height: 1.7;
  text-wrap: pretty;
}
.innovation-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(150px, 12vw);
  gap: 12px;
}
.innovation-tile {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.innovation-tile--wide {
  grid-column: span 2;
}
.innovation-tile--tall {
  grid-row: span 2;
}
.innovation-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.04) brightness(0.86);
  transition: filter 340ms ease, transform 900ms ease;
}
.innovation-tile:hover img {
  filter: saturate(0.95) contrast(1.02) brightness(0.98);
  transform: scale(1.018);
}
.innovation-institutions {
  max-width: var(--max);
  margin: 0 auto clamp(88px, 10vw, 152px);
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: start;
}
.innovation-institutions-copy {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.innovation-logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.innovation-logo-wall img {
  width: 100%;
  height: clamp(64px, 7vw, 92px);
  object-fit: contain;
  padding: clamp(14px, 1.6vw, 22px);
  background: oklch(0.92 0.01 84);
  border: 1px solid color-mix(in oklab, var(--line) 72%, white);
  border-radius: 6px;
  filter: saturate(0.55) contrast(0.96);
  opacity: 0.78;
  transition: filter 320ms ease, opacity 320ms ease, transform 320ms ease;
}
.innovation-logo-wall:hover img {
  opacity: 0.9;
}
.innovation-logo-wall img:hover {
  filter: saturate(0.95) contrast(1);
  opacity: 1;
  transform: translateY(-1px);
}
.innovation-projects {
  max-width: var(--max);
  margin: 0 auto clamp(88px, 10vw, 152px);
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 42px);
}
.innovation-section-head {
  grid-column: 1 / -1;
  max-width: 880px;
  margin-bottom: 6px;
}
.innovation-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.innovation-card figure {
  margin: 0 0 20px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-2);
}
.innovation-card-figure--black {
  background: #000;
}
.innovation-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.03);
}
.innovation-card span {
  display: block;
  margin-bottom: 9px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.innovation-card h3 {
  font-family: var(--ff-display);
  font-size: 27px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0;
}
.innovation-card p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-mute);
}
.innovation-proof {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(52px, 6vw, 88px) var(--pad-x) 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}
.innovation-proof-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.innovation-proof-grid img {
  width: 100%;
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--bg-2);
  filter: saturate(0.65) contrast(1.03);
}
.innovation-proof-grid img:first-child {
  grid-column: span 3;
  aspect-ratio: 16 / 8;
}
.innovation-proof-grid img:nth-child(2),
.innovation-proof-grid img:nth-child(3),
.innovation-proof-grid img:nth-child(4) {
  grid-column: span 1;
}
.innovation-proof-grid img:nth-child(5),
.innovation-proof-grid img:nth-child(6) {
  grid-column: span 3;
  aspect-ratio: 16 / 9;
}

@media (max-width: 900px) {
  .innovation-hero {
    min-height: 420px;
  }
  .innovation-hero-copy p {
    font-size: 23px;
  }
  .innovation-stats,
  .innovation-split,
  .innovation-split--reverse,
  .innovation-projects,
  .innovation-field,
  .innovation-proof {
    grid-template-columns: 1fr;
  }
  .innovation-split--reverse > .innovation-media,
  .innovation-split--reverse > .innovation-place-media,
  .innovation-split--reverse > .innovation-copy {
    grid-column: auto;
    grid-row: auto;
  }
  .innovation-copy h2,
  .innovation-field-copy h2,
  .innovation-section-head h2,
  .innovation-institutions-copy h2,
  .innovation-proof-copy h2 {
    font-size: 34px;
  }
  .innovation-field-copy {
    position: relative;
    top: 0;
  }
  .innovation-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(150px, 34vw);
  }
  .innovation-projects {
    gap: 38px;
  }
  .innovation-institutions {
    grid-template-columns: 1fr;
  }
  .innovation-logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .innovation-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .innovation-proof-grid img,
  .innovation-proof-grid img:first-child,
  .innovation-proof-grid img:nth-child(2),
  .innovation-proof-grid img:nth-child(3),
  .innovation-proof-grid img:nth-child(4),
  .innovation-proof-grid img:nth-child(5),
  .innovation-proof-grid img:nth-child(6) {
    grid-column: span 1;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 560px) {
  .innovation-hero {
    min-height: 360px;
  }
  .innovation-hero-copy p {
    font-size: 20px;
    max-width: 24ch;
  }
  .innovation-stats strong {
    font-size: 38px;
  }
  .innovation-media--wide,
  .innovation-media--current,
  .innovation-media--nodes {
    aspect-ratio: 16 / 10;
  }
  .innovation-mini-pair,
  .innovation-mosaic,
  .innovation-proof-grid {
    grid-template-columns: 1fr;
  }
  .innovation-mosaic {
    grid-auto-rows: minmax(190px, 58vw);
  }
  .innovation-tile--wide,
  .innovation-tile--tall {
    grid-column: auto;
    grid-row: auto;
  }
  .innovation-logo-row img {
    height: 32px;
  }
  .innovation-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .innovation-logo-wall img {
    height: 68px;
    padding: 13px;
  }
}
.logo-wall-grid img {
  height: 38px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  justify-self: center;
  filter: saturate(0.35);
  opacity: 0.72;
  transition: filter 400ms ease, opacity 400ms ease, transform 400ms ease;
}
.logo-wall-grid img:hover {
  filter: saturate(1);
  opacity: 1;
  transform: scale(1.04);
}
.logo-wall-grid img.lg-lg { height: 48px; }
.logo-wall-grid img.lg-xl { height: 56px; }

.bio-eyebrow { color: var(--accent); }

/* highlight color for bio inline words */
.hl { color: var(--accent); }

@media (max-width: 900px) {
  .bio-feature { grid-template-columns: 1fr; }
  .bio-side { position: relative; top: 0; max-width: 260px; }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-grid > .meta:first-child { grid-column: 1; }
}

/* ═══════════════════════════════════════════════════════════
   HOME — Reel + manifesto
   ═══════════════════════════════════════════════════════════ */
.home-hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
  background: #000;
  --media-parallax-y: 0px;
}
.home-hero video,
.home-hero img.fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--media-parallax-y), 0) scale(1.085);
  transform-origin: center;
  will-change: transform;
}
.home-hero img.fallback { z-index: 0; opacity: 0.6; }
.home-hero video { z-index: 1; }
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom,
    oklch(0.10 0.005 60 / .35) 0%,
    transparent 30%,
    transparent 55%,
    oklch(0.10 0.005 60 / .8) 100%);
  pointer-events: none;
}
.home-manifesto {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: 0 var(--pad-x) clamp(56px, 8vw, 120px);
  max-width: var(--max);
  margin: 0 auto;
}
.home-manifesto .eyebrow { margin-bottom: 28px; color: oklch(0.94 0.008 70 / .7); }
.home-manifesto h1 {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(36px, 5.2vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 24ch;
  text-wrap: balance;
}
.home-manifesto h1 em { font-style: italic; color: oklch(0.92 0.04 30); font-weight: 300; }

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; gap: 56px; }
  .home-hero { height: 78vh; }
}
