@font-face {
  font-family: "Roboto Condensed";
  src: url("../fonts/roboto-condensed-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arimo";
  src: url("../fonts/arimo-variable.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arimo";
  src: url("../fonts/arimo-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  --bleu: #00668c;
  --orange: #f7995e;
  --olive: #98a869;
  --bleu-clair: #3f8ba7;
  --orange-clair: #f7b184;
  --olive-clair: #b1bc8d;
  --bordeaux: #913532;
  --encre: #242423;
  --blanc: #fff;
  --font-cond: "Roboto Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Arimo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ombre-bouton: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.18);
}
html {
  font-size: clamp(7px, 0.677083vw, 13px);
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--bleu) #e9eef1;
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #eef1f3; }
::-webkit-scrollbar-thumb { background: var(--bleu); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #00577a; }
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--encre);
  background: var(--blanc);
  overflow-x: clip;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1 0 auto; width: 100%; }
.site-footer { margin-top: auto; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
.wrap { max-width: 120rem; margin-inline: auto; }
.skip-link {
  position: absolute; left: -999rem; top: 0; z-index: 100;
  background: var(--blanc); color: var(--bleu); padding: 0.75rem 1.25rem;
  font-family: var(--font-cond); font-weight: 700;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }
@keyframes page-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
body { animation: page-fade 0.18s ease-out both; }
body.page-sortie {
  animation: none;
  opacity: 0;
  transition: opacity 0.16s ease-in;
}
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
}
.fil-ariane {
  position: absolute;
  top: 0.9rem;
  left: 2.25rem;
  z-index: 3;
  font-size: 1.05rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}
.fil-ariane ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fil-ariane li { color: rgba(255, 255, 255, 0.85); }
.fil-ariane li + li::before {
  content: "›";
  margin: 0 0.55rem;
  opacity: 0.7;
}
.fil-ariane a { transition: color 0.15s ease; }
.fil-ariane a:hover { color: #fff; text-decoration: underline; }
.fil-ariane [aria-current="page"] { color: #fff; font-weight: 700; }
.fil-ariane--plein {
  position: static;
  margin-bottom: 1.5rem;
  text-shadow: none;
}
.fil-ariane--plein li { color: #6b7075; }
.fil-ariane--plein a:hover { color: var(--bleu); }
.fil-ariane--plein [aria-current="page"] { color: var(--bleu); }
.equipe-hero, .hero-partenaires, .page-formulaire { position: relative; }
.site-header {
  background: var(--blanc);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 0.125rem 0.75rem rgba(16, 34, 45, 0.10);
}
.site-header .wrap {
  height: 6.25rem;
  display: flex;
  align-items: center;
  padding: 0 3rem 0 4rem;
}
.header-logo { flex: 0 0 auto; }
.header-logo img {
  width: 3.75rem;
  height: 4.1875rem;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  margin-left: 4.5rem;
}
.site-nav a {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--encre);
  white-space: nowrap;
  transition: color 0.15s ease;
}
.site-nav a:hover { color: var(--bleu); }
.site-nav a[aria-current="page"] {
  color: var(--bleu);
  text-decoration: underline;
  text-underline-offset: 0.55rem;
  text-decoration-thickness: 0.1875rem;
}
.header-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.9rem;
  padding: 0 2rem;
  border-radius: 0.5rem;
  background: var(--bleu);
  color: var(--blanc);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
  transition: background 0.15s ease;
}
.header-cta:hover { background: #00577a; }
.lang-switch {
  margin-left: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.9rem;
  height: 3.9rem;
  border: none;
  border-radius: 0.5rem;
  background: var(--blanc);
  color: var(--bleu);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--encre);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.actif span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.actif span:nth-child(2) { opacity: 0; }
.nav-toggle.actif span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@keyframes menu-ouvre {
  from { opacity: 0; transform: translateY(-8px); }
}
.site-footer {
  background: var(--bleu);
  color: var(--blanc);
}
.site-footer .wrap {
  position: relative;
  height: 17.4375rem;
}
.footer-logo {
  position: absolute;
  left: 6.125rem;
  top: 2.875rem;
  width: 8.5625rem;
  height: 9.5625rem;
}
.footer-col { position: absolute; top: 2.8125rem; }
.footer-col.col-services { left: 21.5625rem; }
.footer-col.col-infos { left: 61.6875rem; top: 3.0625rem; }
.footer-col h2 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.18;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.footer-col li { line-height: 1.875rem; }
.footer-col.col-infos li { line-height: 2.0625rem; }
.footer-col a {
  font-size: 1.375rem;
}
.footer-col a:hover { text-decoration: underline; }
.footer-contact {
  position: absolute;
  left: 85.8125rem;
  top: 2.8125rem;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.1875rem;
}
.footer-contact p:last-child { margin-bottom: 0; }
.footer-contact img {
  width: 3.4375rem; height: 3.4375rem;
}
.footer-contact a { font-size: 1.5rem; }
.footer-contact a:hover { text-decoration: underline; }
.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.875rem 1.25rem 1rem;
  text-align: center;
}
.footer-copyright p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
}
@keyframes rise {
  from { opacity: 0; transform: translateY(1.375rem); }
  to { opacity: 1; transform: none; }
}
@keyframes flotte {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.55rem); }
}
@keyframes chevron-bas {
  0%, 100% { transform: translate(-50%, 0) rotate(45deg); opacity: 0.85; }
  50% { transform: translate(-50%, 0.5rem) rotate(45deg); opacity: 0.35; }
}
.hero {
  position: relative;
  min-height: clamp(30rem, calc(100vh - 6.25rem), 46rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: image-set(
    url("../img/hero-accueil-1920.webp") type("image/webp") 1x,
    url("../img/hero-accueil-3840.webp") type("image/webp") 2x
  );
  background-image: -webkit-image-set(
    url("../img/hero-accueil-1920.webp") 1x,
    url("../img/hero-accueil-3840.webp") 2x
  );
  background-size: cover;
  background-position: center;
  color: var(--blanc);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 42, 62, 0.62), rgba(0, 80, 110, 0.36));
}
.hero .wrap {
  position: relative;
  z-index: 1;
  max-width: 68rem;
  padding: 4rem 2rem 5rem;
}
.hero-lueurs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.lueur {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--t, 12rem);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.25) 45%, rgba(255, 255, 255, 0) 70%);
  mix-blend-mode: screen;
  opacity: 0;
  animation: lueur-pop var(--d, 9s) ease-in-out var(--del, 0s) infinite;
}
@keyframes lueur-pop {
  0%, 38% { opacity: 0; }
  46% { opacity: 0.55; }
  50% { opacity: 0.7; }
  54% { opacity: 0.55; }
  62%, 100% { opacity: 0; }
}
.hero-logo-cadre { animation: rise 0.7s ease-out both; }
.hero-logo {
  width: 8.5rem;
  height: auto;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0.5rem 1.25rem rgba(0, 0, 0, 0.35));
  animation: flotte 5.5s ease-in-out 1.2s infinite;
}
.hero-depuis {
  display: inline-block;
  padding: 0.5rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10rem;
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: rise 0.7s ease-out 0.12s both;
}
.hero h1 {
  margin-top: 1.6rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.12;
  text-transform: uppercase;
  animation: rise 0.7s ease-out 0.2s both;
}
.hero .hero-sous {
  max-width: 46rem;
  margin: 1.4rem auto 0;
  font-size: 1.35rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: balance;
  animation: rise 0.7s ease-out 0.3s both;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  animation: rise 0.7s ease-out 0.4s both;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  height: 3.9rem;
  padding: 0 2.2rem;
  border-radius: 0.5rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn-hero--plein {
  background: var(--blanc);
  color: var(--bleu);
  box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, 0.25);
}
.btn-hero--plein:hover { transform: translateY(-2px); box-shadow: 0 0.625rem 1.375rem rgba(0, 0, 0, 0.3); }
.btn-hero--contour {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: var(--blanc);
}
.btn-hero--contour:hover { background: var(--blanc); color: var(--bleu); }
.hero-chevron {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  width: 1.5rem;
  height: 1.5rem;
  border-right: 0.1875rem solid rgba(255, 255, 255, 0.85);
  border-bottom: 0.1875rem solid rgba(255, 255, 255, 0.85);
  transform: translate(-50%, 0) rotate(45deg);
  animation: chevron-bas 1.9s ease-in-out infinite;
}
.js .reveal {
  opacity: 0;
  transform: translateY(1.125rem);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.js .reveal.visible { opacity: 1; transform: none; }
.grille-services .carte-service:nth-child(2) { transition-delay: 0.08s; }
.grille-services .carte-service:nth-child(3) { transition-delay: 0.16s; }
.grille-services .carte-service:nth-child(4) { transition-delay: 0.24s; }
.grille-services .carte-service:nth-child(5) { transition-delay: 0.32s; }
.js .membre.m2.reveal { transition-delay: 0.1s; }
.js .membre.m3.reveal { transition-delay: 0.2s; }
.js .partenaire-majorelle.reveal { transition-delay: 0.12s; }
html { scroll-behavior: smooth; }
#nos-services { scroll-margin-top: 6.25rem; }
@media (prefers-reduced-motion: reduce) {
  .hero-logo-cadre, .hero-logo, .hero-depuis, .hero h1, .hero .hero-sous,
  .hero-actions, .hero-chevron { animation: none; }
  .lueur { animation: none; opacity: 0; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
.bande-services {
  position: relative;
  margin-top: 0;
  background: var(--bleu);
  color: var(--blanc);
  text-align: center;
  padding: 3.84375rem 0 0;
  height: 33.9375rem;
  box-shadow: 0 0.25rem 0.4375rem rgba(0, 0, 0, 0.25);
}
.bande-services h1,
.bande-services h2 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 3.875rem;
  line-height: 1.18;
  text-transform: uppercase;
}
.bande-services .tirets {
  width: 23.125rem;
  height: 0.375rem;
  margin: 1.0625rem auto 0;
  background: repeating-linear-gradient(
    90deg,
    var(--blanc) 0, var(--blanc) 1.75rem,
    transparent 1.75rem, transparent 3.0625rem
  );
}
.bande-services .intro {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 3.1875rem;
  line-height: 1.196;
  margin-top: 2.4375rem;
}
.cycle-vie {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.0625rem;
  margin-top: 1.90625rem;
}
.cycle-vie .item {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 2.5625rem;
  line-height: 1.18;
}
.cycle-vie .puce {
  width: 1.0625rem; height: 1.0625rem;
  border-radius: 50%;
  background: var(--blanc);
}
.cycle-vie .slash {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 6.8125rem;
  line-height: 1.18;
  margin: 0 0.25rem;
}
.acces-rapides {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6.5rem;
  padding: 6rem 2rem 6.5rem;
}
.acces {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  width: 18rem;
  text-align: center;
}
.acces-titre { white-space: nowrap; }
.acces-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background: #eef4f7;
  color: var(--bleu);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.acces-icone svg { width: 3.6rem; height: 3.6rem; }
.acces-titre {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--encre);
  transition: color 0.18s ease;
}
.acces:hover .acces-icone,
.acces:focus-visible .acces-icone {
  background: var(--bleu);
  color: var(--blanc);
  transform: translateY(-4px);
  box-shadow: 0 0.75rem 1.4rem rgba(0, 61, 84, 0.28);
}
.acces:hover .acces-titre { color: var(--bleu); }
.services-teaser-tete {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 61.5rem;
  margin: 5.5rem auto 0;
}
.services-teaser-tete h2 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 2.3rem;
  text-transform: uppercase;
  color: var(--bleu);
}
.lien-plus {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--bleu);
  transition: color 0.15s ease;
}
.lien-plus::after { content: " →"; transition: margin 0.15s ease; }
.lien-plus:hover { color: #00577a; }
.lien-plus:hover::after { margin-left: 0.3rem; }
.grille-services {
  display: grid;
  grid-template-columns: repeat(2, 29.875rem);
  gap: 1.9375rem 1.75rem;
  justify-content: center;
  margin-top: 2.25rem;
}
.carte-service {
  position: relative;
  height: 15.625rem;
  border-radius: 0.625rem;
  text-align: center;
  color: var(--blanc);
  box-shadow: 0 0.1875rem 0.4375rem rgba(0, 0, 0, 0.3);
  transition: filter 0.15s ease;
}
.carte-service:hover { filter: brightness(1.07); }
.carte-service.t-bleu { background: var(--bleu); }
.carte-service.t-orange { background: var(--orange); }
.carte-service.t-olive { background: var(--olive); }
.carte-service img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.carte-service .libelle {
  position: absolute;
  left: 0; right: 0;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.8125rem;
  line-height: 1.2069;
  text-transform: uppercase;
}
.carte-service.c1 img { top: 1.85rem; }
.carte-service.c1 .libelle { top: 7.1375rem; }
.carte-service.c2 img { top: 1.075rem; }
.carte-service.c2 .libelle { top: 8.9rem; }
.carte-service.c3 img { top: 3.03125rem; }
.carte-service.c3 .libelle { top: 9.1375rem; }
.carte-service.c4 img { top: 1.80625rem; }
.carte-service.c4 .libelle { top: 9.1375rem; }
.carte-service.c5 {
  grid-column: 1 / -1;
  justify-self: center;
  width: 29.875rem;
}
.carte-service.c5 svg {
  position: absolute;
  top: 2.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4.9rem;
  height: 4.9rem;
}
.carte-service.c5 .libelle { top: 8.85rem; }
.grille-services { margin-bottom: 6rem; }
.page-nos-services .grille-services { margin-top: 6rem; margin-bottom: 7rem; }
.teaser-equipe {
  background: var(--bleu);
  color: var(--blanc);
  text-align: center;
  padding: 4.5rem 2rem 5rem;
}
.teaser-equipe h2 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 2.6rem;
  text-transform: uppercase;
}
.teaser-equipe .rangee {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 2.6rem;
  flex-wrap: wrap;
}
.teaser-equipe figure { width: 12rem; margin: 0; }
.teaser-equipe img {
  width: 9rem;
  height: 9rem;
  margin: 0 auto;
  border-radius: 50%;
  border: 0.25rem solid var(--blanc);
  object-fit: cover;
  box-shadow: 0 0.5rem 1.1rem rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease;
}
.teaser-equipe figure:hover img { transform: translateY(-4px); }
.teaser-equipe figcaption strong {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
}
.teaser-equipe figcaption span {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.05rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}
.lien-blanc {
  display: inline-block;
  margin-top: 2.4rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  transition: border-color 0.15s ease;
}
.lien-blanc:hover { border-color: var(--blanc); }
.strip-partenaires {
  text-align: center;
  padding: 4.5rem 2rem 5rem;
}
.strip-partenaires h2 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bleu);
}
.strip-partenaires .rangee {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  margin-top: 2.4rem;
  flex-wrap: wrap;
}
.strip-partenaires img {
  max-height: 3.4rem;
  width: auto;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: filter 0.18s ease, opacity 0.18s ease;
}
.strip-partenaires a:hover img { filter: none; opacity: 1; }
@media (max-width: 899px) {
  html { font-size: 16px; }
  .acces-rapides { gap: 24px; padding: 40px 16px 48px; }
  .acces { width: 104px; gap: 10px; }
  .acces-icone { width: 72px; height: 72px; }
  .acces-icone svg { width: 34px; height: 34px; }
  .acces-titre { font-size: 13px; }
  .services-teaser-tete {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 40px 20px 0;
    text-align: center;
  }
  .services-teaser-tete h2 { font-size: 24px; }
  .lien-plus { font-size: 14px; }
  .teaser-equipe { padding: 36px 20px 44px; }
  .teaser-equipe h2 { font-size: 24px; }
  .teaser-equipe .rangee { gap: 24px; margin-top: 22px; }
  .teaser-equipe figure { width: 132px; }
  .teaser-equipe img { width: 96px; height: 96px; }
  .teaser-equipe figcaption strong { font-size: 14px; }
  .teaser-equipe figcaption span { font-size: 12px; }
  .lien-blanc { font-size: 14px; margin-top: 24px; }
  .strip-partenaires { padding: 36px 20px 44px; }
  .strip-partenaires h2 { font-size: 13px; }
  .strip-partenaires .rangee { gap: 28px; margin-top: 20px; }
  .strip-partenaires img { max-height: 34px; }
  .fil-ariane, .fil-ariane--plein {
    position: static;
    padding: 10px 20px 0;
    font-size: 13px;
    margin-bottom: 0;
  }
  br.lg { display: none; }
  .carte-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
  }
  .carte-service img, .carte-service .libelle { position: static; transform: none; }
  .site-header .wrap {
    height: 64px;
    padding: 0 16px;
  }
  .header-logo img { width: 40px; height: 44px; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--blanc);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0;
    padding: 8px 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
  }
  .site-nav.ouvert { display: flex; animation: menu-ouvre 0.18s ease-out; }
  .site-nav a {
    font-size: 18px;
    padding: 12px 20px;
    width: 100%;
  }
  .header-cta {
    width: auto; height: 40px;
    padding: 0 14px;
    font-size: 15px;
    margin-left: 12px;
    border-radius: 8px;
  }
  .lang-switch {
    width: 40px; height: 40px;
    font-size: 15px;
    margin-left: 10px;
    border-radius: 8px;
  }
  .hero { min-height: min(calc(100svh - 64px), 640px); }
  .hero .wrap { padding: 44px 22px 60px; }
  .hero-logo { width: 88px; margin-bottom: 16px; }
  .hero-depuis { font-size: 12px; padding: 6px 14px; }
  .hero h1 { font-size: 27px; margin-top: 14px; }
  .hero .hero-sous { font-size: 15px; margin-top: 12px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; margin-top: 24px; }
  .btn-hero { height: 46px; font-size: 16px; padding: 0 24px; }
  .hero-chevron { bottom: 14px; width: 16px; height: 16px; }
  #nos-services { scroll-margin-top: 64px; }
  .bande-services {
    margin-top: 48px;
    height: auto;
    padding: 36px 20px 44px;
  }
  .bande-services h1, .bande-services h2 { font-size: 30px; }
  .bande-services .tirets { width: 180px; height: 4px;
    background: repeating-linear-gradient(90deg, var(--blanc) 0, var(--blanc) 14px, transparent 14px, transparent 24px); }
  .bande-services .intro { font-size: 20px; margin-top: 18px; }
  .cycle-vie { flex-wrap: wrap; gap: 10px; margin-top: 24px; padding: 0 8px; }
  .cycle-vie .item { font-size: 18px; }
  .cycle-vie .puce { width: 8px; height: 8px; }
  .cycle-vie .slash { font-size: 40px; margin: 0 8px; }
  .grille-services {
    grid-template-columns: min(100%, 420px);
    gap: 16px;
    margin: 40px auto 56px;
    padding: 0 20px;
  }
  .carte-service { height: 180px; border-radius: 10px; }
  .carte-service img { zoom: 0.72; margin-bottom: 6px; }
  .carte-service .libelle { font-size: 18px; line-height: 1.25; }
  .carte-service.c5 { width: auto; justify-self: stretch; }
  .carte-service.c5 svg { position: static; transform: none; width: 52px; height: 52px; margin-bottom: 6px; }
  .site-footer .wrap {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px 20px;
  }
  .footer-logo, .footer-col, .footer-contact { position: static; }
  .footer-logo { width: 88px; height: 98px; }
  .footer-col h2 { font-size: 18px; }
  .footer-col a { font-size: 15px; }
  .footer-col li, .footer-col.col-infos li { line-height: 2; }
  .footer-contact img { width: 40px; height: 40px; }
  .footer-contact a { font-size: 15px; }
  .footer-contact p { gap: 12px; margin-bottom: 12px; }
  .footer-copyright { padding: 10px 16px 12px; }
  .footer-copyright p { font-size: 12px; }
}
