/* ============================================
   PORTFOLIO — VIDÉASTE & PHOTOGRAPHE
   Style : créatif & expérimental
   ============================================ */

:root {
  /* ===== WARM CINEMA GLASS — Palette ===== */
  --bg: #0d0709;
  --bg-alt: #1a0e0a;
  --bg-card: rgba(255, 255, 255, 0.04);
  --fg: #fafafa;
  --fg-dim: #a8a29e;
  --fg-dimmer: #78716c;

  /* Warm accents (orange brûlé → rouille) */
  --accent: #f97316;
  --accent-2: #fb923c;
  --accent-3: #c2410c;
  --accent-glow: rgba(249, 115, 22, 0.4);

  /* Indigo en contraste (cards spéciales, liens, accents secondaires) */
  --indigo: #6366f1;
  --indigo-2: #a5b4fc;

  /* Liquid glass tokens */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-strong: rgba(255, 255, 255, 0.08);
  --glass-bg-warm: rgba(249, 115, 22, 0.06);
  --glass-border: rgba(255, 255, 255, 0.10);
  --glass-border-strong: rgba(255, 255, 255, 0.18);
  --glass-shine: rgba(255, 255, 255, 0.18);

  /* Lines */
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);

  /* ===== TYPOGRAPHIE ===== */
  --f-display: 'Playfair Display', Georgia, serif;
  --f-body: 'Inter Tight', -apple-system, sans-serif;
  --f-sans: 'Inter Tight', sans-serif;
  --f-mono: 'JetBrains Mono', 'SF Mono', Monaco, monospace;

  --ease: cubic-bezier(0.7, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  position: relative;
}

/* ============================================
   BLOBS ATMOSPHÉRIQUES (warm + indigo)
   Flottent en background partout sur le site
   ============================================ */
.warm-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.warm-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
}
.warm-blob--1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--accent) 0%, var(--accent-3) 50%, transparent 70%);
  top: -10%; left: 50%;
  transform: translateX(-50%);
  opacity: 0.35;
  animation: warm-pulse 20s ease-in-out infinite;
}
.warm-blob--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--indigo), transparent 70%);
  bottom: 5%; right: -100px;
  opacity: 0.18;
  animation: indigo-float 28s ease-in-out infinite;
}
.warm-blob--3 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-2), transparent 70%);
  top: 65%; left: -150px;
  opacity: 0.15;
  animation: warm-float 32s ease-in-out infinite;
}
@keyframes warm-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.35; }
  50% { transform: translateX(-50%) scale(1.15); opacity: 0.5; }
}
@keyframes indigo-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30vw, -20vh); }
}
@keyframes warm-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40vw, -10vh); }
}

/* Scan lines subtle — effet écran cinéma */
body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.04) 50%);
  background-size: 100% 3px;
}

/* ============================================
   GLASS UTILITY — Liquid Glass partout
   ============================================ */
.glass {
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow:
    inset 0 1px 0 var(--glass-shine),
    0 8px 32px rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
  body { cursor: auto; }
}

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

/* ============================================
   BOUTON WHATSAPP FLOTTANT
   ============================================ */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 95;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #25d366;
  color: #ffffff;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35),
              0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.5s ease-out infinite;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.wa-fab:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  animation: none;
  color: #ffffff;
  text-decoration: none;
}
.wa-fab svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.wa-fab__label {
  white-space: nowrap;
  font-weight: 600;
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 700px) {
  .wa-fab {
    bottom: 18px;
    right: 18px;
    padding: 13px;
    gap: 0;
  }
  .wa-fab__label { display: none; }
  .wa-fab svg { width: 24px; height: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-fab { animation: none; }
}

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

/* ============================================
   VIEWFINDER OVERLAY (style viseur caméra)
   Brackets dans les coins + HUD REC/TC + meta caméra
   ============================================ */
.vf {
  position: absolute;
  inset: 80px 32px 80px 32px;
  pointer-events: none;
  z-index: 1;
}

/* Brackets en équerre dans les 4 coins */
.vf__bracket {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--accent);
  opacity: 0;
  animation: vf-bracketIn 0.9s 0.4s ease-out forwards;
}
.vf__bracket--tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.vf__bracket--tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.vf__bracket--bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.vf__bracket--br { bottom: 0; right: 0; border-left: none; border-top: none; }
@keyframes vf-bracketIn {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}

/* REC (point clignotant + label + clip ID) */
.vf__rec {
  position: absolute;
  top: 24px;
  left: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  opacity: 0;
  animation: vf-fadeIn 0.7s 1s forwards;
}
.vf__rec-dot {
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--accent), 0 0 4px var(--accent-2);
  animation: vf-blink 1.4s infinite;
}
.vf__rec-label {
  color: var(--accent-2);
  font-weight: 600;
  text-shadow: 0 0 8px rgba(249, 115, 22, 0.4);
}
.vf__rec-clip {
  color: rgba(250, 250, 250, 0.5);
}
@keyframes vf-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0.18; }
}

/* Time Code (compteur qui défile) */
.vf__tc {
  position: absolute;
  top: 24px;
  right: 64px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  opacity: 0;
  animation: vf-fadeIn 0.7s 1s forwards;
}

/* Réglages caméra en bas à gauche */
.vf__meta {
  position: absolute;
  bottom: 24px;
  left: 64px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  line-height: 1.6;
  opacity: 0;
  animation: vf-fadeIn 0.7s 1.2s forwards;
}
.vf__meta > div {
  display: flex;
  gap: 16px;
  color: rgba(242, 237, 228, 0.5);
}
.vf__meta-v {
  color: var(--accent);
  font-weight: 500;
}

/* Crosshair central (mire de visée) très subtil */
.vf__crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  opacity: 0;
  animation: vf-fadeIn 1s 1.6s forwards;
}
.vf__crosshair::before,
.vf__crosshair::after {
  content: '';
  position: absolute;
  background: var(--accent);
  opacity: 0.35;
}
.vf__crosshair::before {
  top: 50%; left: 0; right: 0;
  height: 1px; transform: translateY(-50%);
}
.vf__crosshair::after {
  left: 50%; top: 0; bottom: 0;
  width: 1px; transform: translateX(-50%);
}

@keyframes vf-fadeIn { to { opacity: 1; } }

@media (max-width: 900px) {
  .vf { inset: 70px 16px 70px 16px; }
  .vf__bracket { width: 28px; height: 28px; }
  .vf__rec { top: 16px; left: 40px; font-size: 9px; letter-spacing: 0.15em; }
  .vf__rec-clip { display: none; }
  .vf__tc { top: 16px; right: 40px; font-size: 9px; letter-spacing: 0.15em; }
  .vf__meta { display: none; }
  .vf__crosshair { display: none; }
}

/* ============================================
   CURSEUR CUSTOM
   ============================================ */
.cursor, .cursor-dot {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  top: 0; left: 0;
  mix-blend-mode: difference;
}
.cursor {
  width: 36px; height: 36px;
  border: 1px solid var(--fg);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--fg);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor.is-hover {
  width: 70px; height: 70px;
  border-color: var(--accent-2);
}
.cursor.is-play {
  width: 90px; height: 90px;
  background: var(--accent);
  border-color: var(--accent);
  mix-blend-mode: normal;
}
.cursor.is-play::after {
  content: 'PLAY';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--fg);
}

@media (max-width: 900px) {
  .cursor, .cursor-dot { display: none; }
}

/* ============================================
   NAVIGATION
   ============================================ */
/* ============================================
   NAV — Pill liquid glass flottante
   ============================================ */
.nav {
  position: fixed; top: 18px; left: 18px; right: 18px;
  z-index: 100;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--fg);
  border-radius: 100px;
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow:
    inset 0 1px 0 var(--glass-shine),
    0 8px 32px rgba(0, 0, 0, 0.4);
  transition: background 0.3s;
}
.nav:hover {
  background: var(--glass-bg-strong);
}
.nav__logo {
  font-family: var(--f-display);
  font-weight: 600;
  font-style: italic;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.nav__logo span {
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
}
.nav__links {
  display: flex; gap: 28px;
}
.nav__links a {
  font-family: var(--f-sans);
  font-size: 13px;
  letter-spacing: 0.02em;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  color: var(--fg-dim);
  transition: color 0.2s;
}
.nav__links a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover {
  color: var(--accent);
}
.nav__links a:hover::after {
  transform: scaleX(1); transform-origin: left;
}
.nav__cv {
  font-family: var(--f-sans);
  font-size: 13px;
  letter-spacing: 0.02em;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 100px;
  color: var(--bg);
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 4px 14px rgba(249, 115, 22, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}
.nav__cv:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 8px 22px rgba(249, 115, 22, 0.5);
}
.nav__burger { display: none; }

@media (max-width: 900px) {
  .nav { padding: 12px 22px; top: 12px; left: 12px; right: 12px; }
  .nav__links, .nav__cv { display: none; }
  .nav__burger {
    display: flex; flex-direction: column; gap: 5px;
    background: transparent; border: none; cursor: none;
  }
  .nav__burger span { width: 24px; height: 1.5px; background: var(--fg); }
  .nav__logo { font-size: 18px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__bg-fallback {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(200, 116, 58, 0.30) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(232, 182, 133, 0.10) 0%, transparent 50%),
    linear-gradient(140deg, #1f1610 0%, #0d0c0a 55%, #14110d 100%);
  filter: contrast(1.08);
  animation: slowdrift 30s ease-in-out infinite alternate;
}
@keyframes slowdrift {
  to { transform: scale(1.05) translate(-2%, -1%); }
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(13, 7, 9, 0.55) 0%, rgba(13, 7, 9, 0.85) 100%),
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(249, 115, 22, 0.18), transparent 70%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
/* ===== HERO STAMP (signature "Baye Dame · Prod") ===== */
.hero__stamp {
  display: inline-block;
  padding: 7px 16px;
  margin-bottom: 24px;
  border: 1.5px solid var(--accent);
  border-radius: 6px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(249, 115, 22, 0.06);
  backdrop-filter: blur(12px);
  transform: rotate(-1.5deg);
  font-weight: 500;
}

/* ===== HERO META (REC pill liquid glass) ===== */
.hero__meta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 9px 18px;
  margin-bottom: 36px;
  border-radius: 100px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 var(--glass-shine);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent-2);
  text-transform: uppercase;
}
.hero__meta-item { position: relative; }
.hero__meta-item + .hero__meta-item::before {
  content: '·';
  position: absolute;
  left: -10px; top: 50%;
  transform: translateY(-50%);
  color: var(--fg-dim);
}
/* Titre hero — Playfair gigantesque avec gradient warm sur italique */
.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(60px, 13vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 32px;
  color: var(--fg);
  text-shadow: 0 4px 80px rgba(249, 115, 22, 0.25);
}
.hero__title-amp {
  display: inline-block;
  font-style: italic;
  font-weight: 400;
  padding: 0 0.08em;
}
.hero__title-em {
  font-style: italic;
  font-weight: 400;
}
/* Le gradient doit être appliqué à l'inner span (le .reveal > span qui contient le texte),
   pas au wrapper, sinon background-clip:text + overflow:hidden = texte invisible */
.hero__title-amp > span,
.hero__title-em > span {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 50%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  max-width: 580px;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--fg-dim);
  margin-bottom: 44px;
}
.hero__cta {
  display: flex; gap: 14px;
  flex-wrap: wrap;
}
/* MARQUEE */
.marquee {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.marquee__track {
  display: flex; gap: 32px;
  font-family: var(--f-sans);
  font-size: 13px; letter-spacing: 0.25em; font-weight: 500;
  white-space: nowrap;
  animation: marquee var(--marquee-speed, 30s) linear infinite;
}
.marquee__track span:nth-child(even) { color: var(--accent); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================
   BUTTONS
   ============================================ */
/* ===== BUTTONS (glass + warm gradient) ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  font-family: var(--f-sans);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 100px;
  position: relative;
  cursor: none;
  border: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn--primary {
  color: var(--bg);
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 50%, var(--accent-3) 100%);
  font-weight: 600;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 0 0 1px rgba(249, 115, 22, 0.5),
    0 10px 26px rgba(249, 115, 22, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 0 0 1px rgba(249, 115, 22, 0.6),
    0 14px 32px rgba(249, 115, 22, 0.55);
}
.btn--ghost {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--fg);
  box-shadow: inset 0 1px 0 var(--glass-shine);
}
.btn--ghost:hover {
  background: var(--glass-bg-strong);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--full { width: 100%; justify-content: center; }
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* ============================================
   SECTION HEAD (commun)
   ============================================ */
.section-head {
  padding: 120px 40px 60px;
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px 60px;
  align-items: end;
  position: relative;
  z-index: 2;
}
.section-head__num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--accent);
  padding-top: 24px;
  position: relative;
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
}
.section-head__num::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 1.4s var(--ease) 0.4s;
}
.section-head.is-visible .section-head__num::after {
  width: 80px;
}
.section-head__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--fg);
}
.section-head__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 400;
}
.section-head__desc {
  grid-column: 2;
  font-size: 16px;
  color: var(--fg-dim);
  max-width: 500px;
}

@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; padding: 80px 20px 40px; gap: 20px; }
  .section-head__desc { grid-column: 1; }
}

/* ============================================
   MANIFESTO / STATEMENT — Playfair giant
   ============================================ */
.manifesto {
  padding: 140px 40px 140px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.manifesto__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  position: relative;
}
.manifesto::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 60px;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  transform: translateX(-50%);
}
.manifesto__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 80px;
}
.manifesto__text {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 4.5vw, 60px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 920px;
}
.manifesto__text em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.manifesto__signature {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  color: var(--fg-dim);
  letter-spacing: 0.02em;
}

@media (max-width: 700px) {
  .manifesto { padding: 80px 24px; }
  .manifesto__label { margin-top: 60px; font-size: 10px; letter-spacing: 0.25em; }
}

/* ============================================
   CONFIANCE / TRUST — stats glass cards + brands marquee
   ============================================ */
.trust {
  padding: 80px 40px 100px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.trust__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.trust__stat {
  text-align: center;
  padding: 36px 24px;
  border-radius: 24px;
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow:
    inset 0 1px 0 var(--glass-shine),
    0 10px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.trust__stat:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow:
    inset 0 1px 0 var(--glass-shine),
    0 20px 50px rgba(249, 115, 22, 0.3);
}
.trust__stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.trust__stat:hover::before { opacity: 1; }
.trust__num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.trust__label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--fg-dim);
  text-transform: uppercase;
  font-weight: 500;
}

.trust__brands-label {
  text-align: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
.trust__brands {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  background: var(--glass-bg);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.trust__brands-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: trust-marquee 40s linear infinite;
  align-items: center;
}
.trust__brands-track span {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(26px, 3.2vw, 42px);
  letter-spacing: -0.01em;
  color: var(--fg);
  flex-shrink: 0;
  transition: color 0.3s;
}
.trust__brands-track span:hover {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trust__brands-track span:nth-child(even) {
  color: var(--accent);
  font-size: 22px;
  opacity: 0.5;
  font-style: normal;
}
@keyframes trust-marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .trust__stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .trust__stat:nth-child(2)::after { display: none; }
}
@media (max-width: 500px) {
  .trust__stats { grid-template-columns: 1fr; gap: 28px; }
  .trust__stat::after { display: none !important; }
  .trust { padding: 60px 24px 80px; }
}

/* ============================================
   WORK / VIDÉOS
   ============================================ */
/* Toutes les sections au-dessus des blobs */
.hero, .work, .photo, .cv, .contact, .footer, .testimonials, .process, .faq, .pricing, .manifesto, .trust {
  position: relative;
  z-index: 2;
}

.work {
  padding-bottom: 120px;
}
/* Filtres travaux */
.work__filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 0 40px 40px;
  max-width: 1400px; margin: 0 auto;
}
.work__filter {
  padding: 9px 18px;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-family: var(--f-sans);
  font-size: 12px; letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--fg-dim);
  backdrop-filter: blur(20px);
  background: var(--glass-bg);
  box-shadow: inset 0 1px 0 var(--glass-shine);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.work__filter:hover {
  color: var(--fg);
  border-color: var(--glass-border-strong);
  background: var(--glass-bg-strong);
}
.work__filter.is-active {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: var(--bg);
  border-color: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 4px 14px rgba(249, 115, 22, 0.35);
  font-weight: 600;
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  padding: 0 40px;
  max-width: 1400px; margin: 0 auto;
}
.work__item {
  cursor: none;
  position: relative;
  transition: opacity 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow:
    inset 0 1px 0 var(--glass-shine),
    0 10px 30px rgba(0, 0, 0, 0.3);
}
.work__item:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 var(--glass-shine),
    0 20px 50px rgba(249, 115, 22, 0.3);
  border-color: rgba(249, 115, 22, 0.3);
}
.work__item.is-hidden { display: none; }
.work__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
  border-radius: 0;
}
.work__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.9) brightness(0.92);
}
.work__item:hover .work__thumb img {
  transform: scale(1.06);
  filter: saturate(1.1) brightness(1);
}
/* Badge SHORT discret en haut à droite des vidéos verticales */
.work__item--short::before {
  content: 'SHORT';
  position: absolute;
  top: 10px; right: 10px;
  z-index: 3;
  padding: 4px 10px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--bg);
  background: var(--accent);
  border-radius: 100px;
}
.work__thumb-fallback {
  width: 100%; height: 100%;
  transition: transform 0.8s var(--ease);
}
.work__thumb-fallback--1 { background: linear-gradient(135deg, #c8743a 0%, #1a110a 100%); }
.work__thumb-fallback--2 { background: linear-gradient(140deg, #2a1f17 0%, #0d0c0a 100%); }
.work__thumb-fallback--3 { background: linear-gradient(135deg, #1f1812 0%, #e8b685 220%); }
.work__thumb-fallback--4 { background: linear-gradient(160deg, #3a2418 0%, #0d0c0a 100%); }
.work__item:hover .work__thumb-fallback { transform: scale(1.06); }
.work__thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6));
  opacity: 0; transition: opacity 0.4s;
}
.work__item:hover .work__thumb::after { opacity: 1; }
.work__info {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 16px 4px;
  gap: 20px;
}
.work__info {
  padding: 18px 20px;
}
.work__cat {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent-2);
  text-transform: uppercase;
  font-weight: 500;
}
.work__info h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.2;
  flex: 1;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.work__year {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
}

@media (max-width: 1100px) {
  .work__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .work__grid { grid-template-columns: 1fr; padding: 0 20px; }
  .work__filters { padding: 0 20px 24px; }
}

/* ============================================
   PHOTO / GALERIE
   ============================================ */
.photo { padding-bottom: 120px; }

.photo__filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 0 40px 40px;
  max-width: 1400px; margin: 0 auto;
}
.photo__filter {
  padding: 9px 18px;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-family: var(--f-sans);
  font-size: 12px; letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--fg-dim);
  backdrop-filter: blur(20px);
  background: var(--glass-bg);
  box-shadow: inset 0 1px 0 var(--glass-shine);
  transition: all 0.3s;
}
.photo__filter:hover {
  color: var(--fg);
  border-color: var(--glass-border-strong);
  background: var(--glass-bg-strong);
}
.photo__filter.is-active {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: var(--bg);
  border-color: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 4px 14px rgba(249, 115, 22, 0.35);
  font-weight: 600;
}

.photo__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
  padding: 0 40px;
  max-width: 1400px; margin: 0 auto;
}
.photo__item {
  position: relative;
  overflow: hidden;
  cursor: none;
  background: var(--bg-alt);
  border-radius: 16px;
  transition: opacity 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.photo__item:hover {
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.3);
  transform: translateY(-3px);
}
.photo__item:nth-child(3n) { grid-row: span 2; }
.photo__item:nth-child(5n) { grid-column: span 2; }
.photo__item.is-hidden { display: none; }
.photo__placeholder,
.photo__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.7s var(--ease);
}
.photo__item img {
  display: block;
  filter: saturate(0.7) contrast(1.05) brightness(0.92);
}
.photo__item:hover img {
  transform: scale(1.06);
  filter: saturate(1.1) contrast(1.05) brightness(1);
}
.photo__placeholder--1 { background: linear-gradient(135deg, #2a1f17, #c8743a 220%); }
.photo__placeholder--2 { background: linear-gradient(160deg, #1a1612, #0d0c0a); }
.photo__placeholder--3 { background: linear-gradient(135deg, #3a2418, #14110d); }
.photo__placeholder--4 { background: linear-gradient(180deg, #e8b685 -120%, #0d0c0a); }
.photo__placeholder--5 { background: linear-gradient(135deg, #1f1812, #0d0c0a); }
.photo__placeholder--6 { background: linear-gradient(220deg, #3a2a1c, #0d0c0a); }
.photo__placeholder--7 { background: linear-gradient(135deg, #c8743a 0%, #1a110a 100%); }
.photo__placeholder--8 { background: linear-gradient(180deg, #241a14, #0d0c0a); }
.photo__item:hover .photo__placeholder { transform: scale(1.08); }
.photo__item figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 16px;
  font-family: var(--f-sans);
  font-size: 11px; letter-spacing: 0.15em;
  color: var(--fg);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  opacity: 0; transition: opacity 0.3s;
}
.photo__item:hover figcaption { opacity: 1; }

@media (max-width: 900px) {
  .photo__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; padding: 0 20px; gap: 8px; }
  .photo__filters { padding: 0 20px 24px; }
  .photo__item:nth-child(3n) { grid-row: span 1; }
  .photo__item:nth-child(5n) { grid-column: span 1; }
}

/* ============================================
   PARCOURS COMPACT (nouveau)
   ============================================ */
.cv__compact {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}
.cv__intro {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cv__chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.cv__chips-group { display: flex; flex-direction: column; gap: 10px; }
.cv__chips-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
}
.cv__download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent), var(--accent-3));
  color: var(--bg);
  border-radius: 100px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  width: fit-content;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 8px 24px rgba(249, 115, 22, 0.35);
}
.cv__download:hover {
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 14px 32px rgba(249, 115, 22, 0.55);
}
.cv__download svg { transition: transform 0.3s var(--ease); }
.cv__download:hover svg { transform: translateY(2px); }

@media (max-width: 900px) {
  .cv__compact {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
  .cv__portrait {
    max-width: 280px;
    margin: 0 auto;
  }
  .cv__chips { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================
   CV / PARCOURS
   ============================================ */
.cv {
  position: relative;
  z-index: 2;
  padding-bottom: 120px;
}
.cv__grid {
  max-width: 1400px; margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px 80px;
}
.cv__about {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.cv__portrait {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
}
.cv__portrait-fallback,
.cv__portrait img {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #c8743a 0%, #2a1810 50%, #0d0c0a 100%);
  object-fit: cover;
  display: block;
}
.cv__bio-lead {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.cv__bio-lead strong {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
  font-style: italic;
}
.cv__quick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}
.cv__quick > div {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-sans);
  font-size: 14px;
  color: var(--fg-dim);
}
.cv__quick span {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: 50%;
  font-size: 14px;
}
.cv__quick a:hover { color: var(--accent); }

.cv__h3 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}
.cv__h3--mt { margin-top: 40px; }

.cv__skills-list { display: flex; flex-direction: column; gap: 18px; }
.cv__skill span {
  display: block;
  font-family: var(--f-body);
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--fg);
}
.cv__bar {
  width: 100%; height: 2px;
  background: var(--line);
  position: relative;
}
.cv__bar i {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: var(--w, 50%);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.2s var(--ease);
}
.cv__bar.is-visible i { transform: scaleX(1); }

.cv__tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none;
}
.cv__tags li {
  padding: 8px 14px;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-family: var(--f-sans);
  font-size: 12px;
  color: var(--fg-dim);
  backdrop-filter: blur(20px);
  background: var(--glass-bg);
  font-weight: 500;
  transition: border-color 0.3s, color 0.3s;
}
.cv__tags li:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Timeline */
.cv__timeline { grid-column: 1; }
.cv__skills { grid-column: 2; grid-row: 2; }
.cv__clients { grid-column: 1 / -1; padding-top: 40px; border-top: 1px solid var(--line); }

.timeline {
  list-style: none;
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute; left: 8px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--line);
}
.timeline__item {
  position: relative;
  padding-bottom: 36px;
}
.timeline__item::before {
  content: '';
  position: absolute; left: -39px; top: 8px;
  width: 16px; height: 16px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--bg-alt);
  transition: background 0.3s;
}
.timeline__item:hover::before { background: var(--accent); }
.timeline__date {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
}
.timeline__item h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  margin: 8px 0 6px;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.timeline__item p {
  color: var(--fg-dim);
  font-size: 14px;
}

.cv__clients-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.cv__clients-list li {
  padding: 28px 16px;
  text-align: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  color: var(--fg-dim);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.3s var(--ease);
}
.cv__clients-list li:hover {
  background: var(--glass-bg-strong);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .cv__grid { grid-template-columns: 1fr; padding: 0 20px; gap: 40px; }
  .cv__about { grid-template-columns: 1fr; gap: 24px; }
  .cv__portrait { max-width: 240px; }
  .cv__timeline, .cv__skills, .cv__clients { grid-column: 1; grid-row: auto; }
  .cv__clients-list { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding-bottom: 120px;
}
.faq__list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq__item {
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 var(--glass-shine),
    0 6px 20px rgba(0, 0, 0, 0.2);
}
.faq__item:hover {
  border-color: var(--glass-border-strong);
  background: var(--glass-bg-strong);
}
.faq__item[open] {
  border-color: var(--accent);
  background: rgba(249, 115, 22, 0.06);
  box-shadow:
    inset 0 1px 0 var(--glass-shine),
    0 8px 26px rgba(249, 115, 22, 0.2);
}
.faq__item summary {
  list-style: none;
  cursor: none;
  padding: 22px 28px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--fg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  content: '';
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  background:
    linear-gradient(var(--accent), var(--accent)) center / 10px 1.5px no-repeat,
    linear-gradient(var(--accent), var(--accent)) center / 1.5px 10px no-repeat;
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after {
  background:
    linear-gradient(var(--accent), var(--accent)) center / 10px 1.5px no-repeat;
  transform: rotate(180deg);
}
.faq__item summary:hover {
  color: var(--accent);
}
.faq__answer {
  padding: 0 28px 24px;
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.75;
}
.faq__answer p {
  margin-bottom: 12px;
}
.faq__answer p:last-child {
  margin-bottom: 0;
}
.faq__answer strong {
  color: var(--fg);
  font-weight: 500;
}
.faq__answer ul {
  list-style: none;
  margin: 12px 0;
  padding-left: 0;
}
.faq__answer ul li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}
.faq__answer ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

@media (max-width: 700px) {
  .faq__list { padding: 0 20px; }
  .faq__item summary { padding: 18px 22px; font-size: 16px; }
  .faq__answer { padding: 0 22px 20px; font-size: 14px; }
}

/* ============================================
   PROCESS / COMMENT ÇA SE PASSE
   ============================================ */
.process {
  padding-bottom: 120px;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
  list-style: none;
  position: relative;
  counter-reset: process;
}
/* Ligne reliant les étapes */
.process__steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 80px;
  right: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 10%, var(--accent) 90%, transparent);
  opacity: 0.3;
  z-index: 0;
}
.process__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
}
.process__num {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  background: var(--glass-bg);
  border: 1.5px solid var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 24px;
  transition: all 0.4s var(--ease);
  box-shadow:
    inset 0 1px 0 var(--glass-shine),
    0 8px 24px rgba(0, 0, 0, 0.3);
}
.process__step:hover .process__num {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: var(--bg);
  transform: scale(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 12px 30px rgba(249, 115, 22, 0.5);
}
.process__body {
  padding: 0 12px;
}
.process__icon {
  font-size: 28px;
  margin-bottom: 12px;
  filter: grayscale(0.1);
}
.process__step h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.2;
  color: var(--fg);
}
.process__step p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--fg-dim);
}
.process__step p strong {
  color: var(--accent);
  font-weight: 500;
}

@media (max-width: 1100px) {
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
  .process__steps::before { display: none; }
}
@media (max-width: 600px) {
  .process__steps {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 28px;
  }
  .process__step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 18px;
  }
  .process__num {
    width: 56px;
    height: 56px;
    font-size: 22px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .process__body { padding: 0; flex: 1; }
  .process__icon { font-size: 22px; margin-bottom: 6px; }
}

/* ============================================
   TARIFS / PACKAGES
   ============================================ */
.pricing {
  padding-bottom: 120px;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.pack {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.pack:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.pack--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(200, 116, 58, 0.05), var(--bg-alt));
}
.pack--featured:hover {
  border-color: var(--accent);
}
.pack__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--accent);
  color: var(--fg);
  border-radius: 100px;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pack__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.pack__cat {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent);
  font-weight: 500;
}
.pack h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.pack h3 em {
  font-style: italic;
  color: var(--accent);
}
.pack__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
}
.pack__price-from {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.pack__price strong {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.pack__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pack__features li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg);
  padding-left: 24px;
  position: relative;
}
.pack__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 600;
}
.pack__features li span {
  color: var(--fg-dim);
  font-size: 13px;
}
.pack__features strong {
  color: var(--accent);
  font-weight: 600;
}
.pack__cta {
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  margin-top: auto;
}
.pack__cta:hover {
  background: var(--accent);
  color: var(--fg);
  border-color: var(--accent);
}
.pack--featured .pack__cta {
  background: var(--accent);
  color: var(--fg);
  border-color: var(--accent);
}
.pack--featured .pack__cta:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.pricing__note {
  max-width: 800px;
  margin: 48px auto 0;
  padding: 24px 40px;
  text-align: center;
}
.pricing__note p {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-dim);
}
.pricing__note strong {
  color: var(--fg);
  font-style: normal;
  font-family: var(--f-body);
  font-weight: 500;
}

@media (max-width: 1100px) {
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .pricing__grid { grid-template-columns: 1fr; padding: 0 20px; }
  .pack { padding: 28px 22px; }
  .pack h3 { font-size: 24px; }
  .pack__price strong { font-size: 26px; }
  .pricing__note { padding: 24px 20px; }
  .pricing__note p { font-size: 16px; }
}

/* ============================================
   TÉMOIGNAGES
   ============================================ */
.testimonials {
  padding-bottom: 120px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.tcard {
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: all 0.4s var(--ease);
  box-shadow:
    inset 0 1px 0 var(--glass-shine),
    0 10px 30px rgba(0, 0, 0, 0.3);
}
.tcard:hover {
  background: var(--glass-bg-strong);
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 var(--glass-shine),
    0 20px 50px rgba(249, 115, 22, 0.25);
}
.tcard__quote-icon {
  font-family: var(--f-display);
  font-size: 80px;
  line-height: 0.5;
  color: var(--accent);
  height: 32px;
  opacity: 0.6;
}
.tcard__stars {
  display: flex;
  gap: 3px;
  font-size: 16px;
  letter-spacing: 0;
  color: var(--accent-2);
}
.tcard__stars--off { color: var(--line-strong); }
.tcard__message {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  flex: 1;
}
.tcard__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.tcard__name {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.tcard__role {
  font-family: var(--f-sans);
  font-size: 12px;
  color: var(--fg-dim);
}
.tcard__project {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  background: rgba(200, 116, 58, 0.15);
  border: 1px solid var(--accent);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  width: fit-content;
}

@media (max-width: 1100px) {
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .testimonials__grid { grid-template-columns: 1fr; padding: 0 20px; }
  .tcard { padding: 24px 22px; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px; margin: 0 auto;
  padding: 120px 40px;
  position: relative;
  z-index: 2;
}
.contact__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 24px 0 32px;
  color: var(--fg);
}
.contact__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 400;
}
.contact__title span { display: block; }
.contact__intro {
  font-size: 17px;
  color: var(--fg-dim);
  max-width: 420px;
  margin-bottom: 60px;
}
.contact__channels { display: flex; flex-direction: column; gap: 20px; }
.contact__channels a {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 18px 20px;
  align-items: baseline;
  transition: padding-left 0.3s, background 0.3s, border-color 0.3s;
  border-radius: 16px;
  border: 1px solid transparent;
  backdrop-filter: blur(20px);
}
.contact__channels a:hover {
  padding-left: 28px;
  background: var(--glass-bg);
  border-color: var(--glass-border);
}
.contact__channels span {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.25em;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
}
.contact__channels strong {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.contact__channels a:hover strong {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact__form {
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  background: var(--glass-bg);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  box-shadow:
    inset 0 1px 0 var(--glass-shine),
    0 12px 40px rgba(0, 0, 0, 0.4);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--accent-2);
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  backdrop-filter: blur(20px);
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-dimmer); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}
.field select { cursor: none; appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--fg) 50%), linear-gradient(-45deg, transparent 50%, var(--fg) 50%); background-position: calc(100% - 14px) 18px, calc(100% - 8px) 18px; background-size: 6px 6px; background-repeat: no-repeat; }
.field select option { background: var(--bg-alt); color: var(--fg); }
.field textarea { resize: vertical; }

.contact__success,
.contact__error {
  margin-top: 20px;
  padding: 14px;
  font-family: var(--f-sans);
  font-size: 13px;
  text-align: center;
  border-radius: 4px;
  display: none;
}
.contact__success {
  background: rgba(232, 182, 133, 0.12);
  border: 1px solid var(--accent-2);
  color: var(--accent-2);
}
.contact__error {
  background: rgba(255, 80, 60, 0.10);
  border: 1px solid #ff503c;
  color: #ff8775;
}
.contact__success.is-visible,
.contact__error.is-visible { display: block; }

.contact__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

[data-submit]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; padding: 80px 20px; gap: 60px; }
  .contact__form { padding: 24px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: transparent;
  padding: 80px 40px 40px;
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 2;
}
.footer__big {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-align: center;
  margin-bottom: 60px;
  user-select: none;
  background: linear-gradient(180deg, var(--fg) 0%, var(--accent-2) 60%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer__big-dot {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer__cols {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.footer__cols span {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 500;
}
.footer__cols a {
  display: block;
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--fg-dim);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer__cols a:hover { color: var(--fg); }
.footer__copy {
  font-size: 12px;
  color: var(--fg-dim);
  margin-top: 24px;
}

@media (max-width: 900px) {
  .footer { padding: 60px 20px 32px; }
  .footer__cols { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,10,10,0.96);
  display: none;
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  backdrop-filter: blur(20px);
}
.lightbox.is-visible { display: flex; opacity: 1; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  font-size: 24px;
  color: var(--fg);
  transition: background 0.3s, transform 0.3s;
}
.lightbox__close { top: 32px; right: 32px; }
.lightbox__prev { left: 32px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 32px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: var(--accent); border-color: var(--accent); }
.lightbox__content { max-width: 90vw; max-height: 85vh; text-align: center; }
.lightbox__content img { max-width: 100%; max-height: 80vh; object-fit: contain; }
.lightbox__content p {
  margin-top: 16px;
  font-family: var(--f-sans);
  font-size: 12px; letter-spacing: 0.2em;
  color: var(--fg-dim);
}

/* VIDEO MODAL */
.vmodal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,10,10,0.96);
  display: none;
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  backdrop-filter: blur(20px);
}
.vmodal.is-visible { display: flex; opacity: 1; }
.vmodal__close {
  position: absolute; top: 32px; right: 32px;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  font-size: 24px;
  color: var(--fg);
}
.vmodal__close:hover { background: var(--accent); border-color: var(--accent); }
.vmodal__wrap {
  width: 90vw; max-width: 1200px;
  aspect-ratio: 16/9;
}
.vmodal__wrap iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   REVEAL ANIMATIONS (scroll)
   ============================================ */
.reveal {
  display: inline-block;
  overflow: hidden;
}
.reveal > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
}
.reveal.is-visible > span,
body.is-loaded .hero .reveal > span {
  transform: translateY(0);
}
.hero .reveal > span { transition-delay: 0.1s; }
.hero .reveal:nth-of-type(2) > span { transition-delay: 0.2s; }
.hero .reveal:nth-of-type(3) > span { transition-delay: 0.3s; }
.hero .reveal:nth-of-type(4) > span { transition-delay: 0.5s; }

/* SPLIT TEXT — mots qui montent un par un */
[data-split] .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
}
[data-split] .word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
  transition-delay: calc(var(--i, 0) * 0.07s);
}
[data-split].is-visible .word > span {
  transform: translateY(0);
}
/* Pour les titres avec em cursif, accélère la révélation du mot cursif */
[data-split] em .word > span {
  transition-duration: 1.2s;
  transition-delay: calc(var(--i, 0) * 0.07s + 0.15s);
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal > span { transform: none; }
  .fade-up { opacity: 1; transform: none; }
}

/* ============================================
   FX CINÉMA — effets premium (desktop, motion OK)
   Activés via la classe .fx sur <html> (script inline du head)
   ============================================ */

/* 1) RACK FOCUS — la séquence du hero fait sa mise au point à l'ouverture */
.fx .hero__bg {
  filter: blur(20px) saturate(1.15) brightness(0.85);
  transform: scale(1.09);
  transition: filter 1.6s var(--ease), transform 1.8s var(--ease);
}
.fx.is-loaded .hero__bg,
.fx .is-loaded .hero__bg {
  filter: blur(0) saturate(1) brightness(1);
  transform: scale(1);
}
/* le viseur (HUD) apparaît une fois la mise au point faite */
.fx .vf { opacity: 0; transition: opacity 1s ease 0.9s; }
.fx .is-loaded .vf { opacity: 1; }

/* 2) CARTES 3D + reflet — préparation */
.fx .work__item,
.fx .photo__item {
  transform-style: preserve-3d;
  transition: transform 0.45s var(--ease), box-shadow 0.4s, border-color 0.4s;
  will-change: transform;
}
/* le JS pilote le transform au survol : on désactive le translate du hover CSS */
.fx .work__item:hover,
.fx .photo__item:hover { transform: none; }

/* Reflet lumineux chaud qui suit le curseur (verre éclairé) */
.fx-sheen {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.45s ease;
  background:
    radial-gradient(circle 220px at var(--mx, 50%) var(--my, 50%),
      rgba(255, 196, 128, 0.32), transparent 60%);
  mix-blend-mode: screen;
}
.fx .work__item:hover .fx-sheen,
.fx .photo__item:hover .fx-sheen { opacity: 1; }

/* 3) BOUTONS MAGNÉTIQUES — retour fluide à la position */
.fx .btn--primary {
  transition: transform 0.3s var(--ease), box-shadow 0.4s, background 0.3s;
  will-change: transform;
}

/* ============================================
   FX CINÉMA — ROUND 2 « HUD CAMÉRA »
   ============================================ */

/* --- A) Curseur réticule d'autofocus --- */
.cursor { mix-blend-mode: normal; border: none; border-radius: 0; }
.cursor-dot { background: var(--accent-2); mix-blend-mode: normal; }
.cursor__c {
  position: absolute;
  width: 9px; height: 9px;
  border: 1.5px solid var(--fg);
  opacity: 0.85;
  transition: all 0.25s var(--ease);
}
.cursor__c--tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.cursor__c--tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.cursor__c--bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.cursor__c--br { bottom: 0; right: 0; border-left: none; border-top: none; }
.cursor__tag {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 8px; letter-spacing: 0.2em;
  color: var(--accent-2);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s;
}
/* survol lien/bouton : réticule s'élargit, couleur accent */
.cursor.is-hover .cursor__c { border-color: var(--accent-2); width: 12px; height: 12px; }
.cursor.is-hover .cursor__tag { opacity: 0.9; }
/* survol vidéo : verrouillage AF — équerres plus épaisses + ▶ PLAY */
.cursor.is-play { background: transparent; border: none; }
.cursor.is-play .cursor__c { border-color: var(--accent); width: 18px; height: 18px; border-width: 2px; }
.cursor.is-play::after {
  content: '▶ PLAY';
  position: absolute;
  inset: auto;
  top: 50%; left: 50%;
  display: block;
  transform: translate(-50%, -50%);
  font-family: var(--f-sans);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--accent);
  white-space: nowrap;
}

/* --- B) Barre de progression « pellicule » en haut --- */
.scrub {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 9000;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.10) 0 5px, transparent 5px 11px); /* perforations */
  pointer-events: none;
}
.scrub__bar {
  height: 100%;
  width: var(--scroll, 0%);
  background: linear-gradient(90deg, var(--accent-3), var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.7);
  transition: width 0.1s linear;
}

/* --- C) Timecode HUD au scroll (bas-gauche) --- */
.hud-scroll {
  position: fixed;
  left: 18px; bottom: 16px;
  z-index: 80;
  display: flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.18em;
  color: var(--fg-dim);
  background: rgba(13, 7, 9, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s;
}
.fx .hud-scroll { opacity: 1; transform: none; }
.hud-scroll__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #e5484d;
  box-shadow: 0 0 8px #e5484d;
  animation: hudPulse 1.4s infinite;
}
@keyframes hudPulse { 0%,49%{opacity:1} 50%,100%{opacity:0.2} }
.hud-scroll__tc { color: var(--fg); }
.hud-scroll__sep { opacity: 0.4; }
@media (max-width: 700px) { .hud-scroll { display: none; } }

/* --- D) Effet décodage (texte qui s'assemble) --- */
.is-decoding { color: var(--accent-2) !important; }
