/* =====================================================================
   VEUVE NOIRE — Design System (site statique)
   Palette « Dark Cinematic Agency » — noir profond + rouge
   Reconstruit à partir du dossier de sauvegarde officiel.
   Améliorations : accessibilité, reduced-motion, focus visibles,
   tokens unifiés, performance.
   ===================================================================== */

/* ------------------------------------------------------------------ */
/* 1. RESET                                                            */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ------------------------------------------------------------------ */
/* 2. TOKENS                                                          */
/* ------------------------------------------------------------------ */
:root {
  /* Palette principale */
  --noir:            #0f0f0f;
  --noir-carte:      #141414;
  --noir-surface:    #1a1a1a;
  --noir-surface-2:  #222222;
  --rouge:           #e63232;
  --rouge-fonce:     #c42828;
  --rouge-sombre:    #8b0000;
  --rouge-vif:       #b50000;
  --blanc:           #ffffff;
  --blanc-casse:     #f0ece4;
  --gris-clair:      #aaaaaa;
  --gris-moyen:      #777777;
  --gris-sombre:     #555555;

  --rouge-glow:      rgba(230, 50, 50, 0.35);
  --rouge-veil:      rgba(230, 50, 50, 0.08);

  /* Typo */
  --font-titre: 'Montserrat', 'Segoe UI', system-ui, sans-serif;
  --font-corps: 'Raleway', 'Segoe UI', system-ui, sans-serif;
  --font-mono:  'Share Tech Mono', ui-monospace, monospace;
  --font-stencil: 'Bebas Neue', 'Montserrat', sans-serif;
  --font-serif: 'Crimson Pro', Georgia, serif;

  /* Layout */
  --max: 1200px;
  --nav-h: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-card: 0 18px 50px rgba(0,0,0,0.45);
  --shadow-red: 0 12px 40px rgba(230,50,50,0.28);
}

/* ------------------------------------------------------------------ */
/* 3. BASE                                                            */
/* ------------------------------------------------------------------ */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background: var(--noir);
  color: var(--blanc);
  font-family: var(--font-corps);
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Grain cinématographique */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

/* Sélection */
::selection { background: var(--rouge); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0b0b0b; }
::-webkit-scrollbar-thumb { background: var(--rouge-fonce); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--rouge); }

/* Focus visible accessible */
:focus-visible {
  outline: 2px solid var(--rouge);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--rouge); color: #fff;
  padding: 10px 18px; z-index: 10000;
  font-family: var(--font-titre); font-weight: 600; font-size: 0.85rem;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 12px; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ------------------------------------------------------------------ */
/* 4. TYPOGRAPHIE UTILITAIRE                                          */
/* ------------------------------------------------------------------ */
.overline {
  font-family: var(--font-titre);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--rouge);
}
.rouge { color: var(--rouge); }

/* ------------------------------------------------------------------ */
/* 5. ANIMATIONS DE RÉVÉLATION                                        */
/* ------------------------------------------------------------------ */
/* Le contenu est masqué UNIQUEMENT si le JavaScript est actif (classe .js sur <html>).
   Sans JavaScript, tout reste visible. */
.js .reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.72); } }
@keyframes glowPulse { 0%,100% { box-shadow: 0 0 30px rgba(230,50,50,0.2);} 50% { box-shadow: 0 0 60px rgba(230,50,50,0.4);} }

/* ------------------------------------------------------------------ */
/* 6. BOUTONS                                                         */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-titre);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 38px; cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.32s var(--ease);
  text-align: center;
}
.btn-primary { background: var(--rouge); color: #fff; border-color: var(--rouge); }
.btn-primary:hover { background: var(--rouge-fonce); border-color: var(--rouge-fonce); transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.28); }
.btn-outline:hover { border-color: var(--rouge); color: var(--rouge); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--rouge); border-color: rgba(230,50,50,0.4); }
.btn-ghost:hover { background: var(--rouge-veil); border-color: var(--rouge); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-titre); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rouge);
}
.link-arrow::after { content: '→'; transition: transform 0.3s var(--ease); }
.link-arrow:hover::after { transform: translateX(6px); }

/* ------------------------------------------------------------------ */
/* 7. NAVBAR                                                          */
/* ------------------------------------------------------------------ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  /* Voile permanent : la barre reste lisible sur tout fond, même sans JavaScript */
  background: linear-gradient(to bottom, rgba(8,8,10,0.92) 0%, rgba(8,8,10,0.5) 55%, transparent 100%);
  transition: background 0.4s var(--ease), height 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(15,15,15,0.97);
  height: 74px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  border-bottom-color: rgba(230,50,50,0.18);
  backdrop-filter: blur(12px);
}
.nav__inner {
  max-width: var(--max); width: 100%; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo img { height: 54px; width: auto; transition: height 0.4s var(--ease); }
.nav.scrolled .nav__logo img { height: 44px; }
.nav__logo-text {
  font-family: var(--font-titre); font-weight: 800;
  letter-spacing: 0.24em; font-size: 1.05rem; color: #fff;
  display: flex; align-items: center; gap: 10px;
}
.nav__logo-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rouge); animation: pulse 2.4s ease-in-out infinite; }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__link {
  position: relative;
  font-family: var(--font-titre); font-weight: 500;
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gris-clair); transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--rouge);
  transition: width 0.3s var(--ease);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__link.active { color: var(--rouge); }

.nav__cta {
  font-family: var(--font-titre); font-weight: 700;
  font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; border: 2px solid var(--rouge); padding: 11px 24px;
  transition: all 0.3s var(--ease);
}
.nav__cta:hover { background: var(--rouge); box-shadow: var(--shadow-red); }

.nav__burger {
  display: none; width: 42px; height: 42px; position: relative;
  background: transparent; border: none; cursor: pointer;
}
.nav__burger span {
  position: absolute; left: 8px; right: 8px; height: 2px; background: #fff;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), top 0.35s var(--ease);
}
.nav__burger span:nth-child(1) { top: 13px; }
.nav__burger span:nth-child(2) { top: 20px; }
.nav__burger span:nth-child(3) { top: 27px; }
.nav__burger.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* Menu mobile */
.nav__mobile {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 999;
  background: rgba(11,11,12,0.99);
  border-bottom: 1px solid rgba(230,50,50,0.2);
  transform: translateY(-120%); transition: transform 0.45s var(--ease);
  padding: 24px 32px 34px;
}
.nav__mobile.open { transform: translateY(0); }
.nav__mobile a {
  display: block; padding: 16px 0;
  font-family: var(--font-titre); font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; font-size: 0.95rem; color: #eee;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__mobile a.nav__cta { border: 2px solid var(--rouge); text-align: center; margin-top: 20px; padding: 15px; }

/* ------------------------------------------------------------------ */
/* 8. SECTIONS GÉNÉRIQUES                                             */
/* ------------------------------------------------------------------ */
.section { padding: 110px 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-title {
  font-family: var(--font-titre); font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.05;
  letter-spacing: 0.01em; margin: 14px 0 18px;
}
.section-sub { color: var(--gris-clair); font-size: 1.05rem; }
.rule { width: 54px; height: 3px; background: var(--rouge); margin: 22px auto 0; }
.rule.left { margin-left: 0; }

/* ------------------------------------------------------------------ */
/* 9. HERO ACCUEIL                                                    */
/* ------------------------------------------------------------------ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: #000;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center right;
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(6,6,6,0.92) 38%, rgba(8,8,8,0.45) 100%),
              linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 40%);
}
.hero__inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; padding: 0 32px; width: 100%; }
.hero__content { max-width: 720px; }
.hero__eyebrow {
  font-family: var(--font-titre); font-weight: 600;
  letter-spacing: 0.4em; text-transform: uppercase;
  font-size: 0.8rem; color: var(--rouge);
  opacity: 0; animation: fadeUp 0.9s var(--ease) forwards 0.2s;
}
.hero__title {
  font-family: var(--font-titre); font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.02;
  margin: 22px 0 26px; letter-spacing: -0.01em;
  opacity: 0; animation: fadeUp 1s var(--ease) forwards 0.4s;
}
.hero__title em { font-style: normal; color: var(--rouge); }
.hero__mission {
  font-family: var(--font-titre); font-weight: 500;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem); letter-spacing: 0.05em;
  color: var(--blanc-casse); margin-bottom: 40px; line-height: 1.7;
  opacity: 0; animation: fadeUp 1s var(--ease) forwards 0.6s;
}
.hero__mission strong { color: var(--rouge); font-weight: 800; }
.hero__cta { opacity: 0; animation: fadeUp 1s var(--ease) forwards 0.8s; display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeUp 1s var(--ease) forwards 1.4s;
}
.hero__scroll span { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.4em; color: var(--gris-moyen); text-transform: uppercase; }
.hero__scroll i { width: 1px; height: 46px; background: linear-gradient(to bottom, var(--rouge), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.7);} 50% { opacity: 1; transform: scaleY(1);} }

/* ------------------------------------------------------------------ */
/* 10. GRILLE SERVICES (accueil)                                      */
/* ------------------------------------------------------------------ */
.svc-section { background: linear-gradient(to bottom, var(--noir), #0c0c0c); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  position: relative; background: var(--noir-carte);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 42px 34px; overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--rouge), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); border-color: rgba(230,50,50,0.3); background: var(--noir-surface); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__num {
  position: absolute; top: 18px; right: 26px;
  font-family: var(--font-stencil); font-size: 3.4rem; line-height: 1;
  color: rgba(230,50,50,0.12); transition: color 0.4s var(--ease);
}
.svc-card:hover .svc-card__num { color: rgba(230,50,50,0.22); }
.svc-card__icon { width: 48px; height: 48px; color: var(--rouge); margin-bottom: 22px; }
.svc-card__icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }
.svc-card__title {
  font-family: var(--font-titre); font-weight: 700; font-size: 1.4rem;
  margin-bottom: 16px; letter-spacing: 0.01em;
}
.svc-card__text { color: var(--gris-clair); font-size: 0.98rem; margin-bottom: 26px; }
.svc-card__cta { font-size: 0.72rem; }

/* ------------------------------------------------------------------ */
/* 11. À PROPOS « PENSER AUTREMENT »                                  */
/* ------------------------------------------------------------------ */
.about { background: var(--noir); overflow: hidden; }
.about__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px; align-items: center; }
.about__title {
  font-family: var(--font-titre); font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.12; margin: 16px 0 28px;
}
.about__title em { font-style: normal; color: var(--rouge); }
.about__text { color: var(--gris-clair); margin-bottom: 20px; font-size: 1.02rem; }
.about__socials { display: flex; gap: 14px; margin-top: 30px; }
.about__socials a { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease); }
.about__socials a { color: var(--gris-clair); }
.about__socials a:hover { border-color: var(--rouge); color: var(--rouge); transform: translateY(-3px); background: var(--rouge-veil); }
.about__socials img, .about__socials svg { width: 20px; height: 20px; fill: currentColor; display: block; }
.about__media { position: relative; }
.about__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4) contrast(1.05); border: 1px solid rgba(255,255,255,0.08); }
.about__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(230,50,50,0.16), transparent 55%); pointer-events: none; }

/* ------------------------------------------------------------------ */
/* 12. STATISTIQUES                                                   */
/* ------------------------------------------------------------------ */
.stats { background: var(--noir-carte); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat__val { font-family: var(--font-titre); font-weight: 800; font-size: clamp(2.6rem, 5vw, 4rem); color: var(--rouge); line-height: 1; letter-spacing: 0.01em; }
.stat__label { font-family: var(--font-titre); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.72rem; color: var(--gris-clair); margin-top: 12px; }
.stat + .stat { position: relative; }

/* ------------------------------------------------------------------ */
/* 13. ZONE D'ACTION                                                  */
/* ------------------------------------------------------------------ */
.zone { background: var(--noir); }
.zone__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; max-width: 940px; margin: 0 auto; }
.zone__item {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(255,255,255,0.08); background: var(--noir-carte);
  padding: 14px 24px; transition: all 0.3s var(--ease);
}
.zone__item:hover { border-color: rgba(230,50,50,0.35); background: var(--noir-surface); transform: translateY(-3px); }
.zone__item img { width: 30px; height: 20px; object-fit: cover; }
.zone__item .flag { width: 30px; height: 20px; flex-shrink: 0; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,255,255,0.14); display: block; }
.zone__item span { font-family: var(--font-titre); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.82rem; }

/* ------------------------------------------------------------------ */
/* 14. PORTFOLIO / EXEMPLES (accueil)                                 */
/* ------------------------------------------------------------------ */
.folio { background: linear-gradient(to bottom, #0c0c0c, var(--noir)); }
.folio__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.folio__item { position: relative; aspect-ratio: 3 / 4; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.folio__item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.6) brightness(0.6); transition: transform 0.6s var(--ease), filter 0.6s var(--ease); }
.folio__item:hover img { transform: scale(1.08); filter: grayscale(0.2) brightness(0.8); }
.folio__cap { position: absolute; inset: auto 0 0 0; padding: 22px 20px; background: linear-gradient(to top, rgba(6,6,6,0.94), transparent); }
.folio__cap h4 { font-family: var(--font-titre); font-weight: 700; font-size: 1.02rem; }
.folio__cap span { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.2em; color: var(--rouge); text-transform: uppercase; }
.folio__cta { text-align: center; margin-top: 46px; }

/* Tuile d'appel à l'action (comble la grille + mène à Concrètement) */
.folio__item--cta {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 14px; padding: 24px;
  background: linear-gradient(150deg, rgba(230,50,50,0.16), rgba(18,18,20,0.65));
  border: 1px solid rgba(230,50,50,0.32);
}
.folio__item--cta::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(230,50,50,0.22), transparent 60%);
  opacity: 0; transition: opacity 0.5s var(--ease); pointer-events: none;
}
.folio__item--cta:hover::after { opacity: 1; }
.folio__cta-ic {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(230,50,50,0.55); color: var(--rouge);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
  position: relative; z-index: 1;
}
.folio__item--cta:hover .folio__cta-ic { transform: translateY(-5px); background: rgba(230,50,50,0.12); }
.folio__cta-ic svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.folio__item--cta h4 { font-family: var(--font-titre); font-weight: 700; font-size: 1.02rem; color: #fff; position: relative; z-index: 1; line-height: 1.25; }
.folio__item--cta .folio__cta-link { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rouge); display: inline-flex; align-items: center; gap: 7px; position: relative; z-index: 1; }
.folio__item--cta .folio__cta-link::after { content: '→'; transition: transform 0.3s var(--ease); }
.folio__item--cta:hover .folio__cta-link::after { transform: translateX(5px); }

/* ------------------------------------------------------------------ */
/* 15. SECTION / PAGE CONTACT (formulaire)                            */
/* ------------------------------------------------------------------ */
.contact { background: var(--noir); }
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; }
.contact__title { font-family: var(--font-titre); font-weight: 800; font-size: clamp(1.9rem, 3.6vw, 2.8rem); line-height: 1.1; margin: 14px 0 22px; }
.contact__lead { color: var(--gris-clair); margin-bottom: 34px; }
.contact__info { display: flex; flex-direction: column; gap: 22px; }
.contact__info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact__info-item .ic { width: 42px; height: 42px; flex-shrink: 0; border: 1px solid rgba(230,50,50,0.35); display: flex; align-items: center; justify-content: center; color: var(--rouge); }
.contact__info-item .ic svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.contact__info-item h4 { font-family: var(--font-titre); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.72rem; color: var(--rouge); margin-bottom: 5px; }
.contact__info-item p { color: var(--gris-clair); font-size: 0.95rem; word-break: break-word; }

.form-shell { background: var(--noir-carte); border: 1px solid rgba(255,255,255,0.08); padding: 40px; }
.form-secure { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rouge); margin-bottom: 8px; }
.form-secure-note { font-size: 0.85rem; color: var(--gris-moyen); margin-bottom: 26px; line-height: 1.6; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-titre); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.68rem; color: var(--gris-clair); margin-bottom: 9px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--noir); border: 1px solid rgba(255,255,255,0.14);
  color: #fff; font-family: var(--font-corps); font-size: 0.95rem; padding: 13px 15px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--rouge); box-shadow: 0 0 0 3px rgba(230,50,50,0.12); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23e63232' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.field-row { display: grid; grid-template-columns: 130px 1fr; gap: 12px; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.captcha { display: flex; align-items: center; gap: 14px; }
.captcha__q { font-family: var(--font-mono); font-size: 1.1rem; color: var(--rouge); background: var(--noir); border: 1px solid rgba(230,50,50,0.3); padding: 10px 16px; white-space: nowrap; }
.captcha input { max-width: 120px; }
.form-msg { padding: 14px 16px; margin-bottom: 18px; font-size: 0.9rem; display: none; }
.form-msg.ok { display: block; background: rgba(40,160,80,0.12); border: 1px solid rgba(40,160,80,0.5); color: #7ddc9c; }
.form-msg.err { display: block; background: rgba(230,50,50,0.1); border: 1px solid rgba(230,50,50,0.5); color: #ff9a9a; }
.form-foot { font-size: 0.78rem; color: var(--gris-moyen); margin-top: 16px; }
.form-shell .btn { width: 100%; justify-content: center; }

/* ------------------------------------------------------------------ */
/* 16. BANDEAU SÉCURITÉ / COMMUNICATIONS (footer haut)               */
/* ------------------------------------------------------------------ */
.secure-band { background: var(--noir-carte); border-top: 1px solid rgba(230,50,50,0.14); padding: 56px 0; }
.secure-band__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.secure-box { padding: 26px 28px; background: var(--noir); border-left: 3px solid var(--rouge); }
.secure-box.warn { background: #120808; }
.secure-box__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.secure-box__head img { height: 20px; }
.secure-box__head h4 { font-family: var(--font-titre); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.78rem; }
.secure-box.warn .secure-box__head h4 { color: var(--rouge); }
.secure-box p { font-size: 0.9rem; color: var(--gris-clair); line-height: 1.7; }
.secure-band__resp { text-align: center; margin-top: 26px; font-size: 0.82rem; color: var(--gris-moyen); }
.secure-band__resp a { color: var(--rouge); }

/* ------------------------------------------------------------------ */
/* 17. FOOTER                                                         */
/* ------------------------------------------------------------------ */
.footer { background: #0a0a0a; padding: 72px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.3fr; gap: 42px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer__col h4 { font-family: var(--font-titre); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.76rem; color: #fff; margin-bottom: 22px; }
.footer__col ul li { margin-bottom: 12px; }
.footer__col ul a, .footer__col p { color: var(--gris-clair); font-size: 0.9rem; transition: color 0.3s var(--ease); }
.footer__col ul a:hover { color: var(--rouge); }
.footer__note { font-size: 0.78rem; color: var(--gris-sombre); margin-top: 14px; line-height: 1.6; }

/* Encadré disclaimer "enquêtes de terrain" en bas du footer */
.footer__disclaimer {
  margin: 30px 0 0; padding: 13px 22px;
  border: 1px solid rgba(255,255,255,0.08); border-left: 3px solid var(--rouge);
  background: rgba(255,255,255,0.02);
  font-size: 0.76rem; line-height: 1.55; color: var(--gris-clair);
}
.footer__disclaimer strong { color: var(--blanc-casse); font-weight: 600; }

/* Note de transparence sous les statistiques (accueil) */
.stats__note {
  text-align: center; max-width: 760px; margin: 40px auto 0;
  font-size: 0.82rem; font-style: italic; color: var(--gris-moyen); line-height: 1.6;
}
.footer__news { display: flex; margin-top: 14px; border: 1px solid rgba(255,255,255,0.14); }
.footer__news input { flex: 1; background: transparent; border: none; color: #fff; padding: 12px 14px; font-family: var(--font-corps); font-size: 0.85rem; }
.footer__news input:focus { outline: none; }
.footer__news button { background: var(--rouge); color: #fff; border: none; padding: 0 18px; font-family: var(--font-titre); font-weight: 700; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background 0.3s var(--ease); }
.footer__news button:hover { background: var(--rouge-fonce); }
.footer__email { font-family: var(--font-mono); font-size: 0.82rem; color: var(--rouge); word-break: break-all; }
.footer__socials { display: flex; gap: 12px; margin-top: 8px; }
.footer__socials a { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease); }
.footer__socials a { color: var(--gris-clair); }
.footer__socials a:hover { border-color: var(--rouge); color: var(--rouge); transform: translateY(-3px) scale(1.06); }
.footer__socials img, .footer__socials svg { width: 18px; height: 18px; fill: currentColor; display: block; }

.footer__bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; flex-wrap: wrap; }
.footer__bar img { height: 34px; }
.footer__legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__legal a { font-size: 0.78rem; color: var(--gris-clair); transition: color 0.3s var(--ease); }
.footer__legal a:hover { color: var(--rouge); }
.footer__copy { font-size: 0.78rem; color: var(--gris-sombre); }

/* ------------------------------------------------------------------ */
/* 18. COOKIE BANNER + BACK TO TOP                                    */
/* ------------------------------------------------------------------ */
.cookie {
  position: fixed; inset: auto 20px 20px 20px; z-index: 1200; max-width: 460px;
  background: var(--noir-carte); border: 1px solid rgba(230,50,50,0.3);
  padding: 24px 26px; box-shadow: var(--shadow-card);
  transform: translateY(160%); transition: transform 0.5s var(--ease);
}
.cookie.show { transform: none; }
.cookie h4 { font-family: var(--font-titre); font-weight: 700; font-size: 0.95rem; margin-bottom: 10px; letter-spacing: 0.05em; }
.cookie p { font-size: 0.84rem; color: var(--gris-clair); margin-bottom: 18px; line-height: 1.6; }
.cookie p a { color: var(--rouge); text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie__actions .btn { padding: 11px 22px; font-size: 0.7rem; }

.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 1100;
  width: 48px; height: 48px; border: none; cursor: pointer;
  background: var(--rouge); color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all 0.35s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--rouge-fonce); box-shadow: var(--shadow-red); }
.to-top svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.2; }

/* ------------------------------------------------------------------ */
/* 19. PAGE — HERO SECONDAIRE (sous-pages)                            */
/* ------------------------------------------------------------------ */
.subhero { padding: calc(var(--nav-h) + 70px) 0 70px; position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(230,50,50,0.07), transparent 55%); }
.subhero::before { content: ''; position: absolute; top: -140px; right: -160px; width: 640px; height: 640px; border: 1px solid rgba(230,50,50,0.08); border-radius: 50%; }
.subhero::after { content: ''; position: absolute; top: -40px; right: -60px; width: 440px; height: 440px; border: 1px solid rgba(230,50,50,0.05); border-radius: 50%; }
.subhero__inner { position: relative; z-index: 2; }
.subhero__title { font-family: var(--font-titre); font-weight: 800; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1; margin: 18px 0 22px; }
.subhero__title em { font-style: normal; color: var(--rouge); }
.subhero__lead { max-width: 640px; color: var(--gris-clair); font-size: 1.1rem; }

/* ------------------------------------------------------------------ */
/* 20. NOTRE ADN — TIMELINE                                           */
/* ------------------------------------------------------------------ */
.adn-hero { min-height: 92vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 32px; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(230,50,50,0.08), transparent 70%); }
.adn-hero__eyebrow { font-family: var(--font-titre); font-weight: 600; letter-spacing: 0.42em; text-transform: uppercase; font-size: 0.74rem; color: var(--rouge); margin-bottom: 26px; }
.adn-hero__title { font-family: var(--font-titre); font-weight: 800; font-size: clamp(3rem, 9vw, 7rem); line-height: 0.94; }
.adn-hero__title em { font-style: normal; color: var(--rouge); display: block; }
.adn-hero__quote { max-width: 640px; margin: 40px auto 0; color: var(--blanc-casse); font-style: italic; font-size: 1.15rem; line-height: 1.9; }

.timeline { position: relative; padding: 40px 0 120px; background: linear-gradient(to bottom, var(--noir), #0b0b0b 40%, var(--noir)); }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); background: linear-gradient(to bottom, transparent, rgba(230,50,50,0.3) 10%, rgba(230,50,50,0.3) 90%, transparent); }
.acte { display: grid; grid-template-columns: 1fr 88px 1fr; padding: 60px 32px; position: relative; }
.acte__content { }
.acte:nth-child(odd) .acte__content { grid-column: 1; text-align: right; padding-right: 54px; }
.acte:nth-child(odd) .acte__node { grid-column: 2; }
.acte:nth-child(even) .acte__node { grid-column: 2; }
.acte:nth-child(even) .acte__content { grid-column: 3; text-align: left; padding-left: 54px; }
.acte__node { display: flex; justify-content: center; align-items: flex-start; padding-top: 6px; }
.acte__badge { width: 58px; height: 58px; border: 1px solid var(--rouge); background: var(--noir); display: flex; align-items: center; justify-content: center; font-family: var(--font-stencil); font-size: 1.35rem; color: var(--rouge); position: relative; z-index: 2; transition: all 0.4s var(--ease); }
.acte__badge::before { content: ''; position: absolute; inset: 4px; border: 1px solid rgba(230,50,50,0.25); }
.acte:hover .acte__badge { background: rgba(230,50,50,0.1); box-shadow: 0 0 34px rgba(230,50,50,0.28); }
.acte__step { font-family: var(--font-titre); font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; font-size: 0.68rem; color: var(--rouge); }
.acte__title { font-family: var(--font-titre); font-weight: 800; font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.1; margin: 10px 0 20px; }
.acte__title em { font-style: normal; color: var(--blanc); display: block; }
.acte p { color: var(--gris-clair); margin-bottom: 14px; font-size: 1rem; }
.acte__verdict { display: inline-block; font-family: var(--font-titre); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.78rem; color: var(--rouge); border-top: 1px solid rgba(230,50,50,0.3); border-bottom: 1px solid rgba(230,50,50,0.3); padding: 10px 0; margin-top: 12px; }
.acte.final .acte__badge { background: linear-gradient(135deg, rgba(230,50,50,0.2), rgba(230,50,50,0.05)); box-shadow: 0 0 46px rgba(230,50,50,0.3); animation: glowPulse 3s ease-in-out infinite; }

.quote-band { text-align: center; padding: 100px 32px; background: linear-gradient(to bottom, #0b0b0b, rgba(230,50,50,0.04), #0b0b0b); position: relative; }
.quote-band__glyph { font-size: 2rem; color: var(--rouge); opacity: 0.7; margin-bottom: 24px; }
.quote-band blockquote { max-width: 820px; margin: 0 auto; font-family: var(--font-serif); font-style: italic; font-size: clamp(1.4rem, 3vw, 2.2rem); line-height: 1.6; color: #fff; }
.quote-band cite { display: block; margin-top: 28px; font-family: var(--font-titre); font-weight: 600; font-style: normal; letter-spacing: 0.28em; text-transform: uppercase; font-size: 0.76rem; color: var(--rouge); }

.mission { padding: 120px 0; background: linear-gradient(to bottom, var(--noir), #0b0b0b); }
.mission__constat { max-width: 760px; margin: 0 auto 70px; padding: 46px 52px; border: 1px solid rgba(230,50,50,0.12); background: rgba(230,50,50,0.02); position: relative; }
.mission__constat p { color: var(--gris-clair); font-style: italic; margin-bottom: 16px; }
.mission__constat p:last-child { margin-bottom: 0; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 1000px; margin: 0 auto 70px; border: 1px solid rgba(230,50,50,0.1); background: rgba(230,50,50,0.08); }
.pillar { background: var(--noir-carte); padding: 46px 34px; text-align: center; transition: background 0.3s var(--ease); }
.pillar:hover { background: var(--noir-surface); }
.pillar__glyph { font-size: 1.8rem; margin-bottom: 18px; }
.pillar h3 { font-family: var(--font-titre); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; font-size: 1rem; color: var(--rouge); margin-bottom: 16px; }
.pillar p { color: var(--gris-clair); font-size: 0.95rem; }
.mission__decl { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.mission__decl h2 { font-family: var(--font-titre); font-weight: 800; font-size: clamp(1.6rem, 3.4vw, 2.6rem); margin-bottom: 22px; }
.mission__decl p { color: var(--gris-clair); font-style: italic; }
.mission__stats { display: flex; justify-content: center; align-items: center; gap: 0; max-width: 720px; margin: 0 auto; padding: 44px; border: 1px solid rgba(230,50,50,0.12); background: rgba(230,50,50,0.02); }
.mission__stats .stat { flex: 1; text-align: center; }
.mission__stats .stat + .stat { border-left: 1px solid rgba(230,50,50,0.2); }

/* ------------------------------------------------------------------ */
/* 21. PAGE SERVICES (palette opérationnelle)                         */
/* ------------------------------------------------------------------ */
.page-services { --op-noir: #0c0c0f; --op-charbon: #111116; --op-encre: #16161c; background: var(--op-noir); }
.page-services .footer { background: #08080a; }
.ops-hero { padding: calc(var(--nav-h) + 60px) 0 80px; background: linear-gradient(135deg, rgba(139,0,0,0.08), transparent 55%); position: relative; overflow: hidden; }
.ops-hero::before { content: ''; position: absolute; top: -120px; right: -200px; width: 700px; height: 700px; border: 1px solid rgba(139,0,0,0.09); border-radius: 50%; }
.ops-hero__grid { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: flex-end; position: relative; z-index: 2; }
.ops-badge { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(139,0,0,0.45); background: rgba(139,0,0,0.06); padding: 8px 18px; margin-bottom: 26px; }
.ops-badge span { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--rouge); }
.ops-hero__title { font-family: var(--font-stencil); font-size: clamp(4rem, 9vw, 8rem); line-height: 0.86; letter-spacing: 0.02em; }
.ops-hero__title em { font-style: normal; color: var(--rouge-vif); }
.ops-hero__sub { max-width: 520px; margin-top: 20px; color: var(--blanc-casse); font-style: italic; font-family: var(--font-serif); font-size: 1.15rem; }
.ops-hero__mono { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(230,50,50,0.7); margin-top: 16px; }
.ops-stats { display: flex; flex-direction: column; gap: 2px; }
.ops-stat { text-align: center; padding: 22px 34px; border: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.01); min-width: 180px; transition: all 0.3s var(--ease); }
.ops-stat:hover { border-color: rgba(139,0,0,0.35); background: rgba(139,0,0,0.05); }
.ops-stat b { display: block; font-family: var(--font-stencil); font-size: 2.8rem; color: var(--rouge-vif); line-height: 1; }
.ops-stat span { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--blanc-casse); opacity: 0.6; }

.ops-intro { padding: 76px 0; background: var(--op-charbon); border-top: 1px solid rgba(139,0,0,0.15); border-bottom: 1px solid rgba(139,0,0,0.15); }
.ops-intro__grid { display: grid; grid-template-columns: 1fr 2fr; gap: 70px; align-items: center; }
.ops-intro h2 { font-family: var(--font-stencil); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; }
.ops-intro h2 em { font-style: normal; color: var(--rouge-vif); }
.ops-intro p { font-family: var(--font-serif); font-style: italic; color: var(--blanc-casse); font-size: 1.1rem; line-height: 1.9; }
.ops-intro__pillars { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 24px; }
.ops-intro__pillars span { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--blanc-casse); opacity: 0.6; display: flex; align-items: center; gap: 8px; }
.ops-intro__pillars span::before { content: ''; width: 14px; height: 1px; background: var(--rouge-sombre); }

.ops-quote { border-left: 3px solid var(--rouge-sombre); padding: 6px 0 6px 28px; margin: 60px auto 0; max-width: 900px; }
.ops-quote p { font-family: var(--font-stencil); font-size: clamp(1.4rem, 3vw, 2.2rem); letter-spacing: 0.02em; color: #fff; line-height: 1.15; }

.ops-services { padding: 70px 0 100px; }
.ops-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
.ops-head h2 { font-family: var(--font-stencil); font-size: clamp(2.6rem, 5vw, 4.6rem); line-height: 0.95; }
.ops-head h2 em { font-style: normal; color: var(--rouge-vif); }
.ops-head p { max-width: 340px; text-align: right; font-style: italic; color: var(--blanc-casse); opacity: 0.55; font-size: 0.95rem; }
.ops-mono { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(230,50,50,0.7); }

.ops-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(139,0,0,0.09); }
.ops-card { background: var(--op-noir); padding: 48px 44px; position: relative; overflow: hidden; transition: background 0.4s var(--ease); }
.ops-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, var(--rouge-sombre), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); }
.ops-card:hover { background: var(--op-charbon); }
.ops-card:hover::before { transform: scaleX(1); }
.ops-card__num { position: absolute; top: -8px; right: 28px; font-family: var(--font-stencil); font-size: 7rem; line-height: 1; color: rgba(139,0,0,0.07); pointer-events: none; transition: color 0.4s var(--ease); }
.ops-card:hover .ops-card__num { color: rgba(139,0,0,0.12); }
.ops-card__cat { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(230,50,50,0.7); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.ops-card__cat::before { content: ''; width: 20px; height: 1px; background: var(--rouge-sombre); }
.ops-card__title { font-family: var(--font-stencil); font-size: clamp(2rem, 3.4vw, 2.9rem); line-height: 0.95; letter-spacing: 0.03em; margin-bottom: 18px; }
.ops-card__rule { width: 40px; height: 1px; background: var(--rouge-sombre); margin-bottom: 20px; transition: width 0.4s var(--ease); }
.ops-card:hover .ops-card__rule { width: 80px; }
.ops-card__accroche { font-weight: 600; color: #fff; margin-bottom: 14px; font-size: 1.05rem; }
.ops-card__desc { font-family: var(--font-serif); font-style: italic; color: var(--blanc-casse); opacity: 0.72; line-height: 1.85; margin-bottom: 24px; }
.ops-card__list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 26px; }
.ops-card__list li { display: flex; gap: 12px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--blanc-casse); opacity: 0.62; line-height: 1.5; }
.ops-card__list li::before { content: '›'; color: var(--rouge-vif); font-family: var(--font-serif); font-size: 1rem; flex-shrink: 0; }
.ops-level { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.ops-level span { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blanc-casse); opacity: 0.5; }
.ops-bars { display: flex; gap: 4px; }
.ops-bars i { width: 24px; height: 4px; background: rgba(139,0,0,0.22); }
.ops-bars i.on { background: var(--rouge-vif); }
.ops-bars i.max { background: #ff1a1a; box-shadow: 0 0 8px rgba(255,26,26,0.5); }
.ops-card__cta { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rouge-vif); border: 1px solid rgba(139,0,0,0.4); padding: 12px 24px; transition: all 0.3s var(--ease); }
.ops-card__cta::after { content: '→'; transition: transform 0.3s var(--ease); }
.ops-card__cta:hover { background: rgba(139,0,0,0.12); border-color: var(--rouge-vif); color: #fff; }
.ops-card__cta:hover::after { transform: translateX(4px); }
.ops-card.vedette { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 54px; background: var(--op-encre); border: 1px solid rgba(139,0,0,0.12); }
.ops-card.vedette .ops-card__num { font-size: 10rem; }
.ops-aside { padding: 20px 24px; border: 1px solid rgba(139,0,0,0.2); background: rgba(139,0,0,0.04); margin-top: 10px; }
.ops-aside h5 { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(230,50,50,0.7); margin-bottom: 8px; }
.ops-aside p { font-size: 0.85rem; font-style: italic; color: var(--blanc-casse); opacity: 0.6; line-height: 1.7; }
.ops-aside.urgent { border-color: rgba(139,0,0,0.4); background: rgba(139,0,0,0.08); display: flex; align-items: center; gap: 14px; }
.ops-aside.urgent i { width: 10px; height: 10px; border-radius: 50%; background: var(--rouge-vif); animation: pulse 1s infinite; flex-shrink: 0; }
.ops-note { grid-column: 1/-1; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.06em; color: var(--blanc-casse); opacity: 0.45; line-height: 1.7; padding: 20px 44px; background: var(--op-charbon); }

.ops-process { background: var(--op-charbon); padding: 100px 0; border-top: 1px solid rgba(139,0,0,0.12); border-bottom: 1px solid rgba(139,0,0,0.12); }
.ops-process h2 { font-family: var(--font-stencil); font-size: clamp(2.4rem, 4.5vw, 4rem); margin-bottom: 56px; }
.ops-process h2 em { font-style: normal; color: var(--rouge-vif); }
.ops-steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.ops-steps::before { content: ''; position: absolute; top: 28px; left: 60px; right: 60px; height: 1px; background: linear-gradient(to right, transparent, rgba(139,0,0,0.4) 20%, rgba(139,0,0,0.4) 80%, transparent); }
.ops-step { padding: 0 26px 30px; position: relative; z-index: 1; }
.ops-step b { width: 56px; height: 56px; border: 1px solid rgba(139,0,0,0.4); background: var(--op-charbon); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; font-family: var(--font-stencil); font-size: 1.4rem; color: var(--rouge-vif); }
.ops-step h4 { font-family: var(--font-stencil); font-size: 1.25rem; letter-spacing: 0.06em; margin-bottom: 10px; }
.ops-step p { font-size: 0.92rem; font-style: italic; color: var(--blanc-casse); opacity: 0.5; }

.ops-conf { padding: 80px 0; }
.ops-conf__grid { display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: start; }
.ops-conf__icon { width: 78px; height: 78px; border: 1px solid rgba(139,0,0,0.3); display: flex; align-items: center; justify-content: center; }
.ops-conf__icon svg { width: 34px; height: 34px; stroke: var(--rouge-vif); fill: none; stroke-width: 1.5; }
.ops-conf h2 { font-family: var(--font-stencil); font-size: clamp(1.8rem, 3.2vw, 2.8rem); margin-bottom: 28px; }
.ops-conf h2 em { font-style: normal; color: var(--rouge-vif); }
.ops-conf__items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(139,0,0,0.08); }
.ops-conf__item { background: var(--op-noir); padding: 26px 22px; transition: background 0.3s var(--ease); }
.ops-conf__item:hover { background: rgba(139,0,0,0.05); }
.ops-conf__item h5 { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--rouge-vif); margin-bottom: 10px; }
.ops-conf__item p { font-size: 0.86rem; font-style: italic; color: var(--blanc-casse); opacity: 0.5; line-height: 1.65; }

/* ------------------------------------------------------------------ */
/* 22. PAGE CONCRÈTEMENT — CAS                                        */
/* ------------------------------------------------------------------ */
.cases { padding: 90px 0 100px; }
.case { border: 1px solid rgba(255,255,255,0.08); background: var(--noir-carte); margin-bottom: 22px; overflow: hidden; }
.case__head { display: flex; align-items: center; gap: 26px; padding: 32px 36px; cursor: pointer; position: relative; transition: background 0.3s var(--ease); }
.case__head:hover { background: var(--noir-surface); }
.case__num { font-family: var(--font-stencil); font-size: 3rem; color: rgba(230,50,50,0.3); line-height: 1; flex-shrink: 0; width: 66px; }
.case__tag { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--rouge); margin-bottom: 8px; }
.case__title { font-family: var(--font-titre); font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.5rem); line-height: 1.2; }
.case__sub { color: var(--gris-moyen); font-size: 0.86rem; margin-top: 4px; font-style: italic; }
.case__toggle { margin-left: auto; width: 40px; height: 40px; border: 1px solid rgba(230,50,50,0.4); color: var(--rouge); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; transition: all 0.3s var(--ease); }
.case.open .case__toggle { background: var(--rouge); color: #fff; transform: rotate(45deg); }
.js .case__body { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.js .case.open .case__body { max-height: 1600px; }
.case__inner { padding: 8px 36px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.case__block h4 { font-family: var(--font-titre); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.68rem; color: var(--rouge); margin-bottom: 12px; }
.case__block p { color: var(--gris-clair); font-size: 0.95rem; }
.case__block ul li { display: flex; gap: 10px; color: var(--gris-clair); font-size: 0.92rem; margin-bottom: 8px; }
.case__block ul li::before { content: '◆'; color: var(--rouge); font-size: 0.6rem; margin-top: 6px; flex-shrink: 0; }
.case__result li::before { content: '✓'; color: #4caf72; font-size: 0.85rem; margin-top: 1px; }
.case__quote { grid-column: 1/-1; border-left: 3px solid var(--rouge); padding: 14px 24px; font-family: var(--font-serif); font-style: italic; color: var(--blanc-casse); font-size: 1.05rem; background: rgba(230,50,50,0.03); }
.case__full { grid-column: 1/-1; }

/* ------------------------------------------------------------------ */
/* 23. PAGES LÉGALES                                                  */
/* ------------------------------------------------------------------ */
.legal { padding: calc(var(--nav-h) + 50px) 0 90px; }
.legal__back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-titre); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rouge); margin-bottom: 30px; }
.legal__wrap { max-width: 820px; margin: 0 auto; }
.legal h1 { font-family: var(--font-titre); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 10px; }
.legal__date { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.1em; color: var(--gris-moyen); margin-bottom: 34px; text-transform: uppercase; }
.legal__intro { color: var(--gris-clair); font-size: 1.02rem; padding: 22px 26px; background: var(--noir-carte); border-left: 3px solid var(--rouge); margin-bottom: 40px; }
.legal h2 { font-family: var(--font-titre); font-weight: 700; font-size: 1.3rem; margin: 40px 0 16px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07); }
.legal h3 { font-family: var(--font-titre); font-weight: 600; font-size: 1.02rem; color: var(--rouge); margin: 24px 0 10px; }
.legal p { color: var(--gris-clair); margin-bottom: 16px; }
.legal ul { margin: 0 0 18px 4px; }
.legal ul li { color: var(--gris-clair); margin-bottom: 10px; padding-left: 22px; position: relative; }
.legal ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 8px; height: 1px; background: var(--rouge); }
.legal strong { color: #fff; font-weight: 600; }
.legal a { color: var(--rouge); text-decoration: underline; }
.legal__data { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.07); margin: 18px 0 26px; }
.legal__data div { background: var(--noir-carte); padding: 14px 18px; }
.legal__data dt { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gris-moyen); margin-bottom: 4px; }
.legal__data dd { color: #fff; font-size: 0.92rem; }
.legal__callout { padding: 20px 24px; background: rgba(76,175,114,0.08); border: 1px solid rgba(76,175,114,0.4); color: #9fe0b6; margin: 22px 0; }
.legal__callout strong { color: #c7f0d5; }

/* Préférences cookies */
.cookie-prefs { display: flex; flex-direction: column; gap: 2px; margin: 30px 0; }
.cookie-pref { background: var(--noir-carte); border: 1px solid rgba(255,255,255,0.08); padding: 24px 26px; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.cookie-pref h3 { color: #fff; margin: 0 0 8px; }
.cookie-pref p { margin: 0; font-size: 0.9rem; }
.cookie-actions-top { display: flex; gap: 12px; margin-bottom: 26px; flex-wrap: wrap; }
.switch { position: relative; width: 52px; height: 28px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider { position: absolute; inset: 0; background: var(--noir-surface-2); border: 1px solid rgba(255,255,255,0.15); cursor: pointer; transition: 0.3s; border-radius: 28px; }
.switch .slider::before { content: ''; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: var(--gris-clair); transition: 0.3s; border-radius: 50%; }
.switch input:checked + .slider { background: rgba(230,50,50,0.3); border-color: var(--rouge); }
.switch input:checked + .slider::before { transform: translateX(23px); background: var(--rouge); }
.switch input:disabled + .slider { opacity: 0.5; cursor: not-allowed; }

/* ------------------------------------------------------------------ */
/* 24. 404                                                            */
/* ------------------------------------------------------------------ */
.nf { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 32px; }
.nf h1 { font-family: var(--font-stencil); font-size: clamp(6rem, 20vw, 14rem); line-height: 0.9; color: var(--rouge); text-shadow: 0 0 80px rgba(230,50,50,0.4); }
.nf h2 { font-family: var(--font-titre); font-weight: 700; font-size: 1.6rem; margin: 10px 0 18px; }
.nf p { color: var(--gris-clair); max-width: 440px; margin: 0 auto 34px; }

/* ------------------------------------------------------------------ */
/* 25. RESPONSIVE                                                     */
/* ------------------------------------------------------------------ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .folio__grid { grid-template-columns: repeat(2, 1fr); }
  .ops-conf__items { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .svc-grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .secure-band__grid { grid-template-columns: 1fr; }
  .ops-hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .ops-stats { flex-direction: row; flex-wrap: wrap; }
  .ops-intro__grid { grid-template-columns: 1fr; gap: 28px; }
  .ops-grid { grid-template-columns: 1fr; }
  .ops-card.vedette { grid-column: span 1; grid-template-columns: 1fr; gap: 30px; }
  .ops-steps { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .ops-steps::before { display: none; }
  .ops-conf__grid { grid-template-columns: 1fr; gap: 30px; }
  .ops-head { flex-direction: column; align-items: flex-start; }
  .ops-head p { text-align: left; }
}
@media (max-width: 720px) {
  .container, .nav__inner, .hero__inner, .footer__grid, .ops-hero__grid { padding-left: 22px; padding-right: 22px; }
  .section { padding: 76px 0; }
  .timeline::before { left: 28px; }
  .acte { grid-template-columns: 56px 1fr; padding: 34px 22px 34px 0; gap: 0; }
  .acte:nth-child(odd) .acte__content,
  .acte:nth-child(even) .acte__content { grid-column: 2; text-align: left; padding: 0 0 0 26px; }
  .acte:nth-child(odd) .acte__node,
  .acte:nth-child(even) .acte__node { grid-column: 1; }
  .acte__verdict { text-align: left; }
  .pillars { grid-template-columns: 1fr; }
  .mission__stats { flex-direction: column; gap: 30px; }
  .mission__stats .stat + .stat { border-left: none; border-top: 1px solid rgba(230,50,50,0.2); padding-top: 30px; }
  .case__inner { grid-template-columns: 1fr; gap: 24px; }
  .case__head { padding: 24px 22px; gap: 16px; }
  .case__num { font-size: 2.2rem; width: 46px; }
  .folio__grid { grid-template-columns: 1fr 1fr; }
  .ops-conf__items { grid-template-columns: 1fr; }
  .ops-steps { grid-template-columns: 1fr; }
  .legal__data { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 100px 1fr; }
  .form-shell { padding: 28px 22px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { flex-d