:root {
  --black: #070907;
  --green-950: #0c1f15;
  --green-800: #12301f;
  --green-700: #1c4d2b;
  --green-500: #2f8b3a;
  --green-400: #3ca64a;
  --red-900: #7a0f19;
  --red-600: #a3141f;
  --red-500: #c41e2a;
  --yellow: #f2c14e;
  --ink: #0b1a12;
  --ink-soft: #4d5a53;
  --gray-200: #d9d9d9;
  --gray-100: #f0f0f0;
  --white: #ffffff;

  --pad: 56px;
  --max: 100%;
  --radius-lg: 26px;

  --font-display: 'Anton', Impact, 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-script: 'Caveat', 'Brush Script MT', cursive;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open, body.modal-open, body.is-loading { overflow: hidden; }

/* ---------- Préchargeur ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: var(--green-950);
  color: var(--white);
  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease, visibility 0s linear .5s;
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo { width: auto; height: 80px; animation: preloader-pulse 1.6s ease-in-out infinite; }
@keyframes preloader-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.94); opacity: .75; }
}
.preloader-progress {
  width: 200px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .15);
  overflow: hidden;
}
.preloader-bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: var(--white);
  transition: width .25s ease;
}
.preloader-count {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .7);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

h1, h2, .quote-form-wrap h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .02em;
}
h2 { font-size: 54px; line-height: 1.1; }
h2.h2-lg { font-size: 64px; line-height: 1.1; }

.label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-500);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 32px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { height: 60px; padding: 0 40px; }
.btn-sm { height: 42px; padding: 0 24px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-green { background: var(--green-400); color: var(--white); box-shadow: 0 10px 24px -12px rgba(60, 166, 74, .9); }
.btn-green:hover { background: #45b653; }
.btn-outline { background: transparent; color: var(--green-700); box-shadow: inset 0 0 0 2px var(--green-700); }
.btn-outline:hover { background: var(--green-700); color: var(--white); }
.btn-arrow { width: auto; height: 2.4em; }
.btn-green .btn-arrow { filter: brightness(0) invert(1); }
.btn-outline .btn-arrow { filter: brightness(0); }
.btn-outline:hover .btn-arrow { filter: brightness(0) invert(1); }
.btn-yellow { background: var(--yellow); color: var(--ink); padding: 0 48px; box-shadow: 0 12px 28px -14px rgba(242, 193, 78, .9); }
.btn-yellow:hover { background: #f6cd68; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.logo {
  display: inline-flex;
  color: var(--green-700);
  transition: opacity .4s ease, transform .4s ease;
}
.logo img { width: auto; height: 52px; }
.logo-mark { font: 400 30px var(--font-display); letter-spacing: .04em; fill: currentColor; }
.logo-sub { font: 600 7.4px var(--font-body); letter-spacing: .16em; text-transform: uppercase; fill: currentColor; }
.site-header.is-scrolled .logo {
  opacity: 0;
  transform: translateY(-10px) scale(.92);
  pointer-events: none;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: gap .4s cubic-bezier(.4, 0, .2, 1);
}
.site-header.is-scrolled .nav-group { gap: 0; }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 50px;
  padding: 0 30px;
  background: var(--gray-100);
  border-radius: 999px;
  box-shadow: 0 6px 20px -14px rgba(0, 0, 0, .25);
  transition: border-radius .4s ease;
}
.site-header.is-scrolled .nav { border-radius: 999px 0 0 999px; }
.nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; border-radius: 2px;
  background: var(--green-400);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.header-cta {
  height: 50px;
  transition: background-color .4s ease, color .4s ease, box-shadow .4s ease, border-radius .4s ease;
}
.site-header.is-scrolled .header-cta {
  background: var(--green-400);
  color: var(--white);
  box-shadow: 0 10px 24px -12px rgba(60, 166, 74, .9);
  border-radius: 0 999px 999px 0;
}

/* ---------- Menu hamburger ---------- */
/* Bouton : pastille qui s'inverse (clair -> vert foncé) et icône qui pivote au changement d'état */
.menu-toggle {
  display: none;
  position: relative;
  z-index: 61;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--ink);
  cursor: pointer;
  transition:
    background-color .5s cubic-bezier(.22, .61, .36, 1),
    color .5s cubic-bezier(.22, .61, .36, 1),
    transform .5s cubic-bezier(.34, 1.56, .64, 1);
}
.menu-toggle:active { transform: scale(.92); }
.menu-toggle.is-active {
  background: var(--green-400);
  color: var(--green-950);
}
/* Les deux icônes sont superposées : l'une sort en tournant pendant que l'autre entre */
.menu-toggle-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
}
.menu-toggle-icon i {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  line-height: 1;
  transition:
    opacity .35s ease,
    transform .55s cubic-bezier(.34, 1.4, .64, 1);
}
.menu-toggle-icon .fa-xmark { opacity: 0; transform: rotate(-90deg) scale(.5); }
.menu-toggle.is-active .fa-bars { opacity: 0; transform: rotate(90deg) scale(.5); }
.menu-toggle.is-active .fa-xmark { opacity: 1; transform: none; }

/* Overlay plein écran sombre : révélation depuis le centre, rapide au départ puis très ralentie */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  flex-direction: column;
  background: var(--green-950);
  color: var(--white);
  visibility: hidden;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path .55s cubic-bezier(.55, 0, .9, .45), visibility .55s;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-nav.is-open {
  visibility: visible;
  clip-path: circle(150% at 50% 50%);
  transition: clip-path 1.35s cubic-bezier(.05, .88, .1, 1), visibility 1.35s;
}
/* Halo vert diffus qui respire doucement en fond */
.mobile-nav-bg {
  position: absolute;
  top: -22%;
  right: -30%;
  width: 90vw;
  height: 90vw;
  max-width: 680px;
  max-height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-400) 0%, rgba(60, 166, 74, 0) 70%);
  opacity: 0;
  transform: scale(.6);
  transition: opacity 1.2s ease .2s, transform 1.6s cubic-bezier(.22, .61, .36, 1) .1s;
  pointer-events: none;
}
.mobile-nav.is-open .mobile-nav-bg { opacity: .45; transform: none; }

.mobile-nav-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
  padding: 20px 24px 36px;
}
.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.mobile-nav-logo {
  display: inline-flex;
  color: var(--white);
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity .5s ease .35s, transform .7s cubic-bezier(.22, .61, .36, 1) .35s;
}
.mobile-nav.is-open .mobile-nav-logo { opacity: 1; transform: none; }
.mobile-nav-logo img { width: auto; height: 46px; }

.mobile-nav nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.mobile-nav nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 4px;
  font-family: var(--font-display);
  font-size: clamp(34px, 10vw, 52px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  /* Chaque lien monte en place avec un léger décalage : c'est ce qui donne la « latence » */
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .5s ease,
    transform .8s cubic-bezier(.16, .84, .24, 1),
    color .3s ease;
}
.mobile-nav.is-open nav a { opacity: 1; transform: none; }
/* Cascade : le premier lien démarre à 0.32s, chacun suit 90ms plus tard */
.mobile-nav.is-open nav a:nth-child(1) { transition-delay: .32s; }
.mobile-nav.is-open nav a:nth-child(2) { transition-delay: .41s; }
.mobile-nav.is-open nav a:nth-child(3) { transition-delay: .50s; }
.mobile-nav.is-open nav a:nth-child(4) { transition-delay: .59s; }
.mobile-nav.is-open nav a:nth-child(5) { transition-delay: .68s; }
.mobile-nav.is-open nav a:nth-child(6) { transition-delay: .77s; }
.mobile-nav nav a:active { color: var(--green-400); }

.mobile-nav-index {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--green-400);
  align-self: flex-start;
  padding-top: 6px;
}
.mobile-nav-label { flex: 1; }
.mobile-nav nav a .fa-arrow-right {
  font-size: 18px;
  color: var(--green-400);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .3s ease, transform .4s cubic-bezier(.22, .61, .36, 1);
}
.mobile-nav nav a:hover .fa-arrow-right,
.mobile-nav nav a:active .fa-arrow-right { opacity: 1; transform: none; }

.mobile-nav-foot {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease .86s, transform .8s cubic-bezier(.16, .84, .24, 1) .86s;
}
.mobile-nav.is-open .mobile-nav-foot { opacity: 1; transform: none; }
.mobile-nav-cta {
  height: 64px;
  font-size: 18px;
  margin-top: 16px;
}
.mobile-nav-tagline {
  margin-top: 16px;
  font-family: var(--font-script);
  font-size: 22px;
  text-align: center;
  color: rgba(255, 255, 255, .65);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 2;
  background: var(--white);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 466px;
  align-items: start;
  column-gap: 40px;
  padding-top: 200px;
}
.hero h1 {
  font-size: 84px;
  line-height: 1.06;
  letter-spacing: .035em;
  color: var(--ink);
  margin-bottom: 42px;
}
.hero h1 .accent { color: var(--red-600); }
.hero p {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 86px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 20px; }
.hero-availability {
  margin-top: 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ink-soft);
}
.hero-visual {
  width: 466px;
  height: 466px;
  margin-bottom: -14px;
  border-radius: 50%;
  background: var(--gray-200);
  overflow: hidden;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Bandeau de transition Accueil -> Réalisations ---------- */
/* Un seul bandeau en dégradé (vert à gauche, noir au centre, rouge à droite), */
/* avec un fondu au noir en dessous pour se raccorder à la section suivante. */
.section-divider {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: var(--white);
}
.section-divider-wave {
  display: block;
  width: 100%;
  height: 400px;
}

/* Bandeau de transition Réalisations -> Services : vague noire sur fond blanc */
.section-divider--dark .section-divider-wave { height: 180px; }

/* Bandeau de transition Services -> À propos : nœud papillon rouge/vert */
.section-divider--about .section-divider-wave {
  height: 360px;
}


/* ---------- Réalisations ---------- */
.realisations {
  position: relative;
  background: var(--black);
  color: var(--white);
}
.realisations .section-head { position: relative; }
.realisations h2 { margin-top: 13px; }
.realisations-pin-spacer { position: relative; }
.realisations-pin-sticky {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 80px 0 48px;
}
@media (min-width: 1025px) {
  .realisations-pin-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 40px 0;
  }
  .realisations-carousel { overflow: visible; }
  .realisations-carousel .carousel-track {
    margin-inline: 0;
    will-change: transform;
  }
}
@media (max-width: 1024px) {
  .realisations-pin-spacer { height: auto !important; }
  .realisations-pin-sticky { position: static; height: auto; overflow: visible; }
  .realisations-carousel .carousel-track { transform: none !important; }
}

.carousel {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel-track {
  display: flex;
  width: max-content;
  margin-inline: auto;
  padding-inline: 8px;
}
.carousel-track > * { flex: 0 0 auto; scroll-snap-align: center; }

.realisations-carousel { margin-top: 75px; }
.realisations-carousel .carousel-track {
  gap: 56px;
  padding-left: var(--pad);
}
.realisations-progress {
  margin: 44px var(--pad) 0;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .18);
  overflow: hidden;
}
.realisations-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: var(--white);
  transition: width .12s linear;
}
.real-card {
  width: 292px;
  height: 313px;
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
}
.real-card img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Services ---------- */
.services {
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: 90px 0 90px;
}
/* Zone de "pin" : le scroll reste bloqué sur la section pendant qu'on fait défiler les cartes,
   puis se libère normalement une fois la dernière carte atteinte (et inversement en remontant). */
.services-pin-spacer { position: relative; }
.services-pin-sticky { position: relative; }
@media (min-width: 1025px) {
  .services-pin-spacer { height: 320vh; }
  .services-pin-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
}
.services-inner { position: relative; z-index: 2; max-width: 620px; margin-left: var(--pad); margin-right: auto; }
.services h2 { color: var(--ink); margin: 16px 0 28px; }
.services-text > p:not(.signature) { max-width: 560px; font-size: 15px; line-height: 1.7; color: var(--ink-soft); }
.signature {
  display: inline-block;
  margin-top: 92px;
  transform: rotate(-6deg);
  transform-origin: left center;
}
.signature-img { display: block; width: min(100%, 350px); height: auto; }

/* Cartes en éventail, façon jeu de cartes : ancrées sur le bord droit de l'écran, */
/* la dernière carte dépasse volontairement et est rognée par le bord de la fenêtre. */
.services-cards {
  position: absolute;
  top: calc(50% + 60px);
  right: -40px;
  width: 780px;
  height: 620px;
  transform: translateY(-50%);
  z-index: 2;
}
.service-card {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  width: 300px;
  min-height: 480px;
  padding: 32px 30px 28px;
  border-radius: 26px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 30px 55px -26px rgba(0, 0, 0, .55);
  transform-origin: 25% 100%;
  /* La transition combine easing rapide->lent : chaque carte "s'installe" avec de la latence */
  transition: transform .6s cubic-bezier(.16, .84, .24, 1), filter .5s ease, box-shadow .5s ease;
}
/* Dégradé plus clair à gauche (01), de plus en plus sombre vers la droite (07) */
.service-card.card-1 {
  left: 0; top: 90px;
  background: linear-gradient(160deg, #63c96d 0%, #3ca64a 100%);
  transform: rotate(-20deg);
  z-index: 1;
}
.service-card.card-2 {
  left: 110px; top: 30px;
  background: linear-gradient(160deg, #3f9e4c 0%, #2a7d38 100%);
  transform: rotate(-10deg);
  z-index: 2;
}
.service-card.card-3 {
  left: 220px; top: 6px;
  background: linear-gradient(160deg, #23682f 0%, #184a22 100%);
  transform: rotate(0deg);
  z-index: 3;
}
.service-card.card-4 {
  left: 330px; top: 30px;
  background: linear-gradient(160deg, #17451f 0%, #102e17 100%);
  transform: rotate(10deg);
  z-index: 4;
}
.service-card.card-5 {
  left: 440px; top: 90px;
  background: linear-gradient(160deg, #0f2c1a 0%, #0c1f15 100%);
  transform: rotate(20deg);
  z-index: 5;
}
/* Carte active (mise en avant au scroll) : se redresse, avance vers l'intérieur de l'écran et se détache */
.service-card.is-active {
  transform: translate(-70px, -24px) rotate(0deg) scale(1.08);
  filter: blur(0);
  box-shadow: 0 42px 72px -24px rgba(0, 0, 0, .6);
  z-index: 20;
}
/* Les cartes non actives se retirent légèrement en retrait (flou léger + échelle réduite) */
.services-cards.has-active .service-card:not(.is-active) {
  filter: blur(1.5px);
  transform: scale(.95);
}
.services-cards.has-active .service-card.card-1:not(.is-active) { transform: rotate(-20deg) scale(.95); }
.services-cards.has-active .service-card.card-2:not(.is-active) { transform: rotate(-10deg) scale(.95); }
.services-cards.has-active .service-card.card-3:not(.is-active) { transform: rotate(0deg) scale(.95); }
.services-cards.has-active .service-card.card-4:not(.is-active) { transform: rotate(10deg) scale(.95); }
.services-cards.has-active .service-card.card-5:not(.is-active) { transform: rotate(20deg) scale(.95); }

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .18);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  color: rgba(255, 255, 255, .85);
}
.service-icon { display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.service-icon svg,
.service-icon img { width: 68px; height: 68px; object-fit: contain; filter: brightness(0) invert(1); }
.service-text { flex: 1; }
.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 13px;
}
.service-card p {
  font-size: 13.5px;
  line-height: 1.6;
  text-align: left;
  color: rgba(255, 255, 255, .78);
}
.service-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  width: 42px;
  height: 42px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  font-size: 16px;
  color: var(--white);
  transition: background-color .3s ease, border-color .3s ease;
}
.service-card.is-active .service-arrow {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .85);
}
.services-swipe-hint { display: none; }

/* ---------- À propos ---------- */
.about {
  position: relative;
  background: var(--white);
  color: var(--ink);
  padding: 140px 0 120px;
}

.about-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 570px;
  column-gap: 60px;
  padding-left: calc(var(--pad) + 48px);
}
.about h2 { color: var(--red-500); }
.about-text > p {
  max-width: 560px;
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--ink-soft);
}
.about-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 56px;
}
.about-list li {
  position: relative;
  padding-left: 34px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
.about-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-400) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.about-text .btn { margin-top: 70px; }

.about-visual { padding-top: 0; margin-top: -33px; }
.map-circle {
  width: 340px;
  height: 340px;
  margin-left: 14px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 8px rgba(0, 0, 0, .06), 0 40px 60px -30px rgba(0, 0, 0, .5);
}
.map-circle img { width: 100%; height: 100%; object-fit: cover; }
.about-infos {
  display: grid;
  gap: 24px;
  margin-top: 57px;
}
.about-infos li { display: flex; align-items: flex-start; gap: 14px; }
.about-infos svg { flex: 0 0 22px; width: 22px; height: 22px; margin-top: 2px; color: var(--green-400); }
.about-infos strong { display: block; font-size: 14px; font-weight: 600; line-height: 1.4; color: var(--ink); }
.about-infos span { display: block; font-size: 13px; line-height: 1.5; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  color: var(--white);
  padding: calc(min(14vw, 200px) + 40px) 0 120px;
}
.contact-background {
  position: absolute;
  inset: 0 0 -280px 0;
  pointer-events: none;
  filter: drop-shadow(0 -14px 16px rgba(0, 0, 0, .55));
}
.contact-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green-950) url('../img/background-contact.png') center / cover no-repeat;
  clip-path: polygon(0 0, 100% min(14vw, 200px), 100% 100%, 0 100%);
}
.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 522px minmax(0, 1fr);
  align-items: center;
  padding-inline: 70px;
}
.contact-head { grid-column: 1 / -1; margin-bottom: 28px; }
.contact h2 { margin-top: 0; }
.contact-intro {
  max-width: 520px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .7);
}

.quote-form-wrap {
  padding: 28px 24px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, #22593a 0%, var(--green-700) 60%, #17422a 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .8);
}
.quote-form {
  display: grid;
  gap: 22px;
}
.quote-form-wrap .form-choice { margin-bottom: 22px; }
.quote-form-wrap h3 { font-size: 38px; line-height: 1.1; margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  height: 50px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(7, 20, 13, .55);
  color: var(--white);
  font-size: 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.quote-form textarea {
  height: 80px;
  padding: 14px 18px;
  resize: vertical;
  line-height: 1.5;
}
.quote-form ::placeholder { color: rgba(255, 255, 255, .55); }
.quote-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px;
}
.quote-form select:invalid { color: rgba(255, 255, 255, .55); }
.quote-form select option { color: var(--ink); background: var(--white); }
.quote-form :is(input, select, textarea):focus {
  border-color: var(--green-400);
  box-shadow: 0 0 0 3px rgba(60, 166, 74, .25);
}
.quote-form .btn-block { height: 52px; box-shadow: none; }
.form-status { min-height: 0; margin-top: -20px; font-size: 14px; color: #a8e6ad; }
.form-status:empty { display: none; }

.form-choice {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.choice-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}
.choice {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: rgba(255, 255, 255, .9);
  cursor: pointer;
}
.choice input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--green-400);
}
.quote-form[hidden] { display: none; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, .75);
  cursor: pointer;
}
.form-checkbox input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--green-400);
  flex-shrink: 0;
}
.form-checkbox a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-checkbox a:hover { color: var(--green-400); }
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

.contact-visual {
  justify-self: end;
  align-self: center;
  width: auto;
  margin-right: -410px;
  filter: drop-shadow(0 40px 40px rgba(0, 0, 0, .45));
  pointer-events: none;
}
.contact-visual img { width: auto; height: min(80vh, 58vw); }

/* ---------- Avis ---------- */
.reviews {
  --reviews-red: #890619;
  position: relative;
  isolation: isolate;
  margin-top: 0;
  padding-top: 0;
  background: transparent;
  color: var(--white);
}
.reviews::before {
  content: "";
  position: absolute;
  inset: 120px 0 0;
  z-index: -1;
  background: linear-gradient(#650410 56px, var(--reviews-red) 56px);
  box-shadow: 0 -18px 32px rgba(0, 0, 0, .55);
  clip-path: inset(-80px 0 0 0);
}
.reviews-head {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  max-width: none;
  padding: 70px 70px 0;
}
.reviews-head::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: -30px;
  left: 0;
  width: max(56%, 590px);
  border-radius: 100px 100px 0 0;
  background: var(--reviews-red);
  box-shadow: 0 -18px 32px rgba(0, 0, 0, .55);
  clip-path: inset(-80px -80px 0 -80px);
}
.reviews-title { min-width: 0; }
.reviews-title .label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #000;
}
.reviews-title h2.h2-lg { font-size: clamp(40px, 4.7vw, 64px); line-height: 1; }
.carousel-nav { display: flex; gap: 12px; margin-bottom: -55px; }
.nav-btn {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: #343936;
  color: var(--white);
  transition: background-color .2s ease, color .2s ease;
}
.nav-btn svg { width: 22px; height: 22px; }
.nav-btn:hover { background: var(--white); color: var(--red-900); }

.reviews-carousel { margin-top: 80px; padding-block: 28px; }
.reviews-carousel .carousel-track { gap: 32px; align-items: center; padding-inline: 28px; }
.review-card {
  display: flex;
  flex-direction: column;
  width: clamp(240px, 20vw, 300px);
  padding: 24px;
  border-radius: 22px;
  background: #d9d9d9;
  color: var(--ink);
  box-shadow: 0 25px 40px -30px rgba(0, 0, 0, .5);
}
.review-card:nth-child(odd) { transform: rotate(3deg); }
.review-card:nth-child(even) { transform: rotate(-2.5deg); }
.review-card:nth-child(3n + 1) { transform: rotate(1deg); }
.stars {
  width: 100px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23343936' d='M10 1.5l2.6 5.4 5.9.8-4.3 4.1 1.1 5.9L10 14.9l-5.3 2.8 1.1-5.9L1.5 7.7l5.9-.8z'/%3E%3C/svg%3E") repeat-x left center / 20px 18px;
}
.review-card p {
  order: 1;
  flex: 1;
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
}
.review-card footer { order: 2; display: flex; align-items: center; }
.review-card .stars { order: 3; margin-top: 4px; }
.review-card .avatar,
.review-card footer span:not(.avatar) { display: none; }
.avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}
.review-card footer strong { display: block; font-size: 12px; font-weight: 400; line-height: 1.3; }

.reviews-wave {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(200px, 26vw, 360px);
  margin-top: 0;
  overflow: hidden;
}


/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-950);
  color: var(--white);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px 150px 150px;
  column-gap: 20px;
  padding-inline: 14px;
}
.footer-brand .logo { color: var(--white); }
.footer-brand p {
  max-width: 300px;
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .65);
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col li {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .7);
}
.footer-col li + li { margin-top: 8px; }
.footer-col a:hover { color: var(--green-400); }
.social-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  color: var(--white);
  font-size: 17px;
  transition: background .25s, color .25s, border-color .25s;
}
.social-link:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--green-950);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 44px;
  padding: 18px 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
}
.footer-bottom a { color: var(--white); font-weight: 700; }
.footer-bottom a + a { margin-left: 20px; }
.footer-bottom a:hover { color: var(--white); }
.footer-legal { text-align: center; flex: 1; }

/* ---------- Modales légales ---------- */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  flex-direction: column;
  background: var(--green-950);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility 0s linear .3s;
}
.legal-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease;
}
.legal-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px var(--pad);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.legal-modal-head h2 { font-size: 22px; line-height: 1.2; }
.legal-modal-actions { display: flex; align-items: center; gap: 10px; }
.legal-modal-print, .legal-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: background-color .3s ease, border-color .3s ease;
}
.legal-modal-print:hover, .legal-modal-close:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .4); }
.legal-modal-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 40px var(--pad) 80px;
  max-width: 760px;
  margin-inline: auto;
  width: 100%;
}
.legal-modal-body h3 { font-size: 16px; margin: 28px 0 10px; }
.legal-modal-body h3:first-child { margin-top: 0; }
.legal-modal-body p { font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, .75); }
.legal-modal-body a { color: var(--white); font-weight: 600; }
.legal-modal-body ul { list-style: disc; padding-left: 20px; margin: 12px 0; }
.legal-modal-body .legal-update { margin-top: 40px; font-size: 12px; color: rgba(255, 255, 255, .5); }

@media print {
  *, *::before, *::after { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  body, html { overflow: visible !important; }
  body > * { display: none !important; }
  .legal-modal.is-open { display: flex !important; position: static !important; width: 100%; height: auto; min-height: 100vh; background: var(--white); color: var(--ink); }
  .legal-modal.is-open .legal-modal-head { display: none !important; }
  .legal-modal.is-open .legal-modal-body { overflow: visible !important; padding: 0 24px 24px; max-width: none; color: var(--ink); }
  .legal-modal.is-open .legal-modal-body h3 { color: var(--ink); border-bottom: 1px solid #ccc; padding-bottom: 6px; margin-top: 18px; }
  .legal-modal.is-open .legal-modal-body p,
  .legal-modal.is-open .legal-modal-body li { color: var(--ink); }
  .legal-modal.is-open .legal-modal-body a { color: var(--ink); text-decoration: underline; }
  .legal-modal.is-open .legal-modal-body .legal-update { color: #666; margin-top: 30px; }
}
.legal-modal-body li { font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, .75); margin-bottom: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  :root { --pad: 40px; }
  .hero h1 { font-size: 72px; }
  .hero-inner { grid-template-columns: 1fr 400px; }
  .hero-visual { width: 400px; height: 400px; }
  .services-cards { transform: translateY(-50%) scale(.82); transform-origin: 100% 50%; }
  .about-inner { grid-template-columns: minmax(0, 1fr) 460px; padding-left: var(--pad); }
  .map-circle { width: 300px; height: 300px; margin-left: 0; }
  .contact-inner, .reviews-head { padding-inline: var(--pad); }
  .contact-inner { grid-template-columns: 480px minmax(0, 1fr); }
  .contact-visual { margin-right: -380px; }
}

@media (max-width: 1024px) {
  h2 { font-size: 44px; }
  h2.h2-lg { font-size: 50px; }
  .nav { gap: 24px; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 64px; }
  .hero h1 { font-size: 64px; margin-bottom: 28px; }
  .hero p { margin-bottom: 40px; }
  .hero-visual { width: 320px; height: 320px; margin: 48px auto -14px; }
  .section-divider-wave { height: 280px; }
  .section-divider--dark .section-divider-wave { height: 140px; }
  .services { padding: 60px 0 60px; }
  .services-inner { max-width: none; margin-left: 0; }
  .services-cards {
    position: static; right: auto; top: auto; width: auto; height: auto;
    transform: none;
    display: flex;
    direction: ltr;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 20px;
    padding: 20px var(--pad) 60px var(--pad);
    margin-bottom: -40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--pad);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .services-cards::-webkit-scrollbar { display: none; }
  .service-card,
  .service-card.card-1, .service-card.card-2, .service-card.card-3, .service-card.card-4,
  .service-card.card-5 {
    position: static;
    flex: 0 0 300px;
    width: 300px;
    min-height: 440px;
    transform: none !important;
    scroll-snap-align: start;
    filter: none !important;
    box-shadow: 0 20px 30px -18px rgba(0, 0, 0, .45) !important;
  }
  .services-swipe-hint {
    display: block;
    margin-top: -20px;
    padding-left: var(--pad);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--ink-soft);
  }
  .about { padding: 110px 0 90px; }
  .section-divider--about .section-divider-wave { height: 220px; }
  .about-inner { grid-template-columns: 1fr; row-gap: 56px; }
  .about-visual {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .map-circle { margin-left: 0; }
  .about-infos { width: 100%; max-width: 480px; margin-top: 44px; gap: 20px; }
  .contact { padding: 160px 0 120px; }
  .contact-inner { grid-template-columns: 1fr; row-gap: 40px; }
  .quote-form-wrap { max-width: 560px; }
  .contact-visual { display: none; }
  .carousel-nav { margin-bottom: 0; }
}

@media (max-width: 720px) {
  :root { --pad: 20px; }
  .form-choice { flex-direction: column; align-items: flex-start; gap: 12px; }
  .form-choice .choice-label { width: 100%; }
  .form-choice .choice { width: 100%; }
  h2 { font-size: 36px; }
  h2.h2-lg { font-size: 40px; }
  .header-inner { height: 76px; }
  .nav-group { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .logo img { width: auto; height: 44px; }
  .hero-inner { padding-top: 130px; padding-bottom: 24px; }
  .hero-text { text-align: center; }
  .hero h1 { font-size: 38px; line-height: 1.08; margin-bottom: 20px; }
  .hero p { font-size: 15px; margin-bottom: 32px; }
  .hero-actions { justify-content: center; }
  .hero-availability { text-align: center; font-size: 11px; }
  .hero-visual { order: -1; width: 240px; height: 240px; margin: 0 auto 28px; }
  .btn-lg { height: 54px; padding: 0 28px; font-size: 14px; }
  .realisations { padding-top: 56px; }
  .section-divider-wave { height: 180px; }
  .section-divider--dark .section-divider-wave { height: 100px; }
  .realisations-carousel .carousel-track { gap: 20px; }
  .real-card { width: 220px; height: 236px; }
  .service-card,
  .service-card.card-1, .service-card.card-2, .service-card.card-3, .service-card.card-4,
  .service-card.card-5 {
    flex-basis: 260px;
    width: 260px;
    min-height: 400px;
  }
  .signature { font-size: 40px; margin-top: 48px; }
  .about { padding: 80px 0 70px; }
  .section-divider--about .section-divider-wave { height: 150px; }
  .about-inner { row-gap: 48px; }
  .about h2 { font-size: 30px; line-height: 1.15; }
  .about h2 br { display: none; }
  .about-text > p { margin-top: 12px; font-size: 14px; }
  .about-list { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
  .about-text .btn { margin-top: 40px; width: 100%; justify-content: center; }
  .map-circle { width: 240px; height: 240px; margin: 0 auto; }
  .about-infos { gap: 18px; margin-top: 36px; }
  .contact { padding: 120px 0 90px; }
  .quote-form-wrap { padding: 28px 20px 24px; }
  .quote-form { gap: 20px; }
  .quote-form-wrap h3 { font-size: 34px; }
  .br-desktop { display: none; }
  .form-row { grid-template-columns: 1fr; gap: 20px; }
  .reviews { padding-top: 32px; }
  .reviews-head { flex-direction: column; align-items: flex-start; gap: 24px; padding-top: 32px; }
  .reviews-head::before { width: 100%; border-radius: 56px 56px 0 0; }
  .reviews-title h2.h2-lg { font-size: clamp(30px, 7.5vw, 40px); }
  .reviews-head .carousel-nav { align-self: flex-end; margin-bottom: 0; }
  .reviews-carousel { margin-top: 12px; }
  .review-card { width: min(280px, 78vw); }
  .reviews-wave { height: 180px; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 32px; padding-inline: 0; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    margin-top: 36px;
    padding: 0;
    border-top: 0;
  }
  .footer-legal {
    order: -1;
    flex: none;
    width: 100%;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { padding-inline: 0; }
}
