/* =========================================================
   Visual Labs — Studio de création & production audiovisuelle
   DA : noir chaud + doré champagne, la vidéo au centre.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg:        #1b1a1c;   /* noir chaud — signature studio */
  --bg-elev:   #221f23;
  --bg-card:   #201d21;
  --text:      #f5f1e9;   /* crème chaud */
  --text-dim:  #a49e92;   /* taupe clair */
  --text-mute: #726b60;   /* taupe */
  --line:      rgba(245, 241, 233, 0.11);
  --line-soft: rgba(245, 241, 233, 0.06);

  /* Doré champagne — accent de marque Visual Labs */
  --gold:      #cfb580;
  --gold-soft: #e0c99e;
  --gold-deep: #b7995e;
  --gold-line: rgba(207, 181, 128, 0.30);
  --accent:    var(--gold);

  --max:       1320px;
  --gutter:    clamp(20px, 5vw, 72px);

  --step--1: clamp(0.78rem, 0.74rem + 0.2vw, 0.85rem);
  --step-0:  clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --step-1:  clamp(1.2rem, 1rem + 0.9vw, 1.6rem);
  --step-2:  clamp(1.8rem, 1.3rem + 2.4vw, 3rem);
  --step-3:  clamp(2.6rem, 1.6rem + 4.6vw, 5.4rem);

  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --dur:       0.7s;

  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-mono:  'Space Mono', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--text); color: var(--bg); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow {
  font-family: var(--font-mono); font-size: var(--step--1);
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute);
}
.section { padding-block: clamp(72px, 12vw, 160px); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .marquee-track { animation: none !important; }
}

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  transition: background var(--dur) var(--ease), padding var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { padding-block: 16px; }
/* Fond du header : calque en dégradé + flou qui S'ESTOMPE vers le bas (aucune démarcation nette).
   Le masque fait disparaître progressivement le flou et le fond, débordant sous le header. */
.site-header::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; bottom: -48px; z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(20, 19, 21, 0.48) 0%, rgba(20, 19, 21, 0.34) 55%, rgba(20, 19, 21, 0) 100%);
  -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px);
  -webkit-mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.site-header.scrolled::after { opacity: 1; }
.brand {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 1.55rem; letter-spacing: 0.14em;
}
.nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 40px); }
.nav a {
  font-size: var(--step--1); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-dim); position: relative; transition: color 0.3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0;
  background: var(--text); transition: width 0.4s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

.nav-toggle { display: none; width: 34px; height: 34px; position: relative; z-index: 70; }
.nav-toggle span { position: absolute; left: 6px; right: 6px; height: 1.5px; background: var(--text); transition: transform 0.4s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle span:nth-child(1) { top: 12px; }
.nav-toggle span:nth-child(2) { bottom: 12px; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0; z-index: 65;
    flex-direction: column; justify-content: center; align-items: flex-start;
    gap: 10px; padding: var(--gutter); background: var(--bg);
    transform: translateX(100%); transition: transform 0.6s var(--ease);
  }
  body.menu-open .nav { transform: none; }
  .nav a { font-size: var(--step-3); color: var(--text); letter-spacing: 0; }
  .nav a::after { display: none; }
}

/* =========================================================
   Hero (Accueil)
   ========================================================= */
.hero {
  position: relative; height: 100svh; min-height: 600px; width: 100%;
  overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 70% 10%, #262027 0%, transparent 55%),
    radial-gradient(90% 80% at 15% 90%, #201c20 0%, transparent 60%), #1b1a1c;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 120% at 50% 48%, rgba(20,19,21,0.20) 0%, rgba(20,19,21,0.42) 62%, rgba(20,19,21,0.76) 100%),
    linear-gradient(to bottom, rgba(20,19,21,0.40) 0%, rgba(20,19,21,0.22) 38%, rgba(20,19,21,0.80) 100%);
}
.hero-inner {
  position: relative; z-index: 2; padding-inline: var(--gutter);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.42), 0 2px 44px rgba(0, 0, 0, 0.55);
}
.hero-name {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(2.6rem, 1.4rem + 5vw, 6.4rem);
  line-height: 1; letter-spacing: 0.14em;
  text-transform: uppercase;
  /* compense l'interlettrage à droite pour un centrage optique */
  text-indent: 0.14em;
}
.hero-sub {
  margin-top: 24px;
  font-size: var(--step--1); letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78); font-weight: 400;
}
@media (max-width: 560px) {
  .hero-name { font-size: clamp(1.7rem, 0.7rem + 5vw, 2.4rem); letter-spacing: 0.05em; text-indent: 0.05em; }
  .hero-sub { margin-top: 18px; letter-spacing: 0.14em; font-size: 0.7rem; }
}

/* View Work indicator */
.hero-cta {
  position: absolute; left: 50%; bottom: clamp(34px, 6vw, 64px); transform: translateX(-50%); z-index: 2;
  display: inline-flex; flex-direction: column; align-items: center; gap: 14px;
  color: var(--text-dim); transition: color 0.3s var(--ease);
}
.hero-cta:hover { color: var(--text); }
.hero-cta .ring {
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.hero-cta:hover .ring { border-color: rgba(255,255,255,0.6); transform: scale(1.06); }
.hero-cta .ring svg { width: 14px; height: 14px; margin-left: 2px; }
.hero-cta .label { font-size: var(--step--1); letter-spacing: 0.12em; }

/* =========================================================
   Marquee — logos clients (défile de droite à gauche)
   ========================================================= */
.marquee {
  position: relative; overflow: hidden;
  border-block: 1px solid var(--line-soft);
  padding-block: clamp(26px, 4vw, 46px);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; align-items: center; width: max-content;
  gap: clamp(48px, 7vw, 110px);
  animation: marquee 34s linear infinite;
}
/* décoratif : ne défile jamais en pause, et rien n'est cliquable */
.marquee, .marquee * { pointer-events: none; }
.marquee img {
  height: var(--logo-h, clamp(28px, 3.2vw, 42px)); width: auto;
  max-width: 200px; object-fit: contain;
  opacity: 0.55; flex: none;
  /* force tous les logos en blanc, quelles que soient leurs couleurs d'origine */
  filter: brightness(0) invert(1);
  user-select: none; -webkit-user-drag: none;
}
/* Égalisation optique : un logotype large doit être moins haut qu'une marque
   carrée pour peser pareil à l'œil. Ajuster --logo-h par logo. */
.marquee img[src*="dolce"]     { --logo-h: clamp(22px, 2.5vw, 34px); }
.marquee img[src*="accor"]     { --logo-h: clamp(30px, 3.5vw, 46px); }
.marquee img[src*="angelbird"] { --logo-h: clamp(32px, 3.8vw, 50px); }
.marquee img[src*="mercure"]   { --logo-h: clamp(27px, 3.1vw, 42px); }
/* logotype très large (≈4:1) : hauteur réduite pour ne pas écraser les autres */
.marquee img[src*="mecaza"]    { --logo-h: clamp(18px, 2vw, 26px); }
.marquee img[src*="ipsa"]      { --logo-h: clamp(30px, 3.4vw, 46px); }
.marquee img[src*="ibis"]      { --logo-h: clamp(34px, 4vw, 54px); }
.marquee img[src*="legato"]    { --logo-h: clamp(34px, 4vw, 54px); }
.marquee img[src*="redbull"]   { --logo-h: clamp(34px, 4vw, 54px); }
.marquee-track span {
  flex: none; white-space: nowrap; user-select: none;
  font-weight: 600; font-size: clamp(1rem, 0.8rem + 0.7vw, 1.35rem);
  letter-spacing: -0.01em; color: rgba(255, 255, 255, 0.55);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   Work grid — vignettes vidéo plein cadre, sans titre
   ========================================================= */
.work { width: 100%; }
.work-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(4px, 0.6vw, 10px);
}
@media (max-width: 640px) { .work-grid { grid-template-columns: 1fr; } }

.tile {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 16 / 9; background: #201d21;
}
.tile.wide { grid-column: 1 / -1; aspect-ratio: 21 / 9; }
@media (max-width: 640px) { .tile.wide { aspect-ratio: 16 / 9; } }
.tile video, .tile img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.82) saturate(0.95);
  transform: scale(1.001);
  transition: transform 1s var(--ease), filter 0.6s var(--ease);
}
.tile::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(16,15,17,0.78) 0%, rgba(16,15,17,0.14) 42%, transparent 70%);
  transition: opacity 0.5s var(--ease);
}
.tile:hover video, .tile:hover img,
.tile:focus-visible video, .tile:focus-visible img { transform: scale(1.05); filter: brightness(1); }
.tile:focus-visible { outline: 2px solid var(--text); outline-offset: -2px; }

/* nom du projet */
.tile .cue {
  position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 18px;
  font-family: var(--font-sans); font-size: var(--step-1); font-weight: 500;
  letter-spacing: -0.01em; line-height: 1.1; color: #fff;
  transition: transform 0.5s var(--ease);
}
.tile:hover .cue { transform: translateY(-3px); }

/* =========================================================
   Contact CTA strip
   ========================================================= */
.cta { border-top: 1px solid var(--line-soft); padding-block: clamp(80px, 14vw, 180px); text-align: center; }
.cta .eyebrow { display: block; margin-bottom: 24px; }
.cta a.cta-link {
  display: inline-block; font-size: var(--step-3); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1; position: relative;
}
.cta a.cta-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0.08em; height: 2px;
  background: var(--text); transition: right 0.5s var(--ease);
}
.cta a.cta-link:hover::after { right: 0; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { border-top: 1px solid var(--line-soft); padding-block: 44px; }
.site-footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: var(--step--1); color: var(--text-dim); transition: color 0.3s var(--ease); }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-family: var(--font-mono); font-size: var(--step--1); color: var(--text-mute); letter-spacing: 0.04em; }

/* =========================================================
   About page
   ========================================================= */
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(36px, 6vw, 72px); }
.section-head h2 { font-size: var(--step-2); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; }
.section-count { font-family: var(--font-mono); font-size: var(--step--1); color: var(--text-mute); }

.page-hero { padding-top: clamp(140px, 20vw, 220px); padding-bottom: clamp(40px, 6vw, 80px); }
.page-hero h1 { font-size: var(--step-3); font-weight: 600; letter-spacing: -0.035em; line-height: 0.98; max-width: 18ch; margin-top: 22px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-portrait { position: relative; border-radius: 6px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--bg-card); }
.about-portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, #241f26, #171418); }
.about-portrait img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.15); }
.about-portrait figcaption { position: absolute; z-index: 2; left: 16px; bottom: 14px; font-family: var(--font-mono); font-size: var(--step--1); color: rgba(255,255,255,0.75); mix-blend-mode: difference; }
.about-lede p { font-size: var(--step-1); line-height: 1.5; color: var(--text); }
.about-lede p + p { margin-top: 1.2em; color: var(--text-dim); font-size: var(--step-0); }

.rows { border-top: 1px solid var(--line-soft); }
.row { display: grid; grid-template-columns: 0.4fr 1.6fr; gap: clamp(20px, 5vw, 60px); padding-block: clamp(28px, 4vw, 44px); border-bottom: 1px solid var(--line-soft); }
@media (max-width: 680px) { .row { grid-template-columns: 1fr; gap: 12px; } }
.row h3 { font-size: var(--step-1); font-weight: 500; letter-spacing: -0.01em; }
.row .row-num { font-family: var(--font-mono); font-size: var(--step--1); color: var(--text-mute); display: block; margin-bottom: 8px; }
.row p { color: var(--text-dim); max-width: 60ch; }
.skills-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.skills-list li { list-style: none; font-family: var(--font-mono); font-size: var(--step--1); letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-dim); border: 1px solid var(--line); border-radius: 100px; padding: 8px 16px; }

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 8vw, 100px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-aside h1 { font-size: var(--step-3); font-weight: 600; letter-spacing: -0.035em; line-height: 0.98; margin-top: 20px; }
.contact-aside p { color: var(--text-dim); max-width: 40ch; margin-top: 24px; }
.contact-direct { margin-top: 40px; display: flex; flex-direction: column; gap: 18px; }
.contact-direct a { font-size: var(--step-1); font-weight: 500; letter-spacing: -0.01em; width: fit-content; position: relative; }
.contact-direct a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px; background: var(--text); transition: right 0.4s var(--ease); }
.contact-direct a:hover::after { right: 0; }
.contact-direct .val { display: block; font-size: var(--step-1); font-weight: 500; letter-spacing: -0.01em; color: var(--text); }
.contact-direct small { display: block; color: var(--text-mute); font-family: var(--font-mono); font-size: var(--step--1); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }

.form { display: grid; gap: 4px; }
.field { position: relative; padding-block: 12px; border-bottom: 1px solid var(--line); transition: border-color 0.4s var(--ease); }
.field:focus-within { border-color: var(--text); }
.field label { display: block; font-family: var(--font-mono); font-size: var(--step--1); letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 8px; }
.field input, .field textarea, .field select { width: 100%; background: none; border: none; color: var(--text); font: inherit; font-size: var(--step-1); letter-spacing: -0.01em; padding: 4px 0; resize: none; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field select { appearance: none; cursor: pointer; }
.field.select::after { content: ""; position: absolute; right: 4px; bottom: 24px; width: 8px; height: 8px; border-right: 1.5px solid var(--text-dim); border-bottom: 1.5px solid var(--text-dim); transform: rotate(45deg); pointer-events: none; }
.field select option { background: var(--bg-elev); color: var(--text); }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.btn-submit { display: inline-flex; align-items: center; gap: 14px; padding: 16px 30px; border-radius: 100px; background: var(--text); color: var(--bg); font-size: var(--step--1); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; transition: transform 0.4s var(--ease), opacity 0.3s var(--ease); }
.btn-submit:hover { transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-submit svg { width: 15px; height: 15px; }
.form-status { font-size: var(--step--1); color: var(--text-dim); min-height: 1.2em; }
.form-status.ok { color: #8fd3a0; }
.form-status.err { color: #e58a7f; }

/* =========================================================
   Étude de cas (work/*.html)
   ========================================================= */
.cs-hero { padding-top: clamp(130px, 18vw, 210px); padding-bottom: clamp(24px, 3vw, 40px); }
.cs-back {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  font-family: var(--font-mono); font-size: var(--step--1); letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-mute); transition: color 0.3s var(--ease);
}
.cs-back:hover { color: var(--text); }
.cs-back svg { width: 14px; height: 14px; }
.cs-title {
  font-size: clamp(2.4rem, 1.2rem + 5vw, 5.8rem); font-weight: 600;
  letter-spacing: -0.035em; line-height: 0.95; margin-top: 6px; max-width: 16ch;
}
.cs-lede { font-size: var(--step-1); color: var(--text-dim); max-width: 54ch; margin-top: 26px; line-height: 1.5; }
.cs-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: clamp(34px, 5vw, 54px); border-top: 1px solid var(--line-soft); padding-top: 28px; }
@media (max-width: 680px) { .cs-meta { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
.cs-meta dt { font-family: var(--font-mono); font-size: var(--step--1); letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 8px; }
.cs-meta dd { font-size: var(--step-0); color: var(--text); }

/* Film principal — plein cadre */
.cs-stage {
  position: relative; width: min(100%, calc(16 / 9 * 60vh)); margin-inline: auto;
  aspect-ratio: 16 / 9; overflow: hidden;
  background: #201d21; cursor: pointer; margin-block: clamp(36px, 6vw, 80px);
}
.cs-stage video, .cs-stage img { width: 100%; height: 100%; object-fit: cover; }
.cs-stage::after { content: ""; position: absolute; inset: 0; background: rgba(20,19,21,0.28); transition: background 0.5s var(--ease); z-index: 1; }
.cs-stage:hover::after { background: rgba(20,19,21,0.12); }
.play-badge {
  position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: clamp(66px, 8vw, 96px); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.55); background: rgba(20,19,21,0.28);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: grid; place-items: center; color: #fff;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.cs-stage:hover .play-badge { background: var(--text); color: var(--bg); border-color: var(--text); transform: translate(-50%, -50%) scale(1.06); }
.play-badge svg { width: clamp(20px, 2.4vw, 26px); height: auto; margin-left: 3px; }

/* Carrousel — projets à plusieurs vidéos (contenu dans le conteneur, façon page de réf) */
.carousel { margin-top: clamp(6px, 1vw, 14px); margin-bottom: clamp(36px, 6vw, 80px); max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; width: 100%; transition: transform 0.7s var(--ease); will-change: transform; }
/* flex-basis 100% = exactement la largeur du carrousel ; min-width:0 empêche
   la slide de s'élargir à la taille naturelle de l'image qu'elle contient. */
.carousel-slide { flex: 0 0 100%; min-width: 0; }
/* Chaque slide adopte le format réel de SA vidéo (--arw / --arh),
   centré et plafonné en hauteur pour que le carrousel reste stable. */
.carousel-slide .cs-stage {
  margin: 0 auto;
  width: min(100%, calc(var(--arw, 16) / var(--arh, 9) * 72vh));
  aspect-ratio: var(--arw, 16) / var(--arh, 9);
}
/* Vidéo unique (sans carrousel), contenue de la même façon */
.cs-film { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); margin-top: clamp(6px, 1vw, 14px); margin-bottom: clamp(36px, 6vw, 80px); }
.cs-film .cs-stage { margin: 0 auto; width: min(100%, calc(16 / 9 * 72vh)); aspect-ratio: 16 / 9; }
.carousel-cap {
  font-family: var(--font-mono); font-size: var(--step--1); letter-spacing: 0.04em;
  color: var(--text-mute); margin-top: 14px; padding-inline: var(--gutter); text-align: center;
}
.carousel-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 3vw, 26px); margin-top: 16px; }
.carousel-arrow {
  width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; color: var(--text-dim);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.carousel-arrow:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.45); }
.carousel-arrow:active { transform: scale(0.94); }
.carousel-arrow svg { width: 15px; height: 15px; }
.carousel-dots { display: flex; align-items: center; gap: 10px; }
.carousel-dots button {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.25);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.carousel-dots button:hover { background: rgba(255, 255, 255, 0.6); }
.carousel-dots button.is-active { background: var(--text); transform: scale(1.3); }

/* Narration : label + corps */
.cs-section { padding-block: clamp(32px, 5vw, 72px); }
.cs-narrative { display: grid; grid-template-columns: 0.32fr 0.68fr; gap: clamp(20px, 5vw, 64px); align-items: start; }
@media (max-width: 760px) { .cs-narrative { grid-template-columns: 1fr; gap: 14px; } }
.cs-narrative h2 { font-family: var(--font-mono); font-size: var(--step--1); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); font-weight: 400; padding-top: 6px; }
.cs-narrative .body p { font-size: var(--step-1); line-height: 1.5; color: var(--text); max-width: 62ch; }
.cs-narrative .body p + p { margin-top: 1em; color: var(--text-dim); font-size: var(--step-0); }

/* Blocs média */
.cs-media { margin-block: clamp(14px, 2.4vw, 32px); }
.cs-media img, .cs-media video { width: 100%; display: block; border-radius: 6px; aspect-ratio: 16 / 9; object-fit: cover; }
.cs-duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(8px, 1.4vw, 20px); margin-block: clamp(14px, 2.4vw, 32px); }
@media (max-width: 640px) { .cs-duo { grid-template-columns: 1fr; } }
.cs-duo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 6px; }
.cs-cap { font-family: var(--font-mono); font-size: var(--step--1); color: var(--text-mute); margin-top: 10px; letter-spacing: 0.03em; }

/* Galerie de frames */
.cs-frames { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(8px, 1.2vw, 16px); }
@media (max-width: 720px) { .cs-frames { grid-template-columns: repeat(2, 1fr); } }
.cs-frames img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 4px; filter: grayscale(0.1); transition: filter 0.5s var(--ease), transform 0.6s var(--ease); }
.cs-frames a { overflow: hidden; border-radius: 4px; display: block; }
.cs-frames a:hover img { filter: grayscale(0); transform: scale(1.04); }

/* Citation */
.cs-quote { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.6rem, 1rem + 2.6vw, 3rem); line-height: 1.22; letter-spacing: -0.01em; max-width: 22ch; margin-inline: auto; text-align: center; color: var(--text); padding-block: clamp(30px, 6vw, 72px); }

/* =========================================================
   Étude de cas — mise en page « page de référence »
   Bandeau Client/Projet · grande vidéo · titre projet · blocs titre+texte+filet
   ========================================================= */
.cs-topbar {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px 40px; flex-wrap: wrap;
  padding-top: clamp(120px, 16vw, 172px); padding-bottom: clamp(8px, 1vw, 14px);
}
/* Bandeau Client/Projet façon page de réf : label gras Inter + valeur Cormorant serif, crème */
.cs-id .lbl { font-family: var(--font-sans); font-weight: 700; font-size: var(--step-0); letter-spacing: 0.02em; text-transform: uppercase; color: var(--text); margin-right: 8px; }
.cs-id .val { font-family: var(--font-serif); font-weight: 500; font-size: var(--step-1); letter-spacing: 0.01em; color: var(--text); }
@media (max-width: 560px) { .cs-id { display: block; } .cs-id .lbl { display: block; margin: 0 0 3px; } }

.cs-projecttitle { padding-block: clamp(28px, 4.6vw, 56px) clamp(18px, 2.8vw, 36px); }
.cs-projecttitle h1 { display: flex; align-items: baseline; gap: 0.55em; flex-wrap: wrap; line-height: 1.02; }
.cs-projecttitle .lbl { font-family: var(--font-sans); font-weight: 700; font-size: clamp(1.4rem, 0.9rem + 1.8vw, 2.4rem); letter-spacing: -0.005em; text-transform: uppercase; color: var(--text); }
.cs-projecttitle .val { font-family: var(--font-serif); font-weight: 500; font-style: italic; font-size: clamp(2.4rem, 1.4rem + 3.6vw, 4.6rem); letter-spacing: -0.005em; color: var(--text); }

.cs-block { padding-block: clamp(26px, 3.6vw, 46px); }
/* Titres de section = Inter crème (comme les titres de section de la home), agrandis */
.cs-block > h2 { font-family: var(--font-sans); font-weight: 600; font-size: var(--step-2); letter-spacing: -0.02em; text-transform: none; color: var(--text); margin-bottom: 18px; }
.cs-block p { color: var(--text-dim); font-size: var(--step-0); line-height: 1.65; }
.cs-block p + p { margin-top: 1em; }
.cs-block.has-rule { border-bottom: 1px solid var(--line-soft); padding-bottom: clamp(30px, 4vw, 50px); }

/* Impact / chiffres */
.cs-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 4vw, 48px); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding-block: clamp(34px, 5vw, 58px); }
@media (max-width: 640px) { .cs-stats { grid-template-columns: 1fr; gap: 26px; } }
.cs-stat .num { font-size: clamp(2.2rem, 1.4rem + 3vw, 3.6rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.cs-stat .lbl { color: var(--text-dim); margin-top: 10px; font-size: var(--step-0); }

/* Crédits */
.cs-credits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(24px, 5vw, 64px); }
@media (max-width: 640px) { .cs-credits { grid-template-columns: 1fr; } }
.cs-credit { display: flex; justify-content: space-between; gap: 16px; padding-block: 15px; border-bottom: 1px solid var(--line-soft); }
.cs-credit dt { color: var(--text-dim); }
.cs-credit dd { color: var(--text); text-align: right; }

/* Projet suivant */
.cs-next { display: block; border-top: 1px solid var(--line-soft); padding-block: clamp(50px, 9vw, 112px); text-align: center; }
.cs-next .eyebrow { display: block; margin-bottom: 16px; }
.cs-next .np-title { position: relative; display: inline-block; font-size: var(--step-3); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.cs-next .np-title::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0.06em; height: 2px; background: var(--text); transition: right 0.5s var(--ease); }
.cs-next:hover .np-title::after { right: 0; }

/* =========================================================
   Lecteur vidéo (lightbox) — showreel & projets YouTube
   ========================================================= */
.modal {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center;
  padding: clamp(20px, 5vw, 72px);
  background: rgba(12, 11, 13, 0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  opacity: 0; visibility: hidden; transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.modal.open { opacity: 1; visibility: visible; }
.modal-inner { width: min(1120px, 100%); position: relative; }
.modal-frame {
  width: 100%; aspect-ratio: 16 / 9; background: #000; border-radius: 8px; overflow: hidden;
  transform: scale(0.96); transition: transform 0.5s var(--ease);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.modal.open .modal-frame { transform: none; }
.modal-frame iframe, .modal-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #000; }
.modal-close {
  position: absolute; top: -42px; right: 0;
  font-family: var(--font-mono); font-size: var(--step--1); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim); display: inline-flex; align-items: center; gap: 10px;
}
.modal-close:hover { color: var(--text); }
@media (max-width: 560px) { .modal-close { top: -36px; } }

/* =========================================================
   Page légale (mentions-legales.html)
   ========================================================= */
.legal { max-width: 760px; }
.legal h2 { font-size: var(--step-1); font-weight: 600; letter-spacing: -0.01em; margin: clamp(34px, 5vw, 56px) 0 14px; }
.legal p, .legal li { color: var(--text-dim); line-height: 1.65; }
.legal p + p { margin-top: 0.8em; }
.legal ul { margin: 0.6em 0 0 1.1em; display: grid; gap: 6px; }
.legal a { text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--text); }
.legal-fields { margin-top: 8px; display: grid; gap: 8px; }
.legal-fields > div { display: grid; grid-template-columns: 180px 1fr; gap: 6px 18px; }
@media (max-width: 560px) { .legal-fields > div { grid-template-columns: 1fr; gap: 2px; } }
.legal-fields dt { font-family: var(--font-mono); font-size: var(--step--1); letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mute); }
.legal-fields dd { color: var(--text); }

/* Utility */
.mono { font-family: var(--font-mono); }
[hidden] { display: none !important; }

/* =========================================================
   ░░ VISUAL LABS — Signature dorée + composants studio ░░
   Surcharge la base héritée pour teinter la DA et ajoute
   les blocs propres au site agence (services, approche…).
   ========================================================= */

/* ---------- Accents dorés (surcharges) ---------- */
.brand { color: var(--gold); }
.eyebrow { color: var(--gold); }
.nav a::after { background: var(--gold); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold); }
.hero-cta:hover .ring { border-color: var(--gold-line); }
.hero-cta .ring svg { color: var(--gold); }
.tile:focus-visible { outline-color: var(--gold); }
.cta a.cta-link::after { background: var(--gold); }
.cta a.cta-link:hover { color: var(--gold); }
.contact-direct a::after { background: var(--gold); }
.contact-direct a:hover { color: var(--gold); }
.field:focus-within { border-color: var(--gold); }
.btn-submit { background: var(--gold); color: #1b1a1c; }
.btn-submit:hover { background: var(--gold-soft); }
.carousel-arrow:hover { border-color: var(--gold-line); color: var(--gold); }
.carousel-dots button.is-active { background: var(--gold); }
.cs-stage:hover .play-badge { background: var(--gold); color: #1b1a1c; border-color: var(--gold); }
.cs-back:hover { color: var(--gold); }
.cs-next .np-title::after { background: var(--gold); }
.skills-list li { border-color: var(--line); }
.legal a { text-decoration-color: var(--gold-line); }
.legal a:hover { color: var(--gold); }

/* ---------- Logotype animé : « Visual Labs » se réduit dans le monogramme « VL » au scroll ----------
   « isual », l'espace et « abs » se rétractent, le L se glisse sur le V (~38 % comme le logo).
   V et L = vraies lettres du wordmark (même taille). Rapide (0,5 s) pour ne pas s'attarder.        */
.brand { display: inline-flex; align-items: center; color: var(--gold); --ease-logo: cubic-bezier(0.22, 1, 0.36, 1); }
.brand-logo {
  display: inline-flex; align-items: baseline;
  font-family: var(--font-serif); font-weight: 600;
  font-size: 1.55rem; letter-spacing: 0.09em; line-height: 1;
}
.brand-logo .lt { display: inline-block; white-space: pre; }
.brand-logo .lt-fill {
  overflow: hidden; opacity: 1;
  transition: max-width 0.5s var(--ease-logo), opacity 0.3s var(--ease-logo);
}
.brand-logo .lt-i   { max-width: 3.1em; }
.brand-logo .lt-gap { max-width: 0.42em; }
.brand-logo .lt-a   { max-width: 1.9em; }
.site-header.scrolled .brand-logo .lt-fill { max-width: 0; opacity: 0; }
.brand-logo .lt-l { transition: margin-left 0.5s var(--ease-logo), letter-spacing 0.5s var(--ease-logo); }
.site-header.scrolled .brand-logo { letter-spacing: 0; }
.site-header.scrolled .brand-logo .lt-l { margin-left: -0.25em; }
@media (max-width: 560px) { .brand-logo { font-size: 1.3rem; } }
@media (prefers-reduced-motion: reduce) { .brand-logo .lt-fill, .brand-logo .lt-l { transition-duration: 0.2s; } }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 30px; border-radius: 100px;
  font-family: var(--font-mono); font-size: var(--step--1);
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.btn svg { width: 14px; height: 14px; }
.btn-primary { background: var(--gold); color: #1b1a1c; }
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold-line); color: var(--gold); transform: translateY(-2px); }

/* Lien « voir tout » discret */
.link-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: var(--step--1);
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold);
  transition: gap 0.3s var(--ease), opacity 0.3s var(--ease);
}
.link-more:hover { gap: 14px; }
.link-more svg { width: 14px; height: 14px; }

/* ---------- Hero : actions + éléments studio ---------- */
.hero-eyebrow {
  font-family: var(--font-mono); font-size: var(--step--1);
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px; display: block;
}
.hero-lede {
  margin-top: 20px; font-size: clamp(0.85rem, 0.8rem + 0.25vw, 0.98rem); line-height: 1.55;
  color: rgba(245, 241, 233, 0.64); max-width: 42ch; margin-inline: auto; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }
@media (max-width: 560px) { .hero-actions { flex-direction: column; align-items: stretch; } .hero-actions .btn { justify-content: center; } }

/* ---------- Manifeste / phrase de positionnement ---------- */
.manifesto { text-align: center; }
.manifesto .lead {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(1.7rem, 1.1rem + 2.4vw, 3.1rem); line-height: 1.28;
  letter-spacing: -0.01em; max-width: 22ch; margin-inline: auto; color: var(--text);
}
.manifesto .lead em { font-style: italic; color: var(--gold); }
.manifesto p { color: var(--text-dim); max-width: 60ch; margin: 26px auto 0; font-size: var(--step-0); }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 24px); }
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
  border: 1px solid var(--line-soft); border-radius: 10px;
  padding: clamp(24px, 3vw, 38px); background: var(--bg-card);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), background 0.4s var(--ease);
}
.svc-card:hover { border-color: var(--gold-line); transform: translateY(-4px); background: var(--bg-elev); }
.svc-card .num { font-family: var(--font-mono); color: var(--gold); font-size: var(--step--1); letter-spacing: 0.12em; }
.svc-card h3 { font-size: var(--step-1); font-weight: 500; margin-top: 18px; letter-spacing: -0.01em; }
.svc-card > p { color: var(--text-dim); margin-top: 12px; font-size: var(--step-0); line-height: 1.55; }
.svc-card ul { margin-top: 18px; display: grid; gap: 7px; }
.svc-card li { list-style: none; color: var(--text-dim); font-size: var(--step--1); padding-left: 20px; position: relative; }
.svc-card li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ---------- Approche / process ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 48px); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 30px; } }
.step { border-top: 1px solid var(--gold-line); padding-top: 24px; }
.step .step-num { font-family: var(--font-mono); color: var(--gold); font-size: var(--step--1); letter-spacing: 0.08em; }
.step h3 { font-size: var(--step-1); font-weight: 500; margin-top: 14px; letter-spacing: -0.01em; }
.step p { color: var(--text-dim); margin-top: 12px; line-height: 1.55; }

/* ---------- Bloc fondateur ---------- */
.founder { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 6vw, 84px); align-items: center; }
@media (max-width: 860px) { .founder { grid-template-columns: 1fr; gap: 36px; } }
.founder-portrait { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--bg-card); }
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.18); }
.founder-portrait figcaption { position: absolute; left: 16px; bottom: 14px; font-family: var(--font-mono); font-size: var(--step--1); color: rgba(245,241,233,0.8); }
.founder blockquote { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem); line-height: 1.3; letter-spacing: -0.01em; color: var(--text); }
.founder blockquote em { font-style: italic; color: var(--gold); }
.founder .founder-body { margin-top: 22px; color: var(--text-dim); max-width: 54ch; line-height: 1.6; }
.founder .sign { margin-top: 26px; font-family: var(--font-mono); font-size: var(--step--1); letter-spacing: 0.04em; color: var(--text-mute); }
.founder .sign strong { color: var(--gold); font-weight: 400; }
.founder .founder-actions { margin-top: 28px; }

/* ---------- Page Le Lab ---------- */
.lab-break { width: 100%; aspect-ratio: 21 / 9; overflow: hidden; }
@media (max-width: 640px) { .lab-break { aspect-ratio: 16 / 9; } }
.lab-break img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.92) saturate(0.98); }
.lab-role { font-family: var(--font-mono); font-size: var(--step--1); letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 10px; }

/* =========================================================
   Préchargeur — intro logo plein écran au lancement du site
   ========================================================= */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: grid; place-items: center;
  transform: translateY(0);
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
/* Skippé (navigation interne hors accueil) */
html.preloaded .preloader { display: none; }
/* 1) écran plein 1 s  2) le logo apparaît en montant vers le centre */
.preloader-mark {
  width: clamp(78px, 11vw, 124px); height: auto;
  opacity: 0; transform: translateY(36px);
  animation: preloader-in 0.55s var(--ease) 1s forwards;
}
@keyframes preloader-in {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* 3) le logo disparaît sur place (fondu) et le voile se lève vers le haut */
body.loaded .preloader-mark { opacity: 0; transition: opacity 0.4s var(--ease); }
body.loaded .preloader { transform: translateY(-100%); }
/* Les textes du hero montent en suivant la levée du voile (accueil / reload) */
html:not(.preloaded) .hero-inner > * { opacity: 0; transform: translateY(44px); }
body.loaded .hero-inner > * { opacity: 1; transform: none; transition: opacity 0.85s var(--ease), transform 0.95s var(--ease); }
body.loaded .hero-eyebrow { transition-delay: 0.05s; }
body.loaded .hero-name    { transition-delay: 0.16s; }
body.loaded .hero-lede    { transition-delay: 0.30s; }
body.loaded .hero-actions { transition-delay: 0.44s; }
@media (prefers-reduced-motion: reduce) {
  .preloader-mark { animation: none; opacity: 1; transform: none; }
  .preloader { transition: opacity 0.3s var(--ease); }
  body.loaded .preloader { transform: none; opacity: 0; visibility: hidden; }
  html:not(.preloaded) .hero-inner > * { opacity: 1; transform: none; }
}

/* ---------- Avis clients (bandeau défilant) ---------- */
.reviews-head { text-align: center; margin-bottom: 0; }
.reviews-head .eyebrow { display: block; margin-bottom: 16px; }
.reviews-head h2 { font-size: var(--step-2); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; }
.reviews-marquee {
  position: relative; overflow: hidden; margin-top: clamp(32px, 5vw, 60px);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track {
  display: flex; width: max-content; gap: clamp(14px, 1.8vw, 24px);
  animation: marquee 66s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
.review-card {
  flex: none; width: clamp(248px, 23vw, 320px);
  border: 1px solid var(--line-soft); border-radius: 12px;
  background: var(--bg-card); padding: clamp(20px, 2.2vw, 28px);
  display: flex; flex-direction: column; gap: 12px;
}
.review-card .stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 3px; }
.review-card blockquote { font-size: var(--step-0); line-height: 1.5; color: var(--text); }
.review-card figcaption { margin-top: auto; padding-top: 4px; font-family: var(--font-mono); font-size: var(--step--1); color: var(--text-mute); letter-spacing: 0.03em; }
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
}

/* ---------- Filtre réalisations ---------- */
.filters { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: clamp(30px, 4vw, 50px); }
.filter-btn {
  font-family: var(--font-mono); font-size: var(--step--1); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-dim); border: 1px solid var(--line); border-radius: 100px; padding: 10px 22px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.filter-btn:hover { color: var(--text); border-color: var(--gold-line); }
.filter-btn.is-active { background: var(--gold); color: #1b1a1c; border-color: var(--gold); }
.work-grid .tile[hidden] { display: none; }

/* Tuile projet à venir (visuels manquants) */
.tile.is-soon {
  background: linear-gradient(150deg, #262027, #1b1a1c);
  cursor: default; border: 1px dashed var(--gold-line);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center;
}
.tile.is-soon::after { display: none; }
.tile.is-soon .soon-badge { font-family: var(--font-mono); font-size: var(--step--1); letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.tile.is-soon .cue { position: static; left: auto; right: auto; bottom: auto; font-family: var(--font-serif); font-weight: 500; font-size: var(--step-1); }
