/* =====================================================================
   INFRA CONNECT - Design System
   Refonte 2026 : tokens stricts, typographie modulaire,
   contrastes AAA, accessibilité, mobile first, micro-interactions.
   ===================================================================== */

/* =====================================================================
   1. TOKENS
   ===================================================================== */
:root{
  /* Couleurs - palette principale */
  --ink:           #0A1B33;
  --ink-soft:      #2A3A56;
  --ink-mute:      #5A6A86;
  --paper:         #FFFFFF;
  --paper-2:       #F4F2EC;
  --rule:          rgba(10, 27, 51, 0.12);
  --rule-strong:   rgba(10, 27, 51, 0.22);

  /* Couleurs - accents */
  --accent:        #C8281F;
  --accent-dark:   #A8211A;
  --whatsapp:      #20B858;

  /* Couleurs - feedback */
  --ok:            #2F7D4A;
  --err:           #B12B20;

  /* Surfaces et élévation */
  --surface-2:     #F8F6F1;
  --surface-3:     #EFEBE2;
  --shadow-sm:     0 1px 2px rgba(10,27,51,0.05);
  --shadow-md:     0 4px 16px rgba(10,27,51,0.08);
  --shadow-lg:     0 16px 48px rgba(10,27,51,0.14);

  /* Typographie - échelle modulaire 1.25 */
  --fs-display:    clamp(56px, 8.4vw, 140px);
  --fs-h1:         clamp(40px, 5vw, 80px);
  --fs-h2:         clamp(28px, 3.2vw, 52px);
  --fs-h4:         20px;
  --fs-lead:       19px;
  --fs-body:       17px;
  --fs-small:      14px;
  --fs-mono:       12px;
  --fs-micro:      11px;
  --lh-base:       1.55;
  --ls-display:    -0.032em;
  --ls-mono:       0.08em;

  /* Espacement - système 4 */

  /* Layout */
  --maxw:          1440px;
  --gutter:        32px;
  --col-gap:       24px;

  /* Rayons et bordures */
  --r-sm:          4px;
  --r-md:          8px;
  --r-lg:          14px;
  --r-pill:        999px;

  /* Animations */
  --ease-out:      cubic-bezier(0.22, 0.61, 0.36, 1);
  --d-fast:        180ms;
  --d-base:        320ms;

  /* Z-index */
  --z-topbar:      50;
  --z-mobile-nav:  49;
  --z-wa-float:    60;
  --z-lightbox:    100;
}

/* =====================================================================
   2. RESET & BASE
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { background: var(--paper); color: var(--ink); }
body {
  font-family: 'Inter Tight', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--fs-body);
  line-height: var(--lh-base);
  font-feature-settings: 'ss01', 'cv11', 'kern';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }

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

/* Sélection */
::selection { background: var(--ink); color: var(--paper); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: var(--ink-mute); border-radius: var(--r-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--ink-soft); }

/* Skip link */
.skip-link {
  position: absolute; top: -200px; left: 16px;
  padding: 12px 18px; background: var(--ink); color: var(--paper);
  font-size: 14px; z-index: 200; border-radius: var(--r-md);
  transition: top var(--d-fast) var(--ease-out);
}
.skip-link:focus { top: 16px; }

/* =====================================================================
   3. TYPOGRAPHIE
   ===================================================================== */
.mono {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
}
.num {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-feature-settings: 'tnum', 'lnum';
}
.italic-serif {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

/* Layout helper */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Rules */
.rule         { height: 1px; background: var(--rule);        width: 100%; }
.rule-strong  { height: 2px; background: var(--ink);         width: 100%; }

/* =====================================================================
   4. SCROLL PROGRESS
   ===================================================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent); z-index: 51;
  transform-origin: 0 50%;
  transform: scaleX(0);
  transition: transform 80ms linear;
}

/* =====================================================================
   5. TOPBAR
   ===================================================================== */
.topbar {
  position: sticky; top: 0; z-index: var(--z-topbar);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
}
.topbar.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.96);
}
.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 96px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 80px; width: auto; display: block; }
.brand-logo.foot { height: 64px; filter: brightness(0) invert(1); }

nav.primary {
  display: flex;
  gap: 28px;
  justify-content: center;
}
nav.primary a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.72;
  position: relative;
  padding: 6px 2px;
  transition: opacity var(--d-fast) var(--ease-out);
}
nav.primary a:hover { opacity: 1; }
nav.primary a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -22px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--d-base) var(--ease-out);
}
nav.primary a:hover::after,
nav.primary a.active::after { transform: scaleX(1); }
nav.primary a.active { opacity: 1; }

.top-cta { display: flex; gap: 10px; justify-content: flex-end; align-items: center; }

/* =====================================================================
   6. BOUTONS
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  border: 1px solid transparent;
  transition:
    transform var(--d-fast) var(--ease-out),
    background var(--d-fast) var(--ease-out),
    color var(--d-fast) var(--ease-out),
    border-color var(--d-fast) var(--ease-out),
    box-shadow var(--d-fast) var(--ease-out);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary  { background: var(--ink); color: var(--paper); }
.btn-primary:hover  { background: #000; box-shadow: var(--shadow-md); }

.btn-accent   { background: var(--accent); color: var(--paper); }
.btn-accent:hover   { background: var(--accent-dark); box-shadow: 0 8px 20px rgba(200,40,31,0.25); }

.btn-ghost    { border-color: var(--rule-strong); color: var(--ink); background: transparent; }
.btn-ghost:hover    { border-color: var(--ink); background: var(--surface-2); }

.btn-light    { background: var(--paper); color: var(--ink); }
.btn-light:hover    { background: var(--surface-2); box-shadow: var(--shadow-md); }

.btn-outline  { border-color: rgba(255, 255, 255, 0.34); color: var(--paper); background: transparent; }
.btn-outline:hover  { border-color: var(--paper); background: rgba(255,255,255,0.06); }

.btn-wa       { background: var(--whatsapp); color: #06281A; }
.btn-wa:hover       { background: #18A04B; box-shadow: 0 8px 20px rgba(32,184,88,0.25); }

.btn .arrow {
  display: inline-flex;
  width: 14px; height: 14px;
  transition: transform var(--d-fast) var(--ease-out);
}
.btn:hover .arrow { transform: translateX(5px); }

.btn[aria-busy='true'] {
  pointer-events: none; opacity: 0.7;
}

/* Burger menu */
.burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-pill);
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 4px;
  transition: border-color var(--d-fast) var(--ease-out);
}
.burger:hover { border-color: var(--ink); }
.burger span {
  display: block;
  width: 18px; height: 1.6px;
  background: var(--ink);
  transition: transform var(--d-base) var(--ease-out), opacity var(--d-base) var(--ease-out);
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 96px 0 0 0;
  background: var(--paper);
  z-index: var(--z-mobile-nav);
  padding: 32px var(--gutter) 48px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--rule);
  transition: padding var(--d-fast) var(--ease-out), color var(--d-fast) var(--ease-out);
}
.mobile-nav a:hover { padding-left: 8px; color: var(--accent); }
.mobile-nav .mob-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}
.mobile-nav .mob-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 20px;
  font-size: 15px;
}

/* =====================================================================
   7. HERO
   ===================================================================== */
.hero {
  position: relative;
  padding: 64px 0 0;
  isolation: isolate;
}
.hero-kicker {
  display: flex; gap: 16px;
  align-items: center;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 32px;
}
.hero-kicker .live-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
  flex: none;
}
.hero-kicker .sep { width: 1px; height: 14px; background: var(--rule-strong); }

.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 0 0 40px;
  color: var(--ink-soft);
}
.hero-meta .col {
  display: flex; gap: 12px; align-items: flex-start;
}
.hero-meta .col-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink);
  margin-top: 8px;
  flex: none;
}
.hero-meta .label {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.hero-meta .val {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

.display {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: var(--fs-display);
  line-height: 0.88;
  letter-spacing: var(--ls-display);
  color: var(--ink);
}
.display em {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.018em;
}
.display .accent { color: var(--accent); }

.hero h1 { padding: 16px 0 24px; }

.hero-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: clamp(56px, 7.5vw, 120px);
  line-height: 1.0;
  letter-spacing: -0.034em;
  color: var(--ink);
}

.hero-sub {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
  padding-top: 32px;
  padding-bottom: 56px;
}
.hero-sub p {
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Hero process strip */
.hero-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 24px 0 8px;
  border-top: 1px solid var(--rule);
  margin-top: 24px;
}
.hero-process .step {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 0 16px;
  border-right: 1px solid var(--rule);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.hero-process .step:last-child { border-right: none; }
.hero-process .step .n { color: var(--accent); font-weight: 500; }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 21 / 9;
  margin-top: 24px;
  background: var(--ink);
  overflow: hidden;
  border-radius: var(--r-md);
}
.hero-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}
.hero-visual:hover img { transform: scale(1.05); }
.hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,27,51,0.20) 0%,
    rgba(10,27,51,0) 40%,
    rgba(10,27,51,0) 60%,
    rgba(10,27,51,0.45) 100%
  );
  pointer-events: none;
}
.hero-visual .corner {
  position: absolute; bottom: 24px; left: 24px; z-index: 2;
  color: var(--paper);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.hero-visual .corner .pin {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
.hero-visual .corner-r {
  position: absolute; bottom: 24px; right: 24px; z-index: 2;
  color: rgba(255,255,255,0.72);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,40,31,0.6); }
  60%      { box-shadow: 0 0 0 12px rgba(200,40,31,0); }
}

/* Hero proof bar */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 32px 0 0;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero-proof .item { display: flex; align-items: center; gap: 10px; }
.hero-proof .item::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* =====================================================================
   8. STATS
   ===================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.stat {
  padding: 36px 28px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 8px;
}
.stat:last-child { border-right: none; }
.stat .n {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.stat .n sup {
  font-size: 0.4em;
  vertical-align: top;
  color: var(--ink-mute);
  font-weight: 500;
  margin-left: 4px;
}
.stat .l {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 8px;
}
.stat .d {
  font-size: var(--fs-small);
  color: var(--ink-soft);
  line-height: 1.5;
}

/* =====================================================================
   9. SECTION FRAME
   ===================================================================== */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
section.loose { padding: 128px 0; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 56px;
  max-width: 920px;
}
.section-kicker {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--ink-mute);
}
.section-title {
  font-size: var(--fs-h2);
  line-height: 1.08;
  letter-spacing: -0.028em;
  font-weight: 500;
}
.section-title em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.section-lede {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 620px;
}

/* =====================================================================
   10. EXPERTISES
   ===================================================================== */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
}
.exp {
  grid-column: span 4;
  padding: 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 300px;
  position: relative;
  background: var(--paper);
  transition: background var(--d-base) var(--ease-out);
}
.exp:hover { background: var(--surface-2); }
.exp:nth-child(3n) { border-right: none; }

.exp .ex-num {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--ink-mute);
}
.exp .ex-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background var(--d-base) var(--ease-out), color var(--d-base) var(--ease-out);
}
.exp .ex-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.5;
}
.exp:hover .ex-icon {
  background: var(--ink);
  color: var(--paper);
}
.exp.dark .ex-icon {
  border-color: rgba(255,255,255,0.45);
  color: var(--paper);
}
.exp.dark:hover .ex-icon {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.exp .ex-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.exp ul {
  display: flex; flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.exp ul li {
  font-size: var(--fs-small);
  color: var(--ink-soft);
  display: flex; gap: 10px;
  align-items: baseline;
  line-height: 1.45;
}
.exp ul li::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex: none;
  transform: translateY(-2px);
}
.exp .ex-link {
  position: absolute;
  top: 32px; right: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--rule-strong);
  display: grid; place-items: center;
  transition:
    background var(--d-base) var(--ease-out),
    color var(--d-base) var(--ease-out),
    border-color var(--d-base) var(--ease-out),
    transform var(--d-base) var(--ease-out);
}
.exp .ex-link svg { width: 16px; height: 16px; }
.exp:hover .ex-link {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: rotate(-45deg);
}

.exp.dark {
  background: var(--ink);
  color: var(--paper);
}
.exp.dark .ex-num { color: rgba(255,255,255,0.6); }
.exp.dark ul li { color: rgba(255,255,255,0.78); }
.exp.dark .ex-link { border-color: rgba(255,255,255,0.3); color: var(--paper); }
.exp.dark:hover { background: #000; }

/* =====================================================================
   11. WHY US
   ===================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.why-item {
  padding: 36px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  transition: background var(--d-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
}
.why-item:hover { background: var(--surface-2); }
.why-item:nth-child(3n) { border-right: none; }
.why-item:nth-last-child(-n+3) { border-bottom: none; }
.why-item > div { display: flex; flex-direction: column; gap: 10px; }
.why-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-bottom: 8px;
  transition: background var(--d-base) var(--ease-out), color var(--d-base) var(--ease-out);
}
.why-icon svg { width: 26px; height: 26px; stroke-width: 1.5; }
.why-item:hover .why-icon { background: var(--ink); color: var(--paper); }

@media (max-width: 1100px) {
  .why-list { grid-template-columns: repeat(2, 1fr); }
  .why-item:nth-child(3n) { border-right: 1px solid var(--rule); }
  .why-item:nth-child(2n) { border-right: none; }
  .why-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--rule); }
  .why-item:nth-last-child(-n+1) { border-bottom: none; }
}
@media (max-width: 600px) {
  .why-list { grid-template-columns: 1fr; }
  .why-item { border-right: none !important; border-bottom: 1px solid var(--rule) !important; min-height: auto; }
  .why-item:last-child { border-bottom: none !important; }
}
.why-item h4 {
  font-size: var(--fs-h4);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.why-item p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
.why-visual {
  position: sticky; top: 96px;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  border-radius: var(--r-md);
  overflow: hidden;
}
.why-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 1.2s var(--ease-out);
}
.why-visual:hover img { transform: scale(1.04); }
.why-visual .caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
  color: var(--paper);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
}

/* =====================================================================
   12. SECTEURS
   ===================================================================== */
.sectors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.sector {
  padding: 36px 28px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
  transition: background var(--d-base) var(--ease-out);
}
.sector:hover { background: var(--surface-2); }
.sector:last-child { border-right: none; }
.sector .si {
  width: 52px; height: 52px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 13px;
  font-weight: 500;
  transition: background var(--d-base) var(--ease-out), color var(--d-base) var(--ease-out);
}
.sector .si svg { width: 26px; height: 26px; stroke-width: 1.5; }
.sector:hover .si { background: var(--ink); color: var(--paper); }
.sector h5 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.018em;
  margin-top: auto;
}
.sector p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* =====================================================================
   13. CLIENTS - MARQUEE
   ===================================================================== */
.clients {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 0;
  overflow: hidden;
}
.clients-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
  padding: 0 var(--gutter);
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  gap: 16px;
}
.clients-head .lab {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.clients-head h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.022em;
}
.clients-head .count {
  color: var(--accent);
  font-weight: 500;
}

.marquee {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-x 38s linear infinite;
}
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track { animation-play-state: paused; }
.marquee-track .client {
  display: grid;
  place-items: center;
  height: 110px;
  width: 220px;
  flex: 0 0 220px;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.014em;
  white-space: nowrap;
  transition: color var(--d-fast) var(--ease-out), opacity var(--d-fast) var(--ease-out);
}
.marquee-track .client:hover { color: var(--paper); }
.marquee-track .client.logo img {
  height: 36px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity var(--d-fast) var(--ease-out);
}
.marquee-track .client.logo:hover img { opacity: 1; }
@keyframes scroll-x {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================================
   14. PROJECTS / RÉALISATIONS
   ===================================================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px 28px;
}
.project {
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
}

.project-img {
  aspect-ratio: 4 / 3;
  background: var(--ink);
  overflow: hidden;
  position: relative;
  border-radius: var(--r-md);
}

.project-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s var(--ease-out),
    filter 0.7s var(--ease-out);
}
.project:hover .project-img img {
  transform: scale(1.05);
  filter: brightness(1.06);
}
.project-img .pmeta {
  position: absolute;
  left: 20px; top: 20px; right: 20px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,0.92);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
}
.project-img .pmeta .tag {
  background: var(--accent);
  color: var(--paper);
  padding: 5px 11px;
  border-radius: var(--r-sm);
  font-weight: 500;
}
.project-img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,27,51,0);
  transition: background var(--d-base) var(--ease-out);
  pointer-events: none;
  z-index: 1;
}
.project:hover .project-img::after { background: rgba(10,27,51,0.12); }
.project-img .arrow-mark {
  position: absolute;
  right: 14px; bottom: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  place-items: center;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity var(--d-base) var(--ease-out),
    transform var(--d-base) var(--ease-out),
    background var(--d-fast) var(--ease-out);
}
.project-img .arrow-mark svg { width: 16px; height: 16px; }
.project:hover .project-img .arrow-mark {
  opacity: 1;
  transform: translateY(0);
  background: var(--accent);
  color: var(--paper);
}

.project-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 2px;
}
.project-info h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.25;
  color: var(--ink);
}
.project-info .ploc {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.project:hover h3 { color: var(--accent); }

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 56px;
}
.filter-chip {
  padding: 9px 16px;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-pill);
  background: transparent;
  font-size: 13px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background var(--d-fast) var(--ease-out),
    color var(--d-fast) var(--ease-out),
    border-color var(--d-fast) var(--ease-out);
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* =====================================================================
   15. VALEURS
   ===================================================================== */
.values-band { background: var(--paper-2); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.value {
  padding: 36px 24px;
  border-right: 1px solid var(--rule);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background var(--d-base) var(--ease-out);
  background: var(--paper-2);
}
.value:hover { background: var(--surface-3); }
.value:last-child { border-right: none; }

.value .v-num {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  color: var(--accent);
  letter-spacing: var(--ls-mono);
  font-weight: 500;
}
.value .v-icon {
  width: 44px; height: 44px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-bottom: 4px;
  transition: background var(--d-base) var(--ease-out), color var(--d-base) var(--ease-out);
}
.value .v-icon svg { width: 22px; height: 22px; stroke-width: 1.5; }
.value:hover .v-icon { background: var(--ink); color: var(--paper); }

/* Grille à 7 colonnes pour la page valeurs */
.values-grid-7 { grid-template-columns: repeat(7, 1fr); }
@media (max-width: 1280px) {
  .values-grid-7 { grid-template-columns: repeat(4, 1fr); }
  .values-grid-7 .value:nth-child(4n) { border-right: none; }
  .values-grid-7 .value:not(:nth-last-child(-n+3)) { border-bottom: 1px solid var(--rule); }
}
@media (max-width: 800px) {
  .values-grid-7 { grid-template-columns: repeat(2, 1fr); }
  .values-grid-7 .value { border-right: 1px solid var(--rule) !important; border-bottom: 1px solid var(--rule) !important; }
  .values-grid-7 .value:nth-child(2n) { border-right: none !important; }
  .values-grid-7 .value:last-child { border-bottom: none !important; }
}
@media (max-width: 480px) {
  .values-grid-7 { grid-template-columns: 1fr; }
  .values-grid-7 .value { border-right: none !important; }
}
.value h5 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: auto;
}
.value p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* =====================================================================
   16. AGENCES MAP
   ===================================================================== */
.map-block {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}
.map-frame {
  background: var(--paper-2);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
}
.map-svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* OSM iframe map (legacy) */
.map-frame-osm { aspect-ratio: 5 / 4; }
.map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.55) saturate(0.85);
}

/* SVG map (custom France) */
.map-frame-svg {
  aspect-ratio: 5 / 5.4;
  background: transparent;
  position: relative;
  overflow: visible;
  border: none;
}
.map-frame-svg .map-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.map-frame-svg .map-marker > circle:first-child {
  transform-origin: center;
  animation: map-pulse 2.4s ease-out infinite;
}
.map-frame-svg .map-marker:nth-of-type(2) > circle:first-child {
  animation-delay: 1.1s;
}
@keyframes map-pulse {
  0%   { transform: scale(0.6); opacity: 0.18; }
  100% { transform: scale(1.4); opacity: 0; }
}
.map-overlay-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 53% 28%, rgba(200,40,31,0.10), transparent 14%),
    radial-gradient(circle at 58% 33%, rgba(200,40,31,0.10), transparent 12%);
  pointer-events: none;
}
.map-pins {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.map-pin .pin-dot {
  display: block;
  width: 14px; height: 14px;
  background: var(--accent);
  border: 2.5px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
  position: relative;
  z-index: 2;
}
.map-pin .pin-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(200,40,31,0.4);
  z-index: 1;
  animation: map-pin-pulse 2.4s ease-out infinite;
}
.map-pin-bottom .pin-pulse { animation-delay: 0.7s; }
@keyframes map-pin-pulse {
  0%   { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%,-50%) scale(3.4); opacity: 0; }
}
.map-pin .pin-label {
  position: absolute;
  left: 22px;
  top: -4px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 6px 10px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(10,27,51,0.18);
  z-index: 3;
}
.map-pin-bottom .pin-label { top: 18px; }
.map-pin .pin-label strong {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.map-pin .pin-label em {
  display: block;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 2px;
}

.agencies { display: flex; flex-direction: column; gap: 0; }
.agency {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.agency:first-child { border-top: 1px solid var(--rule); }
.agency-head {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 10px;
}
.agency-head .pin {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-2px);
}
.agency-head h5 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.agency-head .agid {
  margin-left: auto;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  color: var(--ink-mute);
  letter-spacing: var(--ls-mono);
}
.agency p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.agency .coords {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.agency .agency-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 14px;
}
.agency .agency-actions .btn { font-size: 13px; padding: 8px 14px; }

.zones { margin-top: 32px; }
.zones .zlab {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.zones .zones-claim {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.3;
  color: var(--ink);
}
.zones .zones-claim strong { color: var(--accent); font-weight: 500; }
.zone-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.zone-tag {
  padding: 7px 14px;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-pill);
  font-size: 13px;
  transition: all var(--d-fast) var(--ease-out);
}
.zone-tag:hover {
  border-color: var(--ink);
  background: var(--surface-2);
}
.zone-tag.full {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.zone-tag.full:hover { background: #000; }

/* =====================================================================
   17. CTA
   ===================================================================== */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -240px; right: -180px;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(200,40,31,0.22), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 30% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, #000 30%, transparent 80%);
  z-index: 0;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.cta-lead { display: flex; flex-direction: column; gap: 24px; }
.cta-kicker {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.cta-band h2 {
  font-size: clamp(44px, 5.5vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.032em;
  font-weight: 500;
}
.cta-band h2 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.cta-band h2 .accent { color: var(--accent); }
.cta-band p {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.6;
  max-width: 480px;
}
.cta-main-btn {
  align-self: flex-start;
  margin-top: 8px;
  padding: 14px 24px;
  font-size: 15px;
}

.cta-channels {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cta-channels .ch {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: var(--paper);
  position: relative;
  transition: padding var(--d-base) var(--ease-out);
}
.cta-channels .ch:first-child { border-top: 1px solid rgba(255,255,255,0.12); }
.cta-channels .ch:hover { padding-left: 8px; }
.cta-channels .ch::before {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--d-base) var(--ease-out);
}
.cta-channels .ch:hover::before { width: 100%; }
.cta-channels .ch-label {
  display: block;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.cta-channels .ch-value {
  display: block;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--paper);
}
.cta-channels .ch-arrow {
  width: 18px; height: 18px;
  color: rgba(255,255,255,0.5);
  transition: transform var(--d-fast) var(--ease-out), color var(--d-fast) var(--ease-out);
}
.cta-channels .ch:hover .ch-arrow {
  transform: translateX(6px);
  color: var(--accent);
}
.cta-channels .ch-wa .ch-value { color: var(--whatsapp); }
.cta-channels .ch-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.cta-channels .ch-meta .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 0 0 0 rgba(32,184,88,0.6);
  animation: pulse 1.8s ease-in-out infinite;
}

@media (max-width: 1100px) {
  .cta-grid { grid-template-columns: 1fr; gap: 56px; }
  .cta-band p { max-width: 100%; }
}
@media (max-width: 600px) {
  .cta-band { padding: 80px 0; }
  .cta-channels .ch-value { font-size: 18px; }
}

/* =====================================================================
   18. FOOTER
   ===================================================================== */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.foot-grid .foot-h {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot-grid ul { display: flex; flex-direction: column; gap: 10px; }
.foot-grid a {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  transition: color var(--d-fast) var(--ease-out);
  display: inline-block;
}
.foot-grid a:hover { color: var(--paper); transform: translateX(2px); }
.foot-brand p {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.55;
  max-width: 360px;
  margin-top: 18px;
}
.foot-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.foot-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: grid; place-items: center;
  transition:
    background var(--d-fast) var(--ease-out),
    border-color var(--d-fast) var(--ease-out);
}
.foot-social a:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  transform: none;
}
.foot-social svg { width: 18px; height: 18px; color: var(--paper); }

.foot-newsletter {
  margin-top: 24px;
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-md);
  overflow: hidden;
  max-width: 360px;
}
.foot-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 14px;
  color: var(--paper);
  font-size: 14px;
  outline: none;
}
.foot-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.foot-newsletter button {
  background: var(--accent);
  color: var(--paper);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 500;
  transition: background var(--d-fast) var(--ease-out);
}
.foot-newsletter button:hover { background: var(--accent-dark); }

.foot-bottom {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.foot-legal-line {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.foot-legal-line a { color: rgba(255,255,255,0.5); }
.foot-legal-line a:hover { color: var(--paper); }

/* WhatsApp floating */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: var(--z-wa-float);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--paper);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(32,184,88,0.35);
  transition:
    transform var(--d-base) var(--ease-out),
    box-shadow var(--d-base) var(--ease-out);
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 32px rgba(32,184,88,0.45);
}
.wa-float.is-hidden {
  transform: translateY(120px);
  pointer-events: none;
}

/* Back to top */
.back-top {
  position: fixed;
  bottom: 96px; right: 28px;
  z-index: 59;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity var(--d-base) var(--ease-out),
    transform var(--d-base) var(--ease-out);
}
.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-top svg { width: 16px; height: 16px; }

/* =====================================================================
   19. PAGE HEADER
   ===================================================================== */
.page-header { padding: 96px 0 72px; }
.page-header .meta-line {
  display: flex; gap: 14px; align-items: center;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 32px;
}
.page-header .meta-line .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.page-header h1 {
  font-size: var(--fs-h1);
  line-height: 0.98;
  letter-spacing: -0.034em;
  font-weight: 500;
  padding: 24px 0;
}
.page-header h1 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.page-header h1 .accent { color: var(--accent); }
.page-header .lede {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 680px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { opacity: 0.4; }

/* =====================================================================
   20. ABOUT
   ===================================================================== */
.about-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text-grid .lead {
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.014em;
}
.about-text-grid p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.about-text-grid p strong { color: var(--ink); font-weight: 500; }

.numbered-list { display: flex; flex-direction: column; }
.numbered-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.numbered-list li:first-child { border-top: 1px solid var(--rule); }
.numbered-list .nn {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}
.numbered-list h4 {
  font-size: var(--fs-h4);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.numbered-list p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* Pull quote */
.pull-quote {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 56px 0;
  margin: 56px 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}
.pull-quote .qmeta {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--ink-mute);
}
.pull-quote .qtext {
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.022em;
}
.pull-quote .qtext em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

/* =====================================================================
   21. SERVICES
   ===================================================================== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.service-block:first-of-type { border-top: 2px solid var(--ink); }
.service-block .s-meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 96px;
}
.service-block .s-num {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-weight: 500;
}
.service-block h3 {
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.05;
}
.service-block h3 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.service-block .s-icon {
  width: 64px; height: 64px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
}
.service-block .s-icon svg {
  width: 32px; height: 32px;
  stroke-width: 1.6;
}
.service-block .s-body p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.service-block .s-body ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-top: 24px;
}
.service-block .s-body ul li {
  font-size: 14px;
  color: var(--ink);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.service-block .s-body ul li::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex: none;
  transform: translateY(-2px);
}

/* =====================================================================
   22. GALLERY
   ===================================================================== */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 48px;
}
.gallery-tab {
  padding: 22px 28px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-mute);
  cursor: pointer;
  background: transparent;
  border: none;
  border-right: 1px solid var(--rule);
  transition:
    color var(--d-fast) var(--ease-out),
    background var(--d-fast) var(--ease-out);
  display: flex;
  gap: 14px;
  align-items: center;
}
.gallery-tab:hover { color: var(--ink); background: var(--surface-2); }
.gallery-tab.is-active {
  color: var(--ink);
  background: var(--paper-2);
  border-bottom: 2px solid var(--accent);
  margin-bottom: -1px;
}
.gallery-tab .gnum {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  color: var(--accent);
  letter-spacing: var(--ls-mono);
}

.masonry { column-count: 3; column-gap: var(--col-gap); }
.masonry > .gitem {
  break-inside: avoid;
  margin-bottom: var(--col-gap);
  display: block;
  position: relative;
  cursor: pointer;
  background: var(--ink);
  overflow: hidden;
  border-radius: var(--r-md);
}
.masonry > .gitem img {
  width: 100%; height: auto;
  display: block;
  transition:
    transform 0.7s var(--ease-out),
    opacity var(--d-base) var(--ease-out);
}
.masonry > .gitem:hover img { transform: scale(1.05); }
.masonry > .gitem .gcap {
  position: absolute;
  left: 16px; bottom: 16px; right: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  color: var(--paper);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity var(--d-base) var(--ease-out),
    transform var(--d-base) var(--ease-out);
  z-index: 2;
}
.masonry > .gitem::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,27,51,0) 50%, rgba(10,27,51,0.7) 100%);
  opacity: 0;
  transition: opacity var(--d-base) var(--ease-out);
}
.masonry > .gitem:hover::after { opacity: 1; }
.masonry > .gitem:hover .gcap { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,27,51,0.96);
  z-index: var(--z-lightbox);
  display: none;
  place-items: center;
  padding: 32px;
  backdrop-filter: blur(8px);
}
.lightbox.open { display: grid; }
.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--r-md);
}
.lightbox .lb-close,
.lightbox .lb-prev,
.lightbox .lb-next {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--paper);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  transition:
    background var(--d-fast) var(--ease-out),
    border-color var(--d-fast) var(--ease-out);
}
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev  { top: 50%; left: 24px; transform: translateY(-50%); }
.lightbox .lb-next  { top: 50%; right: 24px; transform: translateY(-50%); }
.lightbox .lb-close:hover,
.lightbox .lb-prev:hover,
.lightbox .lb-next:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}
.lightbox .lb-close svg,
.lightbox .lb-prev svg,
.lightbox .lb-next svg { width: 18px; height: 18px; }
.lightbox .lb-meta {
  position: absolute;
  bottom: 24px; left: 32px; right: 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  color: rgba(255,255,255,0.7);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
}

/* =====================================================================
   23. CONTACT FORM
   ===================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-block:first-child { border-top: 1px solid var(--rule); }
.contact-block .clab {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.contact-block .cval {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.contact-block .cval a {
  color: var(--ink);
  transition: color var(--d-fast) var(--ease-out);
}
.contact-block .cval a:hover { color: var(--accent); }
.contact-block p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
  margin-top: 8px;
}

.form { display: flex; flex-direction: column; gap: 22px; }
.form .field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.form label {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--ink-mute);
}
.form input,
.form textarea,
.form select {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  color: var(--ink);
  border: 1px solid var(--rule-strong);
  background: var(--paper);
  padding: 12px 14px;
  border-radius: var(--r-md);
  outline: none;
  width: 100%;
  transition:
    border-color var(--d-fast) var(--ease-out),
    box-shadow var(--d-fast) var(--ease-out);
}
.form input:hover,
.form textarea:hover,
.form select:hover { border-color: var(--ink-soft); }
.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(10,27,51,0.08);
}
.form input:invalid:not(:placeholder-shown),
.form textarea:invalid:not(:placeholder-shown) { border-color: var(--err); }
.form textarea { min-height: 130px; resize: vertical; }
.form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%232A3A56' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 40px;
}
.form .field.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form .field-error {
  font-size: 12px;
  color: var(--err);
  display: none;
}
.form input:invalid:not(:placeholder-shown) ~ .field-error,
.form textarea:invalid:not(:placeholder-shown) ~ .field-error { display: block; }

.form .checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  color: var(--ink-soft);
  font-family: 'Inter Tight', sans-serif;
}
.form .checkbox input[type='checkbox'] {
  appearance: none;
  width: 18px; height: 18px;
  flex: none;
  border: 1.5px solid var(--rule-strong);
  border-radius: var(--r-sm);
  background: var(--paper);
  cursor: pointer;
  margin-top: 2px;
  position: relative;
  padding: 0;
  transition: background var(--d-fast) var(--ease-out), border-color var(--d-fast) var(--ease-out);
}
.form .checkbox input[type='checkbox']:checked {
  background: var(--ink);
  border-color: var(--ink);
}
.form .checkbox input[type='checkbox']:checked::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 5px; height: 9px;
  border: solid var(--paper);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form .checkbox a { text-decoration: underline; color: var(--ink); }

.form .submit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.form .form-note {
  font-size: 12px;
  color: var(--ink-mute);
  max-width: 320px;
  line-height: 1.5;
}

/* =====================================================================
   37. FAQ ACCORDÉON (home)
   ===================================================================== */
.faq-band {
  padding: 96px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.faq-head .section-kicker { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.faq-head .section-title { margin-bottom: 16px; }
.faq-head .section-lede { font-size: 15px; }
.inline-link {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  transition: color 0.3s var(--ease-out);
}
.inline-link:hover { color: var(--accent); }

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  background: transparent;
  transition: background 0.3s var(--ease-out);
}
.faq-item:hover { background: rgba(255,255,255,0.4); }
.faq-item[open] { background: var(--paper); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.014em;
  color: var(--ink);
  transition: padding 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.faq-item:hover summary { padding-left: 8px; }
.faq-item[open] summary { padding-left: 8px; color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  position: relative;
  width: 14px; height: 14px;
  flex: none;
  display: inline-block;
}
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 14px; height: 1.5px;
  background: var(--ink);
  transform: translateY(-50%);
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.faq-toggle::after { transform: translateY(-50%) rotate(90deg); }
.faq-item[open] .faq-toggle::before { background: var(--accent); }
.faq-item[open] .faq-toggle::after { transform: translateY(-50%) rotate(0deg); background: var(--accent); }
.faq-content {
  padding: 0 0 24px 8px;
  max-width: 720px;
}
.faq-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
@media (max-width: 1100px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .faq-band { padding: 64px 0; }
  .faq-item summary { font-size: 15px; padding: 18px 0; }
  .faq-content { padding-bottom: 18px; }
}

/* =====================================================================
   36. PROCESS / MÉTHODOLOGIE (home)
   ===================================================================== */
.process-band {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.process-band::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(200,40,31,0.18), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.process-band .section-head { position: relative; z-index: 1; }
.process-band .section-kicker { color: rgba(255,255,255,0.6); }
.process-band .section-title { color: var(--paper); }
.process-band .section-lede { color: rgba(255,255,255,0.78); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}
.process-step {
  padding: 32px 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background 0.4s var(--ease-out);
}
.process-step:hover { background: rgba(255,255,255,0.04); }
.process-step:last-child { border-right: none; }
.process-step .ps-num {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-mono);
  color: var(--accent);
  font-weight: 500;
}
.process-step .ps-icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--paper);
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.process-step .ps-icon svg { width: 24px; height: 24px; }
.process-step:hover .ps-icon {
  background: var(--paper);
  color: var(--ink);
  transform: rotate(-8deg) scale(1.05);
}
.process-step h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--paper);
}
.process-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  margin-top: auto;
}
@media (max-width: 1100px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2n) { border-right: none; }
  .process-step:not(:nth-last-child(-n+2)) { border-bottom: 1px solid rgba(255,255,255,0.10); }
}
@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.10) !important; }
  .process-step:last-child { border-bottom: none !important; }
  .process-band { padding: 64px 0; }
}

/* =====================================================================
   35. PROJECTS BENTO GRID (home) - réalisations en avant
   ===================================================================== */
.projects-bento-section { padding: 96px 0 72px; }
.projects-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 14px;
}
.bento-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--ink);
  text-decoration: none;
  color: inherit;
  isolation: isolate;
  cursor: pointer;
}
.bento-card.bento-feature {
  grid-column: span 2;
  grid-row: span 2;
}
.bento-card .bento-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.bento-card .bento-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out), filter 0.6s var(--ease-out);
}
.bento-card:hover .bento-img img {
  transform: scale(1.06);
  filter: brightness(1.05);
}
.bento-card .bento-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,27,51,0) 40%, rgba(10,27,51,0.78) 100%);
  pointer-events: none;
}
.bento-card .bento-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--accent);
  color: var(--paper);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  font-weight: 500;
}
.bento-card .bento-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 22px 24px 24px;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out);
}
.bento-card:hover .bento-info { transform: translateY(-4px); }
.bento-card .bento-info h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.014em;
  line-height: 1.3;
  color: var(--paper);
}
.bento-feature .bento-info h3 {
  font-size: clamp(24px, 2.6vw, 36px);
  letter-spacing: -0.022em;
  line-height: 1.15;
}
.bento-card .bento-loc {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.bento-card::after {
  content: '';
  position: absolute;
  bottom: 22px; right: 22px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper);
  z-index: 3;
  opacity: 0;
  transform: translateY(8px) scale(0.8);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), background 0.3s var(--ease-out);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%230A1B33' stroke-width='1.6'%3E%3Cpath d='M2 7h10M8 3l4 4-4 4'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}
.bento-card:hover::after {
  opacity: 1;
  transform: translateY(0) scale(1);
  background-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%23FFFFFF' stroke-width='1.6'%3E%3Cpath d='M2 7h10M8 3l4 4-4 4'/%3E%3C/svg%3E");
}
.projects-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
@media (max-width: 1100px) {
  .projects-bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card.bento-feature { grid-column: span 2; grid-row: span 1; min-height: 380px; }
}
@media (max-width: 600px) {
  .projects-bento { grid-template-columns: 1fr; gap: 12px; }
  .bento-card.bento-feature { grid-column: span 1; min-height: 300px; }
  .bento-card { min-height: 240px; }
  .projects-bento-section { padding: 64px 0 48px; }
}

/* =====================================================================
   34. COVERAGE BAND (home) - couverture nationale épurée
   ===================================================================== */
.coverage-band {
  padding: 96px 0;
  background: var(--paper);
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.coverage-card {
  padding: 36px 32px 32px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  position: relative;
  background: var(--paper);
  transition: background var(--d-base) var(--ease-out);
}
.coverage-card:hover { background: var(--surface-2); }
.coverage-card:last-child { border-right: none; }
.coverage-card .cov-pin {
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  margin-bottom: 4px;
}
.coverage-card .cov-pin::after {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  background: rgba(200,40,31,0.15);
  z-index: -1;
  animation: pulse 1.8s ease-in-out infinite;
}
.coverage-card h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
.coverage-card .cov-meta {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--ink-mute);
}
.coverage-card .cov-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.coverage-card .cov-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-top: auto;
  padding-top: 16px;
  transition: gap 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.coverage-card .cov-link svg {
  width: 14px; height: 14px;
  transition: transform 0.3s var(--ease-out);
}
.coverage-card .cov-link:hover { gap: 12px; color: var(--accent); }
.coverage-card .cov-link:hover svg { transform: translateX(4px); }
.coverage-card-stat .cov-num {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(64px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--accent);
  margin-bottom: 8px;
}
.coverage-card-stat .cov-num sup {
  font-size: 0.4em;
  vertical-align: top;
  font-weight: 500;
  margin-left: 2px;
  position: relative;
  top: 0.1em;
}
@media (max-width: 1100px) {
  .coverage-grid { grid-template-columns: 1fr; }
  .coverage-card { border-right: none; border-bottom: 1px solid var(--rule); }
  .coverage-card:last-child { border-bottom: none; }
}

/* =====================================================================
   33. FOUNDER (home) - version épurée
   ===================================================================== */
.founder-band-home {
  padding: 96px 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.founder-grid-home {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.founder-photo-home {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 16px 40px rgba(10,27,51,0.14);
  position: relative;
}
.founder-photo-home img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.founder-photo-home:hover img { transform: scale(1.04); }
.founder-content-home { display: flex; flex-direction: column; gap: 22px; }
.founder-content-home .founder-kicker {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--accent);
}
.founder-quote-home {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
  letter-spacing: -0.018em;
  color: var(--ink);
  font-weight: 400;
  border-left: 3px solid var(--accent);
  padding-left: 22px;
}
.founder-quote-home em.italic-serif { color: var(--ink); }
.founder-sign-home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.founder-sign-home .founder-name { display: flex; flex-direction: column; gap: 2px; }
.founder-sign-home .founder-name strong {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.014em;
}
.founder-sign-home .founder-name span {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 4px;
  border-bottom: 1px solid var(--ink);
  transition: gap 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.founder-link svg {
  width: 14px; height: 14px;
  transition: transform 0.3s var(--ease-out);
}
.founder-link:hover { gap: 14px; color: var(--accent); border-color: var(--accent); }
.founder-link:hover svg { transform: translateX(4px); }
@media (max-width: 800px) {
  .founder-grid-home { grid-template-columns: 1fr; gap: 32px; }
  .founder-photo-home { width: 180px; height: 180px; }
}

/* =====================================================================
   32. FOUNDER (a-propos)
   ===================================================================== */
.founder-band {
  padding: 96px 0;
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.founder-band::before {
  content: '';
  position: absolute;
  top: -180px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(200,40,31,0.08), transparent 70%);
  pointer-events: none;
}
.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.founder-photo {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 20px 48px rgba(10,27,51,0.18);
  position: relative;
}
.founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.founder-photo:hover img { transform: scale(1.04); }
.founder-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 16px;
}
.founder-kicker {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--ink-mute);
}
.founder-quote {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.022em;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
}
.founder-quote em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.founder-sign {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.founder-sign strong {
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.founder-sign span {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.founder-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.founder-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.founder-meta .num {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.founder-meta .num sup {
  font-size: 0.32em;
  vertical-align: top;
  color: var(--accent);
  font-weight: 500;
  margin-left: 2px;
  position: relative;
  top: 0.2em;
}
.founder-meta > div > span:last-child {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.35;
}
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-photo { width: 220px; height: 220px; margin: 0 auto; }
}

/* Honeypot anti-spam : invisible mais accessible */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-success {
  display: none;
  padding: 32px;
  background: var(--surface-2);
  border-left: 3px solid var(--ok);
  border-radius: var(--r-md);
}
.form-success.show { display: block; }
.form-success h4 {
  font-size: var(--fs-h4);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.form-success p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* maps embed */
.map-embed {
  width: 100%;
  height: 380px;
  border: 1px solid var(--rule);
  background: var(--paper-2);
  margin-top: 56px;
  border-radius: var(--r-md);
  pointer-events: none;
}

/* =====================================================================
   24. LEGAL PAGES
   ===================================================================== */
.legal-content { max-width: 760px; }
.legal-content h2 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.022em;
  margin: 40px 0 16px;
}
.legal-content h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 24px 0 8px;
}
.legal-content p,
.legal-content li {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content strong { color: var(--ink); font-weight: 500; }
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =====================================================================
   25. 404
   ===================================================================== */
.notfound {
  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px var(--gutter);
}
.notfound .nf-code {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(120px, 22vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--ink);
}
.notfound .nf-code .accent { color: var(--accent); }
.notfound h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.022em;
  margin-top: 24px;
}
.notfound p {
  color: var(--ink-soft);
  margin-top: 12px;
  max-width: 480px;
  line-height: 1.55;
}
.notfound .nf-actions {
  margin-top: 32px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =====================================================================
   26. ANIMATIONS
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.5s var(--ease-out);
}
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.12s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.16s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.20s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.24s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.28s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .hero-visual .corner .pin { animation: none; }
}

/* =====================================================================
   27. RESPONSIVE
   ===================================================================== */
@media (max-width: 1280px) {
  :root { --gutter: 28px; }
  .why-grid { gap: 56px; }
  .map-block { gap: 48px; }
}

@media (max-width: 1100px) {
  :root { --gutter: 24px; }
  .hero-sub { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions { justify-content: flex-start; }
  .hero-process { grid-template-columns: repeat(3, 1fr); }
  .hero-process .step:nth-child(n+4) { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1),
  .stat:nth-child(2) { border-bottom: 1px solid var(--rule); }
  .exp { grid-column: span 6; }
  .exp:nth-child(3n) { border-right: 1px solid var(--rule); }
  .exp:nth-child(2n) { border-right: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { aspect-ratio: 16 / 10; max-height: 480px; }
  .sectors { grid-template-columns: repeat(2, 1fr); }
  .sector:nth-child(2n) { border-right: none; }
  .sector:nth-child(1),
  .sector:nth-child(2) { border-bottom: 1px solid var(--rule); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value:nth-child(2n) { border-right: none; }
  .value:not(:nth-last-child(-n+2)) { border-bottom: 1px solid var(--rule); }
  .map-block { grid-template-columns: 1fr; gap: 48px; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  nav.primary { display: none; }
  .burger { display: flex; }
  .top-cta .btn-ghost { display: none; }
  .about-text-grid { grid-template-columns: 1fr; gap: 32px; }
  .pull-quote { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .service-block { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .service-block .s-meta { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .masonry { column-count: 2; }
  .project.third { grid-column: span 6; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .hero { padding: 40px 0 0; }
  .hero h1 { padding: 8px 0 16px; }
  .hero-meta { grid-template-columns: 1fr; gap: 20px; padding-bottom: 32px; }
  .hero-process { grid-template-columns: repeat(2, 1fr); padding: 16px 0 0; }
  .hero-process .step:nth-child(n+3) { display: none; }
  .hero-process .step { padding: 8px 12px; font-size: 10px; }
  .display { line-height: 0.92; }
  .page-header { padding: 56px 0 48px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 64px 0; }
  .cta-band h2 { font-size: clamp(36px, 8vw, 56px); }
  .clients-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  :root { --gutter: 20px; }
  section { padding: 56px 0; }
  .topbar-inner { height: 76px; }
  .mobile-nav { inset: 76px 0 0 0; }
  .brand-logo { height: 60px; }
  .top-cta .btn-primary { padding: 9px 14px; font-size: 13px; }
  .project, .project.wide, .project.third { grid-column: span 12; }
  .exp { grid-column: span 12; border-right: none !important; }
  .exp:not(:last-child) { border-bottom: 1px solid var(--rule); }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--rule); }
  .stat:last-child { border-bottom: none; }
  .sectors { grid-template-columns: 1fr; }
  .sector { border-right: none; border-bottom: 1px solid var(--rule); }
  .sector:last-child { border-bottom: none; }
  .values-grid { grid-template-columns: 1fr; }
  .value {
    border-right: none;
    min-height: auto;
    border-bottom: 1px solid var(--rule);
  }
  .value:last-child { border-bottom: none; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .form .field.row { grid-template-columns: 1fr; gap: 16px; }
  .masonry { column-count: 1; }
  .gallery-tab { padding: 14px 18px; font-size: 14px; }
  .gallery-tab span:not(.gnum) { font-size: 14px; }
  .pull-quote { padding: 32px 0; }
  .filter-bar { gap: 6px; padding-bottom: 24px; margin-bottom: 32px; }
  .filter-chip { padding: 7px 12px; font-size: 11px; }
  .map-embed { height: 280px; margin-top: 32px; }
  .wa-float {
    width: 50px; height: 50px;
    bottom: 20px; right: 20px;
  }
  .back-top { bottom: 80px; right: 20px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-visual { aspect-ratio: 4 / 5; }
  .why-visual { aspect-ratio: 4 / 3; }
}

@media (min-width: 1600px) {
  .masonry { column-count: 4; }
}

/* =====================================================================
   28. PRINT
   ===================================================================== */
@media print {
  .topbar, .mobile-nav, .wa-float, .back-top, .scroll-progress,
  .cta-band, .marquee, footer, .filter-bar, .gallery-tabs,
  .lightbox, .form, .map-embed { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  section { padding: 24px 0; page-break-inside: avoid; }
  .hero-visual, .why-visual, .project-img { max-height: 280px; }
}

/* =====================================================================
   29. PROJECT MODAL
   ===================================================================== */
.project-modal {
  position: fixed; inset: 0;
  background: rgba(10,27,51,0.6);
  z-index: var(--z-lightbox);
  display: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 24px;
  overflow-y: auto;
}
.project-modal.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.pm-card {
  background: var(--paper);
  width: 100%;
  max-width: 1100px;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  margin: 24px 0;
  box-shadow: var(--shadow-lg);
}
.pm-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  display: grid;
  place-items: center;
  z-index: 5;
  border: 1px solid var(--rule);
  transition: background var(--d-fast) var(--ease-out), transform var(--d-fast) var(--ease-out);
}
.pm-close:hover { background: var(--paper); transform: rotate(90deg); }
.pm-close svg { width: 16px; height: 16px; }
.pm-gallery {
  position: relative;
  background: var(--ink);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.pm-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--d-base) var(--ease-out);
}
.pm-slide.is-active { opacity: 1; }
.pm-nav {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  z-index: 3;
}
.pm-arrows { display: flex; gap: 8px; }
.pm-arrows button {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.22);
  display: grid;
  place-items: center;
  transition: background var(--d-fast) var(--ease-out);
}
.pm-arrows button:hover { background: rgba(255,255,255,0.28); }
.pm-arrows svg { width: 16px; height: 16px; }
.pm-counter {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  color: rgba(255,255,255,0.85);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  align-self: center;
  background: rgba(0,0,0,0.32);
  padding: 8px 12px;
  border-radius: var(--r-pill);
}
.pm-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
  max-height: 80vh;
}
.pm-tag {
  align-self: flex-start;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--accent);
}
.pm-body h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.024em;
  line-height: 1.15;
  color: var(--ink);
}
.pm-loc {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.pm-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.pm-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.pm-list li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.pm-list li::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex: none;
  transform: translateY(-2px);
}
.pm-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.pm-thumbs button {
  width: 56px; height: 56px;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: var(--surface-2);
  cursor: pointer;
  transition: border-color var(--d-fast) var(--ease-out), opacity var(--d-fast) var(--ease-out);
  opacity: 0.6;
}
.pm-thumbs button img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.pm-thumbs button:hover { opacity: 1; }
.pm-thumbs button.is-active {
  border-color: var(--accent);
  opacity: 1;
}
@media (max-width: 880px) {
  .pm-card { grid-template-columns: 1fr; }
  .pm-gallery { aspect-ratio: 4 / 3; }
  .pm-body { padding: 28px 24px; max-height: none; }
}

/* Hide scroll-progress (legacy element) */
.scroll-progress { display: none; }

/* =====================================================================
   PROJECTS MARQUEE (homepage) - multi-rangées
   ===================================================================== */
.projects-marquee {
  display: flex;
  flex-direction: column;
  gap: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.projects-marquee-row {
  position: relative;
  overflow: hidden;
}
.projects-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scroll-x 60s linear infinite;
}
.projects-marquee-row.reverse .projects-marquee-track {
  animation-direction: reverse;
  animation-duration: 75s;
}
.projects-marquee:hover .projects-marquee-track,
.projects-marquee:focus-within .projects-marquee-track {
  animation-play-state: paused;
}
.projects-marquee .pcard {
  width: 240px;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.projects-marquee .pcard .project-img {
  aspect-ratio: 4 / 3;
  background: var(--ink);
  overflow: hidden;
  position: relative;
  border-radius: var(--r-md);
}
.projects-marquee .pcard .project-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.projects-marquee .pcard:hover .project-img img { transform: scale(1.05); }
.projects-marquee .pcard h3 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.014em;
  line-height: 1.3;
  color: var(--ink);
}
.projects-marquee .pcard:hover h3 { color: var(--accent); }
.projects-marquee .pcard .ploc {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .projects-marquee-track { animation: none; }
}
@media (max-width: 600px) {
  .projects-marquee .pcard { width: 200px; }
  .projects-marquee .pcard h3 { font-size: 14px; }
}

/* =====================================================================
   30. UTILITAIRES
   ===================================================================== */
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.no-select { user-select: none; -webkit-user-select: none; }

/* =====================================================================
   31. KINETIC LAYER - reveal variants, parallax, magnetic, tilt, cursor
        Couche additive : aucune règle existante n'est modifiée.
   ===================================================================== */

/* Re-active la barre de progression scroll (épaisseur reduite) */
.scroll-progress { display: block !important; height: 2px; background: var(--accent); }

/* ---- Reveal variants supplémentaires ---- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}
.reveal-up.in { opacity: 1; transform: none; }

.reveal-blur {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(20px);
  transition:
    opacity 0.9s var(--ease-out),
    filter 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
  will-change: filter, opacity, transform;
}
.reveal-blur.in { opacity: 1; filter: blur(0); transform: none; }

.reveal-clip {
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  transition: clip-path 1.05s var(--ease-out), -webkit-clip-path 1.05s var(--ease-out);
}
.reveal-clip.in {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}

.reveal-mask {
  position: relative;
  overflow: hidden;
}
.reveal-mask::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--ink);
  z-index: 3;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 1.0s var(--ease-out);
}
.reveal-mask.in::before { transform: scaleX(0); }
.reveal-mask > img,
.reveal-mask > video {
  transform: scale(1.12);
  transition: transform 1.4s var(--ease-out);
}
.reveal-mask.in > img,
.reveal-mask.in > video { transform: scale(1); }

/* Stagger plus profond pour les grilles avec beaucoup d'enfants */
.reveal-stagger.in > *:nth-child(9)  { transition-delay: 0.36s; }
.reveal-stagger.in > *:nth-child(10) { transition-delay: 0.40s; }
.reveal-stagger.in > *:nth-child(11) { transition-delay: 0.44s; }
.reveal-stagger.in > *:nth-child(12) { transition-delay: 0.48s; }

/* ---- Split-text reveal (mots) ---- */
[data-split="words"]:not([data-split-done="true"]) {
  visibility: hidden;
}
[data-split="words"][data-split-done="true"] { visibility: visible; }
[data-split="words"] .ln {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
}
[data-split="words"] .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.22em;
}
[data-split="words"] .w .wi {
  display: inline-block;
  transform: translateY(110%) rotate(6deg);
  opacity: 0;
  transition:
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s var(--ease-out);
  transition-delay: calc(var(--wi, 0) * 60ms);
  will-change: transform, opacity;
}
[data-split="words"].in .w .wi {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
}

/* ---- Parallax ---- */
[data-parallax] {
  --py: 0px;
  will-change: transform;
}
[data-parallax] > img,
[data-parallax].pxl-self {
  transform: translate3d(0, var(--py), 0);
  transition: transform 80ms linear;
}
.hero-visual[data-parallax] img {
  transform: translate3d(0, var(--py), 0) scale(1.15);
  transition: transform 80ms linear;
}
.hero-visual[data-parallax]:hover img {
  transform: translate3d(0, var(--py), 0) scale(1.18);
  transition: transform 1.2s var(--ease-out);
}

/* ---- Magnetic ---- */
[data-magnetic] {
  --mx: 0px;
  --my: 0px;
  transform: translate3d(var(--mx), var(--my), 0);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
[data-magnetic]:hover { transition: transform 80ms linear; }

/* ---- Tilt 3D ---- */
[data-tilt] {
  --tx: 0deg;
  --ty: 0deg;
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(var(--tx)) rotateY(var(--ty));
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* ---- Custom cursor ---- */
.kursor {
  position: fixed;
  top: 0; left: 0;
  width: 0; height: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.kursor-ring {
  position: absolute;
  top: -16px; left: -16px;
  width: 32px; height: 32px;
  border: 1.25px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms;
  opacity: 0.85;
}
.kursor-dot {
  position: absolute;
  top: -2.5px; left: -2.5px;
  width: 5px; height: 5px;
  background: #fff;
  border-radius: 50%;
}
.kursor.on .kursor-ring {
  transform: scale(1.6);
  border-color: var(--accent);
  background: rgba(200,40,31,0.06);
}
.kursor.on .kursor-dot { background: var(--accent); }
@media (hover: none), (pointer: coarse) {
  .kursor { display: none !important; }
}

/* ---- Hero kinetic upgrades ---- */
.hero {
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60vmin; height: 60vmin;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(200,40,31,0.10),
      rgba(200,40,31,0) 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
  animation: hero-orb 14s ease-in-out infinite alternate;
}
@keyframes hero-orb {
  0%   { transform: translate(8%, -10%) scale(1); }
  100% { transform: translate(-6%, 10%) scale(1.18); }
}
.hero-title {
  position: relative;
  z-index: 1;
}

/* Live ticker en haut du hero */
.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px 10px 14px;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.6);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-live .lv-dot {
  width: 8px; height: 8px;
  background: var(--ok);
  border-radius: 50%;
  position: relative;
}
.hero-live .lv-dot::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: rgba(47,125,74,0.35);
  animation: pulse-soft 1.8s ease-out infinite;
}
@keyframes pulse-soft {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}
.hero-live .sep { width: 1px; height: 12px; background: var(--rule-strong); }
.hero-live .lv-loc strong { color: var(--ink); font-weight: 500; }
.hero-live .lv-time { color: var(--ink-mute); font-variant-numeric: tabular-nums; }

/* Marquee de mots-clés au-dessus du hero */
.hero-keymarquee {
  position: relative;
  margin-top: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hero-keymarquee-track {
  display: flex;
  width: max-content;
  gap: 56px;
  animation: scroll-x 42s linear infinite;
}
.hero-keymarquee-track > span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 32px);
  letter-spacing: -0.022em;
  color: var(--ink);
  white-space: nowrap;
}
.hero-keymarquee-track > span em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero-keymarquee-track > span::after {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: 18px;
}

/* ---- Stats band animée (nouvelle section) ---- */
.kpi-band {
  background: var(--paper-2);
  padding: 80px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.kpi-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,27,51,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,27,51,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.kpi {
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.kpi:last-child { border-right: none; padding-right: 0; }
.kpi:not(:first-child) { padding-left: 28px; }
.kpi .k-num {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(48px, 5.4vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.kpi .k-num sup {
  font-size: 0.32em;
  vertical-align: top;
  color: var(--accent);
  font-weight: 500;
  margin-left: 2px;
  position: relative;
  top: 0.2em;
}
.kpi .k-lab {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 12px;
}
.kpi .k-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-top: 4px;
}
.kpi::before {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.8s var(--ease-out);
  transition-delay: var(--bar-delay, 0s);
}
.kpi-band.in .kpi::before { width: 56px; }
@media (max-width: 900px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .kpi:nth-child(2) { border-right: none; }
}
@media (max-width: 540px) {
  .kpi-grid { grid-template-columns: 1fr; }
  .kpi { border-right: none; border-bottom: 1px solid var(--rule); padding: 24px 0; }
  .kpi:not(:first-child) { padding-left: 0; }
  .kpi:last-child { border-bottom: none; }
}

/* ---- Kinetic ticker (entre sections) ---- */
.kinetic-ticker {
  background: var(--ink);
  color: var(--paper);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.kinetic-ticker::before,
.kinetic-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.kinetic-ticker::before { left: 0; background: linear-gradient(to right, var(--ink), transparent); }
.kinetic-ticker::after  { right: 0; background: linear-gradient(to left,  var(--ink), transparent); }
.kt-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: scroll-x 36s linear infinite;
}
.kt-track > span {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: -0.028em;
  white-space: nowrap;
  color: var(--paper);
  transition: color 240ms var(--ease-out);
}
.kt-track > span em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.kt-track > span::after {
  content: '';
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.kinetic-ticker:hover .kt-track { animation-play-state: paused; }

/* ---- Card hover enhancement (lignes accent + icon morph) ---- */
.exp,
.sector,
.why-item,
.value {
  position: relative;
  overflow: hidden;
}
.exp::after,
.sector::after,
.why-item::after,
.value::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease-out);
  z-index: 1;
}
.exp:hover::after,
.sector:hover::after,
.why-item:hover::after,
.value:hover::after { transform: scaleX(1); }

.exp .ex-icon,
.sector .si,
.why-item .why-icon {
  transition:
    background var(--d-base) var(--ease-out),
    color var(--d-base) var(--ease-out),
    transform var(--d-base) var(--ease-out),
    border-color var(--d-base) var(--ease-out);
}
.exp:hover .ex-icon,
.sector:hover .si,
.why-item:hover .why-icon { transform: rotate(-12deg) scale(1.06); }

/* Numéro / index discret en haut à droite des cards expertise */
.exp .ex-tag {
  position: absolute;
  top: 22px; right: 22px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  color: var(--ink-mute);
  letter-spacing: var(--ls-mono);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--d-base) var(--ease-out), transform var(--d-base) var(--ease-out);
}
.exp:hover .ex-tag,
.exp.dark .ex-tag { opacity: 1; transform: translateY(0); }
.exp.dark .ex-tag { color: rgba(255,255,255,0.6); }

/* ---- Marquee projects amélioré (lift au hover individuel + tilt) ---- */
.projects-marquee .pcard {
  --tx: 0deg; --ty: 0deg;
  transform-style: preserve-3d;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.projects-marquee .pcard:hover {
  transform: perspective(900px) rotateX(var(--tx)) rotateY(var(--ty)) translateY(-6px);
}
.projects-marquee .pcard .project-img {
  box-shadow: 0 6px 24px rgba(10,27,51,0.0);
  transition: box-shadow 0.45s var(--ease-out);
}
.projects-marquee .pcard:hover .project-img {
  box-shadow: 0 18px 40px rgba(10,27,51,0.18);
}
/* Indicateur de zoom (loupe) sur hover */
.projects-marquee .pcard .project-img::before {
  content: '';
  position: absolute;
  bottom: 12px; right: 12px;
  width: 36px; height: 36px;
  background: var(--paper);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%230A1B33' stroke-width='1.6'%3E%3Cpath d='M2 7h10M8 3l4 4-4 4'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
  z-index: 3;
  opacity: 0;
  transform: translate(8px, 8px) scale(0.7);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.projects-marquee .pcard:hover .project-img::before {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* ---- Marquee clients : logo lift au hover + glow ---- */
.marquee-track .client {
  position: relative;
  transition: color var(--d-fast) var(--ease-out), transform var(--d-base) var(--ease-out);
}
.marquee-track .client:hover { transform: translateY(-3px); }

/* ---- CTA band : orb dynamique ---- */
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -120px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: cta-orb 18s ease-in-out infinite alternate;
}
@keyframes cta-orb {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20%, -10%) scale(1.2); }
}

/* Halo au hover des channels CTA */
.cta-channels .ch::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(200,40,31,0.0), rgba(200,40,31,0.06), rgba(200,40,31,0.0));
  opacity: 0;
  transition: opacity var(--d-base) var(--ease-out);
  pointer-events: none;
}
.cta-channels .ch:hover::after { opacity: 1; }

/* ---- Section heads : ligne accent qui draws ---- */
.section-head .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.section-head .section-kicker::before {
  content: '';
  display: inline-block;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.8s var(--ease-out) 0.2s;
}
.section-head.in .section-kicker::before,
.reveal.in .section-kicker::before { width: 38px; }

/* ---- Topbar logo subtle scale on scroll ---- */
.topbar.scrolled .brand-logo { transform: scale(0.92); }
.brand-logo { transition: transform var(--d-base) var(--ease-out); }

/* Boutons : effet shine (lustre) au hover sur primary/accent */
.btn-accent, .btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-accent::before, .btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(115deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  transition: left 0.8s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}
.btn-accent:hover::before, .btn-primary:hover::before { left: 140%; }
.btn-accent > *, .btn-primary > * { position: relative; z-index: 2; }

/* ---- Mode statique pour screenshots ---- */
[data-static] *, [data-static] *::before, [data-static] *::after {
  animation-duration: 0.001s !important;
  transition-duration: 0.001s !important;
}
[data-static] [data-split="words"] .w .wi { transform: none !important; opacity: 1 !important; }
[data-static] .reveal-mask::before { transform: scaleX(0) !important; }
[data-static] .reveal-mask > img { transform: scale(1) !important; }

/* ---- Reveal : si reduced motion, désactiver ---- */
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-blur, .reveal-clip { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; -webkit-clip-path: none !important; }
  .reveal-mask::before { display: none; }
  .reveal-mask > img, .reveal-mask > video { transform: none !important; }
  [data-split="words"] .w .wi { transform: none !important; opacity: 1 !important; }
  [data-parallax] > img,
  [data-parallax].pxl-self,
  .hero-visual[data-parallax] img { transform: none !important; }
  [data-magnetic], [data-tilt] { transform: none !important; }
  .kt-track, .hero-keymarquee-track { animation: none !important; }
  .hero::before, .cta-band::after { animation: none !important; }
  .kursor { display: none !important; }
}
