/* ==========================================================================
   GLH HYDRAULIQUE — Feuille de style principale
   Couleurs : Rouge & Blanc (charte du logo) + accents métal / noir
   Police : Montserrat
   ========================================================================== */

/* ---------- Variables ---------- */
:root {
  --rouge:        #D81F26;
  --rouge-fonce:  #A8141A;
  --rouge-clair:  #ef3a41;
  --noir:         #16181c;
  --gris-fonce:   #2a2d33;
  --gris:         #6b7280;
  --gris-clair:   #f4f5f7;
  --gris-bord:    #e3e5e9;
  --metal:        #c9cdd2;
  --metal-fonce:  #8a8e94;
  --blanc:        #ffffff;

  --ombre-sm: 0 2px 8px rgba(20, 22, 28, .08);
  --ombre-md: 0 10px 30px rgba(20, 22, 28, .12);
  --ombre-lg: 0 24px 60px rgba(20, 22, 28, .18);

  --rayon: 14px;
  --rayon-sm: 8px;
  --max: 1200px;
  --transition: .35s cubic-bezier(.16, 1, .3, 1);

  --police: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--police);
  color: var(--noir);
  background: var(--blanc);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { line-height: 1.18; font-weight: 800; letter-spacing: -.01em; }

/* ---------- Utilitaires ---------- */
.conteneur { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.section--gris { background: var(--gris-clair); }
.section--noir { background: var(--noir); color: var(--blanc); }

.texte-centre { text-align: center; }

.surtitre {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 16px;
}
.section--noir .surtitre { color: var(--rouge-clair); }

.titre-section {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 20px;
}

.sous-titre-section {
  max-width: 620px;
  color: var(--gris);
  font-size: 1.05rem;
}
.texte-centre .sous-titre-section { margin: 0 auto; }
.section--noir .sous-titre-section { color: rgba(255,255,255,.7); }

.barre {
  width: 64px; height: 4px;
  background: var(--rouge);
  border-radius: 4px;
  margin: 0 0 28px;
}
.texte-centre .barre { margin: 0 auto 28px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  font-family: var(--police);
  font-size: .95rem; font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn--rouge {
  background: var(--rouge);
  color: var(--blanc);
  box-shadow: 0 10px 24px rgba(216, 31, 38, .32);
}
.btn--rouge:hover {
  background: var(--rouge-fonce);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(216, 31, 38, .42);
}

.btn--blanc {
  background: var(--blanc);
  color: var(--noir);
}
.btn--blanc:hover { transform: translateY(-3px); box-shadow: var(--ombre-md); }

.btn--ligne {
  background: transparent;
  color: var(--noir);
  border-color: var(--gris-bord);
}
.btn--ligne:hover { border-color: var(--rouge); color: var(--rouge); }

.section--noir .btn--ligne { color: var(--blanc); border-color: rgba(255,255,255,.25); }
.section--noir .btn--ligne:hover { border-color: var(--rouge-clair); color: var(--rouge-clair); }

.cta .btn--ligne { color: var(--blanc); border-color: rgba(255,255,255,.45); }
.cta .btn--ligne:hover { color: var(--blanc); border-color: var(--blanc); background: rgba(255,255,255,.12); }

/* ==========================================================================
   EN-TÊTE / NAVIGATION
   ========================================================================== */
.barre-info {
  background: var(--noir);
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  font-weight: 500;
}
.barre-info .conteneur {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding-top: 9px; padding-bottom: 9px;
}
.barre-info a { transition: color .25s; }
.barre-info a:hover { color: var(--rouge-clair); }
.barre-info__gauche { display: flex; gap: 24px; flex-wrap: wrap; }
.barre-info__item { display: inline-flex; align-items: center; gap: 7px; }
.barre-info__item svg { width: 14px; height: 14px; color: var(--rouge-clair); }
.barre-info__droite { display: flex; gap: 12px; }

.entete {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gris-bord);
  transition: box-shadow .3s;
}
.entete.collee { box-shadow: var(--ombre-sm); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; padding-bottom: 12px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo img { height: 58px; width: auto; transition: transform .3s; }
.nav__logo:hover img { transform: scale(1.04); }

.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav__lien {
  position: relative;
  padding: 10px 18px;
  font-weight: 600; font-size: .95rem;
  border-radius: 8px;
  transition: color .25s;
}
.nav__lien::after {
  content: ''; position: absolute; bottom: 4px; left: 18px; right: 18px;
  height: 2px; background: var(--rouge);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.nav__lien:hover { color: var(--rouge); }
.nav__lien:hover::after { transform: scaleX(1); }
.nav__lien.actif { color: var(--rouge); }
.nav__lien.actif::after { transform: scaleX(1); }

.nav__cta { margin-left: 12px; padding: 12px 24px; }

.burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.burger span {
  width: 26px; height: 3px; background: var(--noir);
  border-radius: 3px; transition: var(--transition);
}
.burger.ouvert span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.ouvert span:nth-child(2) { opacity: 0; }
.burger.ouvert span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   HÉRO
   ========================================================================== */
.hero {
  position: relative;
  padding: 110px 0 120px;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(216,31,38,.10), transparent 60%),
    linear-gradient(180deg, #fff 0%, #fafbfc 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20,22,28,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,22,28,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(900px 500px at 70% 20%, #000, transparent 75%);
  pointer-events: none;
}
.hero .conteneur {
  position: relative;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--blanc); border: 1px solid var(--gris-bord);
  padding: 8px 16px; border-radius: 50px;
  font-size: .82rem; font-weight: 600; color: var(--gris-fonce);
  box-shadow: var(--ombre-sm); margin-bottom: 26px;
}
.hero__badge .point {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rouge); box-shadow: 0 0 0 4px rgba(216,31,38,.18);
}
.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.8rem);
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--rouge); }
.hero__texte {
  font-size: 1.15rem; color: var(--gris);
  max-width: 540px; margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero__stat strong {
  display: block; font-size: 2rem; font-weight: 800; color: var(--noir);
}
.hero__stat span { font-size: .85rem; color: var(--gris); font-weight: 500; }

.hero__visuel { position: relative; display: flex; justify-content: center; }
.hero__carte-logo {
  position: relative;
  width: 100%; max-width: 420px;
  aspect-ratio: 1;
  background: linear-gradient(160deg, #fff, #f1f2f4);
  border: 1px solid var(--gris-bord);
  border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--ombre-lg);
}
.hero__carte-logo::after {
  content: ''; position: absolute; inset: 0; border-radius: 28px;
  background: radial-gradient(circle at 30% 25%, rgba(216,31,38,.07), transparent 55%);
}
.hero__carte-logo img { width: 78%; position: relative; z-index: 1; }
.hero__pastille {
  position: absolute; z-index: 2;
  background: var(--blanc); border-radius: 14px;
  box-shadow: var(--ombre-md);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  font-size: .85rem; font-weight: 600;
}
.hero__pastille svg { width: 26px; height: 26px; color: var(--rouge); flex: none; }
.hero__pastille small { display: block; color: var(--gris); font-weight: 500; font-size: .75rem; }
.hero__pastille--1 { top: 8%; left: -6%; animation: flotte 5s ease-in-out infinite; }
.hero__pastille--2 { bottom: 10%; right: -5%; animation: flotte 5s ease-in-out infinite .8s; }

@keyframes flotte {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ==========================================================================
   BANDEAU LOGOS / CONFIANCE
   ========================================================================== */
.bandeau-confiance {
  background: var(--noir); color: rgba(255,255,255,.85);
  padding: 22px 0;
}
.bandeau-confiance .conteneur {
  display: flex; align-items: center; justify-content: center;
  gap: 40px 56px; flex-wrap: wrap; text-align: center;
}
.bandeau-confiance__item {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: .95rem;
}
.bandeau-confiance__item svg { width: 24px; height: 24px; color: var(--rouge-clair); }

/* ==========================================================================
   CARTES SERVICES
   ========================================================================== */
.services-grille {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.carte-service {
  position: relative;
  background: var(--blanc);
  border: 1px solid var(--gris-bord);
  border-radius: var(--rayon);
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.carte-service:hover {
  transform: translateY(-8px);
  box-shadow: var(--ombre-lg);
  border-color: transparent;
}
.carte-service__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: radial-gradient(120% 120% at 50% 28%, #ffffff 0%, #eceef1 65%, #e0e3e7 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.carte-service__media::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 82% 12%, rgba(216,31,38,.10), transparent 45%);
}
.carte-service__media img {
  max-width: 84%; max-height: 80%; width: auto; height: auto;
  object-fit: contain; position: relative; z-index: 1;
  filter: drop-shadow(0 16px 22px rgba(20,22,28,.24));
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.carte-service:hover .carte-service__media img { transform: scale(1.05) rotate(-1deg); }
.carte-service__tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--rouge); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  padding: 6px 14px; border-radius: 50px; text-transform: uppercase;
}
.carte-service__corps { padding: 30px 30px 34px; flex: 1; display: flex; flex-direction: column; }
.carte-service__corps h3 { font-size: 1.4rem; margin-bottom: 12px; }
.carte-service__corps p { color: var(--gris); margin-bottom: 20px; flex: 1; }
.carte-service__liste { margin-bottom: 26px; display: grid; gap: 10px; }
.carte-service__liste li {
  display: flex; align-items: center; gap: 10px;
  font-size: .92rem; font-weight: 500; color: var(--gris-fonce);
}
.carte-service__liste svg { width: 18px; height: 18px; color: var(--rouge); flex: none; }
.carte-service__lien {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--rouge); font-size: .92rem;
  align-self: flex-start;
}
.carte-service__lien svg { width: 18px; height: 18px; transition: transform .3s; }
.carte-service:hover .carte-service__lien svg { transform: translateX(5px); }

/* Variante minimaliste (page services) */
.service-bloc {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding: 60px 0;
}
.service-bloc:nth-child(even) .service-bloc__media { order: 2; }
.service-bloc__media {
  aspect-ratio: 4 / 3;
  background: radial-gradient(120% 120% at 50% 30%, #ffffff 0%, #eceef1 65%, #e0e3e7 100%);
  border: 1px solid var(--gris-bord);
  border-radius: var(--rayon);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: var(--ombre-md);
}
.service-bloc__media::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 82% 14%, rgba(216,31,38,.10), transparent 48%);
}
.service-bloc__media img {
  max-width: 86%; max-height: 82%; width: auto; height: auto;
  object-fit: contain; position: relative; z-index: 1;
  filter: drop-shadow(0 18px 26px rgba(20,22,28,.26));
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.service-bloc:hover .service-bloc__media img { transform: scale(1.04); }
.service-bloc__num {
  font-size: .82rem; font-weight: 800; letter-spacing: .18em;
  color: var(--rouge); text-transform: uppercase; margin-bottom: 14px; display: block;
}
.service-bloc h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: 18px; }
.service-bloc p { color: var(--gris); margin-bottom: 24px; font-size: 1.05rem; }
.service-bloc__tags { display: flex; flex-wrap: wrap; gap: 10px; }
.service-bloc__tags span {
  background: var(--gris-clair); border: 1px solid var(--gris-bord);
  padding: 9px 18px; border-radius: 50px; font-size: .85rem; font-weight: 600;
  color: var(--gris-fonce);
}

/* ==========================================================================
   AVANTAGES / FEATURES
   ========================================================================== */
.avantages-grille {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.avantage {
  background: var(--blanc); border: 1px solid var(--gris-bord);
  border-radius: var(--rayon); padding: 34px 28px;
  transition: var(--transition);
}
.avantage:hover { transform: translateY(-6px); box-shadow: var(--ombre-md); border-color: transparent; }
.avantage__icone {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(216,31,38,.12), rgba(216,31,38,.04));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.avantage__icone svg { width: 28px; height: 28px; color: var(--rouge); }
.avantage h3 { font-size: 1.12rem; margin-bottom: 10px; }
.avantage p { color: var(--gris); font-size: .94rem; }

/* ==========================================================================
   APPEL À L'ACTION (CTA)
   ========================================================================== */
.cta {
  position: relative;
  background: linear-gradient(135deg, var(--rouge) 0%, var(--rouge-fonce) 100%);
  border-radius: 24px;
  padding: 64px 56px;
  color: #fff;
  overflow: hidden;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta::after {
  content: ''; position: absolute; left: -40px; bottom: -80px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(0,0,0,.08);
}
.cta__texte { position: relative; z-index: 1; max-width: 560px; }
.cta__texte h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.cta__texte p { opacity: .92; font-size: 1.08rem; }
.cta__actions { position: relative; z-index: 1; display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   PAGE — BANNIÈRE INTÉRIEURE
   ========================================================================== */
.banniere {
  position: relative;
  background: linear-gradient(135deg, var(--noir) 0%, var(--gris-fonce) 100%);
  color: #fff; padding: 90px 0 80px; text-align: center; overflow: hidden;
}
.banniere::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(216,31,38,.25), transparent 60%),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
}
.banniere .conteneur { position: relative; z-index: 1; }
.banniere h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 16px; }
.banniere p { max-width: 600px; margin: 0 auto; opacity: .82; font-size: 1.1rem; }
.fil { display: flex; gap: 8px; justify-content: center; margin-top: 22px;
  font-size: .85rem; opacity: .7; font-weight: 500; }
.fil a:hover { color: var(--rouge-clair); }
.fil span { color: var(--rouge-clair); }

/* ==========================================================================
   QUI SOMMES-NOUS
   ========================================================================== */
.apropos-grille {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.apropos__visuel {
  position: relative; aspect-ratio: 1;
  background: linear-gradient(160deg, #fff, #eef0f2);
  border: 1px solid var(--gris-bord); border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--ombre-md);
}
.apropos__visuel img { width: 70%; }
.apropos__exp {
  position: absolute; bottom: -24px; right: -20px;
  background: var(--rouge); color: #fff;
  border-radius: 18px; padding: 22px 28px; text-align: center;
  box-shadow: var(--ombre-md);
}
.apropos__exp strong { display: block; font-size: 2.2rem; font-weight: 800; line-height: 1; }
.apropos__exp span { font-size: .82rem; font-weight: 600; opacity: .9; }
.apropos__texte h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 22px; }
.apropos__texte p { color: var(--gris); margin-bottom: 18px; }

.valeurs-grille {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.valeur {
  background: var(--blanc); border: 1px solid var(--gris-bord);
  border-radius: var(--rayon); padding: 34px 30px; text-align: center;
  transition: var(--transition);
}
.valeur:hover { transform: translateY(-6px); box-shadow: var(--ombre-md); border-color: transparent; }
.valeur__icone {
  width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rouge), var(--rouge-fonce));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 22px rgba(216,31,38,.32);
}
.valeur__icone svg { width: 30px; height: 30px; color: #fff; }
.valeur h3 { font-size: 1.2rem; margin-bottom: 12px; }
.valeur p { color: var(--gris); font-size: .95rem; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grille {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start;
}
.contact-infos { display: grid; gap: 18px; }
.contact-carte {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--blanc); border: 1px solid var(--gris-bord);
  border-radius: var(--rayon); padding: 24px 26px;
  transition: var(--transition);
}
.contact-carte:hover { box-shadow: var(--ombre-md); border-color: transparent; transform: translateY(-3px); }
.contact-carte__icone {
  width: 52px; height: 52px; border-radius: 13px; flex: none;
  background: linear-gradient(135deg, rgba(216,31,38,.12), rgba(216,31,38,.04));
  display: flex; align-items: center; justify-content: center;
}
.contact-carte__icone svg { width: 26px; height: 26px; color: var(--rouge); }
.contact-carte h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-carte p, .contact-carte a { color: var(--gris); font-size: .96rem; }
.contact-carte a:hover { color: var(--rouge); }

.horaires-tab { width: 100%; border-collapse: collapse; margin-top: 6px; }
.horaires-tab td { padding: 7px 0; font-size: .92rem; border-bottom: 1px dashed var(--gris-bord); }
.horaires-tab td:first-child { font-weight: 600; color: var(--gris-fonce); }
.horaires-tab td:last-child { text-align: right; color: var(--gris); }
.horaires-tab tr:last-child td { border-bottom: none; }
.horaires-tab .ferme { color: var(--rouge); font-weight: 600; }

.contact-form {
  background: var(--blanc); border: 1px solid var(--gris-bord);
  border-radius: var(--rayon); padding: 38px; box-shadow: var(--ombre-sm);
}
.contact-form h2 { font-size: 1.5rem; margin-bottom: 6px; }
.contact-form > p { color: var(--gris); margin-bottom: 26px; font-size: .96rem; }
.form-rangee { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-groupe { margin-bottom: 18px; }
.form-groupe label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 8px; }
.form-groupe input,
.form-groupe textarea,
.form-groupe select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--gris-bord); border-radius: var(--rayon-sm);
  font-family: var(--police); font-size: .95rem; color: var(--noir);
  transition: border-color .25s, box-shadow .25s; background: var(--blanc);
}
.form-groupe input:focus,
.form-groupe textarea:focus,
.form-groupe select:focus {
  outline: none; border-color: var(--rouge);
  box-shadow: 0 0 0 4px rgba(216,31,38,.10);
}
.form-groupe textarea { resize: vertical; min-height: 130px; }
.form-groupe input[readonly] {
  background: var(--gris-clair); color: var(--gris-fonce);
  cursor: default; font-weight: 600;
}
.form-groupe input[readonly]:focus { border-color: var(--gris-bord); box-shadow: none; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: .8rem; color: var(--gris); margin-top: 14px; text-align: center; }

.carte-map {
  margin-top: 56px; border-radius: var(--rayon); overflow: hidden;
  border: 1px solid var(--gris-bord); box-shadow: var(--ombre-sm);
  line-height: 0;
}
.carte-map iframe { width: 100%; height: 420px; border: 0; }

/* ==========================================================================
   PIED DE PAGE
   ========================================================================== */
.footer { background: var(--noir); color: rgba(255,255,255,.7); padding: 70px 0 0; }
.footer-grille {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px;
  padding-bottom: 50px;
}
.footer__logo { height: 64px; margin-bottom: 18px;
  background: #fff; padding: 8px 12px; border-radius: 12px; display: inline-block; }
.footer__logo img { height: 100%; }
.footer__desc { font-size: .92rem; line-height: 1.7; margin-bottom: 20px; max-width: 320px; }
.footer__reseaux { display: flex; gap: 12px; }
.footer__reseaux a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer__reseaux a:hover { background: var(--rouge); transform: translateY(-3px); }
.footer__reseaux svg { width: 18px; height: 18px; color: #fff; }

.footer h4 {
  color: #fff; font-size: 1rem; margin-bottom: 22px;
  position: relative; padding-bottom: 12px;
}
.footer h4::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 32px; height: 3px; background: var(--rouge); border-radius: 3px;
}
.footer__liens li { margin-bottom: 12px; }
.footer__liens a { font-size: .92rem; transition: color .25s, padding-left .25s; }
.footer__liens a:hover { color: var(--rouge-clair); padding-left: 6px; }

.footer__contact li {
  display: flex; gap: 12px; margin-bottom: 16px; font-size: .92rem; align-items: flex-start;
}
.footer__contact svg { width: 18px; height: 18px; color: var(--rouge-clair); flex: none; margin-top: 3px; }
.footer__contact a:hover { color: var(--rouge-clair); }

.footer__bas {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px 26px; flex-wrap: wrap;
  font-size: .85rem;
}
.footer__bas a:hover { color: var(--rouge-clair); }
.footer__legal { display: flex; gap: 8px 22px; flex-wrap: wrap; }
.footer__legal a { transition: color .25s; }
.footer__legal a:hover { color: var(--rouge-clair); }
.footer__credit a {
  color: #fff; font-weight: 700;
  border-bottom: 1px solid var(--rouge);
  padding-bottom: 1px; transition: color .25s;
}
.footer__credit a:hover { color: var(--rouge-clair); }

/* ==========================================================================
   ANIMATIONS À L'APPARITION
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .hero .conteneur { grid-template-columns: 1fr; gap: 48px; }
  .hero__visuel { order: -1; }
  .hero__carte-logo { max-width: 340px; }
  .services-grille { grid-template-columns: 1fr; }
  .avantages-grille { grid-template-columns: repeat(2, 1fr); }
  .apropos-grille { grid-template-columns: 1fr; gap: 40px; }
  .apropos__visuel { max-width: 420px; margin: 0 auto; }
  .valeurs-grille { grid-template-columns: 1fr; }
  .contact-grille { grid-template-columns: 1fr; }
  .footer-grille { grid-template-columns: 1fr 1fr; }
  .service-bloc { grid-template-columns: 1fr; gap: 30px; padding: 30px 0; }
  .service-bloc:nth-child(even) .service-bloc__media { order: 0; }
}

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .barre-info__gauche { gap: 14px; }
  .barre-info__droite { display: none; }
  .nav__menu {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(80vw, 320px);
    background: var(--blanc); box-shadow: var(--ombre-lg);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 90px 24px 40px; gap: 6px;
    transform: translateX(100%); transition: transform .4s cubic-bezier(.16,1,.3,1);
    z-index: 999;
  }
  .nav__menu.ouvert { transform: translateX(0); }
  .nav__lien { padding: 14px 16px; border-radius: 10px; }
  .nav__lien::after { display: none; }
  .nav__lien:hover, .nav__lien.actif { background: var(--gris-clair); }
  .nav__cta { margin: 14px 0 0; }
  .burger { display: flex; z-index: 1001; }
  .overlay-nav {
    position: fixed; inset: 0; background: rgba(0,0,0,.4);
    opacity: 0; visibility: hidden; transition: .3s; z-index: 998;
  }
  .overlay-nav.actif { opacity: 1; visibility: visible; }
  .hero__pastille { display: none; }
  .hero__stats { gap: 28px; }
  .cta { padding: 44px 28px; text-align: center; flex-direction: column; }
  .cta__actions { justify-content: center; }
  .form-rangee { grid-template-columns: 1fr; }
  .footer-grille { grid-template-columns: 1fr; gap: 32px; }
  .footer__bas { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
}

@media (max-width: 460px) {
  .conteneur { padding: 0 18px; }
  .avantages-grille { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   BANDEAU COOKIES (RGPD)
   ========================================================================== */
.cookies {
  position: fixed; z-index: 2000; left: 50%; bottom: 24px;
  transform: translateX(-50%) translateY(170%);
  width: min(940px, calc(100% - 32px));
  background: var(--blanc); border: 1px solid var(--gris-bord);
  border-radius: 18px; box-shadow: var(--ombre-lg);
  padding: 22px 26px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  transition: transform .55s cubic-bezier(.16,1,.3,1), opacity .4s;
  opacity: 0;
}
.cookies.visible { transform: translateX(-50%) translateY(0); opacity: 1; }
.cookies__icone {
  width: 48px; height: 48px; border-radius: 13px; flex: none;
  background: linear-gradient(135deg, rgba(216,31,38,.12), rgba(216,31,38,.04));
  display: flex; align-items: center; justify-content: center;
}
.cookies__icone svg { width: 25px; height: 25px; color: var(--rouge); }
.cookies__txt { flex: 1; min-width: 250px; font-size: .88rem; color: var(--gris); line-height: 1.55; }
.cookies__txt strong { color: var(--noir); display: block; margin-bottom: 3px; font-size: .98rem; }
.cookies__txt a { color: var(--rouge); font-weight: 600; text-decoration: underline; }
.cookies__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookies__actions .btn { padding: 12px 24px; font-size: .88rem; }
.btn--mini-ligne {
  background: transparent; border: 2px solid var(--gris-bord); color: var(--gris-fonce);
  border-radius: 50px;
}
.btn--mini-ligne:hover { border-color: var(--rouge); color: var(--rouge); transform: translateY(-2px); }

@media (max-width: 620px) {
  .cookies { bottom: 0; left: 0; transform: translateY(120%); width: 100%;
    border-radius: 18px 18px 0 0; padding: 20px; }
  .cookies.visible { transform: translateY(0); }
  .cookies__actions { width: 100%; }
  .cookies__actions .btn { flex: 1; justify-content: center; }
}

/* ==========================================================================
   CONSENTEMENT CARTE (Google Maps)
   ========================================================================== */
.map-placeholder { height: 420px; }
.map-consent {
  height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  gap: 14px; padding: 30px; line-height: normal;
  background: linear-gradient(140deg, #1d1f24, #34373e); color: #fff;
}
.map-consent svg { width: 44px; height: 44px; color: var(--rouge-clair); }
.map-consent p { max-width: 380px; opacity: .85; font-size: .92rem; }

/* ==========================================================================
   PAGES LÉGALES
   ========================================================================== */
.contenu-legal { max-width: 840px; margin: 0 auto; }
.contenu-legal .maj {
  display: inline-block; font-size: .82rem; color: var(--metal-fonce);
  margin-bottom: 34px; font-weight: 600;
}
.contenu-legal h2 {
  font-size: 1.4rem; margin: 40px 0 14px; color: var(--noir);
  padding-left: 16px; border-left: 4px solid var(--rouge);
}
.contenu-legal h3 { font-size: 1.08rem; margin: 26px 0 10px; color: var(--gris-fonce); }
.contenu-legal p, .contenu-legal li { color: var(--gris); margin-bottom: 12px; }
.contenu-legal ul { padding-left: 22px; list-style: disc; margin-bottom: 16px; }
.contenu-legal a { color: var(--rouge); text-decoration: underline; }
.contenu-legal a:hover { color: var(--rouge-fonce); }
.contenu-legal strong { color: var(--gris-fonce); }
.a-completer {
  background: #fff4f4; border: 1px dashed var(--rouge); color: var(--rouge-fonce);
  padding: 1px 8px; border-radius: 6px; font-weight: 600; font-size: .92em;
  white-space: nowrap;
}
.bloc-legal {
  background: var(--gris-clair); border: 1px solid var(--gris-bord);
  border-radius: var(--rayon); padding: 24px 28px; margin: 22px 0;
}
.bloc-legal p:last-child { margin-bottom: 0; }

/* ==========================================================================
   FAQ (accordéon)
   ========================================================================== */
.faq-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.faq-liste { min-width: 0; }
.faq-item {
  border: 1px solid var(--gris-bord); border-radius: var(--rayon);
  margin-bottom: 14px; background: var(--blanc);
  transition: box-shadow .25s, border-color .25s;
}
.faq-item[open] { box-shadow: var(--ombre-md); border-color: transparent; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 26px;
  font-weight: 700; font-size: 1.04rem; color: var(--noir);
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--rouge); }
.faq-item[open] summary { color: var(--rouge); }
.faq-chevron { width: 22px; height: 22px; flex: none; color: var(--rouge); transition: transform .3s; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-reponse { padding: 0 26px 24px; color: var(--gris); }
.faq-reponse a { color: var(--rouge); font-weight: 600; }
.faq-item[open] .faq-reponse { animation: faqIn .32s ease; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.faq-aide {
  position: sticky; top: 110px;
  background: linear-gradient(160deg, #1d1f24, #34373e); color: #fff;
  border-radius: var(--rayon); padding: 34px 30px; text-align: center;
}
.faq-aide__icone {
  width: 60px; height: 60px; border-radius: 16px; margin: 0 auto 18px;
  background: rgba(216,31,38,.18);
  display: flex; align-items: center; justify-content: center;
}
.faq-aide__icone svg { width: 30px; height: 30px; color: var(--rouge-clair); }
.faq-aide h2 { font-size: 1.25rem; margin-bottom: 10px; }
.faq-aide p { color: rgba(255,255,255,.72); font-size: .95rem; margin-bottom: 22px; }
.faq-aide .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.faq-aide .btn:last-child { margin-bottom: 0; }
.faq-aide .btn--ligne { color: #fff; border-color: rgba(255,255,255,.25); }
.faq-aide .btn--ligne:hover { border-color: var(--rouge-clair); color: var(--rouge-clair); }

@media (max-width: 900px) {
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-aide { position: static; }
}
