/* ============================================================
   DIIKA INGÉNIERIE — Agero design system
   ============================================================ */


/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:           #FFFFFF;
  --bg-off:       #F5F5F5;
  --ink:          #111111;
  --ink-muted:    #666666;
  --orange:       #E8530A;
  --dark:         #1A1A1A;
  --white:        #FFFFFF;
  --r-card:       24px;
  --r-pill:       9999px;
  --font:         'Outfit', system-ui, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;
}

/* ── RESET ───────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { overflow-x:clip; }   /* clip (not hidden) — hides x-overflow WITHOUT making a scroll container that breaks position:sticky under Lenis */
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }

/* ── UTILITIES ───────────────────────────────────────────── */
.accent { color: var(--orange); }
.muted  { color: #9A9A9A; }

/* Skip link — accessibilité clavier */
.skip-link {
  position:fixed; left:12px; top:-60px; z-index:1000;
  background:var(--ink); color:#fff;
  padding:10px 18px; border-radius:10px;
  font-size:14px; font-weight:600;
  transition:top .2s ease;
}
.skip-link:focus { top:12px; outline:2px solid var(--orange); outline-offset:2px; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--reveal-d, 0) * 1ms);
}
.reveal.is-visible { opacity:1; transform:translateY(0); }
.reveal--d1 { transition-delay:.12s; }
.reveal--d2 { transition-delay:.24s; }
.reveal--d3 { transition-delay:.36s; }

/* ── CLIP LINE REVEAL ─────────────────────────────────────
   Each .section-heading line wraps in overflow:hidden,
   inner span slides up from translateY(110%)            */
.clip-line {
  display:block;
  overflow:hidden;
  line-height:1.08;
}
.clip-line__inner {
  display:block;
  transform:translateY(110%);
  transition:transform 1s cubic-bezier(.16,1,.3,1);
}
.clip-line.revealed .clip-line__inner { transform:translateY(0); }

/* ── WORD SPLIT REVEAL ────────────────────────────────────
   Hero sub + about paragraphs — words slide from below   */
.word { display:inline-block; overflow:hidden; vertical-align:bottom; }
.word__inner {
  display:inline-block;
  transform:translateY(110%);
  transition:transform .7s cubic-bezier(.16,1,.3,1);
  transition-delay:calc(var(--wi,0) * 35ms + .05s);
}
.word-split.is-visible .word__inner { transform:translateY(0); }

/* ── MAGNETIC ─────────────────────────────────────────────
   Smooth return after magnetic repel                     */
.magnetic { transition:transform .5s cubic-bezier(.16,1,.3,1) !important; }

/* ── PARALLAX ─────────────────────────────────────────────
   Parent overflow:hidden so parallax img stays clipped   */
.parallax-wrap { overflow:hidden; }
.parallax-inner { will-change:transform; transform:scale(1.12); }

/* ── CURSOR ──────────────────────────────────────────────── */
.cursor-dot {
  position:fixed; width:8px; height:8px;
  background:var(--orange); border-radius:50%;
  pointer-events:none; z-index:9999;
  transform:translate(-50%,-50%);
}
.cursor-ring {
  position:fixed; width:36px; height:36px;
  border:1.5px solid var(--orange); border-radius:50%;
  pointer-events:none; z-index:9998;
  transform:translate(-50%,-50%);
  opacity:.4;
  transition:width .2s,height .2s,opacity .2s;
}
.cursor-ring.hover { width:52px; height:52px; opacity:.25; }
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display:none; }
}

/* ── SCROLL PROGRESS ─────────────────────────────────────── */
.progress-bar {
  position:fixed; top:0; left:0; height:2px; width:0%;
  background:var(--orange); z-index:9997;
}

/* ── TOP BADGE dot animation (réutilisé dans .nav__announce) ─ */
.top-badge__dot {
  width:7px; height:7px; border-radius:50%;
  background:#22c55e; flex-shrink:0;
  animation:pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.6;transform:scale(.8)}
}

/* ── NAV — announce intégré + barre principale ──────────────── */
.nav {
  position:fixed; top:0; left:0; right:0;
  display:flex; flex-direction:column;
  z-index:100;
}
/* Bande d'annonce (fond sombre, toujours présente) */
.nav__announce {
  display:flex; align-items:center; justify-content:center; gap:8px;
  background:#1A1A1A; color:#fff;
  font-size:13px; font-weight:500; letter-spacing:.01em;
  padding:7px 20px; height:30px; overflow:hidden;
  white-space:nowrap;
  transition:height .35s cubic-bezier(.16,1,.3,1), padding .35s cubic-bezier(.16,1,.3,1), opacity .25s;
}
.nav.scrolled .nav__announce {
  height:0; padding:0; opacity:0;
}
/* Barre logo + liens */
.nav__row {
  position:relative;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 40px; height:60px;
  transition:background .3s, box-shadow .3s;
}
.nav.scrolled .nav__row {
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  box-shadow:0 1px 0 rgba(0,0,0,.06);
}
.nav__logo {
  flex-shrink:0; display:flex; align-items:center;
}
.nav__logo-img {
  height:44px; width:auto; display:block;
  object-fit:contain;
}
.nav__links {
  display:flex; gap:22px;
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
}
.nav__link {
  font-size:14px; font-weight:500; color:var(--ink-muted);
  transition:color .2s;
  position: relative;
  padding-bottom: 3px;
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%; right: 50%;
  height: 1.5px;
  background: var(--orange);
  border-radius: 2px;
  transition: left .3s cubic-bezier(.16,1,.3,1), right .3s cubic-bezier(.16,1,.3,1);
}
.nav__link:hover { color:var(--ink); }
.nav__link:hover::after { left: 0; right: 0; }
.nav__cta {
  font-size:14px; font-weight:600;
  background:var(--dark); color:#fff;
  padding:10px 22px; border-radius:var(--r-pill);
  transition:background .2s, transform .2s cubic-bezier(.16,1,.3,1), box-shadow .2s;
}
.nav__cta:hover { background:#111; transform:scale(1.04) translateY(-1px); box-shadow:0 8px 20px rgba(0,0,0,.2); }
.nav__hamburger {
  display:none; flex-direction:column; justify-content:center; align-items:center; gap:5px;
  background:none; border:none; cursor:pointer;
  width:44px; height:44px; padding:0;   /* cible tactile >= 44px */
}
.nav__hamburger span {
  display:block; width:22px; height:2px;
  background:var(--ink); border-radius:2px;
  transition:transform .3s, opacity .3s;
}
.nav__hamburger.open span:first-child { transform:translateY(7px) rotate(45deg); }
.nav__hamburger.open span:last-child  { transform:translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ───────────────────────────────────────── */
.mobile-drawer {
  position:fixed; inset:0; background:var(--white);
  display:flex; flex-direction:column; align-items:center;
  justify-content:center; gap:28px;
  z-index:90; opacity:0; pointer-events:none;
  transition:opacity .3s;
}
.mobile-drawer.open { opacity:1; pointer-events:auto; }
.mobile-drawer__link {
  font-size:28px; font-weight:700; color:var(--ink);
  font-family:var(--font);
  transition:color .2s;
}
.mobile-drawer__link:hover { color:var(--orange); }
.mobile-drawer__cta {
  margin-top:12px; font-size:16px; font-weight:600;
  background:var(--dark); color:#fff;
  padding:14px 32px; border-radius:var(--r-pill);
  font-family:var(--font);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero-sticky-wrap {
  position:relative;
  z-index:0;
  height:120vh;
}
.hero {
  position:sticky; top:0;
  height:100vh;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  text-align:center;
  background:var(--bg);
  overflow:hidden;
}
.hero__content {
  display:flex; flex-direction:column;
  align-items:center;
  padding:0 48px;
  transform-origin:center center;
  will-change:transform,opacity;
}

.hero__trust {
  display:flex; align-items:center; gap:12px;
  margin-bottom:40px;
  opacity:0; animation:fade-up .6s .2s forwards;
}
.hero__trust-badge {
  height:28px; width:28px;
  object-fit:contain; flex-shrink:0;
}
.hero__trust-text {
  font-size:14px; font-weight:500;
  color:var(--ink-muted); letter-spacing:.01em;
  white-space:nowrap;
}

.hero__title {
  font-family: var(--font-display);
  font-size:clamp(44px,6.8vw,100px);
  font-weight:300; line-height:1.05;
  letter-spacing:-.02em; color:var(--ink);
  margin-bottom:32px; width:100%;
  max-width:1300px;
}
.hero__line {
  display:flex; align-items:center;
  justify-content:center; flex-wrap:nowrap;
  gap:0 18px; overflow:hidden;
  line-height:1.15;
}
.lr {
  display:inline-block;
  transform:translateY(110%);
  animation:line-reveal .8s cubic-bezier(.16,1,.3,1) forwards;
  animation-play-state:paused;
}
body.loaded .hero__line:nth-child(1) .lr { animation-play-state:running; animation-delay:.1s; }
body.loaded .hero__line:nth-child(2) .lr { animation-play-state:running; animation-delay:.26s; }
body.loaded .hero__line:nth-child(3) .lr { animation-play-state:running; animation-delay:.42s; }
@keyframes line-reveal { to { transform:translateY(0); } }

.hero__pill-img {
  display:inline-block;
  width:clamp(48px,5.5vw,76px);
  height:clamp(48px,5.5vw,76px);
  border-radius:50%;
  background-size:cover; background-position:center;
  margin:0 6px; flex-shrink:0;
  border:3px solid rgba(0,0,0,.08);
}
.hpi1 { background-color:#b5723a; background-image:radial-gradient(circle at 35% 30%,#e8530a 0%,#7a3a0a 55%,#2a1a0a 100%); }
.hpi2 { background-color:#2a3a5c; background-image:radial-gradient(circle at 40% 35%,#4a6a9a 0%,#1a2a5c 55%,#0a1020 100%); }
.hpi3 { background-color:#3a5c3a; background-image:radial-gradient(circle at 55% 40%,#7ab87a 0%,#2a5c2a 55%,#0a1a0a 100%); }

.hero__sub {
  font-size:17px; font-weight:400; color:var(--ink-muted);
  line-height:1.65; margin-bottom:44px; max-width:560px;
  opacity:0; animation:fade-up .7s .55s forwards;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-dark {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--dark); color:#fff;
  font-size:15px; font-weight:600;
  padding:14px 28px; border-radius:var(--r-pill);
  border:none; cursor:pointer; font-family:var(--font);
  transition:background .2s, transform .2s cubic-bezier(.16,1,.3,1), box-shadow .2s;
  opacity:0; animation:fade-up .7s .7s forwards;
  position:relative; overflow:hidden;
}
.btn-dark::before {
  content:'';
  position:absolute; top:0; left:-80%;
  width:60%; height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.11), transparent);
  transform:skewX(-18deg);
  transition:left .55s ease;
  pointer-events:none;
}
.btn-dark:hover { background:#111; transform:translateY(-2px); box-shadow:0 12px 32px rgba(0,0,0,.25); }
.btn-dark:hover::before { left:145%; }
.btn-dark--full { width:100%; justify-content:center; opacity:1; animation:none; margin-top:8px; }

/* Bouton créatif — le texte glisse, une pastille orange s'étend, le texte+flèche arrive */
.btn-creative {
  position:relative; display:inline-block; cursor:pointer;
  padding:15px 30px; border:1px solid rgba(0,0,0,.16);
  background:#fff; color:var(--ink);
  border-radius:var(--r-pill); overflow:hidden;
  font-family:var(--font); font-size:15px; font-weight:600;
  line-height:1; text-align:center; white-space:nowrap;
  isolation:isolate; -webkit-tap-highlight-color:transparent;
}
.btn-creative__txt {
  position:relative; z-index:2; display:inline-block;
  transform:translateX(2px);
  transition:transform .35s cubic-bezier(.16,1,.3,1), opacity .3s;
}
.btn-creative:hover .btn-creative__txt { transform:translateX(46px); opacity:0; }
.btn-creative__hover {
  position:absolute; inset:0; z-index:2;
  display:flex; align-items:center; justify-content:center; gap:8px;
  color:#fff; transform:translateX(46px); opacity:0;
  transition:transform .35s cubic-bezier(.16,1,.3,1), opacity .3s;
}
.btn-creative:hover .btn-creative__hover { transform:translateX(0); opacity:1; }
.btn-creative__hover svg, .btn-creative__hover i { width:18px; height:18px; font-size:16px; flex:none; }
.svc-big__more svg, .svc-big__more i { width:16px; height:16px; font-size:14px; flex:none; }
.btn-creative__dot {
  position:absolute; z-index:1; top:46%; left:22%;
  width:7px; height:7px; border-radius:12px;
  background:var(--orange);
  transition:all .4s cubic-bezier(.16,1,.3,1);
}
.btn-creative:hover .btn-creative__dot {
  top:0; left:0; width:100%; height:100%;
  border-radius:var(--r-pill); transform:scale(1.6);
}
.btn-creative--sm  { padding:11px 22px; font-size:14px; }
.btn-creative--full { display:block; width:100%; margin-top:8px; }

/* ── VIDÉOS — sticky stacking (smooth scroll) ─────────────── */
.videos-section {
  background: var(--dark);
  padding: 88px 0;
}
.videos-inner {
  width: 80%;
  max-width: 1280px;
  margin: 0 auto;
}
.videos-intro {
  padding: 0 0 52px;
}
.videos-intro .section-label { color: rgba(255,255,255,.4); }
.videos-intro .section-heading { color: #fff; }
.videos-sub {
  font-size: 16px; line-height: 1.8;
  color: rgba(255,255,255,.55);
  max-width: 560px; margin:22px auto 48px;
  text-align: center;
}
.vid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.vid-wrap {
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s, border-color .35s;
}
.vid-wrap:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 28px 70px rgba(0,0,0,.5), 0 0 0 1px rgba(232,96,41,.35);
  border-color: rgba(232,96,41,.25);
}
.vid {
  width: 100%; height: auto; display: block;
  transition: filter .35s;
}
.vid-wrap:hover .vid { filter: brightness(1.06); }

@keyframes fade-up {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── SECTION LABEL ───────────────────────────────────────── */
.section-label {
  text-align:center; font-size:13px; font-weight:500;
  color:var(--ink-muted); margin-bottom:20px; letter-spacing:.04em;
}

/* ── SECTION HEADING ─────────────────────────────────────── */
.section-heading {
  font-family: var(--font-display);
  font-size:clamp(38px,5vw,68px);
  font-weight:300; line-height:1.05;
  letter-spacing:-.02em; color:var(--ink);
  text-align:center; margin-bottom:48px;
}
/* Sections avec texte d'intro juste après le titre — moins d'espace */
.gallery-section .section-heading,
.videos-intro .section-heading,
.team-section .section-heading { margin-bottom:24px; }

/* ── DIAGONAL MARQUEE CROSS ──────────────────────────────── */
.marquee-cross {
  position:absolute;
  bottom:48px; left:0; right:0;
  height:220px; overflow:visible;
  pointer-events:none;
  z-index:1;
}
.mc-band {
  position:absolute; width:160%; left:-30%;
  overflow:hidden; white-space:nowrap; padding:14px 0;
}
.mc-band--1 {
  background:var(--orange);
  transform:rotate(-5deg); top:28px;
}
.mc-band--2 {
  background:#009A44;
  transform:rotate(5deg); top:100px;
}
.mc-rail {
  display:flex; width:max-content;
  animation:mc-scroll 26s linear infinite;
}
.mc-rail--rev { animation-direction:reverse; animation-duration:20s; }
.marquee-cross:hover .mc-rail { animation-play-state:paused; }
.mc-track {
  display:flex; align-items:center;
  white-space:nowrap; flex-shrink:0;
  font-size:14px; font-weight:700; color:#fff;
  letter-spacing:.06em; text-transform:uppercase;
  font-family:var(--font); padding:14px 0;
}
.msx { margin:0 20px; opacity:.45; }
@keyframes mc-scroll {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}

/* ── STATS ───────────────────────────────────────────────── */
.stats-section {
  padding:100px 80px;
  position:relative; z-index:2;
  background:var(--bg);
  border-radius:24px 24px 0 0;
  box-shadow:0 -8px 40px rgba(0,0,0,.08);
}
.stats-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
  max-width:1200px; margin:0 auto;
}
.stat-card {
  border-radius:var(--r-card); padding:40px 36px;
  transition:transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
}
.stat-card:hover { transform:translateY(-5px); box-shadow:0 20px 52px rgba(0,0,0,.14); }
.sc-dark  { background:var(--dark); color:#fff; }
.sc-light { background:var(--white); color:var(--ink); box-shadow:0 2px 16px rgba(0,0,0,.07); border:1px solid rgba(0,0,0,.06); }
.sc-label {
  font-size:12px; font-weight:600; opacity:.55;
  margin-bottom:16px; text-transform:uppercase; letter-spacing:.06em;
}
.sc-num {
  font-size:clamp(56px,6vw,80px); font-weight:800;
  line-height:1; letter-spacing:-.03em; margin-bottom:16px;
  color:#fff;
}
.sc-light .sc-num { color:var(--ink); }
.sc-num--orange { color:var(--orange) !important; }
.sc-desc { font-size:14px; line-height:1.65; opacity:.6; }

/* ── SERVICES ────────────────────────────────────────────── */
.svc-section { padding:100px 80px 0; }
.svc-list {
  position:relative;
  max-width:1100px; margin:0 auto;
}
.svc-stack-item {
  position:sticky; top:0;
  height:100vh;
  display:flex; align-items:center; justify-content:center;
}
.svc-big {
  position:relative;
  top:calc(-3vh + var(--i,0) * 26px);
  height:74vh;
  width:100%;
  background:var(--svc-bg,#1C1C1C);
  border-radius:24px;
  padding:52px 56px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:48px; align-items:center;
  overflow:hidden;
  transform-origin:top center;
  will-change:transform;
  border:1px solid rgba(255,255,255,.04);
  transition:border-color .35s;
}
.svc-big:hover { border-color:rgba(255,255,255,.09); }
.svc-big__num {
  display:block; font-size:12px; font-weight:700;
  letter-spacing:.12em; color:rgba(255,255,255,.35);
  text-transform:uppercase; margin-bottom:18px;
}
.svc-big__title {
  font-size:clamp(24px,3vw,34px); font-weight:800;
  color:#fff; letter-spacing:-.025em; margin-bottom:16px;
}
.svc-big__desc {
  font-size:15px; line-height:1.75;
  color:rgba(255,255,255,.55); max-width:500px; margin-bottom:28px;
}
.svc-big__tags { display:flex; flex-wrap:wrap; gap:10px; }
.svc-big__tags span {
  font-size:12px; font-weight:500;
  border:1px solid rgba(255,255,255,.2);
  color:rgba(255,255,255,.65);
  padding:5px 14px; border-radius:var(--r-pill);
}
.svc-big__visual {
  width:210px; height:210px; border-radius:20px;
  background:rgba(255,255,255,.06);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap:14px; flex-shrink:0;
}
.svc-big__badge {
  font-size:10px; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; color:rgba(255,255,255,.9);
  background:rgba(255,255,255,.12);
  padding:5px 14px; border-radius:var(--r-pill);
}
.svc-big__icon-bg {
  display:flex; align-items:center; justify-content:center;
  width:80px; height:80px;
}
.svc-big__icon-bg svg, .svc-big__icon-bg i {
  width:56px; height:56px;
  font-size:52px; line-height:1;
  color:rgba(255,255,255,.7);
}

/* ── ORANGE MARQUEE ──────────────────────────────────────── */
.marquee-orange { overflow:hidden; background:var(--orange); padding:16px 0; cursor:default; }
.mo-track {
  display:inline-block; white-space:nowrap;
  animation:mc-scroll 18s linear infinite;
  font-size:15px; font-weight:800; color:#fff;
  letter-spacing:.07em; text-transform:uppercase;
  font-family:var(--font);
}
.marquee-orange:hover .mo-track { animation-play-state:paused; }
.mox { margin:0 22px; opacity:.45; }

/* ── STAMP rotatif (réutilisé par la section « Mot de la DG ») ─ */
.stamp-text {
  font-size:7px; font-weight:700; letter-spacing:.2em;
  text-transform:uppercase; color:rgba(255,255,255,.7);
  animation:stamp-spin 10s linear infinite;
  transform-origin:50% 50%;
  white-space:nowrap;
}
@keyframes stamp-spin { to { transform:rotate(360deg); } }

/* ── SECTEURS ────────────────────────────────────────────── */
.secteurs-section { padding:100px 80px; background:var(--white); }
.secteurs-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
  max-width:1200px; margin:0 auto;
}
.secteur-card {
  background:var(--bg); border-radius:var(--r-card); padding:36px 28px;
  border: 1px solid rgba(0,0,0,.07);
  border-top: 2px solid rgba(0,0,0,.07);
  transition:transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s, border-color .3s;
}
.secteur-card:hover {
  transform:translateY(-6px);
  box-shadow:0 20px 48px rgba(0,0,0,.1);
  border-color: rgba(232,96,41,.18);
  border-top-color: var(--orange);
}
.secteur-card__icon {
  width:48px; height:48px; margin-bottom:20px;
  display:flex; align-items:center; justify-content:center;
}
.secteur-card__icon svg, .secteur-card__icon i {
  width:36px; height:36px; font-size:30px; color:var(--orange);
  transition:transform .35s cubic-bezier(.16,1,.3,1);
}
.secteur-card:hover .secteur-card__icon svg,
.secteur-card:hover .secteur-card__icon i { transform:scale(1.2) rotate(-6deg); }
.secteur-card__title {
  font-size:20px; font-weight:800; margin-bottom:10px;
  letter-spacing:-.02em;
}
.secteur-card__desc { font-size:14px; line-height:1.65; color:var(--ink-muted); }

/* ── POURQUOI ────────────────────────────────────────────── */
.why-section { padding:100px 80px; }
.why-grid {
  display:grid; grid-template-columns:repeat(2,1fr); gap:16px;
  max-width:1200px; margin:0 auto;
}
.why-card {
  background:var(--white); border-radius:var(--r-card);
  padding:40px 36px;
  border: 1px solid rgba(0,0,0,.07);
  border-left: 3px solid rgba(0,0,0,.07);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition:transform .3s cubic-bezier(.16,1,.3,1), border-color .3s, box-shadow .3s;
}
.why-card:hover {
  transform:translateY(-5px);
  border-color: rgba(0,0,0,.07);
  border-left-color: var(--orange);
  box-shadow:0 16px 48px rgba(0,0,0,.1);
}
.why-card__num {
  display:block; font-size:12px; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase;
  color:var(--orange); margin-bottom:20px;
}
.why-card__title {
  font-size:22px; font-weight:800; margin-bottom:12px;
  letter-spacing:-.025em;
}
.why-card__desc { font-size:15px; line-height:1.75; color:var(--ink-muted); }

/* ── TALENTS / ÉQUIPE ────────────────────────────────────── */
.team-section { padding:100px 80px 0; background:var(--white); }
.team-intro {
  font-size:16px; line-height:1.8; color:var(--ink-muted);
  max-width:680px; margin:24px auto 56px; text-align:center;
}

/* ── TEAM STACK — sticky cards (même mécanique que svc) ──── */
.team-stack { position:relative; }
.team-stack-item {
  position:sticky; top:0;
  height:100vh;
  display:flex; align-items:center; justify-content:center;
  background:var(--white);
}
.team-card {
  margin:0;
  width: min(420px, 90vw);
  height:78vh;
  border-radius:28px; overflow:hidden;
  position:relative;
  transform-origin:top center;
  box-shadow:0 24px 64px rgba(0,0,0,.14);
}
.team-card__photo {
  position:absolute; inset:0;
}
.team-card__photo img {
  width:100%; height:100%; object-fit:cover;
  display:block;
  transition:transform .6s cubic-bezier(.16,1,.3,1);
}
.team-card:hover .team-card__photo img { transform:scale(1.04); }
.team-card__cap {
  position:absolute; bottom:0; left:0; right:0;
  display:flex; flex-direction:column; gap:4px;
  padding:48px 28px 28px;
  background:linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
  color:#fff;
}
.team-card__cap strong { font-size:20px; font-weight:700; letter-spacing:-.01em; color:#fff; }
.team-card__cap span { font-size:14px; color:rgba(255,255,255,.75); }
.team-card__cap em {
  font-size:11px; font-style:normal; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--orange); margin-top:2px;
}

/* Grid fallback (non-JS / mobile) */
.team-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
  max-width:1200px; margin:0 auto;
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-section { padding:100px 80px; background:var(--white); }
.contact-grid {
  display:grid; grid-template-columns:1fr 420px; gap:40px;
  max-width:1200px; margin:0 auto; align-items:start;
}
.contact-form-wrap {
  background:var(--bg); border-radius:var(--r-card); padding:48px;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.form-label { font-size:13px; font-weight:600; }
.form-input {
  background:var(--white); border:1.5px solid rgba(0,0,0,.1);
  border-radius:12px; padding:12px 16px;
  font-size:15px; font-family:var(--font); color:var(--ink);
  outline:none; transition:border-color .25s, box-shadow .25s; appearance:none;
}
.form-input:focus {
  border-color:var(--orange);
  box-shadow:0 0 0 3px rgba(232,96,41,.12);
}
.form-textarea { resize:vertical; min-height:120px; }
.form-feedback {
  font-size:14px; padding:6px 0; font-weight:500;
  color:var(--orange); min-height:28px;
}

.contact-info { display:flex; flex-direction:column; gap:16px; }
.contact-info-card {
  background:var(--dark); color:#fff;
  border-radius:var(--r-card); padding:36px 32px;
  transition:transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
}
.contact-info-card:hover {
  transform:translateY(-3px);
  box-shadow:0 16px 48px rgba(0,0,0,.18);
}
.cic-title { font-size:18px; font-weight:800; margin-bottom:28px; }
.cic-item {
  display:flex; gap:14px; align-items:flex-start;
  padding:14px 0; border-bottom:1px solid rgba(255,255,255,.1);
}
.cic-item:last-child { border-bottom:none; }
.cic-item > span:first-child { font-size:18px; flex-shrink:0; margin-top:2px; }
.cic-svg { display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cic-svg svg, .cic-svg i { width:20px; height:20px; font-size:18px; color:var(--orange); }
.cic-item div { display:flex; flex-direction:column; gap:3px; }
.cic-item strong {
  font-size:11px; font-weight:700; opacity:.45;
  text-transform:uppercase; letter-spacing:.06em;
}
.cic-item a, .cic-item div > span { font-size:15px; color:#fff; }
.cic-item a:hover { color:var(--orange); }
.contact-quote-card {
  background:var(--orange); color:#fff;
  border-radius:var(--r-card); padding:32px;
}
.contact-quote-card p { font-size:17px; line-height:1.6; margin-bottom:14px; }
.contact-quote-card span { font-size:13px; opacity:.8; font-weight:500; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background:var(--dark); color:#fff; padding:60px 80px 40px; }
.footer__inner { max-width:1200px; margin:0 auto; }
.footer__top {
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:32px;
}
.footer__logo { display:flex; align-items:center; }
.footer__logo-img { height:64px; width:auto; object-fit:contain; filter:brightness(0) invert(1); opacity:1; }
.footer__nav { display:flex; gap:28px; }
.footer__nav a {
  font-size:14px; font-weight:500;
  color:rgba(255,255,255,.5); transition:color .25s;
  position:relative; padding-bottom:3px;
}
.footer__nav a::after {
  content:'';
  position:absolute; bottom:0; left:50%; right:50%;
  height:1px; background:rgba(255,255,255,.6);
  border-radius:1px;
  transition:left .3s cubic-bezier(.16,1,.3,1), right .3s cubic-bezier(.16,1,.3,1);
}
.footer__nav a:hover { color:#fff; }
.footer__nav a:hover::after { left:0; right:0; }
.footer__divider { height:1px; background:rgba(255,255,255,.1); margin-bottom:32px; }
.footer__tagline {
  font-family: var(--font-display);
  font-size:clamp(28px,4vw,56px); font-weight:300;
  letter-spacing:-.02em; margin-bottom:48px; opacity:.9;
}
.footer__bottom {
  display:flex; justify-content:space-between;
  font-size:13px; color:rgba(255,255,255,.35); font-weight:500;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .secteurs-grid { grid-template-columns:repeat(2,1fr); }
  .why-grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .about-grid { grid-template-columns:1fr; gap:40px; }
  .stats-grid { grid-template-columns:repeat(3,1fr); }
  .team-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav__announce { font-size:11px; padding:5px 12px; height:26px; }
  .top-badge__dot { width:6px; height:6px; }
  .nav__row { padding:0 16px 0 12px; }
  .nav__links, .nav__cta-pos { display:none; }
  .nav__hamburger { display:flex; }
  .hero { padding:90px 20px 60px; }
  /* Team stack sur mobile : cartes plus courtes */
  .team-stack-item { height:84vh; }
  .team-card { width:88vw; height:72vh; border-radius:20px; }
  .hero__line { white-space:normal; }
  .stats-section, .svc-section, .about-section,
  .secteurs-section, .why-section, .team-section, .contact-section { padding:72px 20px; }
  .videos-inner { width: 92%; }
  .vid-grid { grid-template-columns: 1fr; gap: 14px; }
  .vid-wrap { border-radius: 14px; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .secteurs-grid { grid-template-columns:1fr 1fr; }
  .svc-big { grid-template-columns:1fr; padding:32px 24px; }
  .svc-big__visual { width:100%; height:120px; }
  .contact-form-wrap { padding:24px 20px; }
  .form-row { grid-template-columns:1fr; }
  .footer { padding:48px 20px 28px; }
  .footer__top { flex-direction:column; gap:24px; align-items:flex-start; }
  .footer__bottom { flex-direction:column; gap:8px; }
  .marquee-cross { height:260px; }
  /* Cacher le dot orange des boutons sur mobile (no hover) */
  .btn-creative__dot { display:none; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns:1fr; }
  .secteurs-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:1fr; }
}

/* ============================================================
   MOT DE LA DG — pinned 100vh scroll-scrubbed per-word reveal
   Merge: sticky-track layout (photo BESIDE big quote) + per-word
   reveal. New dg-* classes only — zero overlap with the existing
   .word / .word-split / .about-text__p / .section-heading systems.
   Tokens reused: --bg --ink --ink-muted --orange --dark --white
   --r-card --font-display.
   PERF: words animate ONLY opacity + translateY (compositor-cheap).
   Blur is OPTIONAL and binary (a capped 4px via .dg-word--blur added
   to in-flight words by JS) so the GPU rasterizes one fixed radius,
   never a per-frame continuum. will-change is toggled on only while
   the section is in the active scrub range (.dg-anim on .dg-reveal),
   never left standing on ~100 spans.
   ============================================================ */

/* TALL TRACK — owns the scroll distance (= scrub length).
   300vh = 100vh pinned + 200vh of travel. Raise to slow the scrub. */
.dg-scroll {
  position: relative;
  height: 300vh;
  background: var(--bg);
}

/* PINNED STAGE — held at 100vh while the track scrolls past it.
   Mirrors the proven .hero (sticky/100vh/overflow:hidden) pattern.
   It is the ONLY in-flow child of .dg-scroll, so the scrub math
   p = (-trackTop)/(trackH - vh) is exactly 0 at engage / 1 at release. */
.dg-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 80px;
}

/* "(À propos)" kicker — pinned top-left, absolute so it never
   adds in-flow height above the pin (keeps the scrub math clean). */
.dg-label {
  position: absolute;
  top: clamp(28px, 6vh, 64px);
  left: 80px;
  margin: 0;
  text-align: left;
}

/* Two-column premium layout: portrait | quote column */
.dg-grid {
  display: grid;
  grid-template-columns: minmax(280px, 36%) 1fr;
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

/* PHOTO PANEL (left). .parallax-wrap already gives overflow:hidden;
   .parallax-inner already starts at scale(1.12) — tickParallax keeps working. */
.dg-photo {
  position: relative;
  margin: 0;
  border-radius: var(--r-card);
  overflow: hidden;
  height: min(74vh, 620px);
  align-self: center;
}
.dg-photo__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* QUOTE COLUMN (right) */
.dg-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dg-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: clamp(14px, 1.8vw, 22px);
}
.dg-eyebrow::before {
  content: ""; flex: none;
  width: 34px; height: 1.5px; background: var(--orange);
  display: inline-block;
}

/* Heading — kept for document outline + brand line. Left-aligned and
   sized down from the centered global .section-heading default. */
.dg-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  text-align: left;
  margin: 0 0 clamp(20px, 2.4vw, 34px);
}

/* The reveal text — BIG. JS wraps each word in a .dg-word span. */
.dg-reveal {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.9vw, 30px);
  line-height: 1.3;
  letter-spacing: -.015em;
  color: var(--ink);
  /* long French tokens (e.g. "experte-consultante") may break to avoid
     overflow under html{overflow-x:hidden}; lang="fr" enables hyphenation. */
  overflow-wrap: anywhere;
  hyphens: auto;
}
.dg-reveal p { margin: 0 0 .5em 0; }
.dg-reveal p:last-child { margin-bottom: 0; }

/* Per-word atom. --e is the reveal amount 0->1, written by JS each frame.
   DEFAULT IS LEGIBLE (--e:1) so no-JS / JS-error / pre-scroll states stay
   readable. The hidden start is gated by .dg-js, added by JS only AFTER
   listeners are wired and the first frame has painted.
   inline-block is required so transform applies; words are separated by
   real space text nodes (set in JS) so the paragraph still wraps.
   Only opacity + transform animate (compositor-cheap). */
.dg-word {
  --e: 1;
  display: inline-block;
  overflow-wrap: anywhere;
  opacity: calc(0.14 + var(--e) * 0.86);
  transform: translateY(calc((1 - var(--e)) * 0.28em));
}
/* JS gate: only once scrubbing is live do words start hidden. */
.dg-js .dg-word { --e: 0; }

/* Optional soft blur, BINARY + capped, applied by JS only to the small
   set of words currently mid-reveal. One fixed radius => one GPU raster,
   no per-frame continuum. */
.dg-js .dg-word--blur { filter: blur(4px); }

/* will-change promoted ONLY while the section is actively scrubbing
   (class toggled by JS), never left standing on ~100 spans. */
.dg-reveal.dg-anim .dg-word { will-change: transform, opacity; }

/* Signature */
.dg-sig {
  margin-top: clamp(24px, 2.8vw, 40px);
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,.12);
  display: flex; flex-direction: column; gap: 5px;
}
.dg-sig strong { font-size: clamp(15px, 1.1vw, 18px); font-weight: 700; color: var(--ink); }
.dg-sig span   { font-size: 13px; color: var(--ink-muted); }

/* Shorter desktop viewports: shrink so photo + heading + quote + sig
   fit one screen and the pinned content never clips under overflow:hidden. */
@media (min-width: 901px) and (max-height: 860px) {
  .dg-heading { font-size: clamp(26px, 2.6vw, 38px); margin-bottom: clamp(14px, 1.6vw, 22px); }
  .dg-reveal  { font-size: clamp(16px, 1.55vw, 23px); line-height: 1.28; }
  .dg-photo   { height: min(70vh, 520px); }
  .dg-sig     { margin-top: clamp(16px, 2vw, 26px); padding-top: 16px; }
}

/* RESPONSIVE: collapse the pin to natural flow, stack, keep text large.
   JS detects (max-width:900px) and shows the text sharp (no scrub). */
@media (max-width: 900px) {
  .dg-scroll { height: auto; }
  .dg-pin {
    position: static;
    height: auto;
    min-height: 0;
    display: block;
    padding: 80px 24px 60px;
  }
  .dg-label { position: static; margin-bottom: 26px; }
  .dg-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }
  /* Photo centrée, taille réduite pour laisser place au texte */
  .dg-photo {
    width: 72%;
    margin: 0 auto;
    aspect-ratio: 3/4;
    height: auto;
    max-height: 44svh;
  }
  .dg-heading { font-size: clamp(26px, 6.4vw, 38px); }
  .dg-reveal { font-size: clamp(17px, 4.6vw, 24px); line-height: 1.42; }
  /* Animation mots par scroll sur mobile : départ discret, in on dg-visible */
  .dg-reveal .dg-word {
    display: inline-block;
    opacity: 0.08;
    transform: translateY(6px);
    transition: none;
  }
  .dg-reveal.dg-visible .dg-word {
    animation: dg-word-in 0.5s cubic-bezier(.16,1,.3,1) both;
    animation-delay: calc(var(--idx, 0) * 18ms);
  }
  /* Si JS désactivé ou dg-visible pas encore ajouté → forcer visible */
  .dg-js .dg-word { --e: 1; }
}
@keyframes dg-word-in {
  from { opacity: 0.08; transform: translateY(6px); }
  to   { opacity: 1;    transform: none; }
}
@media (max-width: 480px) {
  .dg-pin { padding: 84px 20px 56px; }
  .dg-heading { font-size: clamp(26px, 7.6vw, 34px); }
  .dg-reveal { font-size: 20px; }
}

/* Reduced motion: static flow, every word sharp, no shift / hold / blur. */
@media (prefers-reduced-motion: reduce) {
  .dg-scroll { height: auto; }
  .dg-pin {
    position: static; height: auto; min-height: 0;
    display: block; padding: 80px 24px;
  }
  .dg-label { position: static; margin-bottom: 26px; }
  .dg-js .dg-word,
  .dg-word {
    --e: 1 !important;
    filter: none !important;
    transform: none !important;
    opacity: 1 !important;
    will-change: auto !important;
  }
  /* Stoppe les animations décoratives en boucle */
  .mc-rail, .mc-rail--rev, .mo-track,
  .top-badge__dot { animation: none !important; }
  /* Révélations instantanées (pas de glissement / fondu) */
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .clip-line__inner, .word__inner { transform: none !important; transition: none !important; }
}

/* ============================================================
   LENIS smooth scroll — coordination CSS
   (Pairs with the line-23 edit that removed scroll-behavior:smooth
    from html{}.) Native smooth is restored only when Lenis is OFF
    AND the user has no reduced-motion preference.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  :where(html:not(.lenis)) { scroll-behavior: smooth; }   /* native smooth only when Lenis is OFF */
}
html.lenis, html.lenis body { height: auto; }
html.lenis { scroll-behavior: auto; }                      /* no double-ease on anchor jumps */
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }               /* instant anchor jumps */
}

/* ============================================================
   PAGES SERVICE (sous-pages SEO) + FAQ
   ============================================================ */
.page-hero { padding:160px 80px 60px; max-width:1100px; margin:0 auto; background:var(--bg); }
.breadcrumb { font-size:13px; color:var(--ink-muted); margin-bottom:26px; letter-spacing:.01em; }
.breadcrumb a { color:var(--ink-muted); }
.breadcrumb a:hover { color:var(--orange); }
.breadcrumb span { color:var(--ink); }
.page-hero h1 {
  font-family:var(--font-display); font-weight:300;
  font-size:clamp(34px,5.4vw,68px); line-height:1.06;
  letter-spacing:-.02em; margin-bottom:22px;
}
.page-lead {
  font-size:clamp(17px,1.6vw,21px); line-height:1.6;
  color:var(--ink-muted); max-width:720px; margin-bottom:34px;
}
.page-body { padding:20px 80px 70px; max-width:1100px; margin:0 auto; }
.page-body h2 {
  font-family:var(--font-display); font-weight:400;
  font-size:clamp(25px,3vw,40px); letter-spacing:-.02em;
  margin:46px 0 16px;
}
.page-body p { font-size:16px; line-height:1.85; color:var(--ink-muted); margin-bottom:18px; max-width:760px; }
.page-features { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin:30px 0; }
.page-feature { background:var(--white); border:1px solid rgba(0,0,0,.08); border-radius:18px; padding:24px 26px; }
.page-feature h3 { font-size:17px; font-weight:700; margin-bottom:8px; letter-spacing:-.01em; }
.page-feature p { font-size:14px; line-height:1.6; margin:0; }

/* FAQ */
.faq-section { padding:24px 80px 90px; max-width:900px; margin:0 auto; }
.faq-section > h2 {
  font-family:var(--font-display); font-weight:300;
  font-size:clamp(30px,4.2vw,52px); letter-spacing:-.02em; margin-bottom:26px;
}
.faq-item { border-top:1px solid rgba(0,0,0,.12); }
.faq-item:last-of-type { border-bottom:1px solid rgba(0,0,0,.12); }
.faq-item summary {
  cursor:pointer; list-style:none; padding:22px 0;
  font-size:17px; font-weight:600; color:var(--ink);
  display:flex; justify-content:space-between; align-items:center; gap:16px;
}
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:"+"; font-size:26px; font-weight:300; color:var(--orange); transition:transform .3s; flex:none; }
.faq-item[open] summary::after { transform:rotate(45deg); }
.faq-item__a { padding:0 0 24px; font-size:16px; line-height:1.75; color:var(--ink-muted); max-width:760px; }

/* CTA bas de page */
.page-cta { background:var(--dark); color:#fff; text-align:center; padding:90px 24px; }
.page-cta h2 {
  font-family:var(--font-display); font-weight:300;
  font-size:clamp(30px,4.5vw,54px); letter-spacing:-.02em; margin-bottom:14px; color:#fff;
}
.page-cta p { color:rgba(255,255,255,.6); margin-bottom:30px; font-size:16px; }

/* Lien "En savoir plus" sur les cartes services de l'accueil */
.svc-big__more {
  display:inline-flex; align-items:center; gap:8px; margin-top:22px;
  font-size:14px; font-weight:600; color:#fff;
  border-bottom:1px solid rgba(255,255,255,.4); padding-bottom:3px;
  width:fit-content; transition:gap .25s, border-color .25s;
}
.svc-big__more:hover { gap:14px; border-color:#fff; }

/* 404 */
.nf-wrap { min-height:78vh; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:120px 24px 80px; gap:18px; }
.nf-wrap h1 { font-family:var(--font-display); font-weight:300; font-size:clamp(60px,14vw,140px); line-height:1; letter-spacing:-.03em; }
.nf-wrap p { font-size:18px; color:var(--ink-muted); max-width:440px; }

@media (max-width: 768px) {
  .page-hero { padding:120px 20px 40px; }
  .page-body, .faq-section { padding-left:20px; padding-right:20px; }
  .page-features { grid-template-columns:1fr; }
}

/* ── IKONIQ CREDIT BAR ───────────────────────────────────── */
.footer__credit {
  display:flex; align-items:center; justify-content:center; gap:14px;
  background:var(--orange); padding:20px 24px;
  text-decoration:none; transition:opacity .2s;
}
.footer__credit:hover { opacity:.88; }
.footer__credit-brand {
  font-family:var(--font); font-weight:900; font-size:16px;
  letter-spacing:.28em; text-transform:uppercase; color:#fff;
}
.footer__credit-sep { color:rgba(255,255,255,.5); font-size:14px; }
.footer__credit-txt {
  font-size:14px; font-weight:500; color:rgba(255,255,255,.92);
  letter-spacing:.04em;
}

/* ============================================================
   GALERIE PHOTO — masonry + lightbox animé
   ============================================================ */
.gallery-section {
  padding: 100px 80px;
  background: var(--dark);
}
.gallery-section .section-label { color: var(--orange); }
.gallery-section .section-heading { color: #fff; }
.gallery-intro {
  font-size: 16px; line-height: 1.8;
  color: rgba(255,255,255,.55);
  max-width: 680px; margin: 20px auto 52px;
  text-align: center;
}

/* ── MASONRY GRID ─────────────────────────────────────────── */
.gallery-grid {
  columns: 3;
  column-gap: 14px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
  /* reveal */
  opacity: 0;
  transform: translateY(28px) scale(.98);
  transition: opacity .55s ease, transform .55s cubic-bezier(.16,1,.3,1);
}
.gallery-item.visible {
  opacity: 1; transform: none;
}
.gallery-item img {
  width: 100%; height: auto; display: block;
  transition: transform .55s cubic-bezier(.16,1,.3,1);
}
.gallery-item:hover img { transform: scale(1.06); }

/* overlay + zoom icon */
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background .35s;
}
.gallery-item:hover::after {
  background: rgba(0,0,0,.28);
}
.gallery-item__zoom {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
}
.gallery-item:hover .gallery-item__zoom { opacity: 1; }
.gallery-item__zoom i {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--orange);
  transform: scale(.7);
  transition: transform .25s cubic-bezier(.16,1,.3,1);
}
.gallery-item:hover .gallery-item__zoom i { transform: scale(1); }

/* ── LIGHTBOX ─────────────────────────────────────────────── */
.lightbox-wrap {
  position: fixed; inset: 0; z-index: 9800;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox-wrap.lb-open {
  opacity: 1; pointer-events: all;
}
.lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.93);
}
.lb-content {
  position: relative; z-index: 1;
  max-width: 92vw; max-height: 92vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-img {
  max-width: 88vw; max-height: 88vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 40px 100px rgba(0,0,0,.7);
  transform: scale(.94);
  opacity: 0;
  transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .25s;
}
.lightbox-wrap.lb-open .lb-img {
  transform: scale(1); opacity: 1;
}

/* navigation */
.lb-btn {
  position: fixed; top: 50%; z-index: 9801;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff; font-size: 22px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
  backdrop-filter: blur(8px);
}
.lb-btn:hover { background: var(--orange); border-color: var(--orange); }
.lb-btn--close { top: 24px; right: 28px; transform: none; font-size: 18px; }
.lb-btn--prev   { left: 24px; }
.lb-btn--next   { right: 24px; }

.lb-counter {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 9801;
  font-size: 13px; font-weight: 600;
  letter-spacing: .1em; color: rgba(255,255,255,.5);
  transition: opacity .2s;
}

/* ── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .gallery-section { padding: 72px 20px; }
  .gallery-grid { columns: 2; column-gap: 10px; }
  .gallery-item { margin-bottom: 10px; border-radius: 12px; }
  .lb-btn--prev { left: 8px; }
  .lb-btn--next { right: 8px; }
  .lb-btn--close { top: 16px; right: 16px; }
}
@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION — DISTINCTION D'HONNEUR  (CAN 2023)
   ═══════════════════════════════════════════════════════════ */
.award-section {
  background: var(--dark);
  color: #fff;
  padding: 104px 0 88px;
  position: relative;
  overflow: hidden;
}
.award-section::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(232,96,41,.14) 0%, transparent 68%);
  pointer-events: none;
}
.award-section::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,96,41,.08) 0%, transparent 68%);
  pointer-events: none;
}
.award-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 48px;
  position: relative; z-index: 1;
}

/* Header */
.award-header {
  text-align: center; margin-bottom: 72px;
}
.award-ministry {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.award-ministry img {
  width: 20px; height: 20px; object-fit: contain;
}
.award-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: #fff;
  padding: 9px 22px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(232,96,41,.4);
  animation: award-float 3.5s ease-in-out infinite;
}
@keyframes award-float {
  0%, 100% { transform: translateY(0); box-shadow: 0 8px 32px rgba(232,96,41,.4); }
  50% { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(232,96,41,.52); }
}
.award-badge i { font-size: 14px; }
.award-title {
  font-size: clamp(32px, 5vw, 56px); font-weight: 700;
  line-height: 1.1; letter-spacing: -.03em; margin-bottom: 16px;
}
.award-title em { color: var(--orange); font-style: normal; }
.award-event {
  font-size: 14px; color: rgba(255,255,255,.4);
  letter-spacing: .06em; text-transform: uppercase;
}
.award-event span { color: var(--orange); margin: 0 8px; }

/* Content grid */
.award-grid {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 56px; align-items: start; margin-bottom: 64px;
}
.award-text {
  display: flex; flex-direction: column; gap: 22px;
}
.award-text p {
  font-size: 16px; line-height: 1.9; color: rgba(255,255,255,.68);
}
.award-sig {
  display: flex; flex-direction: column; gap: 5px;
  border-left: 3px solid var(--orange); padding-left: 18px;
  margin-top: 8px;
}
.award-sig strong { font-size: 16px; font-weight: 700; color: #fff; }
.award-sig span   { font-size: 13px; color: rgba(255,255,255,.45); }
.award-sig__label {
  font-size: 11px !important; font-weight: 700 !important;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--orange) !important;
}

/* Quote */
.award-quote {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 36px 30px;
  position: sticky; top: 100px;
  transition: border-color .3s, box-shadow .3s;
}
.award-quote:hover {
  border-color: rgba(232,96,41,.35);
  box-shadow: 0 0 0 3px rgba(232,96,41,.08), 0 20px 52px rgba(0,0,0,.25);
}
.award-quote i {
  color: var(--orange); font-size: 28px;
  display: block; margin-bottom: 20px;
}
.award-quote p {
  font-size: 21px; font-weight: 700; line-height: 1.4;
  letter-spacing: -.01em; margin-bottom: 20px;
}
.award-quote footer {
  font-size: 13px; color: rgba(255,255,255,.35); font-style: italic;
}
.award-stars {
  display: flex; gap: 4px; color: var(--orange);
  font-size: 13px; margin-top: 20px;
}

/* Photo grid */
.award-photos {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 14px;
}
.award-photo {
  border-radius: 16px; overflow: hidden; margin: 0;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,.06);
  position: relative;
}
.award-photo::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; pointer-events: none;
}
.award-photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .6s ease;
}
.award-photo:hover img { transform: scale(1.05); }
.award-photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  color: rgba(255,255,255,.18); font-size: 13px;
}
.award-photo--placeholder i { font-size: 28px; }

/* Responsive */
@media (max-width: 1024px) {
  .award-grid { grid-template-columns: 1fr 280px; gap: 40px; }
}
@media (max-width: 900px) {
  .award-section { padding: 72px 0 60px; }
  .award-inner { padding: 0 24px; }
  .award-grid { grid-template-columns: 1fr; gap: 32px; }
  .award-quote { position: static; }
  .award-photos { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .award-photos { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION — PARTENARIATS & PROGRAMMES
   ═══════════════════════════════════════════════════════════ */
.prog-section {
  background: var(--bg-off);
  padding: 104px 0 88px;
}
/* Aligner le label à gauche pour cohérence avec le titre left-aligned */
.prog-section .section-label { text-align: left; }
.prog-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.prog-title {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 16px;
}
.prog-title em { font-style: normal; color: var(--orange); }
.prog-intro {
  font-size: 16px;
  color: var(--ink-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.prog-grid {
  columns: 3;
  column-gap: 16px;
}
.prog-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--dark);
}
.prog-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .45s cubic-bezier(.16,1,.3,1), filter .3s;
}
.prog-item:hover img {
  transform: scale(1.05);
  filter: brightness(.78);
}
.prog-item__zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.22);
  opacity: 0;
  transition: opacity .3s;
}
.prog-item__zoom i {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--orange);
  transform: scale(.7);
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.prog-item:hover .prog-item__zoom { opacity: 1; }
.prog-item:hover .prog-item__zoom i { transform: scale(1); }

@media (max-width: 900px) {
  .prog-section { padding: 72px 0 60px; }
  .prog-inner { padding: 0 24px; }
  .prog-grid { columns: 2; column-gap: 12px; }
  .prog-item { margin-bottom: 12px; }
}
@media (max-width: 480px) {
  .prog-section { padding: 56px 0 48px; }
  .prog-inner { padding: 0 20px; }
  .prog-grid { columns: 1; }
}

/* ═══════════════════════════════════════════════════════════
   AMÉLIORATIONS v18 — Reveal stagger naturel pour les grids
   ═══════════════════════════════════════════════════════════ */

/* Stagger automatique pour les cartes dans leurs grids */
.secteurs-grid .reveal:nth-child(2) { transition-delay:.08s; }
.secteurs-grid .reveal:nth-child(3) { transition-delay:.16s; }
.secteurs-grid .reveal:nth-child(4) { transition-delay:.24s; }

.why-grid .reveal:nth-child(2) { transition-delay:.1s; }

/* Stats counter : petit effet de scale au départ */
.stats-grid .reveal { transform: translateY(28px) scale(.97); }
.stats-grid .reveal.is-visible { transform: none; }

/* Award photos : reveal décalé */
.award-photos .award-photo:nth-child(2) { transition-delay:.1s; }
.award-photos .award-photo:nth-child(3) { transition-delay:.18s; }

/* Prog items : reveal avec légère rotation initiale pour dynamisme */
.prog-item.reveal {
  transform: translateY(32px) rotate(0.4deg);
}
.prog-item.reveal.is-visible {
  transform: none;
}

/* Gallery items : stagger selon colonne visuelle (approx. par modulo 3) */
.gallery-grid .gallery-item:nth-child(3n+2) { transition-delay:.07s; }
.gallery-grid .gallery-item:nth-child(3n+3) { transition-delay:.14s; }

/* Scroll-reveal amélioré : plus de profondeur à l'entrée */
.reveal--deep {
  opacity: 0;
  transform: translateY(52px);
  transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1);
}
.reveal--deep.is-visible { opacity:1; transform:translateY(0); }

/* Svc tags — micro hover */
.svc-big__tags span {
  transition: background .2s, color .2s, border-color .2s;
}
.svc-big__tags span:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.4);
}

/* Award photos hover plus marqué */
.award-photo img {
  transition: transform .55s cubic-bezier(.16,1,.3,1);
}
.award-photo:hover img { transform: scale(1.07); }

/* Reveal animation respects reduced-motion déjà géré plus haut — ok */
