:root {
  --red: #E11414;
  --red-dark: #B8101D;
  --red-soft: #FF4D4D;
  --ink: #1A1A1A;
  --bg: #F9F6F7;
  --dark: #111111;
  --darker: #0C0C0C;
  --muted: #888888;
  --gray: #5A5A5A;
  --line: #E0E0E0;
  --nav-h: 76px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--bg);
  overscroll-behavior-y: none;
}
/* Pattern WAOUH — fond global des zones claires (filtre rouge léger, opacite basse) */
html::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../patterns/waouh-pattern-soft-red.png");
  background-repeat: repeat;
  background-size: 1100px auto;
  background-position: center top;
  opacity: 0.18;
  filter: saturate(1.15) brightness(1.05);
}
html::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(225, 20, 20, 0.035);
}
body {
  margin: 0;
  position: relative;
  z-index: 1;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}
::selection { background: var(--red); color: #fff; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

@keyframes wa-loader-in {
  from { opacity: 0; transform: translateY(18px) scale(0.94); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes wa-loader-tag {
  from { opacity: 0; letter-spacing: 0.28em; }
  to { opacity: 0.7; letter-spacing: 0.14em; }
}
@keyframes wa-loader-shine {
  0% { transform: translateX(-120%) skewX(-18deg); opacity: 0; }
  35% { opacity: 0.7; }
  100% { transform: translateX(220%) skewX(-18deg); opacity: 0; }
}
@keyframes wa-loader-pulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.08); }
}

/* ===== PRELOADER WAOUH ===== */
html.is-loading,
html.is-loading body {
  overflow: hidden;
}
.wa-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  place-items: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 42%, rgba(225, 20, 20, 0.14), transparent 58%),
    #0a0a0a;
  color: #fff;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.7s;
}
html.is-loading .wa-loader {
  display: grid;
}
.wa-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.wa-loader__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  animation: wa-loader-pulse 3.2s ease-in-out infinite;
}
.wa-loader__glow--a {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  top: 12%;
  left: 8%;
  background: rgba(225, 20, 20, 0.28);
}
.wa-loader__glow--b {
  width: min(360px, 60vw);
  height: min(360px, 60vw);
  bottom: 8%;
  right: 6%;
  background: rgba(255, 77, 77, 0.18);
  animation-delay: -1.4s;
}
.wa-loader__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 55% 45% at 50% 48%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 55% 45% at 50% 48%, #000 20%, transparent 75%);
  pointer-events: none;
  opacity: 0.7;
}
.wa-loader__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 24px;
  text-align: center;
  animation: wa-loader-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.wa-loader__logo {
  line-height: 0;
  filter: drop-shadow(0 12px 40px rgba(225, 20, 20, 0.25));
}
.wa-loader__logo img {
  display: block;
  width: min(240px, 68vw);
  height: auto;
}
.wa-loader__track {
  position: relative;
  width: min(220px, 58vw);
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}
.wa-loader__fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-soft));
  box-shadow: 0 0 18px rgba(225, 20, 20, 0.65);
  transition: width 0.18s linear;
}
.wa-loader__shine {
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: wa-loader-shine 1.4s ease-in-out infinite;
  pointer-events: none;
}
.wa-loader__tag {
  margin: 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
  animation: wa-loader-tag 0.9s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.wa-loader__pct {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  min-height: 1em;
}
.wa-loader.is-done .wa-loader__inner {
  transform: scale(1.06);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
  .wa-loader__inner,
  .wa-loader__tag,
  .wa-loader__glow,
  .wa-loader__shine {
    animation: none !important;
  }
  .wa-loader {
    transition-duration: 0.01ms !important;
  }
}

/* ===== PRELOADER END ===== */

@keyframes wa-fadeup {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes wa-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes wa-kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(225, 20, 20, 0.35); }
  70% { box-shadow: 0 0 0 10px rgba(225, 20, 20, 0); }
}
@keyframes wa-video-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes wa-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
@keyframes wa-orb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.15); }
}
@keyframes wa-orb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.1); }
}
@keyframes wa-pop {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes wa-pole-elastic {
  0% { transform: scale(0.94) translateY(8px); opacity: 0.6; }
  55% { transform: scale(1.05) translateY(-2px); opacity: 1; }
  75% { transform: scale(0.98) translateY(1px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
@keyframes wa-avatar-shine {
  0%, 18% { transform: translateX(-140%) skewX(-18deg); opacity: 0; }
  28% { opacity: 1; }
  55% { transform: translateX(160%) skewX(-18deg); opacity: 0; }
  100% { transform: translateX(160%) skewX(-18deg); opacity: 0; }
}
@keyframes wa-brand-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes wa-brand-title {
  from { clip-path: inset(0 100% 0 0); opacity: 0.4; }
  to { clip-path: inset(0 0 0 0); opacity: 1; }
}

.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 300;
  background: transparent;
}
.scroll-progress > span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--red-soft));
  transition: width 0.1s linear;
}


.logo-dot { color: var(--red); }

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 clamp(16px, 4vw, 48px);
  background: #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.navbar.is-scrolled {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
.navbar__brand {
  flex: none;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  transition: transform 0.3s ease, opacity 0.25s ease;
  z-index: 2;
}
.navbar__brand img {
  display: block;
  height: clamp(36px, 4.2vw, 48px);
  width: auto;
  max-width: min(200px, 42vw);
}
.navbar__brand:hover { transform: scale(1.03); opacity: 0.92; }

/* Menu visible par défaut (desktop) */
.navbar__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
}
.navbar__link {
  display: inline-flex;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: #d0d0d0;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.navbar__link:hover { color: #fff; }
.navbar__link.is-active {
  color: #fff;
  background: rgba(225, 20, 20, 0.18);
}

.navbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: none;
  z-index: 2;
}
.navbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px 20px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.navbar__cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(225, 20, 20, 0.35);
}
.navbar__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.navbar__burger span {
  display: block;
  width: 18px; height: 2px;
  background: #fff;
  transition: transform 0.25s, opacity 0.2s;
}
.navbar__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.navbar__burger.is-open span:nth-child(2) { opacity: 0; }
.navbar__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  z-index: 199;
  background: var(--dark);
  padding: 28px 24px;
  flex-direction: column;
  gap: 4px;
  animation: wa-fadeup 0.3s ease;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #d0d0d0;
  text-decoration: none;
  font-weight: 600;
  font-size: 22px;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-display);
}
.mobile-menu a.is-active { color: #fff; }
.mobile-menu a span { font-size: 16px; color: #5A5A5A; }
.mobile-menu a.is-active span { color: var(--red-soft); }
.mobile-menu__cta {
  margin-top: 24px !important;
  text-align: center;
  justify-content: center;
  background: var(--red);
  color: #fff !important;
  border-bottom: none !important;
  border-radius: 12px;
  padding: 16px 22px !important;
  font-size: 16px !important;
  font-family: var(--font-body) !important;
}

/* Mobile : liens cachés, burger visible */
@media (max-width: 919px) {
  .navbar__links { display: none; }
  .navbar__cta { display: none; }
  .navbar__burger { display: flex; }
}

.main {
  padding-top: var(--nav-h);
  min-height: 100vh;
  background: transparent;
}

.eyebrow {
  font-family: ui-monospace, monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--red-soft);
  margin-bottom: 16px;
}
.eyebrow--dark { color: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  font-size: 16px;
  padding: 17px 32px;
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(225, 20, 20, 0.35);
}
.btn--ghost {
  color: #fff;
  font-size: 15px;
  padding: 14px 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn--ghost:hover {
  border-color: var(--red);
  background: rgba(225, 20, 20, 0.1);
}
.btn--outline {
  color: var(--ink);
  font-size: 15px;
  padding: 14px 26px;
  border: 1.5px solid var(--ink);
}
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--dark {
  background: var(--ink);
  color: #fff;
  font-size: 16px;
  padding: 18px 34px;
}
.btn--dark:hover { background: #000; transform: translateY(-3px); }
.btn--xl {
  font-size: 18px;
  padding: 22px 44px;
}
.btn--xl:hover {
  background: var(--red-dark);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 60px rgba(225, 20, 20, 0.4);
}

.site-footer {
  padding: 48px clamp(20px, 5vw, 64px) 32px;
  background: var(--darker);
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.site-footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  transition: opacity 0.25s ease;
}
.site-footer__logo img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 168px;
}
.site-footer__logo:hover { opacity: 0.85; }
.site-footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s;
}
.site-footer a:hover { color: #fff; }
.site-footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.site-footer__meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #5A5A5A;
}
.site-footer__meta a { color: #5A5A5A; font-size: 13px; }

/* ===== HOME ===== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
  padding: 80px clamp(20px, 5vw, 64px);
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide-picture {
  position: absolute;
  inset: 0;
  display: block;
}
.hero__slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform-origin: center center;
  animation: wa-kenburns 9s ease-out infinite alternate;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(17, 17, 17, 0.95) 20%, rgba(17, 17, 17, 0.55) 60%, rgba(17, 17, 17, 0.35) 100%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}
.hero__orb--1 {
  top: -100px; right: 10%;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(225, 20, 20, 0.35), transparent 65%);
  animation: wa-orb1 8s ease-in-out infinite;
}
.hero__orb--2 {
  bottom: -60px; right: 28%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255, 77, 77, 0.25), transparent 65%);
  animation: wa-orb2 7s ease-in-out infinite;
}
.hero__content { position: relative; z-index: 2; max-width: 1000px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 77, 77, 0.5);
  color: var(--red-soft);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 32px;
  animation: wa-fadeup 0.7s ease both;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: wa-pulse 2s ease infinite;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6.4vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 28px;
  max-width: 14ch;
}
.hero h1 .hero__title-line {
  display: inline;
  animation: wa-fadeup 0.7s ease 0.15s both;
}
.hero__waouh {
  font-style: italic;
  color: var(--red);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  animation: none;
}
.hero__lead {
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.55;
  color: #E0E0E0;
  max-width: 560px;
  margin: 0 0 40px;
  animation: wa-fadeup 0.7s ease 0.45s both;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  animation: wa-fadeup 0.7s ease 0.6s both;
}
.hero__cta-secondary {
  border-color: rgba(255, 255, 255, 0.45);
}
.hero__cta-secondary:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.hero__link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 17px 8px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  transition: border-color 0.25s;
}
.hero__link:hover { border-color: var(--red); }
.hero__dots {
  position: absolute;
  bottom: 32px;
  left: clamp(20px, 5vw, 64px);
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero__dot {
  width: 26px; height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.4s;
  border: none;
  padding: 0;
  cursor: pointer;
}
.hero__dot.is-active { background: var(--red); }
.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.hero__scroll-line {
  display: block;
  width: 1px; height: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
  animation: wa-bounce 1.6s ease infinite;
}

@media (max-width: 719px) {
  .hero {
    min-height: clamp(520px, 92vh, 720px);
    justify-content: flex-end;
    padding-top: clamp(48px, 10vh, 72px);
    padding-bottom: clamp(72px, 12vh, 96px);
  }
  .hero__bg {
    transform: none !important;
  }
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(17, 17, 17, 0.12) 0%, rgba(17, 17, 17, 0.45) 42%, rgba(17, 17, 17, 0.92) 78%);
  }
  .hero__slide-img {
    object-position: center 22%;
    animation: none;
  }
  .hero h1 {
    max-width: none;
    font-size: clamp(32px, 9vw, 44px);
    margin-bottom: 16px;
  }
  .hero__badge {
    margin-bottom: 18px;
    font-size: 11px;
    padding: 7px 12px;
  }
  .hero__lead {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero__actions .btn {
    justify-content: center;
    width: 100%;
  }
  .hero__orb { opacity: 0.45; }
  .page-hero__bg {
    top: 0;
    height: 100%;
    transform: none !important;
  }
  .page-hero__bg-img {
    object-position: center 28%;
  }
  .page-hero__shade {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.18) 0%, rgba(10, 10, 10, 0.62) 48%, rgba(10, 10, 10, 0.9) 100%);
  }
}

.marquee {
  background: var(--red);
  overflow: hidden;
  padding: 18px 0;
  transform: none;
  position: relative;
  z-index: 3;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: wa-marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 26px);
  color: #fff;
  letter-spacing: 0.02em;
}

.section {
  padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 64px);
}
#poles.section {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(12px, 2vw, 24px);
}
#poles + .client-logos {
  padding-top: clamp(12px, 2vw, 20px);
}
#video.section {
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(28px, 3.5vw, 44px);
}
@media (min-width: 720px) {
  #video.section {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 40px;
    row-gap: clamp(28px, 4vw, 40px);
    align-items: end;
  }
  #video.section .video-head {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
  }
  #video.section .video-head__cta {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin: 0;
  }
  #video.section .video-carousel {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}
#actus.section {
  padding-top: clamp(28px, 3.5vw, 44px);
}
.section--light { background: transparent; }
.section--dark { background: var(--dark); color: #fff; }
.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
}
.section__head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
}
.section__head h2 .accent { color: var(--red); }
.section__aside {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray);
  margin: 0;
  max-width: 340px;
}

.poles {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.poles-carousel__viewport {
  position: relative;
}
.poles-carousel__dots {
  display: none;
}
.pole {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  min-height: 200px;
  flex: 1 1 auto;
  min-width: 0;
  will-change: flex-grow;
  transition: filter 0.4s ease, box-shadow 0.45s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
a.pole:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
.pole__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.45) 30%, rgba(17, 17, 17, 0.92) 100%);
  transition: background 0.45s ease;
}
.pole.is-active .pole__overlay {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.1) 30%, rgba(17, 17, 17, 0.88) 100%);
}
.pole__content {
  position: absolute;
  inset: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}
.pole__num {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--red-soft);
  transition: transform 0.45s cubic-bezier(0.34, 1.7, 0.45, 1);
}
.pole.is-active .pole__num {
  transform: scale(1.15);
}
.pole__content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(19px, 1.8vw, 24px);
  color: #fff;
  margin: 0;
  line-height: 1.15;
  transform-origin: left bottom;
}
.pole__desc {
  font-size: 14px;
  line-height: 1.5;
  color: #E0E0E0;
  margin: 0;
  max-width: 340px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(16px) scale(0.92);
  transform-origin: left bottom;
  transition:
    opacity 0.45s ease,
    max-height 0.55s cubic-bezier(0.34, 1.7, 0.45, 1),
    transform 0.55s cubic-bezier(0.34, 1.7, 0.45, 1);
}
.pole__desc-text {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.pole__desc.is-collapsed .pole__desc-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pole__more {
  display: inline-flex;
  margin-top: 8px;
  padding: 0;
  border: none;
  background: none;
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.pole__more:hover { color: var(--red-soft); }
.pole.is-active .pole__desc {
  opacity: 1;
  max-height: 120px;
  transform: translateY(0) scale(1);
}
.pole.is-active .pole__desc.is-open {
  max-height: 280px;
  overflow-y: auto;
}
@media (max-width: 919px) {
  #poles.section {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
    padding-bottom: clamp(12px, 2.5vw, 20px);
  }
  #poles .section__head {
    padding-left: clamp(20px, 5vw, 64px);
    padding-right: clamp(20px, 5vw, 64px);
  }
  .poles-carousel {
    width: 100%;
  }
  .poles-carousel__viewport {
    overflow: hidden;
  }
  .poles {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 clamp(20px, 5vw, 64px) 6px;
    scroll-padding-inline: clamp(20px, 5vw, 64px);
  }
  .poles::-webkit-scrollbar { display: none; }
  .pole {
    flex: 0 0 min(82vw, 340px);
    width: min(82vw, 340px);
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 5;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    will-change: auto;
  }
  .pole__overlay,
  .pole.is-active .pole__overlay {
    background: linear-gradient(
      180deg,
      transparent 42%,
      rgba(17, 17, 17, 0.35) 68%,
      rgba(17, 17, 17, 0.82) 100%
    );
  }
  .pole__content {
    padding: 16px 18px;
    gap: 4px;
  }
  .pole__content h3 {
    font-size: clamp(17px, 4.6vw, 21px);
  }
  /* Sur mobile : titre seul, la photo reste visible */
  .pole__desc,
  .pole.is-active .pole__desc {
    display: none;
  }
  .poles-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding: 0 clamp(20px, 5vw, 64px);
  }
  .poles-carousel__dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: var(--line);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
  }
  .poles-carousel__dot.is-active {
    width: 20px;
    background: var(--red);
  }
}
@media (min-width: 920px) {
  .poles {
    flex-direction: row;
    height: 460px;
    min-height: 460px;
    align-items: stretch;
  }
  .pole {
    flex: 1 1 0;
    align-self: stretch;
    min-height: 460px;
    height: 460px;
  }
  .pole.is-active {
    box-shadow: 0 22px 48px rgba(225, 20, 20, 0.22);
    filter: saturate(1.1) brightness(1.04);
  }
}

.section--video {
  position: relative;
  overflow: hidden;
  background: transparent;
  color: var(--ink);
}
.section--video::before {
  display: none;
}

/* Patterns WAOUH — calque local (fallback / sections isolées) */
.section--with-pattern {
  position: relative;
  overflow: hidden;
  background: transparent;
}
.section--video.section--with-pattern {
  background: transparent;
}
.section--actus.section--with-pattern {
  background: transparent;
}
.valeurs--agence.section--with-pattern {
  background: transparent;
}
.testimonials.section--with-pattern {
  background: transparent;
  overflow: hidden;
}
.section-pattern {
  display: none; /* remplacé par le motif global html::before */
}
.section-pattern__content {
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) {
  html::before {
    background-size: 780px auto;
    opacity: 0.15;
  }
}

.video-head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 40px;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.video-head__copy {
  flex: 1 1 280px;
  max-width: 560px;
}
.video-head__copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.video-head__copy p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray);
  margin: 0;
  max-width: 440px;
}
.video-head__cta {
  flex: none;
  align-self: flex-end;
}
.video-carousel {
  position: relative;
  z-index: 1;
}
.video-carousel__dots {
  display: none;
}
.video-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 16px;
}
.video-player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #ddd;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
html.js .video-player[data-reveal] {
  transition-delay: var(--reveal-delay, 0s);
}
.video-player:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
}
.video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  display: block;
}
.video-thumb__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(1.05) saturate(1.04);
  transition: transform 0.7s ease, filter 0.35s ease;
}
.video-player.is-visible .video-thumb__img {
  animation: wa-kenburns 16s ease-in-out infinite alternate;
}
.video-thumb:hover .video-thumb__img {
  transform: scale(1.05);
  filter: brightness(1.12) saturate(1.08);
  animation: none;
}
.video-thumb__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17, 17, 17, 0.35) 100%);
  pointer-events: none;
}
.video-thumb__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.video-thumb__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(225, 20, 20, 0.35);
  animation: wa-pulse 2.6s ease infinite;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  pointer-events: none;
}
.video-thumb:hover .video-thumb__btn {
  transform: scale(1.08);
  box-shadow: 0 0 0 8px rgba(225, 20, 20, 0.14), 0 10px 22px rgba(225, 20, 20, 0.4);
}
.video-thumb__triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.video-thumb__label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.1);
}

@media (max-width: 719px) {
  #video.section {
    padding-left: 0;
    padding-right: 0;
    padding-top: clamp(12px, 2.5vw, 18px);
    padding-bottom: clamp(18px, 3vw, 28px);
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .video-head {
    margin-bottom: 0;
  }
  .video-head__copy {
    max-width: none;
    padding: 0 clamp(20px, 5vw, 64px);
    margin-bottom: 10px;
  }
  .video-head__copy .eyebrow {
    margin-bottom: 8px;
  }
  .video-head__copy h2 {
    font-size: clamp(24px, 6.8vw, 32px);
    line-height: 1.08;
    margin-bottom: 6px;
  }
  .video-head__br { display: none; }
  .video-head__copy p {
    font-size: 14px;
    line-height: 1.5;
    max-width: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
  }
  .video-carousel {
    width: 100%;
    margin-bottom: 0;
  }
  .video-carousel .video-gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 clamp(20px, 5vw, 64px) 2px;
    scroll-padding-inline: clamp(20px, 5vw, 64px);
    margin: 0;
  }
  .video-carousel .video-gallery::-webkit-scrollbar { display: none; }
  .video-carousel .video-player {
    flex: 0 0 min(88vw, 420px);
    width: min(88vw, 420px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    border-radius: 16px;
  }
  html.reveals-on .video-player[data-reveal] {
    transform: none;
    transition: none;
  }
  .video-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding: 0 clamp(20px, 5vw, 64px);
  }
  .video-carousel__dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: var(--line);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
  }
  .video-carousel__dot.is-active {
    width: 20px;
    background: var(--red);
  }
  .video-head__cta {
    align-self: stretch;
    justify-content: center;
    margin: 12px clamp(20px, 5vw, 64px) 0;
    padding: 13px 18px;
    font-size: 14px;
  }
  .video-thumb__btn {
    width: 44px;
    height: 44px;
  }
  .video-thumb__triangle {
    border-width: 6px 0 6px 10px;
    margin-left: 2px;
  }
  .video-thumb__label {
    left: 10px;
    bottom: 10px;
    font-size: 11px;
    padding: 6px 10px;
  }
}

@media (min-width: 720px) and (max-width: 1099px) {
  .video-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .video-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
}
.card {
  text-decoration: none;
  color: inherit;
  display: block;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 28px 60px rgba(26, 26, 26, 0.12);
}
.card__media {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}
.card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.card:hover .card__img { transform: scale(1.07); }
.card__tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 7px 14px;
  border-radius: 999px;
}
.card__tag--dark { background: var(--ink); }
.card__body { padding: 26px; }
.card__date {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 10px;
}
.card__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 10px;
}
.card__body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray);
  margin: 0 0 16px;
}
.card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
}

/* Témoignages — carrousel pleine largeur */
.testimonials {
  padding: clamp(72px, 9vw, 110px) 0 clamp(64px, 8vw, 96px);
  background: transparent;
  overflow: hidden;
}
.testimonials__head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 52px);
  padding: 0 clamp(20px, 5vw, 64px);
}
.testimonials__head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 10px 0 0;
  color: var(--ink);
}
.testimonials__carousel {
  width: 100%;
  overflow: hidden;
  padding: 28px 0 36px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.testimonials__rail {
  display: flex;
  align-items: stretch;
  gap: 28px;
  width: max-content;
  padding: 0 clamp(20px, 4vw, 48px);
  animation: wa-testimonials-marquee 55s linear infinite;
  will-change: transform;
}
.testimonials__carousel:hover .testimonials__rail,
.testimonials.is-paused .testimonials__rail {
  animation-play-state: paused;
}
.testimonial-card {
  flex: 0 0 min(380px, 78vw);
  width: min(380px, 78vw);
  min-width: 0;
  box-sizing: border-box;
  background: #fff;
  border-radius: 22px;
  padding: clamp(28px, 3vw, 36px) clamp(22px, 2.5vw, 30px) 28px;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
  border: 1px solid rgba(17, 17, 17, 0.04);
  transform: rotate(var(--tilt, -1deg)) translateY(0);
  transform-origin: 50% 80%;
  animation: wa-tilt-sway 4.8s ease-in-out infinite;
  animation-delay: var(--sway-delay, 0s);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  display: flex;
  flex-direction: column;
}
.testimonials__carousel:hover .testimonial-card,
.testimonials.is-paused .testimonial-card {
  animation-play-state: paused;
}
.testimonial-card:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 28px 56px rgba(17, 17, 17, 0.14);
  z-index: 2;
}
@keyframes wa-testimonials-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@keyframes wa-tilt-sway {
  0%, 100% {
    transform: rotate(calc(var(--tilt, 0deg) - 0.8deg)) translateY(0);
  }
  50% {
    transform: rotate(calc(var(--tilt, 0deg) + 0.8deg)) translateY(-2px);
  }
}
.testimonial-card__mark {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  color: rgba(225, 20, 20, 0.4);
  margin-bottom: 8px;
}
.testimonial-card__quote {
  margin: 0 0 28px;
  text-align: center;
  font-style: italic;
  font-size: clamp(14.5px, 1.35vw, 16px);
  line-height: 1.65;
  color: var(--gray);
  flex: 1 1 auto;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial-card__avatar {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fde8e8;
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.testimonial-card__author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.testimonial-card__author span {
  display: block;
  margin-top: 3px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.35;
}
@media (max-width: 720px) {
  .testimonials__rail {
    gap: 18px;
    animation-duration: 40s;
  }
  .testimonial-card {
    flex-basis: min(300px, 82vw);
    width: min(300px, 82vw);
  }
}
@media (prefers-reduced-motion: reduce) {
  .testimonials__rail {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
    max-width: 1120px;
    margin: 0 auto;
  }
  .testimonial-card {
    animation: none;
    transform: none;
  }
}

.cta-giant {
  position: relative;
  padding: clamp(100px, 14vw, 180px) clamp(20px, 5vw, 64px);
  background: #0a0a0a;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.cta-giant__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -12%;
  height: 124%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0) scale(1.08);
  z-index: 0;
  filter: saturate(1.1) contrast(1.05);
}
.page-hero__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -12%;
  height: 124%;
  overflow: hidden;
  transform: translate3d(0, 0, 0) scale(1.08);
  z-index: 0;
  filter: saturate(1.1) contrast(1.05);
}
.page-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.cta-giant__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(10, 10, 10, 0.78) 10%, rgba(10, 10, 10, 0.45) 55%, rgba(10, 10, 10, 0.7) 100%),
    radial-gradient(circle at 80% 15%, rgba(225, 20, 20, 0.35), transparent 42%);
  pointer-events: none;
}
.cta-giant__orb {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}
.cta-giant__orb--1 {
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(225, 20, 20, 0.28), transparent 65%);
}
.cta-giant__orb--2 {
  bottom: -80px; left: 20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(225, 20, 20, 0.16), transparent 65%);
}
.cta-giant__inner {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
}
.cta-giant h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 6.5vw, 86px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 28px;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}
.cta-giant h2 em {
  color: var(--red);
  font-style: italic;
}
.cta-giant p {
  font-size: 17px;
  line-height: 1.6;
  color: #d4d4d4;
  margin: 0 auto 44px;
  max-width: 480px;
}

/* ===== INNER PAGES ===== */
.page-hero {
  position: relative;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 64px) clamp(56px, 7vw, 90px);
  background: var(--dark);
  overflow: hidden;
  isolation: isolate;
}
.page-hero--parallax {
  min-height: clamp(320px, 48vh, 520px);
  display: flex;
  align-items: flex-end;
}
.page-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(10, 10, 10, 0.88) 8%, rgba(10, 10, 10, 0.55) 55%, rgba(10, 10, 10, 0.4) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.25) 0%, rgba(10, 10, 10, 0.75) 100%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  max-width: 900px;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}
.page-hero p {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: #d0d0d0;
  max-width: 560px;
  margin: 24px 0 0;
}
.page-hero--filters .page-hero__inner { padding-bottom: 8px; }
.page-hero--filters p { margin-bottom: 36px; }
.page-hero .filters { margin-top: 8px; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn.is-active,
.filter-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.expertise-block {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  gap: 0;
}
.expertise-block__text {
  flex: 1 1 420px;
  min-width: 280px;
  padding: clamp(48px, 6vw, 88px) clamp(20px, 5vw, 64px);
}
.expertise-block__num {
  font-family: ui-monospace, monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
}
.expertise-block__text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 14px 0 18px;
}
.expertise-block__text > p {
  font-size: 16px;
  line-height: 1.65;
  max-width: 460px;
  margin: 0 0 26px;
}
.expertise-block__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.expertise-block__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
}
.expertise-block__item i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex: none;
}
.expertise-block__media {
  flex: 1 1 420px;
  min-width: 280px;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}
.expertise-block--light { background: var(--bg); }
.expertise-block--light h2,
.expertise-block--light .expertise-block__item { color: var(--ink); }
.expertise-block--light > .expertise-block__text > p { color: var(--gray); }
.expertise-block--dark { background: var(--dark); }
.expertise-block--dark h2,
.expertise-block--dark .expertise-block__item { color: #fff; }
.expertise-block--dark > .expertise-block__text > p { color: var(--muted); }

/* ===== EXPERTISES PAGE ===== */
.page-hero--expertises { min-height: clamp(360px, 48vh, 520px); }
.page-hero--expertises .page-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-hero--expertises .page-hero__title { max-width: 900px; }
.page-hero--expertises .page-hero__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 18px;
  background: var(--red);
}
.page-hero--expertises p { max-width: 540px; }

.xp-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 8;
  background: rgba(17, 17, 17, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}
.xp-nav__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  overflow-x: auto;
  padding: 8px clamp(20px, 5vw, 64px);
  scrollbar-width: none;
}
.xp-nav__inner::-webkit-scrollbar { display: none; }
.xp-nav__item {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #d0d0d0;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  white-space: nowrap;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
button.xp-nav__item { line-height: 1.2; }
.xp-nav__num {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--red-soft);
}
.xp-nav__item.is-active .xp-nav__num,
.xp-nav__item:hover .xp-nav__num { color: #fff; }
.xp-nav__item:hover {
  color: #fff;
  border-color: var(--red);
  background: rgba(225, 20, 20, 0.2);
  transform: translateY(-2px);
}
.xp-nav__item.is-active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 8px 20px rgba(225, 20, 20, 0.35);
}

@media (max-width: 919px) {
  .xp-nav {
    border-bottom: none;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(17, 17, 17, 0.94));
  }
  .xp-nav__inner {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 8px 16px 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 92%, transparent);
  }
  .xp-nav__item {
    scroll-snap-align: start;
    padding: 7px 12px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
  }
  .xp-nav__item:hover { transform: none; }
  .xp-nav__item.is-active {
    box-shadow: 0 6px 18px rgba(225, 20, 20, 0.4);
  }
}

.xp-list {
  background: transparent;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
}
.xp-block {
  scroll-margin-top: calc(var(--nav-h) + 72px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.xp-block:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 20, 20, 0.35);
  box-shadow: 0 24px 50px rgba(17, 17, 17, 0.1);
}
.xp-block--alt {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  background: #fff;
  border-color: var(--line);
}
.xp-block--alt:hover {
  border-color: rgba(225, 20, 20, 0.35);
  box-shadow: 0 24px 50px rgba(17, 17, 17, 0.1);
}
.xp-block--alt .xp-block__media { order: 2; }
.xp-block--alt .xp-block__body h2 { color: var(--ink); }
.xp-block--alt .xp-block__body > p { color: var(--gray); }
.xp-block--alt .xp-block__tags li {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  border-color: #d4dae3;
}
.xp-block--alt .xp-block__cta { color: var(--red); }

.xp-block__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.xp-block__media {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  background: #1a1a1a;
}
.xp-block__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(160deg, transparent 40%, rgba(225, 20, 20, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.xp-block:hover .xp-block__media::after { opacity: 1; }

.xp-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.xp-carousel__viewport {
  position: absolute;
  inset: 0;
}
.xp-carousel__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s ease, transform 0.9s ease;
  pointer-events: none;
}
.xp-carousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.xp-carousel__btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.55);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.xp-carousel__btn--prev { left: 12px; }
.xp-carousel__btn--next { right: 12px; }
.xp-block:hover .xp-carousel__btn,
.xp-carousel:focus-within .xp-carousel__btn {
  opacity: 1;
}
.xp-carousel__btn:hover {
  background: var(--red);
  transform: translateY(-50%) scale(1.06);
}
.xp-carousel__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 7px;
  pointer-events: none;
}
.xp-carousel__dot {
  pointer-events: auto;
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.xp-carousel__dot.is-active {
  width: 18px;
  background: #fff;
}
.xp-block__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease, filter 0.45s ease;
}
.xp-block:hover .xp-block__img {
  transform: scale(1.08);
  filter: saturate(1.15);
}
.xp-block__watermark {
  position: absolute;
  right: 8px;
  bottom: -12px;
  z-index: 3;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(64px, 8vw, 96px);
  line-height: 1;
  color: #fff;
  opacity: 0.18;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.45s ease;
}
.xp-block:hover .xp-block__watermark {
  opacity: 0.35;
  transform: translateY(-6px);
  color: var(--red-soft);
}

.xp-block__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  padding: 0 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(225, 20, 20, 0.12);
  font-family: ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
}
.xp-block--alt .xp-block__num {
  background: rgba(225, 20, 20, 0.12);
  color: var(--red);
}
.xp-block__body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 14px;
}
.xp-block__body > p,
.xp-desc__text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray);
  margin: 0;
  max-width: 520px;
}
.xp-desc {
  margin: 0 0 14px;
  max-width: 520px;
  width: 100%;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}
.xp-desc__text {
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}
.xp-desc.is-collapsed .xp-desc__text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.xp-desc__toggle {
  display: inline-flex;
  margin-top: 10px;
  padding: 0;
  border: none;
  background: none;
  color: var(--red);
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.xp-desc__toggle:hover { color: var(--red-dark); }
.xp-block__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 5px;
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.xp-block__tags li {
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 9px;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.xp-block__tags li:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}
.xp-block__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--red);
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}
.xp-block__cta:hover {
  gap: 12px;
  color: var(--red-dark);
}

@media (max-width: 919px) {
  .xp-block,
  .xp-block--alt {
    grid-template-columns: 1fr;
  }
  .xp-block--alt .xp-block__media { order: 0; }
  .xp-block__media { aspect-ratio: 16 / 11; }
  .xp-block__tags {
    gap: 4px;
    margin-bottom: 12px;
  }
  .xp-block__tags li {
    font-size: 11px;
    padding: 3px 8px;
  }
}

.band-cta {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 64px);
  background: var(--red);
  text-align: center;
}
.band-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.08;
  color: #fff;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}

.projects {
  padding: clamp(56px, 7vw, 90px) clamp(20px, 5vw, 64px);
  background: var(--bg);
}
.projects .cards { gap: 28px; }
.projects .card { animation: wa-fadeup 0.5s ease both; }
.projects .card:hover { transform: translateY(-8px); }
.projects .card__body { padding: 24px; }
.projects .card__body h3 {
  font-size: 19px;
  margin: 0;
  color: var(--ink);
}
.projects .card__client {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}

/* ===== RÉALISATIONS PAGE ===== */
.page-hero--realisations { min-height: clamp(360px, 48vh, 520px); }
.page-hero--realisations .page-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-hero--realisations .page-hero__title { max-width: 900px; }
.page-hero--realisations .page-hero__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 18px;
  background: var(--red);
}
.page-hero--realisations p { max-width: 540px; }

.works-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 8;
  background: rgba(17, 17, 17, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}
.works-nav__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px clamp(20px, 5vw, 64px);
}
.works-nav .filter-btn {
  background: transparent;
  color: #d0d0d0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.works-nav .filter-btn:hover {
  color: #fff;
  border-color: var(--red);
  background: rgba(225, 20, 20, 0.2);
  transform: translateY(-2px);
}
.works-nav .filter-btn.is-active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 8px 20px rgba(225, 20, 20, 0.35);
}

.works {
  background: transparent;
  padding: clamp(36px, 5vw, 64px) clamp(20px, 5vw, 64px) clamp(56px, 7vw, 90px);
}
.works__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.work {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.work:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 20, 20, 0.35);
  box-shadow: 0 24px 50px rgba(17, 17, 17, 0.1);
}
.work__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #f3f3f3;
  overflow: hidden;
}
.work__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.work:hover .work__media img {
  transform: scale(1.04);
}
.work__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
}
.work__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
}
.work__client {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}
.work__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.work__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  transition: gap 0.25s ease;
}
.work:hover .work__cta { gap: 12px; }
.works__empty {
  text-align: center;
  color: var(--gray);
  padding: 48px 0;
}

@media (max-width: 719px) {
  .works__grid { grid-template-columns: 1fr; }
}

.mission {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 64px);
  background: transparent;
}
.mission p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 960px;
  margin: 0;
  color: var(--ink);
}
.mission p .accent { color: var(--red); }

.valeurs {
  padding: 0 clamp(20px, 5vw, 64px) clamp(72px, 9vw, 120px);
  background: transparent;
}
.valeurs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.valeur {
  background: #fff;
  padding: 36px 30px;
  transition: background 0.3s, color 0.3s;
}
.valeur:hover { background: var(--dark); color: #fff; }
.valeur:hover p { color: #E0E0E0; }
.valeur span {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
}
.valeur h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  margin: 14px 0 10px;
}
.valeur p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--gray);
  margin: 0;
}

.team {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 64px);
  background: var(--dark);
}
.team h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 48px;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.member { transition: transform 0.35s ease; }
.member:hover { transform: translateY(-8px); }
.member__photo {
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
}
.member h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  margin: 0 0 4px;
}
.member p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}

/* ===== AGENCE PAGE — refonte ===== */
.page-hero--agence { min-height: clamp(420px, 62vh, 660px); }
.page-hero--agence .page-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 8px;
}
.page-hero--agence p { max-width: 560px; }
.page-hero--agence .page-hero__title { max-width: 900px; }
.page-hero--agence .page-hero__title::after {
  content: "";
  display: block;
  height: 2px;
  width: 64px;
  margin-top: 18px;
  background: var(--red);
}

/* KPIs ancrés sous le hero — bande claire qui chevauche le bas du hero */
.hero-kpis {
  background: transparent;
  padding: 0 clamp(20px, 5vw, 64px);
  position: relative;
  z-index: 2;
}
.hero-kpis__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--line);
  border-radius: 24px;
  overflow: hidden;
  margin-top: -48px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}
.hero-kpis__item {
  background: #fff;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.3s ease;
}
.hero-kpis__item:hover { background: var(--bg); }
.hero-kpis__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-kpis__num::after { content: "+"; color: var(--red); margin-left: 2px; }
.hero-kpis__label {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

/* Mission éditoriale — panneau sombre citation */
.mission--agence {
  padding: clamp(20px, 3vw, 36px) clamp(20px, 5vw, 64px) clamp(36px, 5vw, 56px);
  background: transparent;
}
.mission__panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(225, 20, 20, 0.22), transparent 42%),
    radial-gradient(ellipse at 92% 100%, rgba(225, 20, 20, 0.12), transparent 46%),
    var(--dark);
  color: #fff;
  border-radius: 32px;
  padding: clamp(48px, 7vw, 88px) clamp(28px, 6vw, 80px) clamp(40px, 5vw, 64px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}
.mission__quote {
  position: absolute;
  top: -18px;
  right: clamp(12px, 4vw, 48px);
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(160px, 22vw, 280px);
  line-height: 0.8;
  color: var(--red);
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.is-visible .mission__quote,
html:not(.js) .mission__quote {
  opacity: 0.22;
  transform: translateY(0);
}
.mission__meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.mission__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--red);
  font-family: ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.mission__label {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.mission__text {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 3.2vw, 40px);
  line-height: 1.32;
  letter-spacing: -0.02em;
  max-width: 920px;
  margin: 0 0 40px;
  color: #fff;
}
.mission__text .accent {
  color: var(--red-soft);
  font-style: italic;
  font-weight: 600;
}
.mission__foot {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mission__sign {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.mission__sign-line {
  display: block;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.7s ease 0.25s;
}
.is-visible .mission__sign-line,
html:not(.js) .mission__sign-line { width: 56px; }
.mission__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mission__steps li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.mission__steps li:hover {
  border-color: var(--red);
  background: rgba(225, 20, 20, 0.16);
  transform: translateY(-2px);
}
.mission__steps li span {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--red-soft);
}

/* Valeurs modernisées — image qui descend au survol */
.valeurs--agence {
  padding: clamp(36px, 5vw, 56px) clamp(20px, 5vw, 64px);
  background: transparent;
}
.valeurs--agence .section__head {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 28px;
}
.valeurs--agence .section__head > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.valeurs--agence .section__aside {
  max-width: 420px;
  text-align: center;
}
.valeurs--agence .valeurs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  align-items: stretch;
}
.valeurs--agence .valeur {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 3vw, 40px) clamp(22px, 2.5vw, 32px);
  min-height: 260px;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.35s ease;
}
.valeurs--agence .valeur:hover {
  background: #fff;
  transform: translateY(-6px);
  border-color: var(--dark);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}
.valeurs--agence .valeur__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: translateY(-105%);
  transition: transform 0.65s cubic-bezier(0.22, 0.8, 0.28, 1);
  pointer-events: none;
}
.valeurs--agence .valeur__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.55) 0%, rgba(17, 17, 17, 0.82) 100%);
}
.valeurs--agence .valeur:hover .valeur__media {
  transform: translateY(0);
}
.valeurs--agence .valeur__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
}
.valeurs--agence .valeur__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto;
  border-radius: 12px;
  background: rgba(225, 20, 20, 0.1);
  font-family: ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.05em;
  transition: background 0.35s, color 0.35s;
}
.valeurs--agence .valeur:hover .valeur__num {
  background: var(--red);
  color: #fff;
}
.valeurs--agence .valeur h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 24px);
  margin: 16px 0 12px;
  color: var(--ink);
  transition: color 0.35s;
}
.valeurs--agence .valeur p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--gray);
  margin: 0 auto;
  max-width: 28ch;
  transition: color 0.35s;
}
.valeurs--agence .valeur:hover h3,
.valeurs--agence .valeur:hover p { color: #fff; }

@media (max-width: 919px) {
  .valeurs--agence .valeurs__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
  .valeurs--agence .valeur { min-height: 220px; }
}

/* Clients — logos partenaires */
.client-logos {
  position: relative;
  padding: clamp(20px, 3vw, 32px) 0 clamp(16px, 2.5vw, 24px);
  overflow: hidden;
}
.client-logos__head {
  padding: 0 clamp(20px, 5vw, 64px);
  margin-bottom: clamp(12px, 1.8vw, 18px);
  text-align: center;
}
.client-logos__head .eyebrow {
  margin-bottom: 10px;
}
.client-logos__head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.client-logos__rail {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.client-logos__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: clamp(20px, 3vw, 28px);
  width: max-content;
  margin: 0;
  padding: 4px clamp(20px, 5vw, 64px) 8px;
  list-style: none;
  animation: wa-client-logos 38s linear infinite;
  will-change: transform;
}
.client-logos__rail:hover .client-logos__track { animation-play-state: paused; }
.client-logos__slide {
  flex: none;
  width: clamp(260px, 42vw, 380px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(108px, 14vw, 136px);
  padding: clamp(18px, 2.5vw, 24px) clamp(24px, 3.5vw, 32px);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 10px 32px rgba(17, 17, 17, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  box-sizing: border-box;
}
.client-logos__slide img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 300px);
  max-height: clamp(72px, 11vw, 112px);
  object-fit: contain;
  object-position: center center;
}
@keyframes wa-client-logos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 719px) {
  .client-logos__slide {
    width: min(78vw, 320px);
    min-height: 104px;
    padding: 16px 20px;
  }
  .client-logos__slide img {
    max-height: 80px;
  }
  .client-logos__track {
    animation-duration: 32s;
  }
}

/* Clients — legacy marquee + campagnes terrain */
.clients {
  padding: clamp(28px, 4vw, 44px) 0 clamp(20px, 3vw, 32px);
  background: transparent;
  overflow: hidden;
}
.clients__head {
  padding: 0 clamp(20px, 5vw, 64px);
  margin-bottom: 18px;
  text-align: center;
}
.clients__head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.clients__rail {
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.clients__track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: wa-clients 48s linear infinite;
  padding: 6px clamp(12px, 2vw, 24px);
}
.clients:hover .clients__track { animation-play-state: paused; }
.clients-showcase {
  position: relative;
  padding: clamp(12px, 2vw, 24px) 0 clamp(32px, 4vw, 48px);
  background: transparent;
  overflow: hidden;
}
.clients-showcase--realisations {
  padding-top: clamp(24px, 4vw, 40px);
  padding-bottom: clamp(40px, 6vw, 64px);
}
.clients-showcase__head {
  padding: 0 clamp(20px, 5vw, 64px);
  margin-bottom: 20px;
  text-align: center;
}
.clients-showcase__head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 8px;
}
.clients-showcase__head p {
  margin: 0 auto;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray);
}
.clients-showcase__rail {
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.clients-showcase__track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: wa-clients 52s linear infinite;
  padding: 6px clamp(12px, 2vw, 24px);
}
.clients-showcase:hover .clients-showcase__track { animation-play-state: paused; }
.clients-showcase__card {
  position: relative;
  flex: none;
  width: clamp(220px, 28vw, 320px);
  aspect-ratio: 3 / 4;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #1a1a1a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.clients-showcase__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.18);
}
.clients-showcase__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}
.clients-showcase__card:hover img { transform: scale(1.03); }
.clients-showcase__card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 14px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.82));
  pointer-events: none;
}

/* Legacy clients card (admin preview) */
.clients__card {
  position: relative;
  flex: none;
  width: clamp(220px, 28vw, 320px);
  aspect-ratio: 3 / 4;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #1a1a1a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.clients__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.18);
}
.clients__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}
.clients__card:hover img { transform: scale(1.03); }
.clients__card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 14px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.82));
  pointer-events: none;
}
@keyframes wa-clients {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== TEAM AGENCE — galerie claire + motif ===== */
.team--agence {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 5vw, 64px);
  background: transparent;
  color: var(--ink);
}
.team--agence .team__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.team--agence .team__pattern {
  display: none; /* motif global html::before */
}
.team--agence .team__head,
.team--agence .section__head.team__head,
.team--agence .team-carousel {
  position: relative;
  z-index: 2;
}
.team--agence .team__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.team--agence .team__orb--1 {
  width: min(420px, 65vw);
  height: min(420px, 65vw);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(225, 20, 20, 0.12);
  animation: wa-orb1 14s ease-in-out infinite;
}
.team--agence .team__orb--2 {
  width: 240px;
  height: 240px;
  bottom: 0;
  right: -20px;
  background: rgba(17, 17, 17, 0.04);
  animation: wa-orb2 16s ease-in-out infinite;
}
.team--agence .team__watermark {
  position: absolute;
  left: 50%;
  top: 14%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(90px, 18vw, 240px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(17, 17, 17, 0.06);
  white-space: nowrap;
  user-select: none;
}

.team--agence .team__head,
.team--agence .section__head.team__head {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  margin: 0 auto clamp(24px, 3.5vw, 36px);
  max-width: 740px;
}
.team--agence .team__head .eyebrow {
  color: var(--red);
  margin-bottom: 0;
}
.team--agence .team__head h2 {
  margin: 0;
  color: var(--ink);
  text-align: center;
  max-width: 14ch;
  text-shadow: none;
}
.team--agence .team__head h2 .accent { color: var(--red); }
.team--agence .team__head .section__aside {
  margin: 0 auto;
  max-width: 40ch;
  text-align: center;
  color: var(--gray);
  font-size: 15.5px;
  line-height: 1.7;
}
.team--agence .team__head-line {
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--red), var(--red-soft), transparent);
}

.team-carousel {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 52px 0;
}
.team-carousel__viewport {
  overflow: hidden;
  padding: 6px 0 0;
}
.team-carousel__track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-carousel .member {
  flex: 0 0 calc(100% / var(--per-view, 4));
  max-width: calc(100% / var(--per-view, 4));
  padding: 4px 12px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
.team-carousel .member--lift { transform: translateY(14px); }
.team--agence .member:hover { transform: none; }
.team--agence .member.member--lift:hover { transform: translateY(14px); }

.team-carousel .member__frame {
  width: min(100%, 232px);
  perspective: none;
  transform-style: flat;
}
.member__frame {
  position: relative;
  width: min(100%, 190px);
  margin: 0 auto;
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-carousel .member__ring {
  display: none;
}
.team-carousel .member__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  border-radius: 18px;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center top;
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 20px 44px rgba(17, 17, 17, 0.12);
  overflow: hidden;
  isolation: isolate;
}
.team-carousel .member__shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
  background: none;
}
.team-carousel .member__shine::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -80%;
  width: 42%;
  height: 180%;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.08) 46%,
    rgba(255, 255, 255, 0.38) 50%,
    rgba(255, 255, 255, 0.08) 54%,
    transparent 62%
  );
  transform: skewX(-16deg) translateX(0);
  opacity: 0;
}
.team-carousel .member__shine.is-shining::after {
  animation: wa-member-shine 1.35s ease-in-out 1;
}
@keyframes wa-member-shine {
  0% {
    transform: skewX(-16deg) translateX(0);
    opacity: 0;
  }
  18% { opacity: 1; }
  100% {
    transform: skewX(-16deg) translateX(520%);
    opacity: 0;
  }
}
.member__ring {
  position: absolute;
  inset: -7px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(225, 20, 20, 0.85), rgba(255, 255, 255, 0.15), rgba(225, 20, 20, 0.35));
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  pointer-events: none;
}
.member__shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    122deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.06) 30%,
    transparent 48%
  );
  pointer-events: none;
}
.member__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.25) 58%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(circle at 50% 0%, rgba(225, 20, 20, 0.18), transparent 48%);
  pointer-events: none;
}
.member__num {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(225, 20, 20, 0.88);
  box-shadow: 0 8px 20px rgba(225, 20, 20, 0.35);
  pointer-events: none;
}
.member__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 16px 12px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.member__caption h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(15px, 1.4vw, 17px);
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}
.member__role {
  margin: 0;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.team-carousel .member__bio {
  max-width: 24ch;
  margin: 8px auto 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--gray);
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.85;
  transform: none;
}
.team-carousel .member:hover .member__bio {
  opacity: 0.85;
  transform: none;
}

.team-carousel__btn {
  position: absolute;
  top: 34%;
  z-index: 2;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.1);
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.team-carousel__btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: scale(1.07);
}
.team-carousel__btn--prev { left: 0; }
.team-carousel__btn--next { right: 0; }
.team-carousel__btn[hidden] { display: none; }
.team-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.team-carousel__dots:empty { display: none; }
.team-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(225, 20, 20, 0.22);
  cursor: pointer;
  transition: background 0.2s, width 0.25s;
}
.team-carousel__dot.is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--red);
}

/* CTA Agence */
.cta-giant--agence h2 em {
  color: var(--red);
  font-style: italic;
}

@media (max-width: 919px) {
  .mission__panel { border-radius: 24px; }
  .mission__foot { align-items: flex-start; }
  .hero-kpis__inner { grid-template-columns: repeat(2, 1fr); }
  .team-carousel { padding: 0 44px 0; }
  .team-carousel .member { padding: 4px 8px 6px; }
  .team-carousel .member--lift { transform: translateY(10px); }
  .team-carousel .member__frame { width: min(100%, 200px); }
  .member__frame { width: min(100%, 170px); }
}

@media (max-width: 639px) {
  .team-carousel { padding: 0 36px 0; }
  .team-carousel .member { padding: 4px 6px 8px; }
  .team-carousel .member--lift { transform: none; }
  .team-carousel .member__frame { width: min(100%, 268px); }
  .member__frame { width: min(100%, 210px); }
  .team-carousel .member__bio {
    opacity: 1;
    transform: none;
    -webkit-line-clamp: 3;
  }
  .team-carousel__dot {
    width: 7px;
    height: 7px;
  }
  .team-carousel__dot.is-active {
    width: 18px;
    transform: none;
  }
}

/* ===== CONTACT PAGE ===== */
.page-hero--contact { min-height: clamp(320px, 42vh, 460px); }
.page-hero--contact .page-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-hero--contact .page-hero__title { max-width: 820px; }
.page-hero--contact .page-hero__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 18px;
  background: var(--red);
}
.page-hero--contact p { max-width: 520px; }
.page-hero--contact .eyebrow,
.page-hero--contact .page-hero__title,
.page-hero--contact p {
  animation: wa-fadeup 0.7s ease both;
}
.page-hero--contact .page-hero__title { animation-delay: 0.08s; }
.page-hero--contact p { animation-delay: 0.16s; }

.reach {
  background: transparent;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 64px);
}
.reach__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.reach__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}
.reach__kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(225, 20, 20, 0.15);
}
.reach__aside h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 28px;
  max-width: 18ch;
}
.reach-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reach-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
a.reach-card:hover,
.reach-card:has(a:hover) {
  transform: translateY(-3px);
  border-color: rgba(225, 20, 20, 0.4);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.08);
}
.reach-card__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  border-radius: 10px;
  background: rgba(225, 20, 20, 0.1);
  color: var(--red);
  font-weight: 700;
  font-size: 16px;
}
.reach-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.reach-card strong,
.reach-card a {
  color: var(--ink);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.reach-card a:hover { color: var(--red); }
.reach-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.reach-socials__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.reach-socials__icon {
  display: none;
  line-height: 0;
}
.reach-socials__icon svg {
  display: block;
}
.reach-socials__link:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 720px) {
  .reach-socials {
    gap: 10px;
  }
  .reach-socials__link {
    width: 44px;
    height: 44px;
    padding: 0;
  }
  .reach-socials__icon {
    display: inline-flex;
  }
  .reach-socials__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

.reach__panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(24px, 3.5vw, 40px);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.05);
}
.contact-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  color: var(--ink);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover { border-color: #cfcfcf; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(225, 20, 20, 0.12);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }
.contact-form .btn { margin-top: 8px; width: 100%; justify-content: center; }
.contact-form .hint {
  font-size: 12px;
  color: var(--muted);
  margin: 6px 0 0;
  line-height: 1.5;
}
.contact-form__error {
  margin: 0 0 4px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(225, 20, 20, 0.1);
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 600;
}
.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-success {
  animation: wa-pop 0.4s ease both;
  text-align: center;
  width: 100%;
  display: none;
  padding: 48px 12px;
}
.contact-success.is-visible { display: block; }
.contact-success__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  margin: 0 auto 24px;
}
.contact-success h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  margin: 0 0 12px;
}
.contact-success p {
  font-size: 15px;
  color: var(--gray);
  margin: 0;
}

@media (max-width: 919px) {
  .reach__grid { grid-template-columns: 1fr; }
  .reach__aside h2 { max-width: none; }
  .contact-form__row { grid-template-columns: 1fr; }
}

/* Contact — bandeau branding (blanc, noir, rouge en accent) */
.contact-brand {
  position: relative;
  margin-top: 0;
  padding: clamp(64px, 9vw, 110px) clamp(20px, 5vw, 64px);
  background:
    radial-gradient(ellipse 55% 45% at 100% 0%, rgba(225, 20, 20, 0.06), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  color: var(--ink);
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.contact-brand__glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(225, 20, 20, 0.07);
  filter: blur(80px);
  top: -100px;
  right: 6%;
  pointer-events: none;
  animation: wa-orb1 14s ease-in-out infinite;
}
.contact-brand__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.contact-brand__left {
  padding-right: clamp(8px, 2vw, 24px);
}
.contact-brand__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.contact-brand__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(225, 20, 20, 0.14);
}
.contact-brand__lead {
  margin: 0 0 12px;
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 500;
  line-height: 1.35;
  color: var(--gray);
  max-width: 30ch;
}
.contact-brand__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 84px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--ink);
}
.contact-brand.is-visible .contact-brand__title span {
  display: inline-block;
  animation: wa-brand-title 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.contact-brand__title span {
  position: relative;
}
.contact-brand__title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 100%;
  height: 0.12em;
  background: var(--red);
  border-radius: 999px;
  transform-origin: left center;
  transform: scaleX(0.35);
  opacity: 0.85;
  transition: transform 0.45s cubic-bezier(0.34, 1.5, 0.45, 1);
}
.contact-brand:hover .contact-brand__title span::after {
  transform: scaleX(1);
}
.contact-brand__text {
  margin: 0 0 28px;
  max-width: 44ch;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--gray);
}
.contact-brand__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}
.contact-brand__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-brand__social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(26, 26, 26, 0.06);
  transition: transform 0.35s cubic-bezier(0.34, 1.6, 0.45, 1), background 0.25s, color 0.25s, border-color 0.25s;
}
.contact-brand__social:hover {
  transform: translateY(-4px) scale(1.08);
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.contact-brand__follow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.14);
  transition: transform 0.35s cubic-bezier(0.34, 1.6, 0.45, 1), box-shadow 0.3s, background 0.25s;
}
.contact-brand__follow:hover {
  transform: translateY(-3px);
  background: var(--red);
  box-shadow: 0 16px 36px rgba(225, 20, 20, 0.22);
}
.contact-brand__follow-arrow {
  display: inline-flex;
  transition: transform 0.3s cubic-bezier(0.34, 1.6, 0.45, 1);
}
.contact-brand__follow:hover .contact-brand__follow-arrow {
  transform: translateX(4px);
}

.contact-brand__card {
  position: relative;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 28px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.18);
  animation: wa-brand-float 6s ease-in-out infinite;
}
.contact-brand.is-visible .contact-brand__card {
  animation: wa-brand-float 6s ease-in-out infinite, wa-pop 0.7s cubic-bezier(0.34, 1.5, 0.45, 1) both;
}
.contact-brand__marks {
  position: absolute;
  top: 8px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  color: var(--red);
  opacity: 0.35;
  pointer-events: none;
}
.contact-brand__quote {
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.3vw, 27px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
}
.contact-brand__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-brand__avatar {
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  border: 2px solid var(--red);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  background: #fff;
}
.contact-brand__avatar-img {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  transform: scale(1.02);
}
.contact-brand__avatar-shine {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: 0;
  width: 42%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 35%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.08) 65%,
    transparent 100%
  );
  pointer-events: none;
  animation: wa-avatar-shine 3.6s ease-in-out infinite;
}
.contact-brand__meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}
.contact-brand__meta span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 919px) {
  .contact-brand {
    padding: clamp(48px, 10vw, 72px) clamp(20px, 5vw, 32px);
  }
  .contact-brand__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-brand__left { padding-right: 0; }
  .contact-brand__lead { max-width: none; }
  .contact-brand__card {
    animation: none;
  }
  .contact-brand.is-visible .contact-brand__card {
    animation: wa-pop 0.7s cubic-bezier(0.34, 1.5, 0.45, 1) both;
  }
}

body.is-menu-open { overflow: hidden; }

/* =========================================================
   MOTION LAYER — embellissements (ne change pas le design)
   ========================================================= */

/* Reveals + stagger — activés après init JS.
   Jamais d’opacity:0 ni de translate sur les grandes sections :
   ça créait un flash noir (fond / couches GPU) au scroll. */
html.reveals-on [data-reveal] {
  opacity: 1;
  transform: translate3d(0, 10px, 0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
html.reveals-on [data-reveal].is-visible {
  transform: translate3d(0, 0, 0);
}
html.reveals-on [data-reveal][data-reveal-dir="left"] { transform: translate3d(-10px, 0, 0); }
html.reveals-on [data-reveal][data-reveal-dir="right"] { transform: translate3d(10px, 0, 0); }
html.reveals-on [data-reveal][data-reveal-dir="left"].is-visible,
html.reveals-on [data-reveal][data-reveal-dir="right"].is-visible { transform: translate3d(0, 0, 0); }

/* Blocs pleine largeur : pas de transform (évite trous / flash noir entre sections) */
html.reveals-on section[data-reveal],
html.reveals-on .testimonials[data-reveal],
html.reveals-on .cta-giant[data-reveal],
html.reveals-on .mission[data-reveal],
html.reveals-on .valeurs[data-reveal],
html.reveals-on .client-logos[data-reveal],
html.reveals-on .clients[data-reveal],
html.reveals-on .clients-showcase[data-reveal],
html.reveals-on .team[data-reveal],
html.reveals-on .hero-kpis[data-reveal],
html.reveals-on .contact-brand[data-reveal],
html.reveals-on .xp-block[data-reveal],
html.reveals-on .reach__aside[data-reveal],
html.reveals-on .reach__panel[data-reveal] {
  transform: none;
  transition: none;
}

/* Petits items : fade très léger (le fond de section reste opaque) */
html.reveals-on .stagger-item {
  opacity: 0.35;
  transform: translate3d(0, 8px, 0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
html.reveals-on .is-visible .stagger-item.is-in,
html.reveals-on .stagger-item.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Parallax helpers — will-change retiré (flash GPU au scroll sur certains navigateurs) */

/* Navbar link underline */
.navbar__link {
  position: relative;
}
.navbar__link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.navbar__link:hover::after,
.navbar__link.is-active::after {
  transform: scaleX(1);
}

/* Buttons — hover plus fluide */
.btn--primary,
.btn--dark,
.btn--xl,
.navbar__cta {
  transition: background 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.btn--primary:hover,
.btn--xl:hover,
.navbar__cta:hover {
  box-shadow: 0 18px 40px rgba(225, 20, 20, 0.35);
}

/* Cards — overlay + zoom image */
.card {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}
.card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17, 17, 17, 0.45) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 1;
}
.card:hover .card__media::after { opacity: 1; }
.card:hover .card__img {
  transform: scale(1.1);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.card__more {
  transition: gap 0.3s ease, transform 0.3s ease;
}
.card:hover .card__more {
  gap: 10px;
  transform: translateX(2px);
}
.card__tag {
  z-index: 2;
  transition: transform 0.35s ease;
}
.card:hover .card__tag { transform: translateY(-2px); }

/* Poles — état actif (largeur animée en JS) */
.pole.is-active {
  filter: saturate(1.1) brightness(1.04);
}
@media (min-width: 920px) {
  .poles > .pole {
    /* garde une hauteur même si le contenu est en absolute */
    min-height: 460px !important;
  }
}

/* Expertise media hover */
.expertise-block__media {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}
.expertise-block:hover .expertise-block__media {
  transform: scale(1.03);
  filter: saturate(1.08);
}

/* Team member — hors carrousel agence */
.member__photo {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
  overflow: hidden;
}
.member:hover .member__photo {
  transform: scale(1.03);
  filter: saturate(1.1);
}
.team-carousel .member__photo {
  transition: none;
}
.team-carousel .member:hover .member__photo {
  transform: none;
  filter: none;
}

/* Marquee — reverse on hover */
.marquee:hover .marquee__track {
  animation-direction: reverse;
  animation-duration: 28s;
}

/* Filter buttons */
.filter-btn {
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.filter-btn:hover { transform: translateY(-2px); }

/* Valeurs */
.valeur {
  transition: background 0.4s ease, color 0.4s ease, transform 0.35s ease;
}
.valeur:hover { transform: translateY(-4px); }

/* Mobile menu stagger feel */
.mobile-menu.is-open a {
  animation: wa-fadeup 0.4s ease both;
}
.mobile-menu.is-open a:nth-child(1) { animation-delay: 0.04s; }
.mobile-menu.is-open a:nth-child(2) { animation-delay: 0.08s; }
.mobile-menu.is-open a:nth-child(3) { animation-delay: 0.12s; }
.mobile-menu.is-open a:nth-child(4) { animation-delay: 0.16s; }
.mobile-menu.is-open a:nth-child(5) { animation-delay: 0.2s; }

/* Magnetic target */
.magnetic { display: inline-flex; }

@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;
  }
  html.reveals-on [data-reveal],
  html.reveals-on .stagger-item,
  html.js [data-reveal],
  html.js .stagger-item {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__slide-img,
  .hero__orb,
  .marquee__track {
    animation: none !important;
  }
  .clients__track,
  .clients-showcase__track,
  .client-logos__track {
    animation: none !important;
  }
  .cta-giant__bg,
  .page-hero__bg,
  .contact-info__bg {
    transform: none !important;
    top: 0 !important;
    height: 100% !important;
  }
  .valeurs--agence .valeur__media { transform: none !important; }
  .team-carousel .member__shine.is-shining::after {
    animation: none !important;
  }
  .member__frame { transform: none !important; }
  .team__orb { animation: none !important; }
  .contact-brand__avatar-shine { animation: none !important; }
  .contact-brand__card { animation: none !important; }
  .wa-loader { display: none !important; }
  html.is-loading,
  html.is-loading body { overflow: auto !important; }
}
