:root {
  --forest-950: #101811;
  --forest-900: #182219;
  --forest-800: #213023;
  --forest-700: #304332;
  --olive-600: #708238;
  --olive-500: #829447;
  --olive-100: #e8ecd9;
  --gold-500: #c7aa67;
  --gold-300: #dec78d;
  --cream-50: #fbfaf6;
  --cream-100: #f4f2e9;
  --paper: #ffffff;
  --ink: #1b201b;
  --muted: #667066;
  --line: rgba(24, 34, 25, 0.13);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 14px 40px rgba(20, 30, 21, 0.08);
  --shadow-md: 0 24px 70px rgba(20, 30, 21, 0.14);
  --shadow-lg: 0 40px 110px rgba(12, 20, 13, 0.24);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shell: min(1180px, calc(100% - 40px));
  --header-h: 84px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream-50);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid rgba(199, 170, 103, .9);
  outline-offset: 3px;
}
::selection { color: #fff; background: var(--olive-600); }

.shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.section--cream { background: var(--cream-100); }
.section--paper { background: var(--paper); }
.section--dark { color: #fff; background: var(--forest-950); }
.section--compact { padding: 82px 0; }

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 10000;
  padding: 10px 14px; border-radius: 10px; color: #fff; background: var(--forest-950);
  transform: translateY(-150%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress { position: fixed; inset: 0 0 auto; z-index: 5000; height: 3px; pointer-events: none; }
.scroll-progress span { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--gold-500), var(--olive-500)); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px;
  color: var(--olive-600); font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow--light { color: var(--gold-300); }
.eyebrow--center { justify-content: center; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
.display-title { margin: 0; font-size: clamp(3.1rem, 7vw, 6.5rem); line-height: .95; letter-spacing: -.06em; font-weight: 700; }
.page-title { margin: 0; max-width: 980px; font-size: clamp(2.9rem, 6.3vw, 5.75rem); line-height: .97; letter-spacing: -.055em; }
.section-title { margin: 0; font-size: clamp(2.3rem, 4.6vw, 4.5rem); line-height: 1.02; letter-spacing: -.048em; }
.section-lead { margin: 0; color: var(--muted); font-size: 1.04rem; }
.section--dark .section-lead { color: rgba(255,255,255,.65); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .58fr); gap: 52px; align-items: end; margin-bottom: 58px; }
.section-heading--center { grid-template-columns: minmax(0, 760px); justify-content: center; text-align: center; }
.section-heading--center .section-lead { max-width: 650px; margin-inline: auto; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 23px; border: 1px solid transparent; border-radius: 999px;
  text-decoration: none; cursor: pointer; font-size: .92rem; font-weight: 800;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.button:hover { transform: translateY(-3px); }
.button--primary { color: #fff; background: var(--olive-600); box-shadow: 0 14px 36px rgba(79, 94, 38, .28); }
.button--primary:hover { background: var(--olive-500); box-shadow: 0 18px 42px rgba(79, 94, 38, .38); }
.button--light { color: var(--forest-950); background: #fff; }
.button--light:hover { background: var(--cream-100); }
.button--outline { color: inherit; border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.button--outline:hover { border-color: rgba(255,255,255,.62); background: rgba(255,255,255,.13); }
.button--dark-outline { color: var(--forest-950); border-color: var(--line); background: transparent; }
.button--dark-outline:hover { color: #fff; border-color: var(--forest-950); background: var(--forest-950); }
.button i { transition: transform .22s ease; }
.button:hover i { transform: translateX(3px); }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 2000; color: #fff;
  border-bottom: 1px solid transparent;
  transition: color .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled, .site-header.is-open {
  color: var(--ink); background: rgba(255,255,255,.91); border-color: var(--line); box-shadow: 0 8px 35px rgba(16,24,16,.06); backdrop-filter: blur(18px);
}
.header-inner { min-height: var(--header-h); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo-stack { width: 146px; height: 68px; display: grid; place-items: center start; }
.brand-logo { grid-area: 1 / 1; width: 146px; height: auto; max-height: 68px; object-fit: contain; object-position: left center; transition: opacity .28s ease, transform .28s ease; }
.brand-logo--light { opacity: 1; }
.brand-logo--color { opacity: 0; }
.site-header.is-scrolled .brand-logo--light, .site-header.is-open .brand-logo--light { opacity: 0; }
.site-header.is-scrolled .brand-logo--color, .site-header.is-open .brand-logo--color { opacity: 1; }
.brand:hover .brand-logo { transform: translateY(-1px); }
.main-nav { justify-self: center; display: flex; align-items: center; gap: 28px; }
.main-nav a { position: relative; padding: 9px 0; text-decoration: none; font-size: .92rem; font-weight: 700; }
.main-nav a::after { content: ""; position: absolute; inset: auto 0 2px; height: 2px; border-radius: 999px; background: var(--gold-500); transform: scaleX(0); transition: transform .25s ease; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-cta { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 17px; border: 1px solid rgba(255,255,255,.36); border-radius: 999px; text-decoration: none; font-size: .84rem; font-weight: 800; transition: .22s ease; }
.site-header.is-scrolled .header-cta, .site-header.is-open .header-cta { color: #fff; border-color: var(--forest-950); background: var(--forest-950); }
.header-cta:hover { transform: translateY(-2px); color: var(--forest-950); background: #fff; }
.site-header.is-scrolled .header-cta:hover, .site-header.is-open .header-cta:hover { color: #fff; border-color: var(--olive-600); background: var(--olive-600); }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid currentColor; border-radius: 50%; color: inherit; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 19px; height: 2px; margin: 4px auto; border-radius: 999px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Home hero */
.home-hero {
  position: relative; min-height: 700px; height: 100svh; max-height: 900px; display: grid; place-items: center; overflow: hidden; isolation: isolate; color: #fff;
  background: var(--forest-950);
}
.home-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -3;
  background:
    linear-gradient(105deg, rgba(11,18,12,.96) 12%, rgba(18,32,20,.78) 57%, rgba(18,32,20,.35)),
    radial-gradient(circle at var(--spot-x, 78%) var(--spot-y, 32%), rgba(199,170,103,.25), transparent 22%);
}
.home-hero::after { content: ""; position: absolute; inset: auto -12% -42% 32%; z-index: -2; height: 72%; border-radius: 50%; background: rgba(112,130,56,.24); filter: blur(105px); animation: breathe 10s ease-in-out infinite alternate; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.28fr) minmax(290px,.52fr); align-items: end; gap: 60px; padding-top: 105px; padding-bottom: 55px; }
.home-hero .display-title { max-width: 950px; }
.hero-word-wrap { display: inline-grid; min-width: 6.7em; color: var(--gold-300); }
.hero-word { grid-area: 1/1; display: inline-block; transition: opacity .3s ease, transform .3s ease; }
.hero-word.is-changing { opacity: 0; transform: translateY(10px); }
.hero-intro { max-width: 665px; margin: 24px 0 0; color: rgba(255,255,255,.72); font-size: clamp(.98rem,1.35vw,1.12rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px 24px; margin-top: 24px; color: rgba(255,255,255,.63); font-size: .83rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust i { color: var(--gold-300); }
.hero-proof { align-self: end; padding: 24px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md); background: linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.055)); box-shadow: var(--shadow-lg); backdrop-filter: blur(18px); }
.hero-proof__label { margin: 0 0 18px; color: rgba(255,255,255,.58); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-proof__metric { display: grid; gap: 5px; }
.hero-proof__metric strong { font-size: clamp(3.2rem,5vw,4.8rem); line-height: 1; letter-spacing: -.06em; }
.hero-proof__metric span, .hero-proof__mini { color: rgba(255,255,255,.66); }
.hero-proof__line { height: 1px; margin: 18px 0; background: rgba(255,255,255,.15); }
.hero-proof__mini { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; font-size: .82rem; }
.hero-proof__mini strong { display: block; color: #fff; font-size: 1.06rem; }
.hero-proof > a { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--gold-300); text-decoration: none; font-size: .82rem; font-weight: 800; }
.hero-orbit { position: absolute; z-index: -1; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; pointer-events: none; }
.hero-orbit--1 { top: 16%; right: 4%; width: 440px; aspect-ratio: 1; animation: slow-spin 28s linear infinite; }
.hero-orbit--2 { top: 23%; right: 9%; width: 285px; aspect-ratio: 1; animation: slow-spin 20s linear infinite reverse; }
.hero-orbit::before { content: ""; position: absolute; top: 50%; left: -5px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold-300); box-shadow: 0 0 0 8px rgba(222,199,141,.09); }

/* Internal hero */
.page-hero {
  position: relative;
  min-height: 700px;
  height: 100svh;
  max-height: 900px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 34px) 0 82px;
  color: #fff;
  background: var(--forest-950);
  isolation: isolate;
}
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(circle at 82% 20%, rgba(112,130,56,.34), transparent 30%), radial-gradient(circle at 10% 100%, rgba(199,170,103,.13), transparent 28%); }
.page-hero::after { content: ""; position: absolute; top: -160px; right: -130px; z-index: -1; width: 520px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 145px rgba(255,255,255,.018); }
.page-hero__lead { max-width: 720px; margin: 20px 0 0; color: rgba(255,255,255,.68); font-size: 1.02rem; }
.page-hero__meta { display: flex; flex-wrap: wrap; gap: 14px 23px; margin-top: 24px; color: rgba(255,255,255,.58); font-size: .82rem; }
.page-hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.page-hero__meta i { color: var(--gold-300); }

/* Invitation au défilement des bandeaux internes */
.page-scroll-cue {
  position: absolute;
  bottom: 25px;
  left: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  transform: translateX(-50%);
  transition: color .22s ease, transform .22s ease;
}
.page-scroll-cue:hover {
  color: #fff;
  transform: translateX(-50%) translateY(-3px);
}
.page-scroll-cue__label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  white-space: nowrap;
}
.page-scroll-cue__button {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  backdrop-filter: blur(10px);
  animation: page-scroll-ring 2.5s ease-out infinite;
}
.page-scroll-cue__button i {
  font-size: 1rem;
  animation: page-scroll-arrow 1.65s ease-in-out infinite;
}


/* KPI */
.kpi-layout { display: grid; grid-template-columns: minmax(0,1.42fr) minmax(320px,.68fr); gap: 28px; }
.kpi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.kpi-card { position: relative; min-height: 218px; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.76); box-shadow: 0 8px 26px rgba(20,31,20,.035); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease; }
.kpi-card::after { content: ""; position: absolute; top: -46px; right: -46px; width: 108px; aspect-ratio: 1; border-radius: 50%; background: rgba(112,130,56,.1); transition: transform .35s ease; }
.kpi-card:hover { transform: translateY(-7px); border-color: rgba(112,130,56,.38); background: #fff; box-shadow: var(--shadow-sm); }
.kpi-card:hover::after { transform: scale(1.35); }
.kpi-icon { position: absolute; top: 22px; left: 22px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--olive-600); background: rgba(112,130,56,.12); }
.kpi-card .counter { position: relative; z-index: 1; color: var(--olive-600); font-size: clamp(2.7rem,4vw,4rem); line-height: 1; letter-spacing: -.06em; }
.kpi-card p { position: relative; z-index: 1; max-width: 19ch; margin: 12px 0 0; color: var(--muted); font-size: .88rem; }
.map-card { position: relative; min-height: 452px; display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: var(--radius-md); color: #fff; background: var(--forest-900); box-shadow: var(--shadow-lg); }
.map-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 55%,rgba(5,10,6,.76)), radial-gradient(circle at 50% 36%,rgba(112,130,56,.38),transparent 42%); }
.map-card__rings { position: absolute; width: 330px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.map-card__rings::before, .map-card__rings::after { content: ""; position: absolute; inset: 35px; border: 1px solid rgba(255,255,255,.075); border-radius: inherit; }
.map-card__rings::after { inset: 80px; }
.map-card img { position: relative; z-index: 1; width: min(82%,390px); max-height: 345px; object-fit: contain; opacity: .9; filter: brightness(1.1) contrast(1.05); animation: map-float 6s ease-in-out infinite; }
.map-card__caption { position: absolute; inset: auto 24px 22px; z-index: 2; display: flex; align-items: flex-start; gap: 12px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); }
.map-card__caption strong { display: block; font-size: .91rem; }
.map-card__caption p { margin: 4px 0 0; color: rgba(255,255,255,.56); font-size: .8rem; }
.pulse-dot { flex: 0 0 auto; width: 9px; height: 9px; margin-top: 7px; border-radius: 50%; background: var(--gold-300); animation: pulse 2.6s ease-out infinite; }

/* Cards and services */
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature-card, .service-card, .value-card, .team-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.feature-card:hover, .service-card:hover, .value-card:hover, .team-card:hover { transform: translateY(-6px); border-color: rgba(112,130,56,.38); box-shadow: var(--shadow-sm); }
.feature-card { min-height: 330px; padding: 30px; }
.feature-card__index { position: absolute; top: 24px; right: 27px; color: rgba(24,33,24,.08); font-size: 4rem; font-weight: 800; line-height: 1; }
.card-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 78px; border-radius: 18px; color: #fff; background: var(--olive-600); box-shadow: 0 14px 30px rgba(112,130,56,.22); font-size: 1.35rem; }
.feature-card h3, .service-card h3, .value-card h3 { margin: 0 0 10px; font-size: 1.34rem; }
.feature-card p, .service-card p, .value-card p { margin: 0; color: var(--muted); }
.feature-card__line { position: absolute; top: 58px; right: -22px; z-index: 3; width: 44px; height: 1px; background: rgba(112,130,56,.45); }

.services-preview { background: #fff; }
.service-card { min-height: 355px; display: flex; flex-direction: column; padding: 28px; }
.service-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 15px; }
.service-card__top .card-icon { margin-bottom: 0; }
.service-card__number { color: rgba(24,33,24,.13); font-size: 2.1rem; font-weight: 800; }
.service-card h3 { margin-top: 60px; }
.service-card ul { margin: 18px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: .88rem; }
.service-card li { position: relative; padding-left: 18px; }
.service-card li + li { margin-top: 8px; }
.service-card li::before { content: ""; position: absolute; top: .7em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--olive-600); }
.service-card__link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 25px; color: var(--olive-600); text-decoration: none; font-size: .84rem; font-weight: 800; }

.service-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
.service-tab { min-height: 44px; padding: 0 17px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: #fff; cursor: pointer; font-size: .84rem; font-weight: 800; transition: .22s ease; }
.service-tab:hover, .service-tab.is-active { color: #fff; border-color: var(--forest-950); background: var(--forest-950); }
.service-detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.service-detail { position: relative; min-height: 420px; display: flex; flex-direction: column; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; transition: opacity .28s ease, transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
.service-detail[hidden] { display: none; }
.service-detail:hover { transform: translateY(-5px); border-color: rgba(112,130,56,.4); box-shadow: var(--shadow-sm); }
.service-detail::after { content: ""; position: absolute; top: -95px; right: -90px; width: 220px; aspect-ratio: 1; border-radius: 50%; background: rgba(112,130,56,.08); }
.service-detail .card-icon { margin-bottom: 60px; }
.service-detail h2 { position: relative; z-index: 1; margin: 0; font-size: 1.75rem; letter-spacing: -.03em; }
.service-detail > p { position: relative; z-index: 1; margin: 14px 0 0; color: var(--muted); }
.service-detail ul { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; margin: 25px 0 0; padding: 0; list-style: none; font-size: .86rem; }
.service-detail li { display: flex; gap: 8px; }
.service-detail li i { color: var(--olive-600); }
.service-detail__footer { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 15px; margin-top: auto; padding-top: 28px; border-top: 1px solid var(--line); }
.service-detail__footer span { color: var(--muted); font-size: .8rem; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.process-step { position: relative; padding: 0 26px 0 0; }
.process-step:not(:last-child)::after { content: ""; position: absolute; top: 22px; left: 50px; right: 0; height: 1px; background: rgba(255,255,255,.15); }
.process-step__dot { position: relative; z-index: 1; width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 27px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: var(--gold-300); background: var(--forest-950); font-size: .76rem; font-weight: 800; }
.process-step h3 { margin: 0 0 10px; font-size: 1.16rem; }
.process-step p { margin: 0; color: rgba(255,255,255,.58); font-size: .88rem; }

/* Testimonials */
.testimonial-shell { position: relative; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 30px; align-items: end; }
.testimonial-viewport { overflow: hidden; }
.testimonial-track { display: flex; transition: transform .65s var(--ease); }
.testimonial-slide { min-width: 100%; padding-right: 20px; }
.quote-card { min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(30px,5vw,60px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.quote-mark { color: var(--olive-600); font-size: 3rem; line-height: 1; }
.quote-card blockquote { max-width: 900px; margin: 22px 0 34px; font-size: clamp(1.45rem,3vw,2.6rem); line-height: 1.25; letter-spacing: -.035em; }
.quote-author { display: flex; align-items: center; gap: 13px; }
.quote-avatar { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--forest-950); font-weight: 800; }
.quote-author strong { display: block; }
.quote-author span { display: block; color: var(--muted); font-size: .8rem; }
.slider-controls { display: flex; gap: 9px; }
.slider-button { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: #fff; cursor: pointer; transition: .22s ease; }
.slider-button:hover { color: #fff; border-color: var(--forest-950); background: var(--forest-950); }
.slider-dots { display: flex; gap: 7px; margin-top: 18px; }
.slider-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: rgba(24,34,25,.2); cursor: pointer; transition: width .22s ease, background .22s ease; }
.slider-dot.is-active { width: 25px; background: var(--olive-600); }

/* Partners */
.partners { overflow: hidden; }
.partners-heading { margin-bottom: 45px; text-align: center; }
.logo-marquee { position: relative; overflow: hidden; padding: 16px 0; mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.logo-track { display: flex; width: max-content; align-items: center; gap: 54px; animation: logo-scroll 46s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-track img { width: auto; height: 58px; max-width: 145px; object-fit: contain; filter: grayscale(1); opacity: .54; transition: filter .25s ease, opacity .25s ease, transform .25s ease; }
.logo-track img:hover { filter: grayscale(0); opacity: 1; transform: scale(1.06); }

/* About */
.story-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 70px; align-items: center; }
.story-visual { position: relative; min-height: 540px; overflow: hidden; border-radius: var(--radius-lg); color: #fff; background: var(--forest-900); box-shadow: var(--shadow-md); }
.story-visual::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 72% 25%,rgba(112,130,56,.55),transparent 29%), linear-gradient(150deg,transparent 20%,rgba(0,0,0,.44)); }
.story-visual__number { position: absolute; top: 40px; left: 40px; font-size: clamp(5rem,11vw,9rem); font-weight: 800; line-height: .8; letter-spacing: -.08em; }
.story-visual__number span { display: block; margin-top: 12px; color: var(--gold-300); font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; }
.story-visual__quote { position: absolute; right: 35px; bottom: 35px; left: 35px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.7); }
.story-copy p { color: var(--muted); }
.story-copy .section-title { margin-bottom: 26px; }
.story-points { display: grid; gap: 18px; margin-top: 32px; }
.story-point { display: grid; grid-template-columns: 46px 1fr; gap: 14px; }
.story-point i { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: var(--olive-600); background: var(--olive-100); }
.story-point strong { display: block; margin-bottom: 3px; }
.story-point span { color: var(--muted); font-size: .88rem; }
.value-card { min-height: 290px; padding: 28px; }
.value-card .card-icon { margin-bottom: 55px; }
.team-card { min-height: 360px; padding: 28px; color: #fff; background: var(--forest-900); }
.team-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 16%,rgba(112,130,56,.4),transparent 30%); }
.team-card > * { position: relative; z-index: 1; }
.team-card__avatar { width: 88px; height: 88px; display: grid; place-items: center; margin-bottom: 80px; border: 1px solid rgba(255,255,255,.18); border-radius: 26px; background: rgba(255,255,255,.08); font-size: 1.55rem; font-weight: 800; }
.team-card h3 { margin-bottom: 4px; }
.team-card p { color: rgba(255,255,255,.58); }
.team-card__tag { display: inline-flex; margin-top: 16px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: var(--gold-300); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 24px; align-items: stretch; }
.contact-panel { position: relative; overflow: hidden; padding: 36px; border-radius: var(--radius-md); color: #fff; background: var(--forest-950); }
.contact-panel::before { content: ""; position: absolute; top: -130px; right: -130px; width: 330px; aspect-ratio: 1; border-radius: 50%; background: rgba(112,130,56,.34); filter: blur(5px); }
.contact-panel > * { position: relative; z-index: 1; }
.contact-panel h2 { margin: 0; font-size: 2rem; letter-spacing: -.035em; }
.contact-panel > p { margin: 15px 0 0; color: rgba(255,255,255,.62); }
.contact-list { display: grid; gap: 20px; margin-top: 42px; }
.contact-item { display: grid; grid-template-columns: 44px 1fr; gap: 13px; align-items: start; }
.contact-item i { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; color: var(--gold-300); }
.contact-item strong { display: block; margin-bottom: 2px; font-size: .88rem; }
.contact-item a, .contact-item span { color: rgba(255,255,255,.62); font-size: .84rem; text-decoration: none; }
.contact-socials { display: flex; gap: 9px; margin-top: 42px; }
.contact-socials a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; text-decoration: none; transition: .22s ease; }
.contact-socials a:hover { color: var(--forest-950); background: #fff; }
.contact-form { padding: clamp(28px,5vw,48px); border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.contact-form h2 { margin-bottom: 8px; font-size: 2rem; letter-spacing: -.035em; }
.contact-form > p { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.form-field { display: grid; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: .8rem; font-weight: 800; }
.form-field input, .form-field textarea, .form-field select { width: 100%; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: var(--cream-50); transition: border-color .22s ease, box-shadow .22s ease, background .22s ease; }
.form-field input, .form-field select { height: 52px; padding: 0 15px; }
.form-field textarea { min-height: 150px; padding: 14px 15px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--olive-600); background: #fff; box-shadow: 0 0 0 4px rgba(112,130,56,.1); }
.form-field .field-error { min-height: 18px; color: #a64336; font-size: .73rem; }
.form-field.is-invalid input, .form-field.is-invalid textarea, .form-field.is-invalid select { border-color: #a64336; }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 20px; }
.form-note { margin: 0; color: var(--muted); font-size: .75rem; }
.form-success { display: none; align-items: center; gap: 10px; margin-top: 20px; padding: 14px 16px; border: 1px solid rgba(112,130,56,.25); border-radius: 12px; color: var(--forest-900); background: var(--olive-100); font-size: .84rem; }
.form-success.is-visible { display: flex; }
.map-placeholder { position: relative; min-height: 390px; overflow: hidden; border-radius: var(--radius-md); color: #fff; background: var(--forest-900); }
.map-placeholder::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px), linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(circle,#000,transparent 75%); }
.map-placeholder__pin { position: absolute; top: 50%; left: 50%; width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50% 50% 50% 0; color: var(--forest-950); background: var(--gold-300); transform: translate(-50%,-65%) rotate(-45deg); box-shadow: 0 18px 45px rgba(0,0,0,.25); }
.map-placeholder__pin i { transform: rotate(45deg); font-size: 1.35rem; }
.map-placeholder__label { position: absolute; left: 50%; bottom: 55px; min-width: 250px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; text-align: center; background: rgba(255,255,255,.08); transform: translateX(-50%); backdrop-filter: blur(14px); }
.map-placeholder__label strong { display: block; }
.map-placeholder__label span { color: rgba(255,255,255,.58); font-size: .78rem; }

/* FAQ */
.faq-list { max-width: 900px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; border: 0; color: var(--ink); background: transparent; cursor: pointer; text-align: left; font-weight: 800; }
.faq-question i { transition: transform .25s ease; }
.faq-question[aria-expanded="true"] i { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s var(--ease); }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 55px 24px 0; color: var(--muted); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

/* CTA */
.cta-band { padding-top: 0; }
.cta-band__inner { min-height: 330px; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 58px; overflow: hidden; border-radius: var(--radius-lg); color: #fff; background: radial-gradient(circle at 85% 20%,rgba(199,170,103,.2),transparent 27%), linear-gradient(135deg,var(--forest-950),var(--forest-800)); box-shadow: var(--shadow-lg); }
.cta-band__inner h2 { max-width: 780px; margin: 0; font-size: clamp(2.2rem,4.6vw,4.5rem); line-height: 1.03; letter-spacing: -.048em; }

/* Contact FAB and top */
.contact-fab { position: fixed; right: 24px; bottom: 24px; z-index: 1200; display: inline-flex; align-items: center; gap: 9px; min-height: 52px; padding: 0 18px; border-radius: 999px; color: #fff; background: var(--olive-600); box-shadow: 0 16px 42px rgba(65,80,28,.36); text-decoration: none; font-size: .85rem; font-weight: 800; transition: transform .22s ease, background .22s ease; animation: fab-pulse 8s ease-in-out infinite; }
.contact-fab:hover { transform: translateY(-4px); background: var(--forest-800); }
.back-top { position: fixed; right: 26px; bottom: 88px; z-index: 1100; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: rgba(255,255,255,.9); box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transform: translateY(10px); transition: .22s ease; backdrop-filter: blur(12px); }
.back-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }

/* Footer */
.site-footer { padding: 78px 0 24px; color: rgba(255,255,255,.7); background: #101611; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .6fr 1fr .6fr; gap: 48px; padding-bottom: 52px; }
.brand--footer { color: #fff; }
.brand--footer .brand-logo-stack { width: 174px; height: 82px; }
.brand--footer .brand-logo { width: 174px; max-height: 82px; }
.brand--footer .brand-logo--light { opacity: 1; }
.brand--footer .brand-logo--color { opacity: 0; }
.footer-brand > p { max-width: 38ch; margin: 20px 0 0; }
.site-footer h3 { margin: 8px 0 18px; color: #fff; font-size: .82rem; letter-spacing: .09em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li + li { margin-top: 9px; }
.site-footer a { text-decoration: none; transition: color .2s ease; }
.site-footer a:hover { color: #fff; }
.footer-contact i { width: 20px; color: var(--gold-300); }
.social-links { display: flex; gap: 9px; }
.social-links a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.social-links a:hover { color: var(--forest-950); background: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: .78rem; }
.footer-bottom p { margin: 0; }

/* Reveal and dynamic */
.js .reveal, .js .reveal-item { opacity: 0; transform: translateY(24px); }
.js .reveal.is-visible, .js .reveal-item.is-visible { opacity: 1; transform: translateY(0); transition: opacity .75s var(--ease), transform .75s var(--ease); }
[data-tilt] { transform-style: preserve-3d; will-change: transform; }
[data-tilt] > * { transform: translateZ(1px); }

/* 404 */
.error-page { min-height: 100svh; display: grid; place-items: center; overflow: hidden; padding: 120px 20px 50px; color: #fff; background: var(--forest-950); }
.error-card { position: relative; width: min(850px,100%); padding: clamp(38px,7vw,75px); overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); text-align: center; background: rgba(255,255,255,.055); box-shadow: var(--shadow-lg); backdrop-filter: blur(16px); }
.error-card::before { content: ""; position: absolute; top: -160px; right: -120px; width: 390px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.024),0 0 0 145px rgba(255,255,255,.015); }
.error-code { margin: 25px 0 15px; color: transparent; font-size: clamp(6rem,20vw,11rem); font-weight: 800; line-height: .82; letter-spacing: -.08em; background: linear-gradient(180deg,#fff,var(--gold-300)); -webkit-background-clip: text; background-clip: text; }
.error-card h1 { margin: 0; font-size: clamp(1.8rem,5vw,3.2rem); letter-spacing: -.04em; }
.error-card > p { max-width: 54ch; margin: 18px auto 29px; color: rgba(255,255,255,.64); }
.error-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

@keyframes breathe { from { transform: translate3d(-2%,0,0) scale(.96); } to { transform: translate3d(4%,-4%,0) scale(1.08); } }
@keyframes slow-spin { to { transform: rotate(360deg); } }
@keyframes scroll-cue { 0%,100% { opacity:.32; transform:translate(-50%,0); } 50% { opacity:1; transform:translate(-50%,15px); } }
@keyframes page-scroll-arrow {
  0%,100% { transform: translateY(-2px); }
  50% { transform: translateY(5px); }
}
@keyframes page-scroll-ring {
  0% { box-shadow: 0 10px 30px rgba(0,0,0,.2), 0 0 0 0 rgba(255,255,255,.18); }
  72%,100% { box-shadow: 0 10px 30px rgba(0,0,0,.2), 0 0 0 12px rgba(255,255,255,0); }
}
@keyframes map-float { 0%,100% { transform:translateY(0) rotate(-.4deg); } 50% { transform:translateY(-9px) rotate(.4deg); } }
@keyframes pulse { 0% { box-shadow:0 0 0 0 rgba(222,199,141,.42); } 65%,100% { box-shadow:0 0 0 12px rgba(222,199,141,0); } }
@keyframes logo-scroll { from { transform:translateX(0); } to { transform:translateX(calc(-50% - 27px)); } }
@keyframes fab-pulse { 0%,86%,100% { box-shadow:0 16px 42px rgba(65,80,28,.36); } 91% { box-shadow:0 16px 42px rgba(65,80,28,.36),0 0 0 10px rgba(112,130,56,.13); } }

@media (min-width: 1051px) and (max-height: 820px) {
  .home-hero { min-height: 650px; height: 100svh; max-height: 760px; }
  .hero-grid { gap: 52px; padding-top: 96px; padding-bottom: 40px; }
  .home-hero .display-title { font-size: clamp(3rem, 6.1vw, 5.55rem); line-height: .96; }
  .hero-intro { margin-top: 18px; font-size: 1rem; }
  .hero-actions { margin-top: 22px; }
  .hero-trust { margin-top: 19px; }
  .hero-proof { padding: 21px; }
  .hero-proof__label { margin-bottom: 12px; }
  .hero-proof__metric strong { font-size: 3.65rem; }
  .hero-proof__line { margin: 15px 0; }
  .hero-proof > a { margin-top: 15px; }

  .page-hero {
    min-height: 650px;
    height: 100svh;
    max-height: 760px;
    padding: calc(var(--header-h) + 24px) 0 72px;
  }
  .page-scroll-cue { bottom: 17px; }
  .page-scroll-cue__button { width: 42px; height: 42px; }
  .page-title { font-size: clamp(2.7rem, 5.45vw, 4.95rem); line-height: .98; }
  .page-hero__lead { margin-top: 16px; font-size: .96rem; }
  .page-hero__meta { margin-top: 18px; gap: 11px 20px; font-size: .79rem; }
}

@media (max-width: 1050px) {
  .header-inner { grid-template-columns: auto auto; }
  .nav-toggle { display: block; justify-self: end; }
  .header-cta { display: none; }
  .main-nav { position: fixed; top: var(--header-h); right: 20px; left: 20px; display: grid; gap: 0; padding: 15px; border: 1px solid var(--line); border-radius: 18px; color: var(--ink); background: rgba(255,255,255,.98); box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .25s ease, transform .25s ease; }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .main-nav a { padding: 14px 12px; }
  .hero-grid { grid-template-columns: 1fr; align-items: center; gap: 42px; }
  .hero-proof { max-width: 530px; }
  .kpi-layout { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 38px 10px; }
  .process-step:nth-child(2)::after { display: none; }
  .story-grid { grid-template-columns: 1fr; }
  .story-visual { min-height: 470px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.3fr .7fr 1fr; }
  .footer-grid > :last-child { grid-column: 1/-1; }
}

@media (max-width: 780px) {
  :root { --shell: min(100% - 28px,1180px); --header-h: 76px; }
  .brand-logo-stack { width: 126px; height: 60px; }
  .brand-logo { width: 126px; max-height: 60px; }
  .brand--footer .brand-logo-stack { width: 154px; height: 73px; }
  .brand--footer .brand-logo { width: 154px; max-height: 73px; }
  .main-nav { right: 14px; left: 14px; }
  .section { padding: 82px 0; }
  .section--compact { padding: 65px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 38px; }
  .home-hero { min-height: 850px; height: auto; }
  .hero-grid { padding-top: 145px; padding-bottom: 105px; }
  .home-hero .display-title { font-size: clamp(2.85rem,14vw,4.8rem); }
  .hero-word-wrap { display: block; min-width: 0; margin: 5px 0; }
  .hero-trust { display: grid; gap: 10px; }
  .page-hero {
    min-height: 690px;
    height: auto;
    max-height: none;
    padding: 136px 0 110px;
  }
  .page-scroll-cue { bottom: 28px; }
  .page-scroll-cue__label { font-size: .67rem; }
  .page-scroll-cue__button { width: 44px; height: 44px; }
  .section-title { font-size: clamp(2.15rem,10vw,3.7rem); }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .kpi-card { min-height: 205px; }
  .card-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 280px; }
  .card-icon { margin-bottom: 54px; }
  .feature-card__line { display: none; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 30px; }
  .process-step { display: grid; grid-template-columns: 50px 1fr; gap: 15px; padding: 0; }
  .process-step::after { display: none !important; }
  .process-step__dot { grid-row: 1/3; margin: 0; }
  .testimonial-shell { grid-template-columns: 1fr; }
  .slider-controls { justify-content: flex-end; }
  .quote-card { min-height: 390px; }
  .story-visual { min-height: 420px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column-reverse; }
  .form-actions .button { width: 100%; }
  .cta-band__inner { min-height: 360px; align-items: flex-start; flex-direction: column; justify-content: center; padding: 36px 25px; border-radius: 25px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 4px; }
}

@media (max-width: 520px) {
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof__mini { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr; }
  .kpi-card { min-height: 190px; }
  .map-card { min-height: 390px; }
  .service-detail { min-height: 470px; padding: 28px; }
  .service-detail ul { grid-template-columns: 1fr; }
  .service-detail__footer { align-items: flex-start; flex-direction: column; }
  .logo-track { gap: 38px; }
  .logo-track img { height: 48px; max-width: 120px; }
  .story-visual { min-height: 380px; }
  .story-visual__number { top: 28px; left: 28px; }
  .story-visual__quote { right: 25px; bottom: 25px; left: 25px; }
  .contact-panel, .contact-form { padding: 27px; }
  .contact-fab { right: 14px; bottom: 14px; width: 52px; padding: 0; justify-content: center; }
  .contact-fab span { display: none; }
  .back-top { right: 17px; bottom: 78px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
  .error-actions { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .logo-track { animation: none; }
  .js .reveal, .js .reveal-item { opacity: 1; transform: none; }
}

/* Final content-alignment refinements */
.quote-card .benefit-statement { max-width: 900px; margin: 22px 0 34px; font-size: clamp(1.45rem,3vw,2.6rem); line-height: 1.25; letter-spacing: -.035em; font-weight: 650; }
.quote-mark { font-size: .78rem; font-weight: 800; letter-spacing: .12em; }
.value-grid--four { grid-template-columns: repeat(4,1fr); }
@media (max-width:1050px){.value-grid--four{grid-template-columns:repeat(2,1fr)}}
@media (max-width:760px){.value-grid--four{grid-template-columns:1fr}}


/* Formulaire connecté au serveur OVH */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-actions .button[disabled] {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.form-spinner {
  animation: form-spin .8s linear infinite;
}

.form-server-error {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(164, 48, 43, .24);
  border-radius: 12px;
  color: #7f2925;
  background: #fff1f0;
  font-size: .84rem;
}

.form-server-error.is-visible {
  display: flex;
}

@keyframes form-spin {
  to { transform: rotate(360deg); }
}


/* Vérification anti-spam générée par le serveur */
.captcha-field {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream-50);
}

.captcha-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.captcha-heading label {
  margin: 0;
}

.captcha-refresh {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 0;
  border-radius: 999px;
  color: var(--olive-700);
  background: var(--olive-100);
  cursor: pointer;
  font-size: .72rem;
  font-weight: 800;
}

.captcha-refresh[aria-busy="true"] .bi {
  animation: form-spin .8s linear infinite;
}

.captcha-row {
  display: grid;
  grid-template-columns: 1fr 105px;
  align-items: center;
  gap: 12px;
}

.captcha-question {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  border: 1px dashed rgba(112,130,56,.38);
  border-radius: 12px;
  color: var(--forest-900);
  background: #fff;
  font-weight: 800;
}

.captcha-row input {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 800;
}

.captcha-field small {
  color: var(--muted);
  font-size: .7rem;
}

@media (max-width: 520px) {
  .captcha-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .captcha-row {
    grid-template-columns: 1fr;
  }

  .captcha-row input {
    text-align: left;
  }
}


/* =========================================================
   CORRECTIONS MOBILE — navigation et stabilité responsive
   ========================================================= */

@media (max-width: 1050px) {
  .site-header {
    z-index: 6000;
    min-height: var(--header-h);
  }

  .header-inner {
    position: relative;
    z-index: 6002;
    width: var(--shell);
    min-height: var(--header-h);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .brand {
    position: relative;
    z-index: 6003;
    min-width: 0;
    max-width: calc(100vw - 104px);
  }

  .brand-logo-stack,
  .brand-logo {
    max-width: 100%;
  }

  /*
   * Le bouton reste volontairement blanc sur le bandeau sombre.
   * Il est ainsi visible sur tous les téléphones, même lorsque
   * l'écran réduit le contraste ou la luminosité.
   */
  .nav-toggle {
    position: relative;
    z-index: 6004;
    width: 48px;
    height: 48px;
    display: grid !important;
    place-items: center;
    justify-self: end;
    flex: 0 0 48px;
    border: 1px solid rgba(255, 255, 255, .88);
    color: var(--forest-950);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 9px 28px rgba(0, 0, 0, .2);
    backdrop-filter: blur(12px);
  }

  .site-header.is-scrolled .nav-toggle,
  .site-header.is-open .nav-toggle {
    border-color: var(--line);
    color: var(--forest-950);
    background: #fff;
    box-shadow: var(--shadow-sm);
  }

  .nav-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 21px;
    height: 2px;
    margin: 0;
    background: currentColor;
    transform-origin: center;
  }

  .nav-toggle span:nth-child(1) {
    transform: translate(-50%, -7px);
  }

  .nav-toggle span:nth-child(2) {
    transform: translate(-50%, 0);
  }

  .nav-toggle span:nth-child(3) {
    transform: translate(-50%, 7px);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translate(-50%, 0) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, 0) scaleX(0);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  /*
   * Menu mobile plein écran.
   * Cette présentation évite que le menu soit coupé par le hero,
   * le clavier mobile ou une faible hauteur d'écran.
   */
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 6001;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding:
      calc(var(--header-h) + 26px)
      max(24px, env(safe-area-inset-right))
      max(32px, env(safe-area-inset-bottom))
      max(24px, env(safe-area-inset-left));
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 0;
    border-radius: 0;
    color: var(--ink);
    background:
      radial-gradient(circle at 90% 8%, rgba(112, 130, 56, .14), transparent 24%),
      rgba(255, 255, 255, .99);
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-100%);
    transition:
      opacity .3s ease,
      visibility .3s ease,
      transform .4s var(--ease);
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.08rem, 3.8vw, 1.35rem);
    font-weight: 750;
  }

  .main-nav a::after {
    position: static;
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 50%;
    background: transparent;
    transform: none;
  }

  .main-nav a[aria-current="page"] {
    color: var(--olive-600);
  }

  .main-nav a[aria-current="page"]::after {
    background: var(--olive-600);
  }

  .header-cta {
    display: none !important;
  }

  body.menu-open .contact-fab,
  body.menu-open .back-top {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(calc(100% - 30px), 1180px);
    --header-h: 72px;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  main,
  main > *,
  .shell,
  .hero-grid > *,
  .kpi-layout > *,
  .section-heading > *,
  .contact-layout > *,
  .story-grid > *,
  .footer-grid > * {
    min-width: 0;
  }

  h1,
  h2,
  h3,
  p,
  a,
  span {
    overflow-wrap: break-word;
  }

  .header-inner {
    gap: 10px;
  }

  .brand-logo-stack {
    width: 112px;
    height: 54px;
  }

  .brand-logo {
    width: 112px;
    max-height: 54px;
  }

  .brand--footer .brand-logo-stack {
    width: 145px;
    height: 68px;
  }

  .brand--footer .brand-logo {
    width: 145px;
    max-height: 68px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .main-nav {
    padding-top: calc(var(--header-h) + 24px);
  }

  .section {
    padding: 72px 0;
  }

  .section--compact {
    padding: 58px 0;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 34px;
  }

  .section-lead {
    font-size: .98rem;
  }

  .home-hero {
    min-height: 100svh;
    height: auto;
    max-height: none;
    place-items: stretch;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 28px;
    padding-top: calc(var(--header-h) + 50px);
    padding-bottom: 112px;
  }

  .home-hero .display-title {
    max-width: 100%;
    font-size: clamp(2.45rem, 12vw, 4rem);
    line-height: .99;
    letter-spacing: -.052em;
  }

  .hero-word-wrap {
    display: block;
    min-width: 0;
    margin: 5px 0;
  }

  .hero-intro {
    max-width: 100%;
    margin-top: 19px;
    font-size: .98rem;
    line-height: 1.62;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 23px;
  }

  .hero-trust {
    display: grid;
    gap: 9px;
    margin-top: 20px;
  }

  .hero-proof {
    width: 100%;
    max-width: none;
    align-self: stretch;
    padding: 21px;
    border-radius: 20px;
  }

  .hero-proof__metric strong {
    font-size: clamp(3rem, 15vw, 4.1rem);
  }

  .hero-proof__mini {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-orbit--1 {
    top: 10%;
    right: -210px;
    width: 390px;
    opacity: .48;
  }

  .hero-orbit--2 {
    top: 18%;
    right: -125px;
    width: 240px;
    opacity: .48;
  }

  .page-hero {
    min-height: 100svh;
    height: auto;
    max-height: none;
    align-items: center;
    padding:
      calc(var(--header-h) + 44px)
      0
      108px;
  }

  .page-title {
    max-width: 100%;
    font-size: clamp(2.45rem, 11.8vw, 4.05rem);
    line-height: .99;
    letter-spacing: -.05em;
  }

  .page-hero__lead {
    max-width: 100%;
    margin-top: 17px;
    font-size: .96rem;
    line-height: 1.62;
  }

  .page-hero__meta {
    display: grid;
    gap: 9px;
    margin-top: 18px;
    font-size: .79rem;
  }

  .page-hero::after {
    top: -120px;
    right: -270px;
    width: 450px;
    opacity: .65;
  }

  .page-scroll-cue {
    bottom: 18px;
    gap: 10px;
  }

  .page-scroll-cue__label {
    font-size: .64rem;
    letter-spacing: .12em;
  }

  .page-scroll-cue__button {
    width: 43px;
    height: 43px;
  }

  .section-title {
    font-size: clamp(2.05rem, 9.5vw, 3.45rem);
    line-height: 1.04;
  }

  .kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .kpi-card {
    min-height: 188px;
    padding: 20px;
  }

  .kpi-icon {
    top: 18px;
    left: 18px;
  }

  .kpi-card .counter {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
  }

  .kpi-card p {
    max-width: none;
    font-size: .82rem;
  }

  .map-card {
    min-height: 350px;
  }

  .card-grid,
  .service-detail-grid,
  .story-grid,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-tabs {
    flex-wrap: nowrap;
    margin-right: -15px;
    margin-left: -15px;
    padding: 0 15px 7px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .service-tabs::-webkit-scrollbar {
    display: none;
  }

  .service-tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .service-detail {
    min-height: 0;
  }

  .testimonial-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .quote-card {
    min-height: 330px;
    padding: 27px;
    border-radius: 24px;
  }

  .quote-card blockquote,
  .quote-card .benefit-statement {
    font-size: clamp(1.28rem, 6vw, 2rem);
  }

  .story-visual {
    min-height: 365px;
  }

  .contact-panel,
  .contact-form {
    padding: 25px;
  }

  .contact-panel h2,
  .contact-form h2 {
    font-size: 1.72rem;
  }

  .contact-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .contact-item a,
  .footer-contact a,
  .footer-column a {
    overflow-wrap: anywhere;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-field--full {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .form-actions .button {
    width: 100%;
  }

  .map-placeholder {
    min-height: 330px;
  }

  .map-placeholder__label {
    width: calc(100% - 38px);
    min-width: 0;
  }

  .faq-question {
    gap: 12px;
    padding: 20px 0;
  }

  .faq-answer p {
    padding-right: 0;
  }

  .cta-band__inner {
    min-height: 0;
    padding: 34px 24px;
  }

  .cta-band__inner h2 {
    font-size: clamp(2rem, 9.5vw, 3.25rem);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
  }

  .contact-fab {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .back-top {
    right: max(17px, env(safe-area-inset-right));
    bottom: calc(76px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 520px) {
  :root {
    --shell: min(calc(100% - 24px), 1180px);
  }

  .brand-logo-stack {
    width: 104px;
    height: 50px;
  }

  .brand-logo {
    width: 104px;
    max-height: 50px;
  }

  .main-nav {
    padding-right: 20px;
    padding-left: 20px;
  }

  .home-hero .display-title,
  .page-title {
    font-size: clamp(2.28rem, 11.7vw, 3.5rem);
  }

  .hero-grid {
    padding-top: calc(var(--header-h) + 42px);
    padding-bottom: 106px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof__mini {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-scroll-cue__label {
    display: inline-block;
  }

  .kpi-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .kpi-card {
    min-height: 176px;
  }

  .feature-card,
  .service-card,
  .value-card,
  .team-card,
  .service-detail {
    padding: 24px;
  }

  .contact-panel,
  .contact-form {
    padding: 22px;
    border-radius: 20px;
  }

  .contact-list {
    margin-top: 30px;
  }

  .captcha-field {
    padding: 14px;
  }

  .captcha-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .captcha-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .captcha-row input {
    text-align: left;
  }

  .map-placeholder {
    min-height: 300px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-brand,
  .footer-grid > :last-child {
    grid-column: auto;
  }
}

@supports not (height: 100dvh) {
  @media (max-width: 1050px) {
    .main-nav {
      min-height: 100vh;
    }
  }
}


/* =========================================================
   HOTFIX MOBILE — BURGER TOUJOURS VISIBLE
   Version 2026-07-24
   ========================================================= */

@media (max-width: 1050px) {
  .site-header {
    width: 100%;
    max-width: none;
    z-index: 9000;
  }

  .site-header .header-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-right: max(76px, calc(14px + env(safe-area-inset-right)));
    padding-left: max(14px, env(safe-area-inset-left));
    grid-template-columns: minmax(0, 1fr);
  }

  .site-header .brand {
    max-width: 100%;
  }

  /*
   * Le bouton ne dépend plus de la couleur ou de l’état du header.
   * Il reste vert, opaque et fixé en haut à droite dès le chargement.
   */
  .site-header .nav-toggle {
    position: fixed !important;
    top: max(12px, env(safe-area-inset-top)) !important;
    right: max(14px, env(safe-area-inset-right)) !important;
    z-index: 10002 !important;
    width: 50px !important;
    height: 50px !important;
    display: grid !important;
    place-items: center !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    border: 1px solid rgba(255, 255, 255, .34) !important;
    color: #fff !important;
    background: var(--olive-600) !important;
    box-shadow: 0 12px 32px rgba(8, 18, 9, .34) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .site-header .nav-toggle span {
    display: block !important;
    background: #fff !important;
  }

  .site-header.is-scrolled .nav-toggle,
  .site-header.is-open .nav-toggle {
    border-color: rgba(112, 130, 56, .72) !important;
    color: #fff !important;
    background: var(--olive-600) !important;
  }

  .main-nav {
    width: 100% !important;
    max-width: none !important;
  }
}

@media (max-width: 780px) {
  html {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  body,
  main,
  .home-hero,
  .page-hero,
  .section,
  .site-footer {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  body {
    overflow-x: hidden !important;
  }

  .site-header .header-inner {
    min-height: 72px;
  }

  .brand-logo-stack {
    width: 108px;
    height: 52px;
  }

  .brand-logo {
    width: 108px;
    max-height: 52px;
  }

  /*
   * Le tableau de chiffres existe déjà plus bas dans la page.
   * Il est donc masqué dans le hero mobile pour libérer l’écran.
   */
  .home-hero .hero-proof {
    display: none;
  }

  .home-hero {
    min-height: 100svh;
    height: auto;
    max-height: none;
  }

  .home-hero .hero-grid {
    width: min(calc(100% - 28px), 1180px);
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding-top: calc(var(--header-h) + 38px);
    padding-bottom: 128px;
  }

  .home-hero .display-title {
    max-width: 100%;
    font-size: clamp(2.2rem, 10.2vw, 3.25rem);
    line-height: 1.015;
    letter-spacing: -.048em;
  }

  .home-hero .hero-intro {
    max-width: 100%;
    margin-top: 17px;
    font-size: .94rem;
    line-height: 1.58;
  }

  .home-hero .hero-actions {
    margin-top: 21px;
  }

  .home-hero .hero-trust {
    margin-top: 18px;
    font-size: .79rem;
  }

  .home-hero .page-scroll-cue {
    right: auto;
    bottom: 20px;
    left: 50%;
    max-width: calc(100% - 32px);
  }

  .home-hero .page-scroll-cue__label {
    font-size: .62rem;
    letter-spacing: .12em;
  }
}

@media (max-width: 390px) {
  .site-header .nav-toggle {
    top: 11px !important;
    right: 12px !important;
    width: 46px !important;
    height: 46px !important;
  }

  .site-header .header-inner {
    padding-right: 70px;
  }

  .brand-logo-stack {
    width: 101px;
    height: 49px;
  }

  .brand-logo {
    width: 101px;
    max-height: 49px;
  }

  .home-hero .hero-grid {
    width: min(calc(100% - 24px), 1180px);
    padding-top: calc(var(--header-h) + 32px);
    padding-bottom: 122px;
  }

  .home-hero .display-title {
    font-size: clamp(2.05rem, 10vw, 2.75rem);
  }
}
