/* ============================================================
   DT TOITURE — style.css v4.0  "Artisan Premium"
   Palette : Blanc + Gris chaud + Navy accent + Rouge accent
   Typographie : Libre Baskerville (serif titres) + DM Sans
   Philosophie : Sobre, aéré, haute lisibilité, accents mesurés
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Barlow+Condensed:wght@600;700;800&display=swap');

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

:root {
  --navy:       #0d1240;
  --navy-light: #1a1f5c;
  --red:        #c41e1e;
  --red-soft:   #d42b2b;
  --white:      #ffffff;
  --warm-50:    #fafaf9;
  --warm-100:   #f5f4f2;
  --warm-200:   #ede9e4;
  --warm-300:   #d4cfc8;
  --grey-400:   #9ca3a8;
  --grey-500:   #6b7280;
  --grey-700:   #374151;
  --grey-900:   #111318;
  --ff-serif:   'Libre Baskerville', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --ff-display: 'Barlow Condensed', system-ui, sans-serif;
  --section:    88px;
  --section-sm: 60px;
  --container:  1180px;
  --r-sm:  4px; --r-md: 8px; --r-lg: 12px; --r-xl: 18px; --r-2xl: 24px;
  --sh-xs: 0 1px 3px rgba(0,0,0,.06);
  --sh-sm: 0 2px 8px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.05);
  --sh-md: 0 4px 20px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.05);
  --sh-lg: 0 8px 40px rgba(0,0,0,.1), 0 4px 16px rgba(0,0,0,.06);
  --sh-xl: 0 20px 60px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.08);
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); font-size: 1rem; line-height: 1.65; color: var(--grey-700); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul, ol { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHIE ─────────────────────────── */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-body); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--red); }
.eyebrow::before { content: ''; display: block; width: 22px; height: 1.5px; background: currentColor; flex-shrink: 0; }
h1,h2,h3,h4 { line-height: 1.15; color: var(--navy); }
.title-hero { font-family: var(--ff-serif); font-size: clamp(2.6rem,6vw,4.8rem); font-weight: 700; line-height: 1.08; color: var(--white); }
.title-hero em { font-style: italic; color: rgba(255,255,255,.8); }
.title-xl { font-family: var(--ff-serif); font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; line-height: 1.1; color: var(--navy); }
.title-lg { font-family: var(--ff-serif); font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 700; line-height: 1.15; color: var(--navy); }
.title-md { font-family: var(--ff-serif); font-size: clamp(1.25rem,2vw,1.75rem); font-weight: 700; line-height: 1.2; color: var(--navy); }
.body-lg { font-size: 17px; line-height: 1.75; color: var(--grey-500); }
.body-md { font-size: 15.5px; line-height: 1.72; color: var(--grey-500); }

/* ── BOUTONS ─────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--r-md); font-family: var(--ff-body); font-size: 13.5px; font-weight: 600; letter-spacing: .03em; cursor: pointer; border: 1.5px solid transparent; transition: all .28s var(--ease-out); white-space: nowrap; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-lg { padding: 15px 30px; font-size: 14.5px; }
.btn-sm { padding: 9px 18px; font-size: 12.5px; }
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); box-shadow: 0 2px 8px rgba(196,30,30,.25); }
.btn-red:hover { background: var(--red-soft); border-color: var(--red-soft); box-shadow: 0 6px 20px rgba(196,30,30,.32); transform: translateY(-1px); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); color: var(--white); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--warm-300); }
.btn-outline-navy:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.btn-outline-white { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.32); backdrop-filter: blur(4px); }
.btn-outline-white:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.6); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--sh-md); color: var(--navy); }


/* ── RÈGLE GLOBALE SVG — prévention taille non contrôlée ── */
/* Tout SVG qui n'a pas de taille explicite ne déborde pas */
svg { overflow: hidden; }
.about-list-item svg,
.check-item svg,
.footer-contact-item svg,
.trust-icon-wrap svg,
.cta-band svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
}

/* ── NAVBAR ──────────────────────────────── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--warm-200); transition: box-shadow .3s; }
#navbar.scrolled { box-shadow: var(--sh-md); }
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; height: 68px; display: flex; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-right: auto; text-decoration: none; }
.nav-logo img { height: 40px; }
.nav-logo-txt { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-txt span:first-child { font-family: var(--ff-serif); font-size: 15px; font-weight: 700; color: var(--navy); }
.nav-logo-txt span:last-child { font-size: 11px; color: var(--grey-400); font-weight: 400; }
.nav-menu { display: flex; align-items: center; gap: 2px; margin: 0 16px; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 4px; padding: 7px 11px; font-size: 13.5px; font-weight: 500; color: var(--grey-700); border-radius: var(--r-md); transition: all .2s; white-space: nowrap; }
.nav-link svg { width: 13px; height: 13px; transition: transform .2s; }
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--warm-100); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
.nav-dropdown { position: absolute; top: 100%; left: 0; min-width: 230px; background: var(--white); border: 1px solid var(--warm-200); border-radius: var(--r-lg); box-shadow: var(--sh-lg); opacity: 0; pointer-events: none; transform: translateY(0); transition: opacity .18s var(--ease-out), visibility .18s; overflow: hidden; z-index: 200; padding-top: 8px; visibility: hidden; }
/* Pont invisible entre le lien parent et le dropdown — évite le gap qui ferme le menu */
.nav-item::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 10px; }
.nav-item:hover .nav-dropdown { opacity: 1; pointer-events: auto; visibility: visible; }
.nav-dropdown li { border-bottom: 1px solid var(--warm-100); }
.nav-dropdown li:last-child { border-bottom: none; }
.nav-dropdown-link { display: block; padding: 10px 17px; font-size: 13.5px; color: var(--grey-700); font-weight: 500; transition: all .18s; }
.nav-dropdown-link:hover { background: var(--warm-50); color: var(--navy); padding-left: 22px; }
.nav-right { display: flex; align-items: center; gap: 8px; margin-left: 16px; }
.nav-phone { display: flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--navy); padding: 7px 11px; border-radius: var(--r-md); transition: background .2s; }
.nav-phone svg { width: 14px; height: 14px; color: var(--red); }
.nav-phone:hover { background: var(--warm-100); color: var(--navy); }
.nav-cta { background: var(--red); color: var(--white); padding: 8px 18px; border-radius: var(--r-md); font-size: 13px; font-weight: 600; transition: all .25s var(--ease-out); border: 1.5px solid var(--red); }
.nav-cta:hover { background: var(--red-soft); transform: translateY(-1px); color: var(--white); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; border-radius: var(--r-md); margin-left: auto; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .28s var(--ease-out); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { position: fixed; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 2px solid var(--red); box-shadow: var(--sh-xl); z-index: 999; max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.nav-mobile.open { max-height: 90vh; overflow-y: auto; }
.nav-mobile-menu { padding: 8px 0 4px; }
.nav-mobile-link { display: block; padding: 13px 24px; font-size: 15px; font-weight: 500; color: var(--grey-900); border-bottom: 1px solid var(--warm-100); transition: all .18s; }
.nav-mobile-link:hover { background: var(--warm-50); color: var(--navy); }
.nav-mobile-sub { background: var(--warm-50); }
.nav-mobile-sub-link { display: block; padding: 10px 24px 10px 34px; font-size: 13.5px; color: var(--grey-500); border-bottom: 1px solid var(--warm-100); transition: all .18s; }
.nav-mobile-sub-link:hover { color: var(--navy); }
.nav-mobile-cta { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }

/* ── HERO ─────────────────────────────────── */
/* ══════════════════════════════════════════════════════════════
   HERO — Composition finale
   Gauche : colonne texte imposante (60%)
   Droite : grande vidéo portrait + bandeau horizontal collé (40%)
   ══════════════════════════════════════════════════════════════ */

/* Section hero : plein viewport */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  max-height: 1000px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Fond photo + overlay */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg,
    rgba(8,10,36,.95) 0%,
    rgba(8,10,36,.82) 50%,
    rgba(8,10,36,.50) 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Ligne rouge bas */
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--red); z-index: 10;
}

/* Wrapper de contenu : au-dessus des couches bg */
.hero-content {
  position: relative; z-index: 2;
  flex: 1;
  display: flex;
  align-items: stretch;
  min-height: 0;
}

/* ── Grille 2 colonnes : 58% texte | 42% média ── */
.hero-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: 56px;
  align-items: stretch;
}

/* ══════════════════════════════════════════
   COLONNE GAUCHE — texte imposant
   ══════════════════════════════════════════ */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Offset vers le bas pour dégager le header (72px) + respiration */
  padding-top: 80px;
  padding-bottom: 48px;
}

.hero-eyebrow {
  padding: 19px;
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.50);
  margin-bottom: 20px;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
}

/* Grand titre — centre visuel de la colonne gauche */
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3.2rem, 5.8vw, 5.2rem);
  font-weight: 700;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: rgba(255,255,255,.70); }

/* Sous-titre */
.hero-subtitle {
  font-size: clamp(14.5px, 1.3vw, 16.5px);
  line-height: 1.68;
  color: rgba(255,255,255,.55);
  max-width: 460px;
  margin-bottom: 28px;
}

/* Boutons */
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 30px;
}

/* Statistiques */
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat-num {
  font-family: var(--ff-serif);
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 700; color: var(--white);
  line-height: 1; margin-bottom: 5px;
}
.hero-stat-num span { font-size: 1.1rem; }
.hero-stat-label {
  font-size: 10.5px; color: rgba(255,255,255,.40);
  font-weight: 600; text-transform: uppercase; letter-spacing: .09em;
}

/* ══════════════════════════════════════════
   COLONNE DROITE — vidéo portrait + bandeau
   ══════════════════════════════════════════ */
.hero-right-col {
  display: flex;
  flex-direction: column;
  /* Réduction ~8% via padding augmenté, centrage via width+margin */
  padding-top: 104px;
  padding-bottom: 72px;
  gap: 0;
  /* Hauteur résolue = le conteneur occupe toute la cellule grid */
  align-self: stretch;
  /* Centrage horizontal : 90% de la colonne */
  width: 90%;
  margin: 0 auto;
}

/* Vidéo portrait — prend tout l'espace disponible */
.hero-video-card {
  flex: 1;
  /* min-height de sécurité : la vidéo ne peut pas s'effondrer */
  min-height: 280px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden;
  background: #06080f;
  box-shadow: 0 24px 64px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.08);
  position: relative;
  transition: box-shadow .3s var(--ease-out);
}
.hero-video-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--red); z-index: 3;
}
.hero-video-embed {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  pointer-events: none; display: block;
}
.hero-video-overlay-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: linear-gradient(to top, rgba(6,8,15,.88) 0%, transparent 60%);
  padding: 32px 16px 12px;
}
.hero-video-label {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ── Bandeau horizontal — sous la vidéo, même largeur ── */
.hero-band {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
  border-top: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  padding: 0;
  flex-shrink: 0;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  overflow: hidden;
}

/* Gauche : Disponible + téléphone */
.hero-band-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 14px 14px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero-band-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 8px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: #4ade80;
}
.hero-band-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #4ade80; flex-shrink: 0;
  animation: pg 2.2s ease infinite;
}
.hero-band-phone {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 700; color: var(--white);
  line-height: 1; transition: color .2s;
  white-space: nowrap; display: block;
}
.hero-band-phone:hover { color: rgba(255,255,255,.72); }

/* Séparateur masqué — remplacé par border sur les blocs */
.hero-band-sep { display: none; }

/* Centre : zone d'intervention */
.hero-band-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 14px 14px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero-band-label {
  font-size: 8px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
}
.hero-band-zone {
  font-family: var(--ff-display);
  font-size: .82rem;
  font-weight: 700; color: rgba(255,255,255,.85);
  text-transform: uppercase; letter-spacing: .03em;
  line-height: 1.2; white-space: normal;
}

/* Droite : bouton Devis — width fixe, jamais compressé */
.hero-band-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  padding: 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  border: none;
  border-left: none;
  transition: background .22s var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
  /* Hauteur : s'étire sur toute la hauteur du bandeau */
  align-self: stretch;
}
.hero-band-cta svg { width: 13px; height: 13px; flex-shrink: 0; }
.hero-band-cta:hover {
  background: var(--red-soft); color: var(--white);
}


/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.35));
  animation: scrollDrop 1.8s ease-in-out infinite;
}
.hero-scroll span {
  font-size: 9.5px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
}
@keyframes scrollDrop {
  0%,100% { transform: scaleY(1); opacity: .6; }
  50%      { transform: scaleY(1.3); opacity: 1; }
}

/* ══════════════════════════════════════════
   HERO — Responsive
   ══════════════════════════════════════════ */

/* Tablette paysage 1024–1280px */
@media (max-width: 1280px) and (min-width: 1025px) {
  .hero-inner    { grid-template-columns: 56fr 44fr; gap: 40px; }
  .hero-title    { font-size: clamp(2.8rem, 5vw, 4.4rem); }
}

/* Tablette portrait 769–1024px */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-inner    { grid-template-columns: 54fr 46fr; gap: 28px; }
  .hero-title    { font-size: clamp(2.4rem, 4.8vw, 3.6rem); }
  .hero-subtitle { font-size: 14.5px; }
  .hero-band     { padding: 13px 14px; grid-template-columns: 1fr 1fr 1fr; }
  .hero-band-cta { padding: 9px 13px; font-size: 11px; }
}

/* Mobile ≤768px : empilement vertical */
@media (max-width: 768px) {
  .hero {
    height: auto;
    max-height: none;
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
    padding-bottom: 32px;
  }
  .hero-text {
    padding-top: 88px;
    padding-bottom: 0;
    justify-content: flex-start;
  }
  .hero-title    { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 14px; }
  .hero-subtitle { font-size: 14.5px; margin-bottom: 22px; }
  .hero-actions  { margin-bottom: 22px; }
  .hero-stats    { gap: 20px; }
  .hero-stat-num { font-size: 1.7rem; }

  /* Colonne droite : portrait centré */
  .hero-right-col {
    padding-top: 0; padding-bottom: 40px;
    max-width: 280px; margin: 0 auto; width: 100%;
  }
  .hero-video-card {
    flex: none;
    /* Hauteur portrait fixe sur mobile */
    height: calc(280px * 16 / 9);
    max-height: 44svh;
  }
  .hero-band     { grid-template-columns: 1fr 1fr; padding: 12px 13px; }
  .hero-band-cta { display: none; }
  .hero-band-left { border-right: 1px solid rgba(255,255,255,.12); }
}

/* Mobile étroit ≤480px */
@media (max-width: 480px) {
  .hero-right-col { max-width: 240px; }
  .hero-video-card { height: calc(240px * 16 / 9); max-height: 42svh; }
  .hero-band       { grid-template-columns: 1fr; }
  .hero-band-right { display: none; }
  .hero-band-cta   { display: none; }
  .hero-band-left  { border-right: none; padding-right: 0; }
  .hero-title      { font-size: clamp(1.85rem, 8vw, 2.4rem); }
}

/* Mobile très étroit ≤375px */
@media (max-width: 375px) {
  .hero-right-col  { max-width: 200px; }
  .hero-video-card { height: calc(200px * 16 / 9); max-height: 36svh; }
  .hero-title      { font-size: 1.7rem; }
  .hero-actions    { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}

/* Très petit ≤320px */
@media (max-width: 320px) {
  .hero-right-col  { max-width: 180px; }
  .hero-video-card { max-height: 32svh; }
  .hero-title      { font-size: 1.55rem; }
}


/* ── TRUST BAR ─────────────────────────────── */
.trust-bar { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.05); }
.trust-bar-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; display: flex; align-items: stretch; }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 16px 26px; border-right: 1px solid rgba(255,255,255,.06); flex: 1; transition: background .2s; }
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,.04); }
.trust-icon-wrap { width: 36px; height: 36px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon-wrap svg { width: 16px; height: 16px; color: rgba(255,255,255,.55); }
.trust-strong { font-size: 13px; font-weight: 600; color: var(--white); }
.trust-sub { font-size: 11px; color: rgba(255,255,255,.38); margin-top: 1px; }

/* ── SECTIONS ────────────────────────────── */
.section { padding: var(--section) 0; }
.section-sm { padding: var(--section-sm) 0; }
.bg-warm { background: var(--warm-50); }
.bg-warm-100 { background: var(--warm-100); }
.bg-navy { background: var(--navy); }
/* Alias for backward compat */
.bg-off { background: var(--warm-100); }
.section-head { margin-bottom: 52px; }
.section-head.centered { text-align: center; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head .title-lg { margin-bottom: 12px; }
.section-head .body-lg { max-width: 560px; }
.section-head.centered .body-lg { margin: 0 auto; }

/* ── ABOUT GRID ──────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-imgs { position: relative; }
.about-img-main { border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--sh-xl); }
.about-img-main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--red); color: var(--white); border-radius: var(--r-xl); padding: 18px 22px; text-align: center; box-shadow: var(--sh-lg); border: 3px solid var(--white); }
.badge-num { font-family: var(--ff-serif); font-size: 2.6rem; font-weight: 700; line-height: 1; margin-bottom: 2px; }
.badge-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; opacity: .85; line-height: 1.4; }
.about-content .eyebrow { margin-bottom: 14px; }
.about-content .title-lg { margin-bottom: 16px; }
.about-list { margin: 18px 0 26px; display: flex; flex-direction: column; gap: 9px; }
.about-list-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--grey-700); line-height: 1.55; }
.about-list-item svg { width: 18px; height: 18px; min-width: 18px; flex-shrink: 0; color: var(--red); margin-top: 2px; }
.about-check { width: 20px; height: 20px; background: rgba(196,30,30,.08); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.about-check svg { width: 11px; height: 11px; color: var(--red); }

/* ── SERVICE CARDS ───────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--warm-200); border: 1px solid var(--warm-200); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-sm); }
.service-card { background: var(--white); padding: 30px 26px; position: relative; transition: background .25s; }
.service-card:hover { background: var(--warm-50); }
.service-num { font-family: var(--ff-display); font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--warm-300); text-transform: uppercase; margin-bottom: 16px; transition: color .25s; }
.service-card:hover .service-num { color: var(--red); }
.service-icon { width: 40px; height: 40px; background: rgba(13,18,64,.07); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.service-icon svg { width: 20px; height: 20px; color: var(--navy); }
.service-title { font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 9px; line-height: 1.25; }
.service-desc { font-size: 13.5px; color: var(--grey-500); line-height: 1.65; margin-bottom: 20px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--navy); letter-spacing: .04em; text-transform: uppercase; transition: gap .25s, color .2s; }
.service-link svg { width: 14px; height: 14px; transition: transform .25s; }
.service-card:hover .service-link { color: var(--red); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ── GALERIE ─────────────────────────────── */
.gallery-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.gallery-tab, .g-tab { padding: 7px 16px; border-radius: 100px; font-size: 12.5px; font-weight: 600; border: 1.5px solid var(--warm-200); background: var(--white); color: var(--grey-500); cursor: pointer; transition: all .22s; letter-spacing: .03em; }
.gallery-tab.active, .gallery-tab:hover, .g-tab.active, .g-tab:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.gallery-item, .g-item { position: relative; border-radius: var(--r-lg); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; background: var(--warm-100); }
.gallery-item img, .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img, .g-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,10,36,.85) 0%, transparent 55%); display: flex; align-items: flex-end; padding: 18px; opacity: 0; transition: opacity .3s; }
.gallery-item:hover .gallery-overlay, .g-item:hover .gallery-overlay { opacity: 1; }
.gallery-cat { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 3px; }
.gallery-caption { font-family: var(--ff-serif); font-size: 1rem; color: var(--white); font-weight: 700; }

/* ── ZONES ───────────────────────────────── */
.zones-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.zones-title { font-family: var(--ff-serif); font-size: clamp(1.7rem,3vw,2.5rem); font-weight: 700; color: var(--white); margin-bottom: 14px; line-height: 1.15; }
.zones-desc { font-size: 15.5px; color: rgba(255,255,255,.52); line-height: 1.72; margin-bottom: 26px; }
.zones-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 30px; }
.zone-item { font-size: 13px; color: rgba(255,255,255,.55); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.07); font-weight: 500; }
.zones-visual { position: relative; border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--sh-xl); aspect-ratio: 4/3; }
.zones-visual img { width: 100%; height: 100%; object-fit: cover; }
.zones-visual-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,10,36,.2) 0%, transparent 70%); }
.zones-badge { position: absolute; bottom: 18px; left: 18px; background: var(--red); color: var(--white); font-family: var(--ff-display); font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 8px 16px; border-radius: var(--r-md); }
/* ── Google Maps iframe dans zones-visual ── */
.zones-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* Léger filtre pour s'harmoniser avec le design sombre du site */
  filter: saturate(0.85) contrast(1.05);
}
/* Supprimer l'overlay sur la carte (pas de dégradé sur Maps) */
.zones-visual:has(.zones-map-iframe) .zones-visual-overlay {
  display: none;
}


/* ── TÉMOIGNAGES ─────────────────────────── */
.temo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.temo-card { background: var(--white); border: 1.5px solid var(--warm-200); border-radius: var(--r-xl); padding: 28px 24px; transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s; }
.temo-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: transparent; }
.temo-stars { display: flex; gap: 3px; margin-bottom: 15px; }
.temo-stars svg { width: 14px; height: 14px; fill: #f59e0b; color: #f59e0b; }
.temo-text { font-family: var(--ff-serif); font-size: 15px; font-style: italic; color: var(--grey-700); line-height: 1.7; margin-bottom: 18px; }
.temo-author { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.temo-loc { font-size: 12px; color: var(--grey-400); }

/* CTA Avis Google */
.avis-google-v3 { background: var(--navy); border-radius: var(--r-xl); padding: 28px 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 36px; position: relative; overflow: hidden; }
.avis-google-v3::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); }
.avis-google-v3-left { display: flex; align-items: center; gap: 16px; }
.avis-google-v3-logo { width: 46px; height: 46px; background: var(--white); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.avis-google-v3-logo svg { width: 28px; height: 28px; }
.avis-google-v3-title { font-family: var(--ff-serif); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.avis-google-v3-desc { font-size: 13px; color: rgba(255,255,255,.44); margin-bottom: 7px; }
.avis-google-v3-rating { display: flex; align-items: center; gap: 4px; }
.avis-google-v3-rating .stars { display: flex; gap: 2px; }
.avis-google-v3-rating .stars svg { width: 13px; height: 13px; fill: #f59e0b; color: #f59e0b; }
.avis-google-v3-rating .score { font-weight: 700; color: var(--white); font-size: .9rem; margin-left: 4px; }
.avis-google-v3-rating .count { font-size: 12px; color: rgba(255,255,255,.36); }
.avis-google-v3-cta { display: inline-flex; align-items: center; gap: 9px; background: var(--white); color: var(--navy); padding: 12px 22px; border-radius: var(--r-md); font-size: 13.5px; font-weight: 700; text-decoration: none; transition: all .28s var(--ease-out); box-shadow: var(--sh-sm); flex-shrink: 0; white-space: nowrap; }
.avis-google-v3-cta:hover { transform: translateY(-2px); box-shadow: var(--sh-md); color: var(--navy); }
.avis-google-v3-cta svg { width: 18px; height: 18px; }

/* ── CTA BAND ────────────────────────────── */
.cta-band { background: var(--warm-50); border-top: 1px solid var(--warm-200); border-bottom: 1px solid var(--warm-200); padding: 52px 0; }
.cta-band-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-band-title { font-family: var(--ff-serif); font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 5px; }
.cta-band-sub { font-size: 14px; color: var(--grey-500); }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── PAGE HERO ───────────────────────────── */
.page-hero { background: var(--navy); padding: 136px 0 64px; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .12; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(8,10,36,.97) 40%, rgba(13,18,64,.9) 100%); }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.page-hero-inner { position: relative; z-index: 2; max-width: 680px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a, .breadcrumb span { font-size: 12px; color: rgba(255,255,255,.34); letter-spacing: .04em; transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.7); }
.bc-sep { color: rgba(255,255,255,.16); }
.page-hero-title { font-family: var(--ff-serif); font-size: clamp(1.9rem,5vw,3.4rem); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 14px; }
.page-hero-title em { font-style: italic; color: rgba(255,255,255,.72); }
.page-hero-desc { font-size: 16px; color: rgba(255,255,255,.5); max-width: 540px; line-height: 1.72; margin-bottom: 26px; }

/* ── CONTACT ─────────────────────────────── */
.contact-wrap { padding: 72px 0 88px; }
.contact-cols { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: start; }
.contact-section-label { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--grey-400); margin-bottom: 12px; margin-top: 28px; display: flex; align-items: center; gap: 10px; }
.contact-section-label:first-child { margin-top: 0; }
.contact-section-label::after { content: ''; flex: 1; height: 1px; background: var(--warm-200); }
.c-card-v3 { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: var(--r-lg); border: 1.5px solid var(--warm-200); background: var(--white); transition: all .28s var(--ease-out); text-decoration: none; color: inherit; margin-bottom: 8px; }
.c-card-v3:hover { border-color: var(--navy); box-shadow: var(--sh-sm); transform: translateX(3px); }
.c-card-v3-icon { width: 40px; height: 40px; background: var(--navy); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .25s; }
.c-card-v3:hover .c-card-v3-icon { background: var(--red); }
.c-card-v3-icon svg { width: 17px; height: 17px; color: var(--white); }
.c-card-v3-label { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-400); margin-bottom: 2px; }
.c-card-v3-value { font-family: var(--ff-serif); font-size: 1.02rem; font-weight: 700; color: var(--navy); }
.c-card-v3-sub { font-size: 12px; color: var(--grey-400); margin-top: 1px; }
.horaires-v3 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.horaire-v3-item { background: var(--warm-50); border: 1.5px solid var(--warm-200); border-radius: var(--r-lg); padding: 11px 14px; }
.horaire-v3-day { font-size: 10.5px; font-weight: 700; color: var(--navy); letter-spacing: .07em; text-transform: uppercase; margin-bottom: 3px; }
.horaire-v3-time { font-family: var(--ff-serif); font-size: .95rem; font-weight: 700; color: var(--grey-900); }
.horaire-v3-closed { font-size: .88rem; color: var(--grey-400); }
.zone-pill-v3 { font-size: 12px; font-weight: 600; color: var(--navy); background: rgba(13,18,64,.05); border: 1px solid rgba(13,18,64,.09); border-radius: 100px; padding: 4px 12px; transition: all .2s; white-space: nowrap; cursor: default; }
.zone-pill-v3:hover { background: var(--navy); color: var(--white); }

/* Google Maps */
.map-v3-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); border: 1.5px solid var(--warm-200); }
.map-v3-header { background: var(--navy); padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.map-v3-pin { width: 28px; height: 28px; background: var(--red); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.map-v3-pin svg { width: 14px; height: 14px; color: white; }
.map-v3-title { font-size: .8rem; font-weight: 700; color: white; letter-spacing: .05em; text-transform: uppercase; }
.map-v3-sub { font-size: 10.5px; color: rgba(255,255,255,.36); margin-top: 1px; }
.map-v3-header-right { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.map-v3-live-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: pg 2.2s ease infinite; }
.map-v3-live-txt { font-size: 11px; color: rgba(255,255,255,.4); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.map-v3-iframe { width: 100%; height: 300px; display: block; border: none; }
.map-v3-footer { background: var(--white); padding: 11px 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; border-top: 1px solid var(--warm-200); }
.map-v3-address { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--grey-500); font-weight: 500; }
.map-v3-address svg { width: 12px; height: 12px; color: var(--red); flex-shrink: 0; }
.map-v3-itinerary { display: inline-flex; align-items: center; gap: 6px; background: #1a73e8; color: white; padding: 7px 13px; border-radius: var(--r-md); font-size: 12px; font-weight: 700; letter-spacing: .03em; text-decoration: none; transition: all .22s; flex-shrink: 0; }
.map-v3-itinerary:hover { background: #1557b0; color: white; transform: translateY(-1px); }
.map-v3-itinerary svg { width: 12px; height: 12px; }

/* Avis block contact */
.contact-avis-block { background: var(--navy); border-radius: var(--r-lg); padding: 20px 22px; margin-top: 18px; display: flex; align-items: center; gap: 15px; flex-wrap: wrap; position: relative; overflow: hidden; }
.contact-avis-block::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); }
.contact-avis-logo { background: white; border-radius: var(--r-md); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-avis-logo svg { width: 24px; height: 24px; }
.contact-avis-body { flex: 1; }
.contact-avis-title { font-family: var(--ff-serif); font-size: .95rem; font-weight: 700; color: white; margin-bottom: 2px; }
.contact-avis-desc { font-size: 12px; color: rgba(255,255,255,.4); }
.contact-avis-stars { display: flex; gap: 2px; margin-top: 5px; }
.contact-avis-stars svg { width: 12px; height: 12px; fill: #f59e0b; color: #f59e0b; }
.contact-avis-btn { background: rgba(255,255,255,.1); color: white; border: 1.5px solid rgba(255,255,255,.2); padding: 8px 16px; border-radius: var(--r-md); font-size: 12.5px; font-weight: 600; text-decoration: none; transition: all .22s; flex-shrink: 0; white-space: nowrap; }
.contact-avis-btn:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.38); color: white; }

/* ── FORMULAIRE ──────────────────────────── */
.form-box { background: var(--navy); border-radius: var(--r-2xl); padding: 40px 36px; position: relative; overflow: hidden; }
.form-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.form-box-title { font-family: var(--ff-serif); font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.form-box-sub { font-size: 13px; color: rgba(255,255,255,.36); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-g { margin-bottom: 14px; }
.f-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.36); margin-bottom: 6px; }
.f-input, .f-textarea, .f-select { width: 100%; padding: 11px 14px; border: 1.5px solid rgba(255,255,255,.1); background: rgba(255,255,255,.06); border-radius: var(--r-md); font-family: var(--ff-body); font-size: 14px; color: var(--white); outline: none; transition: border-color .22s, background .22s, box-shadow .22s; appearance: none; -webkit-appearance: none; }
.f-input::placeholder, .f-textarea::placeholder { color: rgba(255,255,255,.2); }
.f-input:focus, .f-textarea:focus, .f-select:focus { border-color: rgba(196,30,30,.55); background: rgba(255,255,255,.08); box-shadow: 0 0 0 3px rgba(196,30,30,.1); }
.f-textarea { height: 98px; resize: vertical; }
.f-select option { background: #0d1240; }
.f-checks-label { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.36); margin-bottom: 10px; }
.f-checks { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.f-check { display: flex; align-items: center; gap: 6px; padding: 6px 13px; border: 1.5px solid rgba(255,255,255,.1); border-radius: 100px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.48); cursor: pointer; transition: all .2s; user-select: none; }
.f-check input { display: none; }
.f-check.checked { background: rgba(196,30,30,.18); border-color: rgba(196,30,30,.5); color: #f87171; }
.f-privacy { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: rgba(255,255,255,.3); line-height: 1.6; margin-bottom: 18px; }
.f-privacy input { margin-top: 2px; accent-color: var(--red); flex-shrink: 0; }
.f-privacy a { color: rgba(255,255,255,.48); text-decoration: underline; }
.f-submit { width: 100%; padding: 14px; background: var(--red); color: var(--white); border: none; border-radius: var(--r-md); font-family: var(--ff-body); font-size: 14px; font-weight: 600; letter-spacing: .04em; cursor: pointer; transition: all .28s var(--ease-out); }
.f-submit:hover { background: var(--red-soft); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,30,30,.35); }
.form-success { display: none; text-align: center; padding: 28px 16px; color: var(--white); }
.form-success svg { width: 48px; height: 48px; color: #4ade80; margin: 0 auto 12px; }
.form-success h3 { font-family: var(--ff-serif); font-size: 1.5rem; margin-bottom: 7px; }
.form-success p { font-size: 14px; color: rgba(255,255,255,.48); }

/* ── À PROPOS SPÉCIFIQUE ─────────────────── */
.about-photos-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; height: 480px; }
.about-photo { border-radius: var(--r-xl); overflow: hidden; background: var(--warm-100); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.about-photo:hover img { transform: scale(1.03); }
.about-photo.tall { grid-row: 1 / 3; }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--warm-200); border: 1px solid var(--warm-200); border-radius: var(--r-xl); overflow: hidden; }
.stat-block { background: var(--white); padding: 28px 22px; text-align: center; }
.stat-block-num { font-family: var(--ff-serif); font-size: 2.3rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.stat-block-num span { font-size: 1.1rem; }
.stat-block-label { font-size: 12px; color: var(--grey-500); font-weight: 500; line-height: 1.4; }
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(to bottom, var(--red), var(--warm-200)); }
.timeline-item { position: relative; margin-bottom: 30px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: -35px; top: 4px; width: 13px; height: 13px; border-radius: 50%; background: var(--white); border: 2.5px solid var(--red); }
.timeline-year { font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--red); margin-bottom: 5px; }
.timeline-title { font-family: var(--ff-serif); font-size: 1.08rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.timeline-desc { font-size: 13.5px; color: var(--grey-500); line-height: 1.65; }
.valeurs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.valeur-card { background: var(--white); border: 1.5px solid var(--warm-200); border-radius: var(--r-xl); padding: 26px 22px; transition: all .28s var(--ease-out); }
.valeur-card:hover { border-color: var(--navy); box-shadow: var(--sh-sm); transform: translateY(-2px); }
.valeur-icon { width: 42px; height: 42px; background: rgba(13,18,64,.06); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.valeur-icon svg { width: 20px; height: 20px; color: var(--navy); }
.valeur-title { font-family: var(--ff-serif); font-size: 1.08rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.valeur-desc { font-size: 13.5px; color: var(--grey-500); line-height: 1.65; }
.certif-row { display: flex; gap: 10px; flex-wrap: wrap; }
.certif-badge { display: flex; align-items: center; gap: 10px; background: var(--warm-50); border: 1.5px solid var(--warm-200); border-radius: var(--r-lg); padding: 11px 16px; transition: all .25s; }
.certif-badge:hover { border-color: var(--navy); background: var(--white); box-shadow: var(--sh-xs); }
.certif-icon { width: 34px; height: 34px; background: var(--navy); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.certif-icon svg { width: 16px; height: 16px; color: white; }
.certif-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.certif-desc { font-size: 11px; color: var(--grey-400); margin-top: 1px; }

/* ── FOOTER ──────────────────────────────── */
.footer { background: var(--navy); padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-logo-wrap { margin-bottom: 12px; }
.footer-logo-wrap img { height: 46px; background: rgba(255,255,255,.07); border-radius: var(--r-md); padding: 5px 7px; }
.footer p, .footer-desc { font-size: 13px; line-height: 1.72; color: rgba(255,255,255,.36); max-width: 260px; margin-bottom: 16px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,.42); margin-bottom: 6px; }
.footer-contact-item svg { width: 13px; height: 13px; color: rgba(255,255,255,.22); flex-shrink: 0; }
.footer-contact-item a { color: inherit; transition: color .2s; }
.footer-contact-item a:hover { color: rgba(255,255,255,.8); }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.26); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.42); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.8); }
.footer-bottom { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom p, .footer-bottom a { font-size: 11.5px; color: rgba(255,255,255,.2); }
.footer-bottom a:hover { color: rgba(255,255,255,.5); }
.footer-bottom-links { display: flex; gap: 18px; }

/* ── FLOATING CTA ────────────────────────── */
.float-cta { position: fixed; bottom: 22px; right: 22px; z-index: 900; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; opacity: 0; pointer-events: none; transition: opacity .4s; }
.float-cta.visible { opacity: 1; pointer-events: auto; }
.float-btn { display: flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 100px; font-family: var(--ff-body); font-size: 12.5px; font-weight: 700; cursor: pointer; transition: all .28s var(--ease-out); box-shadow: 0 6px 22px rgba(0,0,0,.22); text-decoration: none; white-space: nowrap; letter-spacing: .03em; }
.float-btn svg { width: 14px; height: 14px; }
.float-phone { background: var(--red); color: var(--white); }
.float-phone:hover { background: var(--red-soft); transform: translateY(-2px); color: var(--white); box-shadow: 0 8px 28px rgba(196,30,30,.4); }
.float-devis { background: var(--navy); color: rgba(255,255,255,.82); font-size: 11px; padding: 9px 15px; border: 1px solid rgba(255,255,255,.1); }
.float-devis:hover { background: var(--navy-light); color: var(--white); transform: translateY(-2px); }

/* ── LIGHTBOX ────────────────────────────── */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,.92); display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lb-close { position: absolute; top: 16px; right: 20px; background: rgba(255,255,255,.08); border: none; color: rgba(255,255,255,.7); font-size: 1.4rem; cursor: pointer; padding: 8px 12px; border-radius: var(--r-md); transition: all .2s; }
.lb-close:hover { background: rgba(255,255,255,.15); color: var(--white); }
.lb-img { max-width: 900px; max-height: 82vh; border-radius: var(--r-xl); overflow: hidden; }
.lb-img img { width: 100%; height: auto; max-height: 82vh; object-fit: contain; }
/* Backward compat */
.lightbox-close { position: absolute; top: 16px; right: 20px; background: rgba(255,255,255,.08); border: none; color: rgba(255,255,255,.7); font-size: 1.4rem; cursor: pointer; padding: 8px 12px; border-radius: var(--r-md); transition: all .2s; }
.lightbox-close:hover { background: rgba(255,255,255,.15); color: var(--white); }
.lightbox-img { max-width: 900px; max-height: 82vh; border-radius: var(--r-xl); overflow: hidden; }
.lightbox-img img { width: 100%; height: auto; max-height: 82vh; object-fit: contain; }

/* ── ANIMATIONS ──────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease-out), transform .75s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity .75s var(--ease-out), transform .75s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity .75s var(--ease-out), transform .75s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.hero-eyebrow { animation: fadeDown .65s var(--ease-out) .1s both; }
.hero-title    { animation: fadeUp .75s var(--ease-out) .2s both; }
.hero-subtitle { animation: fadeUp .75s var(--ease-out) .32s both; }
.hero-actions  { animation: fadeUp .75s var(--ease-out) .42s both; }
.hero-stats    { animation: fadeUp .75s var(--ease-out) .52s both; }
.hero-band     { animation: fadeIn .8s var(--ease-out) .35s both; }
@keyframes fadeDown { from { opacity:0; transform:translateY(-14px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeUp   { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }

/* ── RESPONSIVE ──────────────────────────── */

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE MOBILE — FINAL UNIFIED
   ⚠️  Toutes les règles ci-dessous sont dans des @media
   ⚠️  Le rendu desktop (>768px) est IDENTIQUE à l'original
   ══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE MOBILE — COMPOSITION NATIVE
   ⚠️  839 lignes de desktop INTACTES au-dessus
   ⚠️  Tout ce bloc est dans des @media — ZERO impact desktop
   ══════════════════════════════════════════════════════════════ */

/* ── Tablette paysage 769-1100px : légères retouches ── */
@media (max-width: 1100px) and (min-width: 769px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .temo-grid     { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .gallery-grid  { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
  .footer-grid   { grid-template-columns: 2fr 1fr 1fr; gap: 28px; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE ≤ 768px
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Globals ── */
  body { overflow-x: hidden; }
  *, *::before, *::after { box-sizing: border-box; }
  img  { max-width: 100%; height: auto; }
  .container { padding: 0 12px; }

  /* ── Nav ── */
  .nav-menu, .nav-right { display: none; }
  .nav-burger { display: flex; }
  #navbar .nav-inner { padding: 0 12px; min-height: 58px; }
  .nav-logo img { height: 36px; }

  /* ────────────────────────────────────────────────────
     HERO — VRAIE COMPOSITION MOBILE 2 COLONNES
     La section ne prend PAS toute la hauteur du viewport.
     Colonne gauche : texte + boutons + stats
     Colonne droite : vidéo portrait (hauteur = colonne gauche)
  ──────────────────────────────────────────────────────── */

  /* 1. Le hero ne force plus 100svh */
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    /* On garde overflow:hidden et position:relative du desktop */
  }

  /* 2. hero-content : flex normal, pas d'align:stretch */
  .hero-content {
    flex: none;
    align-items: stretch;
  }

  /* 3. hero-inner : GRILLE 2 COLONNES égales, gap compact
        minmax(0,1fr) empêche tout débordement */
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    padding: 0 10px 16px;
    align-items: start;
    /* plus de max-width restrictif sur mobile */
    max-width: 100%;
    margin: 0;
  }

  /* 4. Colonne gauche : texte compact, padding-top = hauteur header */
  .hero-text {
    padding-top: 68px;
    padding-bottom: 16px;
    justify-content: flex-start;
    min-width: 0;
  }
  .hero-eyebrow {
    font-size: 8px; letter-spacing: .1em;
    margin-bottom: 8px; gap: 5px;
  }
  .hero-eyebrow-dot { width: 5px; height: 5px; }
  .hero-title {
    /* clamp : lisible de 320 à 768px */
    font-size: clamp(1.1rem, 4.8vw, 1.9rem);
    line-height: 1.1; margin-bottom: 8px;
  }
  .hero-subtitle {
    font-size: clamp(10px, 2.6vw, 13px);
    line-height: 1.5; margin-bottom: 10px;
    max-width: 100%;
  }
  .hero-actions {
    display: flex; flex-direction: column;
    gap: 6px; margin-bottom: 12px;
  }
  .hero-actions .btn {
    width: 100%; justify-content: center;
    padding: 10px 8px;
    font-size: clamp(10px, 2.6vw, 12.5px);
    gap: 5px;
  }
  .hero-actions .btn svg { width: 12px; height: 12px; }
  .hero-stats { display: flex; gap: 6px; }
  .hero-stat  { flex: 1; min-width: 0; }
  .hero-stat-num {
    font-size: clamp(.95rem, 3.8vw, 1.4rem);
    margin-bottom: 2px;
  }
  .hero-stat-num span { font-size: .8rem; }
  .hero-stat-label {
    font-size: clamp(7px, 1.8vw, 9px);
    letter-spacing: .04em; line-height: 1.2;
  }

  /* 5. Colonne droite : flex column, hauteur = contenu naturel */
  .hero-right-col {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 68px;  /* aligne avec le haut du titre */
    padding-bottom: 16px;
    width: 100%;        /* prend toute la cellule grid */
    margin: 0;
    align-self: stretch;
  }

  /* 6. Vidéo : flex:1 dans le right-col = prend l'espace dispo
        La hauteur est déterminée par la hauteur de la colonne gauche,
        pas par le viewport */
  .hero-video-card {
    flex: 1;
    min-height: 160px;   /* minimum absolu */
    /* PAS de height fixe, PAS de max-height viewport */
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    position: relative;
  }
  .hero-video-embed {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .hero-video-overlay-bar { padding: 16px 8px 8px; }
  .hero-video-label { font-size: 8px; letter-spacing: .1em; }

  /* 7. Bandeau : compact sous la vidéo */
  .hero-band {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 9px;
    border-radius: 0 0 8px 8px;
  }
  .hero-band-left {
    padding-right: 0; padding-bottom: 5px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .hero-band-right { padding: 5px 0 0; }
  .hero-band-sep  { display: none; }
  .hero-band-cta  { display: none; }
  .hero-band-badge { font-size: 7px; gap: 4px; }
  .hero-band-dot   { width: 5px; height: 5px; }
  .hero-band-phone { font-size: clamp(.75rem, 3.2vw, .95rem); }
  .hero-band-label { font-size: 7px; }
  .hero-band-zone  { font-size: clamp(.68rem, 2.8vw, .85rem); white-space: normal; line-height: 1.2; }

  /* ── Scroll indicator masqué sur mobile ── */
  .hero-scroll { display: none; }

  /* ────────────────────────────────────────────────────
     TRUST BAR — 2 colonnes
  ──────────────────────────────────────────────────────── */
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-item {
    flex: 1 1 calc(50% - 1px); min-width: 0;
    padding: 10px 10px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .trust-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.06); }
  .trust-item:last-child      { border-bottom: none; }
  .trust-strong { font-size: 11.5px; }
  .trust-sub    { font-size: 9.5px; }

  /* ────────────────────────────────────────────────────
     SECTIONS
  ──────────────────────────────────────────────────────── */
  .section    { padding: 36px 0; }
  .section-sm { padding: 20px 0; }
  .section-head { margin-bottom: 20px; }
  .section-head .title-lg { font-size: clamp(1.25rem, 5.5vw, 1.8rem); }
  .section-head .body-lg  { font-size: 13px; }
  .eyebrow { font-size: 9px; }

  /* ────────────────────────────────────────────────────
     ABOUT GRID (pages prestations)
  ──────────────────────────────────────────────────────── */
  .about-grid { grid-template-columns: 1fr; gap: 18px; }
  .about-img-main img { aspect-ratio: 16/9; }
  .about-badge { right: 8px; bottom: -10px; padding: 10px 12px; }
  .badge-num   { font-size: 1.6rem; }
  .about-list-item { font-size: 12.5px; }
  .about-content .title-lg { font-size: clamp(1.15rem, 5vw, 1.6rem); }

  /* ────────────────────────────────────────────────────
     SERVICES / EXPERTISES — 2 colonnes
  ──────────────────────────────────────────────────────── */
  .services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; }
  .service-card  { padding: 14px 10px !important; }
  .service-num   { font-size: 9.5px !important; margin-bottom: 6px !important; }
  .service-title { font-size: .85rem !important; margin-bottom: 6px !important; }
  .service-desc  { font-size: 11.5px !important; line-height: 1.5 !important; margin-bottom: 10px !important; }
  .service-link  { font-size: 10px !important; }
  .service-link svg { width: 11px !important; height: 11px !important; }

  /* ────────────────────────────────────────────────────
     GALERIE — 3 colonnes
  ──────────────────────────────────────────────────────── */
  .gallery-tabs { gap: 4px; margin-bottom: 10px; flex-wrap: wrap; }
  .gallery-tab, .g-tab { padding: 5px 8px; font-size: 10.5px; }
  .gallery-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 4px; }
  .gallery-item { border-radius: 6px; }

  /* ────────────────────────────────────────────────────
     ZONES D'INTERVENTION
  ──────────────────────────────────────────────────────── */
  .zones-grid  { grid-template-columns: 1fr; gap: 18px; }
  .zones-list  { grid-template-columns: 1fr 1fr; gap: 0; }
  .zone-item   { font-size: 12px; padding: 5px 0; }
  .zones-visual { aspect-ratio: 16/9; }

  /* ────────────────────────────────────────────────────
     TÉMOIGNAGES — 2 colonnes
  ──────────────────────────────────────────────────────── */
  .temo-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
  .temo-card { padding: 12px 10px; }
  .temo-text { font-size: 11.5px; line-height: 1.5; margin-bottom: 8px; }
  .temo-author { font-size: 11.5px; }
  .temo-loc    { font-size: 10px; }
  .temo-stars svg { width: 11px; height: 11px; }

  /* ────────────────────────────────────────────────────
     AVIS GOOGLE (CTA bloc)
  ──────────────────────────────────────────────────────── */
  .avis-google-v3 { padding: 14px 12px; gap: 10px; }
  .avis-google-v3-cta { width: 100%; justify-content: center; }

  /* ────────────────────────────────────────────────────
     CTA BAND
  ──────────────────────────────────────────────────────── */
  .cta-band { padding: 28px 0; }
  .cta-band-inner { flex-direction: column; gap: 12px; padding: 0 12px; }
  .cta-band-title { font-size: clamp(1.05rem, 4.5vw, 1.45rem); }
  .cta-band-actions { flex-direction: column; width: 100%; gap: 7px; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }

  /* ────────────────────────────────────────────────────
     PAGE HERO (pages intérieures)
  ──────────────────────────────────────────────────────── */
  .page-hero       { padding: 86px 0 32px; }
  .page-hero-title { font-size: clamp(1.3rem, 5.8vw, 1.9rem); line-height: 1.15; }
  .page-hero-desc  { font-size: 13px; line-height: 1.55; }

  /* ────────────────────────────────────────────────────
     FOOTER — Brand pleine largeur + 3 colonnes de liens
  ──────────────────────────────────────────────────────── */
  .footer { padding-top: 24px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px 10px;
    padding-bottom: 18px;
  }
  .footer-brand       { grid-column: 1 / -1; }
  .footer-desc, .footer p { font-size: 11.5px; margin-bottom: 6px; max-width: 100%; }
  .footer-logo-wrap   { margin-bottom: 6px; }
  .footer-logo-wrap img { height: 34px; }
  .footer-contact-item { font-size: 11px; margin-bottom: 3px; }
  .footer-col-title   { font-size: 8.5px; letter-spacing: .13em; margin-bottom: 6px; }
  .footer-links       { gap: 4px; }
  .footer-links a     { font-size: 11.5px; }
  .footer-bottom      { padding: 10px 0; flex-direction: column; text-align: center; gap: 4px; }
  .footer-bottom p, .footer-bottom a { font-size: 10px; }
  .footer-bottom-links { gap: 10px; }

  /* ────────────────────────────────────────────────────
     FLOAT CTA
  ──────────────────────────────────────────────────────── */
  .float-cta   { right: 10px; bottom: 10px; gap: 5px; }
  .float-btn   { font-size: 11.5px; padding: 10px 13px; }
  .float-devis { display: none; }

  /* ────────────────────────────────────────────────────
     FORMULAIRE
  ──────────────────────────────────────────────────────── */
  .form-box   { padding: 18px 12px; }
  .form-row   { grid-template-columns: 1fr; }
  .f-input, .f-textarea, .f-select { font-size: 16px; }

  /* ────────────────────────────────────────────────────
     CONTACT
  ──────────────────────────────────────────────────────── */
  .contact-wrap { padding: 28px 0 40px; }
  .contact-cols { grid-template-columns: 1fr; gap: 20px; }
  .c-card-v3   { padding: 10px 11px; gap: 9px; }
  .c-card-v3-icon { width: 32px; height: 32px; }
  .c-card-v3-value { font-size: .88rem; }
  .c-card-v3-sub   { font-size: 10.5px; }
  .zone-pill-v3 { font-size: 10.5px; padding: 3px 7px; flex: 1 1 calc(50% - 7px); text-align: center; }
  .horaires-v3-full { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
  .horaire-v3-row   { padding: 5px 7px; font-size: 11px; }
  .contact-avis-block { flex-direction: column; gap: 8px; padding: 12px; }
  .contact-avis-btn   { width: 100%; text-align: center; }
  .contact-phone-block { padding: 28px 20px; }
  .contact-phone-num   { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .contact-map-iframe-big { height: 280px; }

  /* ────────────────────────────────────────────────────
     À PROPOS
  ──────────────────────────────────────────────────────── */
  .about-photos-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto; gap: 7px;
  }
  .about-photo.tall { grid-row: auto; }
  .stats-row { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; }
  .stat-block { padding: 14px 10px; }
  .stat-block-num   { font-size: 1.6rem; }
  .stat-block-label { font-size: 10.5px; }
  .valeurs-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
  .valeur-card  { padding: 13px 10px; }
  .valeur-title { font-size: .88rem; }
  .valeur-desc  { font-size: 12px; }
  .certif-row   { flex-direction: row; flex-wrap: wrap; gap: 7px; }
  .certif-badge { flex: 1 1 calc(50% - 7px); }
  .timeline     { padding-left: 18px; }

  /* ────────────────────────────────────────────────────
     MENU MOBILE — Prestations replié par défaut
  ──────────────────────────────────────────────────────── */
  .nav-mobile-link-toggle {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 22px; font-size: 15px; font-weight: 500;
    color: var(--grey-900); border-bottom: 1px solid var(--warm-100);
    background: none; border-left: none; border-right: none; border-top: none;
    width: 100%; cursor: pointer; text-align: left;
    font-family: var(--ff-body); transition: all .18s; user-select: none;
  }
  .nav-mobile-link-toggle:hover { background: var(--warm-50); color: var(--navy); }
  .nav-mobile-toggle-arrow {
    width: 15px; height: 15px; color: var(--grey-400); flex-shrink: 0;
    transition: transform .28s var(--ease-out);
  }
  .nav-mobile-link-toggle.sub-open .nav-mobile-toggle-arrow {
    transform: rotate(180deg); color: var(--navy);
  }
  .nav-mobile-sub {
    max-height: 0; overflow: hidden;
    transition: max-height .3s var(--ease-out);
    background: var(--warm-50);
  }
  .nav-mobile-sub.sub-open { max-height: 480px; }
  .nav-mobile-sub-link {
    display: block; padding: 10px 22px 10px 34px;
    font-size: 13.5px; color: var(--grey-500);
    border-bottom: 1px solid var(--warm-100); transition: all .18s;
  }
  .nav-mobile-sub-link:hover { color: var(--navy); }

  /* ────────────────────────────────────────────────────
     HORAIRES / LIGHTBOX
  ──────────────────────────────────────────────────────── */
  .horaires-status-bar { padding: 8px 10px; }
  .lb-img { max-width: 96vw; }
}

/* ════════════════════════════════════════════════════════════
   ≤ 480px — Phones standards (SE, Pixel, Galaxy)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  .container { padding: 0 8px; }

  /* Hero : 2 col maintenu, proportions adaptées */
  .hero-inner { grid-template-columns: minmax(0,54fr) minmax(0,46fr); gap: 6px; padding: 0 7px 13px; }
  .hero-text  { padding-top: 64px; }
  .hero-title { font-size: clamp(1rem, 5.2vw, 1.55rem); }
  .hero-subtitle { font-size: clamp(9.5px, 2.5vw, 12px); margin-bottom: 8px; }
  .hero-actions .btn { padding: 8px 7px; font-size: clamp(9.5px, 2.5vw, 11.5px); }
  .hero-right-col { padding-top: 64px; padding-bottom: 13px; }
  .hero-video-card { min-height: 140px; }

  /* Services 2 col */
  .services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .service-card  { padding: 11px 8px !important; }
  .service-title { font-size: .8rem !important; }
  .service-desc  { font-size: 11px !important; }

  /* Galerie 3 col */
  .gallery-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 3px; }

  /* Témoignages : 1 col sous 480px (textes trop longs pour 2 col) */
  .temo-grid { grid-template-columns: 1fr; }

  /* Footer 2 col */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  /* About : photos 1 col */
  .about-photos-grid { grid-template-columns: 1fr; }

  /* Valeurs 2 col */
  .valeurs-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .certif-badge { flex: 1 1 calc(50% - 7px); }

  /* Page hero */
  .page-hero       { padding: 78px 0 28px; }
  .page-hero-title { font-size: clamp(1.15rem, 6.2vw, 1.65rem); }
}

/* ════════════════════════════════════════════════════════════
   ≤ 390px — iPhone 14/15, Galaxy S22
   ════════════════════════════════════════════════════════════ */
@media (max-width: 390px) {

  .container { padding: 0 6px; }

  .hero-inner { grid-template-columns: minmax(0,56fr) minmax(0,44fr); gap: 5px; padding: 0 5px 12px; }
  .hero-text  { padding-top: 60px; }
  .hero-title { font-size: clamp(.95rem, 5.5vw, 1.4rem); }
  .hero-subtitle { font-size: 9.5px; margin-bottom: 7px; }
  .hero-actions { gap: 5px; margin-bottom: 9px; }
  .hero-actions .btn { padding: 7px 6px; font-size: 9.5px; gap: 4px; }
  .hero-actions .btn svg { width: 10px; height: 10px; }
  .hero-stats { gap: 4px; }
  .hero-stat-num { font-size: clamp(.85rem, 3.8vw, 1.15rem); }
  .hero-right-col { padding-top: 60px; padding-bottom: 12px; }

  /* Services 2 col */
  .services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .service-card  { padding: 10px 7px !important; }
  .service-title { font-size: .78rem !important; }

  /* Footer 2 col */
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .btn    { padding: 9px 10px; font-size: 12px; }
  .btn-lg { padding: 11px 12px; font-size: 12.5px; }
  .page-hero-title { font-size: clamp(1.1rem, 7vw, 1.5rem); }
}

/* ════════════════════════════════════════════════════════════
   ≤ 360px — Xiaomi, Samsung Galaxy A, Redmi
   ════════════════════════════════════════════════════════════ */
@media (max-width: 360px) {

  .container { padding: 0 5px; }
  .nav-logo img { height: 32px; }

  .hero-inner { grid-template-columns: minmax(0,57fr) minmax(0,43fr); gap: 4px; padding: 0 4px 10px; }
  .hero-text  { padding-top: 58px; }
  .hero-title { font-size: clamp(.9rem, 5.8vw, 1.3rem); }
  .hero-subtitle { display: none; } /* trop petit — sacrifié pour lisibilité */
  .hero-right-col { padding-top: 58px; padding-bottom: 10px; }
  .hero-video-card { min-height: 120px; }

  .services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .gallery-grid  { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 2px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .valeurs-grid  { grid-template-columns: 1fr 1fr; }
  .section { padding: 26px 0; }
  .cta-band { padding: 22px 0; }
}

/* ════════════════════════════════════════════════════════════
   ≤ 320px — iPhone SE gen 1, très petits Android
   ════════════════════════════════════════════════════════════ */
@media (max-width: 320px) {

  .container { padding: 0 4px; }

  /* 2 col maintenu même à 320px */
  .hero-inner { grid-template-columns: minmax(0,58fr) minmax(0,42fr); gap: 3px; padding: 0 3px 10px; }
  .hero-text  { padding-top: 55px; }
  .hero-title { font-size: .88rem; }
  .hero-right-col { padding-top: 55px; padding-bottom: 10px; }
  .hero-video-card { min-height: 100px; }

  /* Galerie 2 col à 320px (3 col trop petites) */
  .gallery-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 2px; }

  .services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .btn    { padding: 8px 8px; font-size: 11px; }
  .btn-lg { padding: 9px 10px; font-size: 11.5px; }
}

/* ════════════════════════════════════════════════════════════
   PAYSAGE ≤ 768px
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) and (orientation: landscape) {
  .hero { height: auto; }
  .hero-inner { grid-template-columns: minmax(0,55fr) minmax(0,45fr); gap: 10px; }
  .hero-text  { padding-top: 64px; padding-bottom: 16px; }
  .hero-right-col { padding-top: 64px; padding-bottom: 16px; }
  .hero-video-card { min-height: 120px; }
  .section { padding: 20px 0; }
  .page-hero { padding: 68px 0 22px; }
}
