/* ================================================================
   DISSEMJ — Portfolio photographer
   Design system : Darkroom / Cinema
   ================================================================ */

:root {
  --bg: #0a0a0a;
  --bg-2: #111;
  --fg: #ededed;
  --fg-dim: #9a9a9a;
  --fg-faint: #4a4a4a;
  --line: #1f1f1f;
  --line-2: #2a2a2a;
  --accent: #ff2d2d;       /* darkroom red */
  --accent-2: #ffd84d;     /* tungsten */
  --easing: cubic-bezier(.77,0,.18,1);
  --easing-soft: cubic-bezier(.22,.61,.36,1);
  --font-display: 'Anton', 'Impact', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { background: var(--bg); color: var(--fg); }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: none; }
img { display: block; max-width: 100%; height: auto; }

::selection { background: var(--accent); color: #fff; }

@media (max-width: 900px) {
  body { cursor: auto; }
  button { cursor: pointer; }
}

/* ================================================================
   LOADER — Aperture (ouverture d'objectif)
   ================================================================ */

.loader {
  position: fixed; inset: 0; z-index: 1000;
  background: #000;
  display: grid; place-items: center;
  pointer-events: all;
  transition: opacity .6s var(--easing), visibility .6s var(--easing);
}
.loader.is-done {
  opacity: 0; visibility: hidden; pointer-events: none;
}

.loader__aperture {
  position: relative;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 0%, transparent 30%, #050505 30.5%);
  overflow: hidden;
}
.loader__aperture::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 40px rgba(0,0,0,.9);
}

.blade {
  position: absolute;
  left: 50%; top: 50%;
  width: 50%; height: 50%;
  background: #000;
  transform-origin: 0 0;
  transition: transform 1.2s var(--easing);
}
.blade:nth-child(1) { transform: rotate(0deg)   translate(0,0); }
.blade:nth-child(2) { transform: rotate(60deg)  translate(0,0); }
.blade:nth-child(3) { transform: rotate(120deg) translate(0,0); }
.blade:nth-child(4) { transform: rotate(180deg) translate(0,0); }
.blade:nth-child(5) { transform: rotate(240deg) translate(0,0); }
.blade:nth-child(6) { transform: rotate(300deg) translate(0,0); }

.blade::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #060606 60%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.loader.is-opening .blade:nth-child(1) { transform: rotate(0deg)   translate(80%, -80%); }
.loader.is-opening .blade:nth-child(2) { transform: rotate(60deg)  translate(80%, -80%); }
.loader.is-opening .blade:nth-child(3) { transform: rotate(120deg) translate(80%, -80%); }
.loader.is-opening .blade:nth-child(4) { transform: rotate(180deg) translate(80%, -80%); }
.loader.is-opening .blade:nth-child(5) { transform: rotate(240deg) translate(80%, -80%); }
.loader.is-opening .blade:nth-child(6) { transform: rotate(300deg) translate(80%, -80%); }

.loader__meta {
  position: absolute;
  inset: auto 5vw 5vh 5vw;
  bottom: 5vh; left: 5vw; right: 5vw;
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .15em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.loader__label { color: var(--accent); }
.loader__counter { font-size: 14px; color: var(--fg); }

/* ================================================================
   CURSEUR CUSTOM
   ================================================================ */
.cursor {
  position: fixed; top: 0; left: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference;
  will-change: transform;
}
.cursor__dot {
  position: absolute; top: 0; left: 0;
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .25s var(--easing), height .25s var(--easing);
}
.cursor__ring {
  position: absolute; top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform .35s var(--easing), border-color .25s var(--easing), background-color .25s var(--easing);
}
.cursor__label {
  position: absolute; top: 0; left: 0;
  transform: translate(-50%, calc(-50% + 0px));
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transition: opacity .2s var(--easing);
  white-space: nowrap;
}

.cursor.is-hover .cursor__dot { width: 0; height: 0; }
.cursor.is-hover .cursor__ring { transform: translate(-50%, -50%) scale(2.2); background: rgba(255,255,255,.1); }
.cursor.is-hover .cursor__label { opacity: 1; }

.cursor.is-hidden { opacity: 0; }

@media (max-width: 900px) { .cursor { display: none; } }

/* ================================================================
   GRAIN OVERLAY
   ================================================================ */
.grain {
  position: fixed; inset: -50%;
  z-index: 9998;
  pointer-events: none;
  opacity: .07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grain 4s steps(6) infinite;
}
@keyframes grain {
  0%   { transform: translate(0,0) }
  10%  { transform: translate(-5%, -10%) }
  20%  { transform: translate(-15%, 5%) }
  30%  { transform: translate(7%, -25%) }
  40%  { transform: translate(-5%, 25%) }
  50%  { transform: translate(-15%, 10%) }
  60%  { transform: translate(15%, 0%) }
  70%  { transform: translate(0%, 15%) }
  80%  { transform: translate(3%, 35%) }
  90%  { transform: translate(-10%, 10%) }
  100% { transform: translate(0,0) }
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  mix-blend-mode: difference;
  color: #fff;
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 500;
}
.nav__brand-mark { color: var(--accent); font-size: 14px; }
.nav__brand-name { letter-spacing: .25em; }

.nav__links {
  display: flex; gap: 28px;
  justify-self: center;
}
.nav__links a {
  position: relative;
  padding-bottom: 4px;
  transition: color .25s var(--easing);
}
.nav__links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .35s var(--easing);
}
.nav__links a:hover::after { width: 100%; }

.nav__meta {
  display: flex; align-items: center; gap: 12px;
  justify-self: end;
  color: var(--fg-dim);
}
.nav__dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; padding: 16px 20px; }
  .nav__links { display: none; }
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  width: 100%; min-height: 100vh;
  overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 120px 32px 80px;
}

.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s var(--easing), transform 8s linear;
  filter: grayscale(15%) contrast(1.05) brightness(.65);
}
.hero__img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.1) 30%, rgba(0,0,0,.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.hero__tag {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.tag__line {
  display: inline-block;
  width: 48px; height: 1px;
  background: var(--accent);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(60px, 13vw, 220px);
  line-height: .88;
  letter-spacing: -.02em;
  text-transform: uppercase;
  display: flex; flex-wrap: wrap;
  gap: 0 .15em;
}
.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(120%);
  animation: wordIn 1s var(--easing) forwards;
}
.word--outline {
  -webkit-text-stroke: 1.5px currentColor;
  color: transparent !important;
}
@keyframes wordIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Variante BLAZE : nom d'artiste lettre par lettre */
.hero__title--blaze {
  gap: 0;
  font-size: clamp(80px, 22vw, 380px);
  letter-spacing: -.04em;
  line-height: .85;
}
.hero__title--blaze .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(120%) rotate(6deg);
  animation: letterIn .9s var(--easing) forwards;
  transition: transform .6s var(--easing), color .4s var(--easing);
}
.hero__title--blaze .letter:nth-child(1) { animation-delay: .15s; }
.hero__title--blaze .letter:nth-child(2) { animation-delay: .22s; }
.hero__title--blaze .letter:nth-child(3) { animation-delay: .29s; }
.hero__title--blaze .letter:nth-child(4) { animation-delay: .36s; }
.hero__title--blaze .letter:nth-child(5) { animation-delay: .43s; }
.hero__title--blaze .letter:nth-child(6) { animation-delay: .50s; }
.hero__title--blaze .letter:nth-child(7) { animation-delay: .57s; }

.hero__title--blaze .letter:hover { transform: translateY(-8px) rotate(-3deg); color: var(--accent); }

.hero__title--blaze .letter--sign {
  -webkit-text-stroke: 2px var(--accent);
  color: transparent;
  font-style: italic;
  margin-left: .04em;
}
.hero__title--blaze .letter--sign:hover {
  color: var(--accent);
  -webkit-text-stroke: 2px var(--accent);
}

@keyframes letterIn {
  to { opacity: 1; transform: translateY(0) rotate(0deg); }
}

/* Sous-titre sous le blaze */
.hero__subtitle {
  display: flex; align-items: center; gap: 16px;
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--fg-dim);
  opacity: 0;
  animation: fadeUp .9s var(--easing) .85s forwards;
}
.hero__subtitle-line {
  flex: 0 0 48px;
  height: 1px;
  background: var(--fg-dim);
}
.hero__subtitle-line:last-child { flex: 1; max-width: 200px; }

.hero__sub {
  margin-top: 36px;
  max-width: 540px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-dim);
  opacity: 0;
  animation: fadeUp .9s var(--easing) 1.2s forwards;
}
.hero__sub a { color: var(--fg); border-bottom: 1px solid var(--accent); padding-bottom: 1px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__controls {
  margin-top: 40px;
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s var(--easing) 1.4s forwards;
}

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: background .3s var(--easing), color .3s var(--easing), border-color .3s var(--easing);
}
.btn svg { width: 16px; height: 16px; }
.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover { background: #fff; color: #000; border-color: #fff; }
.btn--ghost { color: #fff; }
.btn--ghost:hover { background: #fff; color: #000; }

/* Hero bottom HUD */
.hero__bottom {
  position: relative; z-index: 2;
  margin-top: 80px;
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.hero__counter {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--fg);
  display: flex; align-items: baseline; gap: 8px;
  line-height: 1;
}
.hero__counter .sep, .hero__counter .tot { color: var(--fg-faint); font-size: 22px; }

.hero__scroll {
  display: flex; align-items: center; gap: 14px;
}
.scroll-line {
  display: inline-block;
  width: 60px; height: 1px;
  background: var(--fg-dim);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; left: -100%; top: 0;
  width: 100%; height: 100%;
  background: var(--fg);
  animation: scrollLine 2.5s var(--easing) infinite;
}
@keyframes scrollLine {
  0%   { left: -100%; }
  60%  { left: 100%; }
  100% { left: 100%; }
}

.hero__exif { display: flex; gap: 18px; }

@media (max-width: 700px) {
  .hero__bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero__exif { gap: 12px; }
}

/* ================================================================
   TICKER
   ================================================================ */
.ticker {
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg);
  padding: 18px 0;
}
.ticker__track {
  display: flex; gap: 60px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: .04em;
  text-transform: uppercase;
  animation: tick 28s linear infinite;
  color: var(--fg);
}
.ticker__track span:nth-child(odd) { color: var(--accent); }
@keyframes tick {
  to { transform: translateX(-50%); }
}

/* ================================================================
   SECTIONS HEAD
   ================================================================ */
.section-head {
  padding: 100px 32px 48px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 24px;
}
.section-head__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--accent);
}
.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 120px);
  line-height: .9;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.section-head__desc {
  font-size: 14px;
  color: var(--fg-dim);
  max-width: 340px;
  justify-self: end;
  text-align: right;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; }
  .section-head__desc { justify-self: start; text-align: left; max-width: none; }
}

/* ================================================================
   INDEX — galerie horizontale
   ================================================================ */
.index { position: relative; padding-bottom: 80px; }

.index__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: none;
}
.index__track {
  display: flex;
  gap: 32px;
  padding: 24px 64px;
  will-change: transform;
  transition: transform .8s var(--easing-soft);
}

.index-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(280px, 32vw, 480px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111;
  cursor: none;
}
.index-card:nth-child(odd)  { transform: translateY(0); }
.index-card:nth-child(even) { transform: translateY(40px); }

.index-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(.85);
  transition: transform 1.2s var(--easing), filter .6s var(--easing);
}
.index-card:hover img { transform: scale(1.06); filter: grayscale(0%) brightness(1); }

.index-card__meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px;
  display: flex; justify-content: space-between; align-items: end;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.85));
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s var(--easing), transform .4s var(--easing);
}
.index-card:hover .index-card__meta { opacity: 1; transform: translateY(0); }

.index-card__num { color: var(--accent); }
.index-card__view { display: flex; align-items: center; gap: 6px; }

/* HUD */
.index__hud {
  margin: 24px auto 0;
  padding: 0 64px;
  max-width: 1400px;
  display: flex; align-items: center; gap: 24px;
}
.hud__bar {
  flex: 1;
  height: 1px;
  background: var(--line-2);
  position: relative;
}
.hud__progress {
  position: absolute; left: 0; top: 0;
  width: 0%; height: 100%;
  background: var(--accent);
  transition: width .3s var(--easing);
}
.hud__nav { display: flex; gap: 8px; }
.hud__btn {
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  color: var(--fg);
  transition: background .25s var(--easing), border-color .25s var(--easing);
}
.hud__btn:hover { background: var(--accent); border-color: var(--accent); }
.hud__btn svg { width: 18px; height: 18px; }

@media (max-width: 700px) {
  .index__track { padding: 24px; gap: 18px; }
  .index-card { width: 75vw; }
  .index__hud { padding: 0 24px; }
}

/* ================================================================
   DISPATCH — reportage Lyon 06.06.26
   ================================================================ */
.dispatch {
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(255,45,45,.08), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
  padding: 100px 32px 120px;
  overflow: hidden;
}
.dispatch::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0 14px,
    transparent 14px 28px
  );
}

.dispatch__head {
  max-width: 1400px;
  margin: 0 auto 56px;
}
.dispatch__head-top {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 24px;
}
.dispatch__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 500;
}
.dispatch__badge-dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
}
.dispatch__date {
  font-family: var(--font-mono);
  letter-spacing: .25em;
  color: var(--fg);
}

.dispatch__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 11vw, 180px);
  line-height: .88;
  letter-spacing: -.02em;
  text-transform: uppercase;
  display: flex; flex-wrap: wrap;
  gap: 0 .18em;
  margin-bottom: 36px;
}
.dispatch__title .accent { color: var(--accent); font-style: italic; }
.dispatch__title-outline {
  -webkit-text-stroke: 1.5px var(--fg);
  color: transparent;
}

.dispatch__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.dispatch__meta-block {
  padding: 18px 18px 18px 0;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.dispatch__meta-block:last-child { border-right: none; }
.dispatch__meta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.dispatch__meta-value {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg);
  letter-spacing: .04em;
}
@media (max-width: 800px) {
  .dispatch__meta { grid-template-columns: repeat(2, 1fr); }
  .dispatch__meta-block:nth-child(2n) { border-right: none; }
  .dispatch__meta-block:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

.dispatch__lead {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-dim);
}
.dispatch__lead::first-letter {
  font-family: var(--font-display);
  font-size: 60px;
  float: left;
  line-height: .9;
  margin: 4px 12px 0 0;
  color: var(--accent);
}

/* Grille mosaïque */
.dispatch__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 10px;
}
.dispatch__tile {
  position: relative;
  margin: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: none;
  filter: grayscale(15%) contrast(1.05);
  transition: filter .5s var(--easing), transform .5s var(--easing);
}
.dispatch__tile::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.85));
  opacity: 0;
  transition: opacity .35s var(--easing);
}
.dispatch__tile:hover {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.005);
  z-index: 2;
}
.dispatch__tile:hover::before { opacity: 1; }

.dispatch__tile--xl { grid-column: span 8; grid-row: span 4; }
.dispatch__tile--md { grid-column: span 4; grid-row: span 3; }
.dispatch__tile--sm { grid-column: span 4; grid-row: span 2; }

.dispatch__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s var(--easing), transform .35s var(--easing);
}
.dispatch__cap span:first-child { color: var(--accent); }
.dispatch__tile:hover .dispatch__cap { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .dispatch__grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 90px; }
  .dispatch__tile--xl { grid-column: span 6; grid-row: span 4; }
  .dispatch__tile--md { grid-column: span 3; grid-row: span 3; }
  .dispatch__tile--sm { grid-column: span 3; grid-row: span 2; }
}

.dispatch__quote {
  max-width: 900px;
  margin: 80px auto 0;
  padding: 48px 32px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.dispatch__quote-mark {
  position: absolute;
  top: 12px; left: 32px;
  font-family: var(--font-display);
  font-size: 100px;
  color: var(--accent);
  line-height: .8;
}
.dispatch__quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.15;
  letter-spacing: -.01em;
  padding-left: 80px;
  color: var(--fg);
}
.dispatch__quote cite {
  display: block;
  margin-top: 24px;
  padding-left: 80px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
@media (max-width: 700px) {
  .dispatch__quote blockquote, .dispatch__quote cite { padding-left: 0; }
  .dispatch__quote-mark { left: 0; top: -10px; font-size: 60px; }
}

/* Badge NEW dans la nav */
.nav__new {
  font-size: 8px;
  color: var(--accent);
  margin-left: 4px;
  letter-spacing: .15em;
  font-weight: 600;
}

/* ================================================================
   MANIFEST
   ================================================================ */
.manifest {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 120px 32px;
}
.manifest__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}
.manifest__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 110px);
  line-height: .9;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-top: 24px;
}
.manifest__title span { display: block; }
.manifest__title .accent { color: var(--accent); font-style: italic; }
.manifest__right { padding-top: 60px; }
.manifest__text {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--fg-dim);
  max-width: 460px;
}
.manifest__list {
  list-style: none;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.manifest__list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  display: flex; gap: 14px;
}
.manifest__list li span { color: var(--accent); }
@media (max-width: 900px) {
  .manifest__inner { grid-template-columns: 1fr; gap: 40px; }
  .manifest__right { padding-top: 0; }
}

/* ================================================================
   ROLLS
   ================================================================ */
.rolls { padding-bottom: 80px; }
.rolls__grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex; flex-direction: column;
  gap: 56px;
}
.roll {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.roll__head {
  display: flex; align-items: baseline; gap: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--fg-dim);
}
.roll__id { color: var(--accent); }
.roll__title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: .04em;
  color: var(--fg);
}
.roll__strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.roll__frame {
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: none;
  filter: grayscale(25%);
  transition: filter .5s var(--easing), transform .5s var(--easing);
}
.roll__frame::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.55));
  opacity: 0;
  transition: opacity .35s var(--easing);
}
.roll__frame:hover {
  filter: grayscale(0%);
  transform: translateY(-4px);
}
.roll__frame:hover::before { opacity: 1; }

@media (max-width: 700px) {
  .rolls__grid { padding: 0 20px; }
  .roll__strip { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact {
  padding: 120px 32px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.contact__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 220px);
  line-height: .85;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 16px 0 32px;
}
.contact__title .accent { color: var(--accent); font-style: italic; }
.contact__desc {
  font-size: 17px;
  color: var(--fg-dim);
  max-width: 540px;
  margin-bottom: 64px;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact__card {
  position: relative;
  padding: 36px 28px;
  display: flex; flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--line);
  transition: background .35s var(--easing);
  overflow: hidden;
}
.contact__card:last-child { border-right: none; }
.contact__card:hover:not(.contact__card--static) { background: var(--accent); color: #fff; }

.contact__card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  transition: color .25s var(--easing);
}
.contact__card:hover:not(.contact__card--static) .contact__card-label { color: rgba(255,255,255,.85); }
.contact__card-value {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 38px);
  letter-spacing: .02em;
}
.contact__card-arrow {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 24px;
  transition: transform .4s var(--easing);
}
.contact__card:hover .contact__card-arrow { transform: translate(4px, -4px) rotate(0deg); }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__card { border-right: none; border-bottom: 1px solid var(--line); }
  .contact__card:last-child { border-bottom: none; }
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  margin-top: 60px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.footer__center { color: var(--fg-faint); font-style: italic; }
.footer__credit {
  color: var(--fg);
  font-style: normal;
  font-weight: 500;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  margin-left: 4px;
  transition: color .25s var(--easing), letter-spacing .35s var(--easing);
  display: inline-flex; align-items: baseline; gap: 4px;
}
.footer__credit:hover { color: var(--accent); letter-spacing: .25em; }
.footer__credit-arrow {
  display: inline-block;
  transition: transform .35s var(--easing);
}
.footer__credit:hover .footer__credit-arrow { transform: translate(3px, -3px); }
@media (max-width: 700px) {
  .footer { flex-direction: column; gap: 12px; text-align: center; }
}

/* ================================================================
   LIGHTBOX
   ================================================================ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 500;
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--easing), visibility .5s var(--easing);
}
.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(5,5,5,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.lightbox__figure {
  position: relative;
  max-width: 78vw;
  max-height: 84vh;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  transform: scale(.94);
  transition: transform .6s var(--easing);
}
.lightbox.is-open .lightbox__figure { transform: scale(1); }

.lightbox__figure img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}

.lightbox__cap {
  display: flex; gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.lightbox__cap span:first-child { color: var(--accent); }

.lightbox__close, .lightbox__nav {
  position: absolute;
  z-index: 2;
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,.25);
  display: grid; place-items: center;
  color: #fff;
  transition: background .25s var(--easing), border-color .25s var(--easing);
}
.lightbox__close { top: 28px; right: 28px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 28px; }
.lightbox__nav--next { right: 28px; }
.lightbox__close:hover, .lightbox__nav:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.lightbox__close svg, .lightbox__nav svg { width: 18px; height: 18px; }

@media (max-width: 700px) {
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__nav--prev { left: 14px; }
  .lightbox__nav--next { right: 14px; }
  .lightbox__close { top: 14px; right: 14px; width: 40px; height: 40px; }
  .lightbox__figure { max-width: 92vw; }
}

/* ================================================================
   APPARITIONS (IntersectionObserver)
   ================================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--easing), transform .9s var(--easing); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
