@font-face {
  font-family: "Clash Display";
  src: url("../fonts/ClashDisplay-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/ClashDisplay-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

:root {
  --bg: #0a0a09;
  --bg-raised: #131311;
  --text: #f2ece0;
  --text-dim: rgba(242, 236, 224, 0.6);
  --text-mute: rgba(242, 236, 224, 0.35);
  --line: rgba(242, 236, 224, 0.12);
  --line-strong: rgba(242, 236, 224, 0.28);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* very light film-halation bloom, reserved for large display type only */
  --halation: 0 0 1px rgba(242, 236, 224, 0.5), 0 0 20px rgba(242, 236, 224, 0.22), 0 0 44px rgba(242, 236, 224, 0.1);

  /* per-film tints: dark, desaturated color grades, never the text color */
  --tint-slate: #3a4552;
  --tint-ember: #6e2c13;
  --tint-teal: #123c3c;
  --tint-wine: #4a1224;
  --tint-amber: #5e3c0c;
  --tint-plum: #3c1638;
  --tint-brand: #513c1e;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "General Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Clash Display", "General Sans", sans-serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* Nav: no bar, logo and links float directly on whatever sits behind them */
.brand-mark {
  position: fixed;
  top: 26px; left: 32px;
  z-index: 50;
  font-family: "Clash Display", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: var(--text);
  text-shadow: var(--halation);
}

.nav-links {
  position: fixed;
  top: 24px; right: 28px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
}
.cat-link {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.75;
  transition: opacity 0.25s var(--ease);
}
.cat-link:hover, .cat-link:focus-visible {
  opacity: 1;
}
.nav-toggle {
  display: none;
  position: fixed;
  top: 24px; right: 28px;
  z-index: 51;
  width: 28px; height: 28px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 1px;
  background: var(--text);
}

/* Left index rail: one entry per film, always visible, active item emphasised */
.index-rail {
  position: fixed;
  left: 32px;
  bottom: 40px;
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.index-rail a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-mute);
  transform-origin: left center;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.index-rail a.active {
  color: var(--text);
  font-weight: 600;
  transform: scale(1.12);
}

/* Right-edge prev/next */
.social-fab {
  position: fixed;
  right: 26px;
  bottom: 32px;
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.social-fab a {
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  opacity: 0.75;
  transition: opacity 0.25s var(--ease);
}
.social-fab a:hover { opacity: 1; }

/* Line CTA: the only interactive-text pattern on this site, no boxed buttons */
.line-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.25s var(--ease);
}
.line-cta:hover { border-color: var(--text); }
.line-cta svg { transition: transform 0.25s var(--ease); }
.line-cta:hover svg { transform: translate(2px, -2px); }
.line-cta-submit { font-size: 0.8rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  scroll-snap-align: start;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(58,69,82,0.35), transparent 60%),
    var(--bg);
}
.hero-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.hero-content h1 {
  margin-top: 22px;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  max-width: 24ch;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: var(--halation);
}
.hero-content .lede {
  margin-top: 20px;
  max-width: 42ch;
  color: var(--text-dim);
  line-height: 1.65;
}
.hero-content .line-cta {
  margin-top: 34px;
}
.hero-content .line-cta + .line-cta {
  margin-top: 16px;
}

/* Sections shared */
section { padding: 140px 32px; max-width: 1400px; margin: 0 auto; }
section > h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  max-width: 20ch;
  margin-bottom: 64px;
}

/* Reel: hero + films live in their own snapping viewport-height scroller,
   so one wheel/trackpad gesture always lands decisively on the next film.
   The rest of the page (approche, contact...) scrolls normally afterwards. */
.reel {
  height: 100svh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}
.reel::-webkit-scrollbar { display: none; }

.project {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border-top: 1px solid var(--line);
}
.project-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.project-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.8) contrast(1.1) brightness(0.55);
}
/* Real project photography keeps its own natural color grading;
   only the placeholder stock images get the desaturated + tinted look. */
.real-photo .project-media img {
  filter: contrast(1.05) brightness(0.82);
}
.project-media::before {
  content: "";
  position: absolute;
  inset: 0;
  mix-blend-mode: color;
  opacity: 0.6;
}
.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, transparent 0%, rgba(10,10,9,0.55) 72%),
    linear-gradient(to top, rgba(10,10,9,0.85) 0%, rgba(10,10,9,0.25) 40%);
}
.project[data-tint="slate"] .project-media::before { background: var(--tint-slate); }
.project[data-tint="ember"] .project-media::before { background: var(--tint-ember); }
.project[data-tint="teal"]  .project-media::before { background: var(--tint-teal); }
.project[data-tint="wine"]  .project-media::before { background: var(--tint-wine); }
.project[data-tint="amber"] .project-media::before { background: var(--tint-amber); }
.project[data-tint="plum"]  .project-media::before { background: var(--tint-plum); }

.project-content {
  position: relative;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.project-label {
  font-family: "Clash Display", sans-serif;
  font-weight: 700;
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
  text-shadow: var(--halation);
}
/* Typewriter reveal: letters are pre-laid-out and invisible so the title
   never shifts the layout as it types in. */
.tw-char {
  opacity: 0;
  transition: opacity 0.05s linear;
}
.tw-char.tw-in { opacity: 1; }
.tw-cursor {
  display: inline-block;
  width: 0.05em;
  height: 0.8em;
  margin-left: 0.06em;
  background: var(--text);
  vertical-align: -0.04em;
  opacity: 0;
}
.tw-cursor.tw-in {
  opacity: 1;
  animation: tw-blink 0.9s step-end infinite;
}
/* Once typing is under way, the cursor rides along as the current letter's
   own ::after, absolutely positioned so it never adds width to the line.
   That keeps it glued to that exact letter (impossible to strand on a
   wrapped line of its own) and stops the centered title from re-centering
   itself as the cursor moves or disappears. */
.tw-char.tw-cursor-active { position: relative; }
.tw-char.tw-cursor-active::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  width: 0.05em;
  height: 0.8em;
  margin-left: 0.06em;
  background: var(--text);
  transform: translateY(-50%);
  animation: tw-blink 0.9s step-end infinite;
}
@keyframes tw-blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .tw-char { transition: none; }
  .tw-cursor { display: none; }
  .tw-char.tw-cursor-active::after { display: none; }
}
.project-title {
  margin-top: 22px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}
.project-meta {
  margin-top: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--text-dim);
}
.project-line {
  margin-top: 18px;
  max-width: 46ch;
  color: var(--text-dim);
  font-size: 0.98rem;
  line-height: 1.65;
}
.project .line-cta {
  margin-top: 30px;
}

/* Manifesto */
.manifesto { padding-top: 16px; }
.manifesto-inner { max-width: 68ch; }
.manifesto-inner h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); max-width: 18ch; }
.manifesto-inner p {
  margin-top: 28px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 65ch;
}
.manifesto-note {
  margin-top: 28px !important;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem !important;
  color: var(--text) !important;
}
.manifesto-inner .line-cta { margin-top: 36px; }

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.process-step {
  padding: 0 28px 0 0;
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.process-num {
  font-family: "Clash Display", sans-serif;
  font-size: 0.85rem;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}
.process-step h3 {
  margin-top: 16px;
  font-size: 1.3rem;
}
.process-step p {
  margin-top: 12px;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Quote */
.quote { padding-top: 60px; padding-bottom: 24px; }
.quote blockquote { margin: 0; max-width: 58ch; }
.quote p {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.35;
  text-shadow: var(--halation);
}
.quote cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: 0.92rem;
  color: var(--text);
}
.quote cite span {
  display: block;
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-top: 2px;
}

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.contact-intro h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.contact-intro p {
  margin-top: 20px;
  color: var(--text-dim);
  max-width: 40ch;
  line-height: 1.7;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; color: var(--text-dim); }
.field input, .field select, .field textarea {
  background: var(--bg-raised);
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: 13px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
  transition: border-color 0.25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--text);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' fill='%23a19f98'><path d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}
.form-note {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  color: var(--text);
  min-height: 1.2em;
}
.form-privacy-note {
  grid-column: 1 / -1;
  margin-top: -6px;
  font-size: 0.7rem;
  line-height: 1.5;
  color: var(--text-mute);
}
.form-privacy-note a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.form-privacy-note a:hover { color: var(--text); }
.contact-page {
  min-height: 100dvh;
  display: flex;
  align-items: center;
}
.contact-compact { padding: 110px 32px 48px; }
.contact-intro h1 {
  margin-top: 18px;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: var(--halation);
}
.contact-intro .lede { margin-top: 16px; }
.contact-intro .line-cta { margin-top: 28px; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reel { scroll-behavior: auto; scroll-snap-type: none; overflow-y: visible; height: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .line-cta, .line-cta svg, .index-rail a { transition: none; }
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  section { padding: 88px 20px; }
  .nav-toggle { display: flex; }
  .index-rail { left: 16px; bottom: 32px; gap: 7px; }
  .social-fab { right: 16px; }
  .nav-links {
    top: 0; right: 0; left: 0;
    padding: 20px 64px 0 0;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0;
    border-bottom: 1px solid transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }
  /* background + backdrop-filter only apply while open: Safari sometimes
     composites a blurred backdrop-filter layer even at max-height:0,
     leaking a visible bar above the fold on every page that has this menu. */
  .nav-links.open {
    max-height: 220px;
    padding-bottom: 14px;
    background: rgba(10, 10, 9, 0.94);
    backdrop-filter: blur(10px);
    border-bottom-color: var(--line);
  }
  .nav-links .cat-link { width: auto; padding: 12px 16px; }
  .project-content { padding: 0 20px; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-step { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 24px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-compact { padding: 84px 56px 20px 20px; }
  .contact-inner.contact-compact { gap: 20px; }
}

/* Accueil: the site's landing page */
.landing {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.landing-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.landing-media img, .landing-media video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.landing-media img { filter: grayscale(0.75) contrast(1.1) brightness(0.5); }
.landing-media video { filter: grayscale(0.6) contrast(1.1) brightness(0.5); }
.landing-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tint-brand);
  mix-blend-mode: color;
  opacity: 0.6;
}
.landing-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 52%, transparent 0%, rgba(10,10,9,0.55) 75%),
    linear-gradient(to top, rgba(10,10,9,0.6) 0%, transparent 40%);
}
.landing-nav {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 0 20px;
}
.landing-nav .cat-link {
  font-size: 0.85rem;
}
.landing-caption {
  position: fixed;
  left: 0; right: 0;
  bottom: 34px;
  z-index: 40;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0 20px;
}
/* Legal links: required mentions-légales / privacy links, kept as small and
   quiet as the LCEN/RGPD requirement allows so they don't compete with the
   rest of the page. */
.legal-links {
  position: fixed;
  left: 0; right: 0;
  bottom: 10px;
  z-index: 39;
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--text-mute);
  opacity: 0.6;
  pointer-events: none;
}
.legal-links a { pointer-events: auto; text-decoration: underline; text-underline-offset: 2px; }
.legal-links a:hover { color: var(--text); }

@media (max-width: 768px) {
  .brand-mark { left: 20px; }
  .landing-caption { bottom: 24px; text-align: left; left: 16px; right: 16px; padding: 0; }
  .legal-links { bottom: 6px; font-size: 0.58rem; }
  .landing-nav {
    position: fixed;
    left: 16px;
    bottom: 76px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    padding: 0;
  }
}

/* Project detail page: full-bleed recap of the project, then its films listed */
.detail-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.detail-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: var(--text);
  filter: drop-shadow(0 0 1px rgba(242, 236, 224, 0.5)) drop-shadow(0 0 10px rgba(242, 236, 224, 0.35));
  animation: scroll-hint-bounce 2.2s ease-in-out infinite;
}
@keyframes scroll-hint-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 7px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-hint { animation: none; }
}
.detail-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.7);
}
.detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, transparent 0%, rgba(10,10,9,0.5) 78%),
    linear-gradient(to top, rgba(10,10,9,0.92) 0%, rgba(10,10,9,0.25) 45%, transparent 75%);
}
.detail-content {
  position: relative;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px 72px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.back-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.8;
  transition: opacity 0.25s var(--ease);
}
.back-link:hover { opacity: 1; }
.detail-content .project-label {
  margin-top: 18px;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
}
.detail-content .project-title {
  margin-top: 14px;
  font-size: 1.05rem;
  font-weight: 600;
}

.documentary {
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 32px 140px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.documentary-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.documentary-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) contrast(1.1) brightness(0.78);
  transition: filter 0.4s var(--ease), transform 0.6s var(--ease);
}
.documentary-media:hover img {
  filter: grayscale(0) contrast(1.05) brightness(0.92);
  transform: scale(1.03);
}
.documentary-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  opacity: 0.85;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.documentary-media:hover .documentary-play { opacity: 1; transform: scale(1.06); }
.documentary-date {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}
.documentary-dates {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.documentary-dates li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
}
.documentary-dates-num {
  font-family: "Clash Display", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-mute);
}
.documentary-text {
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dim);
  max-width: 52ch;
}
.documentary-text + .documentary-text { margin-top: 16px; }

/* Documentary variant with no single featured video: text + a list of
   separate reel links instead of one documentary-media thumbnail. */
.documentary-single { grid-template-columns: 1fr; max-width: 720px; }
.reel-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.reel-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.25s var(--ease);
}
.reel-list a:hover { border-color: var(--text); }
.reel-list a svg { margin-left: auto; transition: transform 0.25s var(--ease); }
.reel-list a:hover svg { transform: translate(2px, -2px); }

@media (max-width: 900px) {
  .documentary { grid-template-columns: 1fr; gap: 40px; padding-top: 72px; }
}
