/* ═══════════════════════════════════════════════════════
   FEUILLE DE STYLE COMPLÈTE
   Entreprise BOST – Maçonnerie & gros œuvre Saint-Étienne
   Structure : dans le <style> du <head> (fichier unique)
═══════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────
   1. VARIABLES & RESET
───────────────────────────────────────────────────── */

:root {
  /* Palette BTP : béton, ocre, anthracite */
  --c-beton:       #4b5563;   /* gris béton moyen         */
  --c-beton-clair: #f1f0ee;   /* fond béton très clair    */
  --c-ocre:        #c2700a;   /* ocre / brique accent     */
  --c-ocre-vif:    #f68f0f;   /* ocre / brique plus clair */
  --c-ocre-clair:  #fdf3e7;   /* ocre très dilué          */
  --c-ocre-rgb:    194, 112, 10; /* ocre  transparent     */
  --c-anthracite:  #1f2937;   /* quasi-noir               */
  --c-anthracite2: #111827;   /* noir profond (footer)    */
  --c-texte:       #374151;   /* texte courant            */
  --c-texte-doux:  #6b7280;   /* texte secondaire         */
  --c-blanc:       #ffffff;
  --c-bordure:     #e5e7eb;
  --c-blanc-rgba:  255, 255, 255, 0.7; /* texte claire transparent 0.7 */

  /* Typographie */
  --font-base: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Espacements & rayons */
  --rayon-sm:  6px;
  --rayon-md:  10px;
  --rayon-lg:  16px;
  --espace-section: 88px;

  /* Ombres */
  --ombre-card:       0 2px 12px rgba(0,0,0,0.08);
  --ombre-card-hover: 0 6px 24px rgba(0,0,0,0.14);
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-base);
  color: var(--c-texte);
  background-color: var(--c-blanc);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Suppression de la liste par défaut partout où on
   utilise role="list" pour des raisons d'accessibilité */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--c-ocre);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #a85e08;
  text-decoration: underline;
}

abbr[title] {
  text-decoration: none;
  color: var(--c-ocre);
  font-weight: 700;
}

.italic {
	font-style: italic;
}

/* ─────────────────────────────────────────────────────
   2. UTILITAIRES COMMUNS
───────────────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* Sections : espacements verticaux */
.section {
  padding-block: var(--espace-section);
}
.section--light {
  background-color: var(--c-beton-clair);
}

.section--dark {
  background-color: var(--c-anthracite);
}

/* Badge de section (ex. "À PROPOS", "PRESTATIONS") */
.section-badge {
  display: inline-block;
  background-color: var(--c-ocre-clair);
  color: var(--c-ocre);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid #f0d5b0;
  margin-bottom: 14px;
}
/* Variante sur fond sombre */
.section-badge--dark {
  background-color: rgba(194,112,10,0.15);
  color: #f5a742;
  border-color: rgba(194,112,10,0.3);
}

/* Titre de section H2 */
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--c-anthracite);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title--blanc {
  color: var(--c-blanc);
}

/* Sous-titre / chapeau de section */
.section-intro {
  font-size: 1.05rem;
  color: var(--c-texte-doux);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.section-intro--clair {
  color: rgba(255,255,255,0.65);
}

/* En-tête centré (utilisé dans Prestations) */
.section-header-centered {
  text-align: center;
  margin-bottom: 52px;
}
.section-header-centered .section-intro {
  margin-inline: auto;
}

/* Alternance explicite des sections Réalisations */
/* Si AP section plus clair */
.section--alt,
.section--light .realisations-note {
  background-color: var(--c-blanc);
}
/* Si AP section plus sombre */
.section--alt .real-card,
.section--alt .realisations-note {
  background-color: var(--c-beton-clair);
}

/* Carte premium partagée */
.real-card--featured {
  border-color: rgba(194,112,10,0.18);
}

.real-card--featured .real-visuel {
  height: 200px;
  background-color: var(--c-anthracite);
}

.real-card--featured .real-visuel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.real-featured-badge {
  margin: 0 0 10px 0;
}

.real-featured-badge span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: var(--c-ocre-clair);
  color: var(--c-ocre);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.real-featured-meta {
  margin: 0 0 14px 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ocre);
}

.real-featured-link-wrap {
  margin: 0;
}

.real-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--c-ocre);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.real-featured-link:hover {
  gap: 10px;
  color: #a85e08;
  text-decoration: none;
}


/* Boutons */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--rayon-md);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color     0.2s ease,
    transform        0.15s ease,
    box-shadow       0.2s ease;
  border: 2px solid transparent;
  line-height: 1.3;
}
.btn:focus-visible {
  outline: 3px solid var(--c-ocre);
  outline-offset: 3px;
}

.btn-primary {
  background-color: var(--c-ocre);
  color: var(--c-blanc);
  border-color: var(--c-ocre);
}
.btn-primary:hover {
  background-color: #a85e08;
  border-color: #a85e08;
  color: var(--c-blanc);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(194,112,10,0.30);
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  color: var(--c-anthracite);
  border-color: var(--c-bordure);
}
.btn-outline:hover {
  border-color: var(--c-ocre);
  color: var(--c-ocre);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-outline-blanc {
  background-color: transparent;
  color: var(--c-blanc);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-blanc:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: var(--c-blanc);
  color: var(--c-blanc);
  text-decoration: none;
}

.btn-dispo {
	display:block;
	text-align:center;
	margin-top:24px;
}

/* Séparateur horizontal léger */
.divider {
  border: none;
  border-top: 1px solid var(--c-bordure);
  margin: 0;
}

/* Tags génériques (À propos) */
.tag {
  display: inline-block;
  background-color: var(--c-blanc);
  color: var(--c-beton);
  border: 1px solid var(--c-bordure);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ─────────────────────────────────────────────────────
   3. NAVIGATION FIXE
───────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(17,24,39,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { text-decoration: none; }

.nav-logo img {
  height: 36px;
  width: auto;
  border-radius: var(--rayon-sm);
}

.nav-logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-blanc);
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.4px;
}
/* Liens de navigation */
/* Liens de navigation (ajustements pour icônes desktop) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 7px 11px;
  border-radius: var(--rayon-sm);
  letter-spacing: 0.3px;
  transition: color 0.2s, background-color 0.2s;
  display: flex; /* AJOUT : Flex pour aligner icône + texte horizontalement */
  align-items: center; /* AJOUT : Centre verticalement icône et texte */
  gap: 8px; /* AJOUT : Espace uniforme entre icône et texte (agréable sans surcharge) */
}

.nav-links a:hover {
  color: var(--c-blanc);
  background-color: rgba(255,255,255,0.08);
  text-decoration: none;
}

/* Style pour icônes SVG (dimensionnement et position) */
.nav-icon {
  width: 17px; /* CORRECTION : Fixe à 17px pour cohérence (pas scalable oversized) */
  height: 17px;
  fill: currentColor; /* AJOUT : Hérite couleur texte (blanc doux, ocre hover via parent) */
  flex-shrink: 0; /* Empêche redimensionnement */
  transition: fill 0.2s; /* AJOUT : Transition douce pour hover */
}

.nav-links a:hover .nav-icon {
  fill: var(--c-ocre); /* AJOUT : Ocre sur hover pour accent BTP et interactivité */
}

/* Bouton CTA dans la nav */
.nav-cta {
  background-color: var(--c-ocre) !important;
  color: var(--c-blanc) !important;
  padding: 8px 18px !important;
  border-radius: var(--rayon-md) !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background-color: #a85e08 !important;
  color: var(--c-blanc) !important;
}

/* Toggle menu mobile (hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--rayon-sm);
  transition: background-color 0.2s;
}
.nav-toggle:hover {
  background-color: rgba(255,255,255,0.08);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--c-blanc);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
/* Animation croix quand menu ouvert */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─────────────────────────────────────────────────────
   4. SECTION HERO
───────────────────────────────────────────────────── */
.hero {
  padding-top: 40px; /* compense la nav fixe */
  min-height: 100svh;
  background-color: var(--c-anthracite2);
  background-image:
    radial-gradient(ellipse 60% 50% at 72% 40%,
      rgba(194,112,10,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 10% 75%,
      rgba(75,85,99,0.22) 0%, transparent 60%);
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  padding-block: 50px 72px;
}
/* Gauche : texte */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--c-ocre);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--c-blanc);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: #f5a742; /* ocre plus lumineux pour accent dans titre */
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.78;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
/* Mini-stats sous les boutons */
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.hero-stat-number {
  font-size: 1.65rem;
  font-weight: 800;
  color: #f5a742;
  line-height: 1;
  letter-spacing: -0.5px;
}
.hero-stat-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.48);
  margin-top: 5px;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

/* Carte contact rapide (colonne droite du hero) */
.hero-card {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--rayon-lg);
  padding: 30px 26px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.hero-card-icon {
  width: 45px;
  height: 45px;
  border-radius: var(--rayon-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  padding: 5px;
}

.hero-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-ocre-vif)
  /*line-height: 1.3; retiré pour afficher la couleur ?!? */
}
.hero-card-title span {
  display: block;
  font-size: 0.73rem;
  font-weight: 400;
  color: rgba(255,255,255,0.42);
  margin-top: 3px;
}

.hero-card-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.hero-card-row:last-of-type {
  margin-bottom: 0;
}

.hero-card-picto {
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.hero-card-info-label {
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-ocre); /*rgba(255,255,255,0.32);*/
  margin-bottom: 3px;
}

.hero-card-info-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-blanc);
  line-height: 1.5;
}
.hero-card-info-val a {
  color: #f5a742;
  text-decoration: none;
}
.hero-card-info-val a:hover {
  text-decoration: underline;
  color: #f5a742;
}
.hero-card-info-val > span {
	display: block;
	font-weight: 500;
	color: #6e747e;
	font-style: italic;
}

.hero-card-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 20px 0;
}

.hero-card .btn-primary {
  display: block;
  text-align: center;
  width: 100%;
}

/* Hero intérieur - variantes page Réalisations */

.hero-card--selection {
  align-self: start;
}

.hero-card-mobile-note {
  display: none;
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* Harmonisation légère */
.hero-card--selection .hero-card-info-val {
  line-height: 1.65;
}

.hero-card--selection .hero-card-header {
  margin-bottom: 20px;
}

/* ─────────────────────────────────────────────────────
   5. SECTION À PROPOS
───────────────────────────────────────────────────── */
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

.apropos-content p {
  font-size: 1rem;
  color: var(--c-texte);
  line-height: 1.8;
  margin-bottom: 18px;
}
.apropos-content p:last-of-type {
  margin-bottom: 0;
}

.apropos-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
  margin-bottom: 28px;
}

.apropos-cta {
  margin-top: 4px;
}

/* Carte identité entreprise */
.apropos-card {
  background-color: var(--c-blanc);
  border: 1px solid var(--c-bordure);
  border-radius: var(--rayon-lg);
  padding: 28px 24px;
  position: sticky;
  top: 84px; /* sous la nav fixe */
}

.apropos-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-anthracite);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--c-ocre);
  display: inline-block;
}

.apropos-dl {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.apropos-dl-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-bordure);
  align-items: baseline;
}
.apropos-dl-row:last-child {
  border-bottom: none;
}

.apropos-dl-row dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--c-texte-doux);
  line-height: 1.5;
}

.apropos-dl-row dd {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-anthracite);
  line-height: 1.5;
}

/* Bloc qualification Qualibat dans la carte "Entreprise BOST en bref" */
.apropos-label {
  padding-top: 12px;
  border-top: 1px solid var(--c-bordure);
}

.apropos-label-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--c-ocre);
  margin-bottom: 8px;
}

.apropos-label-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-anthracite);
  line-height: 1.35;
  margin-bottom: 12px;
}

.apropos-label-inner {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: start;
  padding: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
  border: 1px solid #ece7df;
  border-radius: var(--rayon-md);
  box-shadow: 0 1px 6px rgba(17, 24, 39, 0.04);
}

.apropos-label-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
}

.apropos-label-logo-link:hover {
  text-decoration: none;
}

.apropos-label-logo {
  width: 92px;
  height: auto;
  display: block;
  border-radius: 10px;
  background-color: var(--c-blanc);
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.08);
}

.apropos-label-content {
  min-width: 0;
}

.apropos-label-text {
  font-size: 0.83rem;
  color: var(--c-texte);
  line-height: 1.6;
  margin-bottom: 4px;
}

.apropos-label-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-ocre);
  text-decoration: none;
}

.apropos-label-link:hover {
  color: #a85e08;
  text-decoration: underline;
}

.apropos-label-link::after {
  content: "↗";
  font-size: 0.78rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .apropos-label-title {
    margin-bottom: 10px;
  }

  .apropos-label-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 13px;
  }

  .apropos-label-logo {
    width: 84px;
  }

  .apropos-label-logo-link {
    justify-content: flex-start;
  }

  .apropos-label-text {
    font-size: 0.82rem;
  }
}


/* ─────────────────────────────────────────────────────
   6. BANDE CHIFFRES CLÉS
───────────────────────────────────────────────────── */
.chiffres-cles {
  background-color: var(--c-ocre);
  padding-block: 40px;
}

.chiffres-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.chiffre-item {
  flex: 1 1 180px;
  text-align: center;
  padding: 12px 24px;
}

.chiffre-nombre {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--c-blanc);
  line-height: 1.1;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.chiffre-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.4;
}
.chiffre-svg {
	line-height: 1.7;
}

/* Séparateurs verticaux entre les items */
.chiffre-separateur {
  width: 1px;
  height: 48px;
  background-color: rgba(255,255,255,0.25);
  flex-shrink: 0;
  align-self: center;
}

/* ─────────────────────────────────────────────────────
   7. SECTION PRESTATIONS
───────────────────────────────────────────────────── */
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  list-style: none;
}

.presta-card {
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--rayon-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.presta-card:hover {
  border-color: rgba(194,112,10,0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

.presta-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-ocre);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}

.presta-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  line-height: 1;
}

.presta-titre {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-blanc);
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Ligne décorative sous le titre */
.presta-titre::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background-color: var(--c-ocre);
  border-radius: 2px;
  margin-top: 10px;
}

.presta-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 16px;
}

.presta-liste {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  flex: 1; /* pousse le CTA vers le bas */
}
.presta-liste li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.presta-liste li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--c-ocre);
  flex-shrink: 0;
}

.presta-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  color: #f5a742;
  text-decoration: none;
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: gap 0.2s, color 0.2s;
}
.presta-cta:hover {
  color: var(--c-blanc);
  gap: 10px;
  text-decoration: none;
}

/* ─────────────────────────────────────────────────────
   8. SECTION RÉALISATIONS
───────────────────────────────────────────────────── */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  list-style: none;
  margin-bottom: 36px;
}

.real-card {
  border: 1px solid var(--c-bordure);
  border-radius: var(--rayon-lg);
  overflow: hidden;
  background-color: var(--c-blanc);
  box-shadow: var(--ombre-card);
  transition: transform 0.2s, box-shadow 0.2s;
}
.real-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ombre-card-hover);
}

/* Zone visuelle (placeholder en attente de photo) */
.real-visuel {
  height: 160px;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* Texture subtile pour rappeler le béton */
.real-visuel::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.015) 0px,
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 10px
    );
}

.real-icone {
  font-size: 2.4rem;
  position: relative;
  z-index: 1;
  filter: grayscale(20%);
}

.real-body {
  padding: 18px 20px 22px;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 1rem;
  border-radius: 7px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(198, 106, 43, 0.08);
  color: #c66a2b;
}

.real-titre {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-anthracite);
  margin-bottom: 8px;
  line-height: 1.3;
}

.real-desc {
  font-size: 0.83rem;
  color: var(--c-texte-doux);
  line-height: 1.6;
}

/* Note en bas de la section réalisations */
.realisations-note {
  text-align: center;
  font-size: 0.92rem;
  color: var(--c-texte-doux);
  padding: 20px 24px;
  background-color: var(--c-beton-clair);
  border-radius: var(--rayon-md);
  border: 1px solid var(--c-bordure);
}
.realisations-note a {
  font-weight: 600;
  color: var(--c-ocre);
}
.realisations-note a:hover {
  color: #a85e08;
}
/* Notes de fin des sections Réalisations */

.realisations-note-title,
.realisations-note-text,
.realisations-note-cta {
  margin: 0;
}

.realisations-note-title {
  margin-bottom: 10px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--c-anthracite);
  line-height: 1.5;
}

.realisations-note-text {
  margin-bottom: 10px;
  line-height: 1.75;
}

.realisations-note-cta {
  line-height: 1.7;
}

.realisations-note-cta a {
  font-weight: 600;
}

@media (max-width: 768px) {
  .realisations-note {
    padding: 18px 16px;
    text-align: left;
  }

  .realisations-note-title {
    font-size: 0.95rem;
  }

  .realisations-note-text,
  .realisations-note-cta {
    font-size: 0.88rem;
  }
}

/* FIN */

/* Texture abstraite pour placeholders réalisations (béton évoqué) */
.real-visuel-texture {
  background: linear-gradient(135deg, var(--c-beton) 0%, var(--c-beton-clair) 100%); /* Dégradé gris béton dilué */
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, opacity 0.2s; /* Hover pro */
}

/* Grain subtil (fissures/texture béton) via repeating */
.real-visuel-texture::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.015) 0px,
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 10px
    ),
    linear-gradient(to bottom, transparent 50%, rgba(var(--c-ocre-rgb), 0.03) 100%); /* Accent ocre subtil pour chaleur BTP */
  opacity: 0.7; /* Pas trop prononcé */
  mix-blend-mode: overlay; /* Mélange pour effet matière réaliste */
}

/* Lignes abstraites (évoque structure/chantier sans littéral) */
.real-visuel-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(135deg, transparent 0px, transparent 15px, rgba(var(--c-ocre-rgb), 0.05) 15px, rgba(var(--c-ocre-rgb), 0.05) 16px); /* Lignes diagonales fines ocre */
  opacity: 0.4;
  transform: scale(1.1); /* Léger oversize pour dynamisme */
}

/* Hover pour interactivité pro */
.real-card:hover .real-visuel-texture {
  transform: scale(1.03); /* Zoom subtil */
  opacity: 0.95; /* Éclaircissement pour "vie" */
}
/* Zone média en haut de la carte */
.real-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #1f2937;
}

/* Image */
.real-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  filter: grayscale(12%) contrast(1) brightness(0.88);
  transition:
    transform 0.45s ease,
    filter 0.35s ease;
}

/* Voile léger */
.real-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(17,24,39,0.28), rgba(17,24,39,0.08));
  opacity: 1;
  transition: opacity 0.35s ease, background 0.35s ease;
  pointer-events: none;
}

.real-media::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-ocre), #f5a742);
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;
}

.real-footer-link {
  margin-top: 16px;
}

.real-footer-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-anthracite);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.real-footer-link a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: var(--c-ocre);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  opacity: 0.9;
}

.real-footer-link a::after {
  content: "→";
  color: var(--c-ocre);
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.real-footer-link a:hover,
.real-footer-link a:focus-visible {
  color: var(--c-ocre);
  text-decoration: none;
}

.real-footer-link a:hover::before,
.real-footer-link a:focus-visible::before {
  transform: scaleX(1);
}

.real-footer-link a:hover::after,
.real-footer-link a:focus-visible::after {
  transform: translateX(4px);
}

/* Hover */
.real-card:hover .real-image,
.real-card-link:hover .real-image,
.real-card-link:focus-visible .real-image {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.04) brightness(0.96);
}

.real-card:hover .real-media::after,
.real-card-link:hover .real-media::after,
.real-card-link:focus-visible .real-media::after {
  background:
    linear-gradient(to top, rgba(17,24,39,0.18), rgba(17,24,39,0.02));
}


/* ─────────────────────────────────────────────────────
   9. SECTION ZONE D'INTERVENTION
───────────────────────────────────────────────────── */
.intervention-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.intervention-para {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  margin-bottom: 18px;
}

.secteurs-bloc {
  margin-top: 32px;
}

.secteurs-titre {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.38);
  margin-bottom: 14px;
}

.secteurs-liste {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.secteur-tag {
  display: inline-block;
  background-color: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 50px;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.secteur-tag:hover {
  background-color: rgba(194,112,10,0.18);
  border-color: rgba(194,112,10,0.45);
  color: #f5a742;
}

/* Carte coordonnées */
.coords-card {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--rayon-lg);
  padding: 28px 24px;
  margin-bottom: 20px;
}

.coords-titre {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-blanc);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.coords-liste {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.coords-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.coords-row:last-child {
  border-bottom: none;
}

.coords-picto {
  font-size: 0.95rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.coords-label {
  font-size: 0.67rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.32);
  margin-bottom: 3px;
}

.coords-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-blanc);
  line-height: 1.55;
}
.coords-val a {
  color: #f5a742;
  text-decoration: none;
}
.coords-val a:hover {
  text-decoration: underline;
  color: #f5a742;
}

/* Carte Leaflet */
.map-wrapper {
	margin-top: 30px;
  border-radius: var(--rayon-lg);
  overflow: visible;
  border: 1px solid rgba(255,255,255,0.11);
}

#map {
  position: relative;
  width: 100%;
  height: 340px;
  min-height: 340px;
  background-color: #2d3748;
  border-radius: var(--rayon-lg) var(--rayon-lg) 0 0;
  overflow: hidden;
}

.map-link {
  display: block;
  text-align: center;
  padding: 11px 16px;
  background-color: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  font-weight: 600;
  color: #f5a742;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background-color 0.2s, color 0.2s;
}

.map-link:hover {
  background-color: rgba(194,112,10,0.15);
  color: var(--c-blanc);
  text-decoration: none;
}
/* ================================================
   RESPONSIVE CARTE
================================================ */
@media (max-width: 900px) {
  #map {
    height: 320px;
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  #map {
    height: 240px;
    min-height: 240px;
  }
}

/* ─────────────────────────────────────────────────────
   10. SECTION CONTACT
───────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-chapeau {
  font-size: 1rem;
  color: var(--c-texte-doux);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Coordonnées dans la section contact */
.contact-coords {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.contact-coord-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--c-texte);
  line-height: 1.5;
}

.contact-coord-picto {
  font-size: 0.9rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.contact-coord-row a {
  color: var(--c-ocre);
  text-decoration: none;
  font-weight: 600;
}
.contact-coord-row a:hover {
  text-decoration: underline;
}
/* Mettre une coordonnée sur deux lignes */
.text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.25em; /* ou 4px, ajuste selon le visuel */
}

/* Encadré conseil */
.contact-conseil {
  background-color: var(--c-ocre-clair);
  border: 1px solid #f0d5b0;
  border-left: 4px solid var(--c-ocre);
  border-radius: var(--rayon-md);
  padding: 16px 18px;
  font-size: 0.88rem;
  color: var(--c-texte);
  line-height: 1.7;
}

.contact-conseil-titre {
  font-weight: 700;
  color: var(--c-ocre);
  margin-bottom: 6px;
  font-size: 0.9rem;
}

/* Formulaire */
.contact-form-wrapper {
  background-color: var(--c-blanc);
  border: 1px solid var(--c-bordure);
  border-radius: var(--rayon-lg);
  padding: 36px 32px;
  box-shadow: var(--ombre-card);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 0;
}

.form-row {
  display: flex;
  gap: 16px;
}
.form-row--2cols > .form-group {
  flex: 1 1 0;
  min-width: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--c-anthracite);
  letter-spacing: 0.2px;
}

.form-input {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-base);
  font-size: 0.92rem;
  color: var(--c-anthracite);
  background-color: var(--c-blanc);
  border: 1.5px solid var(--c-bordure);
  border-radius: var(--rayon-md);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  line-height: 1.5;
}
.form-input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}
.form-input:hover {
  border-color: #d1d5db;
}
.form-input:focus {
  border-color: var(--c-ocre);
  box-shadow: 0 0 0 3px rgba(194,112,10,0.15);
}
.form-input:invalid:not(:placeholder-shown) {
  border-color: #dc2626;
}

/* Select : flèche personnalisée */
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

.form-mention {
  font-size: 0.76rem;
  color: var(--c-texte-doux);
  line-height: 1.6;
  margin-top: -4px;
}

.form-submit {
  padding: 14px 28px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-top: 4px;
}
.form-submit:hover {
  background-color: #a85e08;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(194,112,10,0.30);
}

/* Message de confirmation post-envoi */
.form-confirmation {
  background-color: #f0fdf4;
  border: 1px solid #86efac;
  border-left: 4px solid #16a34a;
  border-radius: var(--rayon-md);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #166534;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.form-confirmation[hidden] {
  display: none;
}

/* ─────────────────────────────────────────────────────
   11. FOOTER
───────────────────────────────────────────────────── */
.site-footer {
  background-color: var(--c-anthracite2);
  color: rgba(255,255,255,0.65);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-block: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Bloc identité */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-logo:hover { text-decoration: none; }

.footer-logo img {
  height: 40px;
  width: auto;
  border-radius: var(--rayon-sm);
}

.footer-logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-blanc);
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(var(--c-blanc-rgba));
  line-height: 1.7;
}

.footer-contact-rapide {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact-rapide a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #f5a742;
  text-decoration: none;
}
.footer-contact-rapide a:hover {
  text-decoration: underline;
  color: #f5a742;
}

/* Colonnes de navigation */
.footer-nav-titre {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--c-blanc);
  margin-bottom: 18px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f5a742;
  text-decoration: none;
}

/* Adresse dans le footer */
.footer-adresse {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-adresse p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(var(--c-blanc-rgba));
  line-height: 1.55;
}
.footer-adresse a {
  color: rgba(var(--c-blanc-rgba));
  text-decoration: none;
  transition: color 0.2s;
}
.footer-adresse a:hover {
  color: #f5a742;
}

/* Barre de bas de footer */
.footer-bottom {
  padding-block: 20px;
  background-color: #181f2e; /* ajout */
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-bottom-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-bottom-nav a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-nav a:hover {
  color: #f5a742;
  text-decoration: none;
}

/* Logo Qualibat discret dans le footer */

.footer-qualification {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: -2px;
  margin-bottom: 2px;
}

.footer-qualification-rule {
  display: block;
  width: 56px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(245, 167, 66, 0.55) 0%,
    rgba(245, 167, 66, 0.12) 100%
  );
}

.footer-qualification-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-qualification-label {
  margin: 0;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.38);
  white-space: nowrap;
}

.footer-qualification-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  opacity: 0.94;
}

.footer-qualification-link:hover {
  transform: translateY(-1px);
  opacity: 1;
  text-decoration: none;
}

.footer-qualification-logo {
  width: 62px;
  height: auto;
  display: block;
  padding: 5px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}
.footer-qualification {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 6px;
}

.footer-qualification-label {
  margin: 0;
  padding-top: 6px;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.38);
  white-space: nowrap;
}

.footer-qualification-logo {
  width: 62px;
  height: auto;
  display: block;
  padding: 1px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
}

@media (max-width: 768px) {
  .footer-qualification {
    gap: 10px;
  }

  .footer-qualification-inner {
    gap: 12px;
  }

  .footer-qualification-logo {
    width: 58px;
    padding: 1px;
  }
}

/* ─────────────────────────────────────────────────────
   12. RESPONSIVE — TABLETTE (≤ 1024px)
───────────────────────────────────────────────────── */
@media (max-width: 1024px) {

  :root {
    --espace-section: 72px;
  }

  /* Hero : passage en colonne unique */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 56px;
  }
  .hero-description {
    max-width: 100%;
  }

  /* La carte contact hero passe en dessous */
  .hero-card {
    max-width: 540px;
  }

  /* À propos : colonne unique */
  .apropos-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .apropos-card {
    position: static; /* supprime le sticky sur tablette */
    max-width: 100%;
  }
  .apropos-dl-row {
    grid-template-columns: 100px 1fr;
  }

  /* Prestations : 2 colonnes → ok, déjà géré */

  /* Réalisations : 3 → 2 colonnes */
  .realisations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Zone d'intervention : colonne unique */
  .intervention-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intervention-card {
    max-width: 540px;
  }

  /* Contact : colonne unique */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-wrapper {
    padding: 28px 24px;
  }

  /* Footer : 2 colonnes */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding-block: 52px;
  }
  .footer-brand {
    grid-column: 1 / -1; /* pleine largeur */
  }
}

/* ─────────────────────────────────────────────────────
   13. RESPONSIVE — MOBILE (≤ 768px)
───────────────────────────────────────────────────── */
/*@media (max-width: 768px) { agrandir pour tablette */
@media (max-width: 1070px) {
  :root {
    --espace-section: 56px;
  }

  /* ── Menu hamburger mobile ── */
  .nav-toggle {
    display: flex; /* affiche le hamburger */
  }

  .nav-wrapper {
    position: relative; /* CORRECTION : Rend le position: absolute du menu relatif au wrapper (centré, aligné avec le container) */
  }

  .nav-links {
    /* Menu caché par défaut */
    display: none;
    position: absolute;
    top: 64px; /* hauteur de la nav */
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background-color: rgba(17,24,39,1); /* CHANGEMENT : Opacité 1 pour moins de transparence, évite confusion avec fond page */
    background-image: linear-gradient(to bottom, var(--c-anthracite) 0%, var(--c-anthracite2) 100%); /* AJOUT : Gradient subtil pour profondeur design */
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 2px solid var(--c-ocre); /* AJOUT : Bordure inférieure ocre pour démarcation graphique et accent BTP */
    padding: 16px 24px; /* AJOUT : Padding augmenté pour plus d'espace, plus agréable */
    gap: 8px; /* AJOUT : Gap plus large pour respiration entre liens */
    backdrop-filter: blur(12px); /* AJOUT : Blur plus fort pour effet glassy pro */
    -webkit-backdrop-filter: blur(12px);
    z-index: 99;
    border-radius: 0 0 var(--rayon-lg) var(--rayon-lg); /* AJOUT : Rayon bas pour effet dropdown doux, cohérent avec cards */
    box-shadow: 0 4px 16px rgba(0,0,0,0.2); /* AJOUT : Ombre légère pour "pop" et valeur ajoutée sans confusion */
    transition: opacity 0.3s ease, transform 0.3s ease; /* AJOUT : Transition pour ouverture fluide (slide-down) */
    opacity: 0;
    transform: translateY(-10px); /* Départ légèrement haut pour animation */
  }

  /* Menu ouvert via JS */
  .nav-links.nav-menu--open {
    display: flex;
    opacity: 1;
    transform: translateY(0); /* Animation slide-down agréable */
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1); /* AJOUT : Séparateur fin entre items pour structure design */
  }
  .nav-links li:last-child {
    border-bottom: none; /* Pas de séparateur sur dernier */
  }
  .nav-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px; /* AJOUT : Padding augmenté pour touch-friendly et look pro */
    font-size: 0.95rem;
    border-radius: var(--rayon-sm);
    transition: background-color 0.2s, color 0.2s; /* AJOUT : Transition hover pour interactivité */
  }
  .nav-links a:hover {
    background-color: rgba(194,112,10,0.15); /* AJOUT : Hover ocre subtil pour accent BTP, plus agréable */
    color: var(--c-blanc);
  }

  /* CTA nav pleine largeur sur mobile */
  .nav-cta {
    text-align: center;
    margin-top: 8px !important; /* AJOUT : Marge pour séparation visuelle */
    padding: 12px 18px !important;
    background-color: var(--c-ocre) !important; /* Renforce pour pop */
    box-shadow: 0 2px 8px rgba(194,112,10,0.3); /* AJOUT : Ombre ocre pour design premium */
  }

	.nav-icon {
	  width: 16px;
	  height: 16px;
	  fill: rgba(255,255,255,0.72); /* Blanc doux comme liens */
	  flex-shrink: 0;
	  transition: fill 0.2s; /* Pour hover */
	}

	.nav-links a:hover .nav-icon {
	  fill: var(--c-ocre); /* Ocre sur hover pour accent BTP */
	}

  /* ── Hero ── */
  .hero {
    min-height: auto;
    padding-bottom: 48px;
  }
  .hero-inner {
    padding-block: 40px;
    gap: 36px;
  }
  .hero h1 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .hero-actions .btn {
    text-align: center;
    width: 100%;
  }
  .hero-stats {
    gap: 24px;
  }
  .hero-card {
    max-width: 100%;
  }

  /* ── Chiffres clés ── */
  .chiffres-inner {
    flex-direction: column;
    gap: 0;
  }
  .chiffre-separateur {
    width: 48px;
    height: 1px;
    margin: 4px 0;
  }
  .chiffre-item {
    padding: 12px 24px;
    flex-basis: 100px;
  }

  /* ── À propos ── */
  .apropos-tags {
    gap: 6px;
  }
  .apropos-dl-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .apropos-dl-row dt {
    font-size: 0.68rem;
  }

  /* ── Prestations : 1 colonne ── */
  .prestations-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ── Réalisations : 1 colonne ── */
  .realisations-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .real-visuel {
    height: 130px;
  }

  /* ── Zone d'intervention ── */
  .secteurs-liste {
    gap: 6px;
  }
  .coords-card {
    padding: 22px 18px;
  }
  #map {
    height: 200px;
  }

  /* ── Contact ── */
  .form-row--2cols {
    flex-direction: column;
    gap: 18px;
  }
  .contact-form-wrapper {
    padding: 22px 18px;
    border-radius: var(--rayon-md);
    box-shadow: none;
    border-color: var(--c-bordure);
  }

  /* ── Footer ── */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 40px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom-inner {
    flex-direction: column; /* Legal au-dessus */
    align-items: flex-start; /* Aligné gauche global */
    gap: 12px; /* Espace entre legal et nav */
  }

  .footer-bottom-nav {
    display: flex;
    flex-direction: row; /* Row pour même ligne */
    flex-wrap: nowrap; /* CORRECTION : Pas de wrap, force une ligne */
    justify-content: space-between; /* Gauche "Nous écrire", droite "Retour en haut" */
    align-items: center; /* Centre vertical */
    width: 100%; /* Pleine largeur pour space-between efficace */
    gap: 0; /* Pas de gap interne, space-between gère l'espace */
  }

  .footer-bottom-nav a {
    font-size: 0.82rem; /* Réduit pour clean mobile */
    color: var(--c-texte-doux);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-bottom-nav a:hover {
    color: var(--c-ocre); /* Ocre hover */
  }
}


/* ─────────────────────────────────────────────────────
   14. RESPONSIVE — TRÈS PETIT MOBILE (≤ 400px)
───────────────────────────────────────────────────── */
@media (max-width: 400px) {

  .container {
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: 1.65rem;
  }
  .hero-stat-number {
    font-size: 1.3rem;
  }
  .hero-stats {
    gap: 18px;
  }

  .section-title {
    font-size: 1.45rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .presta-card {
    padding: 22px 18px;
  }

  .contact-form-wrapper {
    padding: 18px 14px;
  }

  .footer-inner {
    padding-block: 32px;
  }
  .footer-bottom-nav {
    flex-direction: column;
    gap: 8px;
  }
  .footer-bottom-nav a {
    font-size: 0.78rem; /* Plus petit pour fit */
  }
}

/* ─────────────────────────────────────────────────────
   15. ACCESSIBILITÉ & PRÉFÉRENCES SYSTÈME
───────────────────────────────────────────────────── */

/* Masquer visuellement mais garder pour les lecteurs d'écran */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Désactiver les animations pour les utilisateurs
   qui préfèrent réduire les mouvements */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* Focus visible global pour la navigation au clavier */
:focus-visible {
  outline: 3px solid var(--c-ocre);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Améliorer la lisibilité en mode impression */
@media print {
  .site-header,
  .nav-toggle,
  .hero-card,
  .chiffres-cles,
  #map,
  .map-link,
  .contact-form-wrapper,
  .site-footer {
    display: none !important;
  }
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  .section {
    padding-block: 24pt;
    page-break-inside: avoid;
  }
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #555;
  }
  a[href^="#"]::after,
  a[href^="tel"]::after,
  a[href^="mailto"]::after {
    content: none;
  }
}

/* ─────────────────────────────────────────────────────
   PAGE REMERCIEMENT (thanks.html)
───────────────────────────────────────────────────── */
.thank-you-body {
  background-color: var(--c-beton-clair); /* Fond clair cohérent avec sections light */
  min-height: 100vh; /* Pleine hauteur pour centrage vertical */
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-section {
  padding-block: var(--espace-section); /* Espacement vertical comme autres sections */
  text-align: center; /* Centrage pour design pro */
}

.thank-you-card {
  background-color: var(--c-blanc); /* Carte blanche pour contraste */
  border: 1px solid var(--c-bordure); /* Bordure subtile */
  border-radius: var(--rayon-lg); /* Rayon design réutilisé */
  padding: 48px 32px; /* Espacement intérieur généreux */
  max-width: 540px; /* Largeur max pour focus, comme hero-card */
  margin-inline: auto; /* Centrage horizontal */
  box-shadow: var(--ombre-card); /* Ombre légère pour profondeur */
  transition: box-shadow 0.2s; /* Transition hover pour interactivité */
}
.thank-you-card:hover {
  box-shadow: var(--ombre-card-hover); /* Effet hover design */
}

.thank-you-icon {
  margin-bottom: 24px; /* Espace sous icône */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-ocre-clair); /* Fond ocre dilué pour accent */
  border-radius: 50%; /* Cercle design */
  width: 80px;
  height: 80px;
}

/* Réutilisation existante : .section-badge--dark pour variante sombre */
.section-badge--dark {
  margin-bottom: 16px; /* Ajustement spacing */
}

/* Liens sur cards réalisations (pour ouverture page détail) */
.real-card-link {
  text-decoration: none; /* Pas de underline */
  color: inherit; /* Hérite couleurs */
  display: block; /* Pleine card cliquable */
  transition: transform 0.2s; /* Hover doux */
}
.real-card-link:hover {
  transform: translateY(-4px); /* Effet lift pro */
}

/* Texture placeholders (réutilisée depuis suggestion précédente) */
.real-visuel-texture {
  /* ... (copie le code CSS de ma réponse précédente pour texture béton) */
}

/*** Divers ***/

/* Lien d'évitement (skip link) pour l'accessibilité (si tu l’ajoutes dans le HTML)
   - Caché visuellement hors focus pour ne pas gêner le design
   - Affiché lorsqu'il reçoit le focus clavier (Tab)
   - Permet de sauter directement la navigation vers le <main> */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.5rem 1rem;
  background: #111111;
  color: #ffffff;
  z-index: 2000;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}
/* fin */
/* =========================================================
   PAGE RÉALISATIONS — hero intérieur + sommaire latéral
   À ajouter en fin de style.v6.css
========================================================= */

.hero--inner {
  min-height: auto;
}

.hero--inner .hero-inner {
  align-items: start;
  padding-block: 70px 72px;
}

.hero--inner .hero-description {
  max-width: 620px;
  margin-bottom: 30px;
}

.hero--inner .hero-actions {
  margin-bottom: 0;
}

.realisations-sommaire {
  position: sticky;
  top: 92px;
}

.realisations-sommaire .hero-card-header {
  margin-bottom: 18px;
}

.realisations-sommaire-bloc + .realisations-sommaire-bloc {
  margin-top: 2px;
}

.realisations-sommaire-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.realisations-sommaire-list a {
  display: inline-block;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.realisations-sommaire-list a:hover,
.realisations-sommaire-list a:focus-visible {
  color: #f5a742;
  text-decoration: none;
  transform: translateX(4px);
}

.realisations-sommaire-list li:first-child a {
  color: rgba(255,255,255,0.54);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.realisations-sommaire-list li:first-child a:hover,
.realisations-sommaire-list li:first-child a:focus-visible {
  color: #f5a742;
}

.realisations-sommaire .hero-card-divider {
  margin: 18px 0;
}

/* Sections de détail de la page réalisations */
.realisation-detail {
  scroll-margin-top: 92px;
}

.realisation-detail article[id] {
  scroll-margin-top: 92px;
}

/* Responsive tablette */
@media (max-width: 1024px) {
  .hero--inner .hero-inner {
    padding-block: 84px 60px;
  }

  .realisations-sommaire {
    position: static;
    top: auto;
    max-width: 100%;
  }
}

/* Responsive mobile */
@media (max-width: 768px) {
  .hero--inner .hero-inner {
    padding-block: 55px 40px;
    gap: 28px;
  }

  .realisations-sommaire-list a {
    font-size: 0.88rem;
  }

  .realisations-sommaire-list li:first-child a {
    font-size: 0.74rem;
  }
}
/* FIN */

/* =========================================================
   PAGE RÉALISATIONS — cartes premium de détail
   Complément pour .realisation-detail uniquement
========================================================= */

.realisation-detail .realisations-grid {
  align-items: stretch;
  gap: 26px;
}

.realisation-detail .real-card {
  position: relative;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(252,250,247,1) 100%);
  box-shadow:
    0 10px 30px rgba(17, 24, 39, 0.06),
    0 2px 10px rgba(17, 24, 39, 0.04);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.realisation-detail .real-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-ocre), #f2a84a);
  opacity: 0.95;
  z-index: 2;
}

.realisation-detail .real-card:hover {
  transform: translateY(-6px);
  border-color: rgba(194, 112, 10, 0.18);
  box-shadow:
    0 18px 40px rgba(17, 24, 39, 0.10),
    0 6px 18px rgba(17, 24, 39, 0.06);
}

.realisation-detail .real-card article {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Zone image */
.realisation-detail .real-visuel {
  position: relative;
  height: auto;
  aspect-ratio: 16 / 10;
  background: #1f2937;
  overflow: hidden;
}

.realisation-detail .real-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  filter: saturate(0.92) contrast(1.02) brightness(0.92);
  transition:
    transform 0.55s ease,
    filter 0.35s ease;
}

.realisation-detail .real-visuel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(17,24,39,0.42), rgba(17,24,39,0.10) 45%, rgba(17,24,39,0.02) 100%);
  opacity: 1;
  transition: opacity 0.35s ease, background 0.35s ease;
  pointer-events: none;
}

.realisation-detail .real-card:hover .real-image,
.realisation-detail .real-card-link:hover .real-image,
.realisation-detail .real-card-link:focus-visible .real-image {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.05) brightness(0.98);
}

.realisation-detail .real-card:hover .real-visuel::after,
.realisation-detail .real-card-link:hover .real-visuel::after,
.realisation-detail .real-card-link:focus-visible .real-visuel::after {
  background:
    linear-gradient(to top, rgba(17,24,39,0.28), rgba(17,24,39,0.05) 45%, rgba(17,24,39,0.01) 100%);
}

/* Corps de carte */
.realisation-detail .real-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
}

.realisation-detail .project-tag {
  margin-bottom: 12px;
  background: rgba(194, 112, 10, 0.10);
  color: var(--c-ocre);
  border: 1px solid rgba(194, 112, 10, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}

.realisation-detail .real-titre {
  font-size: 1.08rem;
  line-height: 1.32;
  margin-bottom: 10px;
  color: var(--c-anthracite);
  letter-spacing: -0.02em;
}

.realisation-detail .real-desc {
  font-size: 0.92rem;
  line-height: 1.72;
  color: var(--c-texte);
  margin-bottom: 18px;
}

/* Tags chantier */
.realisation-detail .apropos-tags {
  margin-top: auto;
  margin-bottom: 0;
  gap: 8px;
}

.realisation-detail .apropos-tags .tag {
  background: #fff;
  border-color: rgba(31, 41, 55, 0.10);
  color: #4b5563;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 11px;
}

/* CTA bas de carte */
.realisation-detail .real-footer-link {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(31, 41, 55, 0.08);
}

.realisation-detail .real-footer-link a,
.real-footer-link .real-link--button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-anthracite);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.realisation-detail .real-footer-link a::before,
.real-footer-link .real-link--button::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: var(--c-ocre);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.realisation-detail .real-footer-link a::after,
.real-footer-link .real-link--button::after {
  content: "→";
  color: var(--c-ocre);
  transition: transform 0.2s ease;
}

.realisation-detail .real-footer-link a:hover,
.realisation-detail .real-footer-link a:focus-visible,
.real-footer-link .real-link--button:hover,
.real-footer-link .real-link--button:focus-visible {
  color: var(--c-ocre);
  text-decoration: none;
}

.realisation-detail .real-footer-link a:hover::before,
.realisation-detail .real-footer-link a:focus-visible::before,
.real-footer-link .real-link--button:hover::before,
.real-footer-link .real-link--button:focus-visible::before {
  transform: scaleX(1);
}

.realisation-detail .real-footer-link a:hover::after,
.realisation-detail .real-footer-link a:focus-visible::after,
.real-footer-link .real-link--button:hover::after,
.real-footer-link .real-link--button:focus-visible::after {
  transform: translateX(4px);
}

/* En-tête de catégorie */
.realisation-category-header {
  margin-bottom: 30px;
}

.realisation-category-header .section-intro {
  max-width: 760px;
  margin-bottom: 24px;
}

/* Note bas de section */
.realisation-detail .realisations-note {
  margin-top: 6px;
  border: 1px solid rgba(31, 41, 55, 0.08);
}

/* Tablette */
@media (max-width: 1024px) {
  .realisation-detail .realisations-grid {
    gap: 22px;
  }

  .realisation-detail .real-body {
    padding: 20px 20px 22px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .realisation-detail .real-card {
    border-radius: 16px;
  }

  .realisation-detail .real-body {
    padding: 18px 18px 20px;
  }

  .realisation-detail .real-titre {
    font-size: 1rem;
  }

  .realisation-detail .real-desc {
    font-size: 0.88rem;
  }
}
/* Fin */
/* popup modal */
.real-card-link--modal {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
}

.real-link--button {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 16, 20, 0.74);
  backdrop-filter: blur(2px);
}

.modal-dialog {
  position: relative;
  width: min(960px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  background: #fff;
  color: #1f2230;
  border: 3px solid var(--c-ocre);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  z-index: 1;
}

.modal-content {
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: 0;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 35px;
  height: 35px;
  border: 0;
  border-radius: 999px;
  background: var(--c-ocre);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus-visible {
  background: #1f2230;
}

.modal-template {
  display: block;
}

.modal-hero {
  padding: 32px 32px 20px;
  background: linear-gradient(135deg, rgba(17,24,39,0.97), rgba(17,24,39,0.87));
  border-bottom: 3px solid #101727;
}

.modal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.modal-kicker::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--c-ocre);
  border-radius: 2px;
  flex-shrink: 0;
}

.modal-title {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  line-height: 1.15;
  color: var(--c-blanc);
}

.modal-meta {
  margin: 0 0 14px;
  color: #f5a742;
  font-weight: 600;
}

.modal-intro {
  margin: 0;
  max-width: 70ch;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.modal-story {
  display: grid;
  gap: 0;
}

.modal-photo {
  margin: 0;
  background: #e8eaef;
}

.modal-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.modal-step {
  padding: 24px 32px 28px;
  border-top: 1px solid var(--c-beton);
  border-bottom: 1px solid var(--c-beton);
  background: #fff;
}

.modal-step-label {
  margin: 0 0 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b77436;
  font-weight: 700;
}

.modal-step-title {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.3;
  color: #1f2230;
}

.modal-step-text {
  margin: 0;
  line-height: 1.75;
  color: #303547;
}

body.modal-open {
  overflow: hidden;
}

.modal-bas {
		display: block;
		padding-block: 25px;
		background-color: #181f2e;
		text-align: center;
		padding: 20px 10px 25px;
	}

@media (max-width: 768px) {
  .modal-dialog {
    width: calc(100% - 16px);
    max-height: calc(100vh - 16px);
    margin: 8px auto;
    border-radius: 16px;
  }

  .modal-content {
    max-height: calc(100vh - 16px);
  }

  .modal-hero {
    padding: 24px 20px 18px;
  }

  .modal-step {
    padding: 20px 20px 24px;
  }
	/* marge pour éviter de cacher le résultat en mode mobile */
	.dernier-step {
		padding-bottom: 70px;
	}

	.modal-bas {
		padding-block: 30px;
	}

  .modal-close {
    top: 10px;
    right: 10px;
  }
}

/* fin */
.breadcrumb > a,
.breadcrumb > .derr {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.breadcrumb > a:first-child::before,
.breadcrumb .derr::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--c-ocre);
  border-radius: 2px;
  flex-shrink: 0;
}
.breadcrumb .derr {
	text-transform: inherit;
}

/* kakache mail */
.js-email-reveal > button {
	color:	#f5a742;
	font-size: 0.92rem;
	border: 0;
	background: transparent;
	cursor: pointer;
	font-style:	inherit;
}

.js-email-reveal > button:hover {
  text-decoration: underline;
}

.js-email-result a {
	font-style: normal;
	font-weight: 600;
	font-size: 0.90rem;
}

.contact-coord-row.js-email-reveal > button {
	color: var(--c-ocre);
	font-weight: 600;
}
.contact-coord-row .js-email-result a {
	font-size: 0.92rem;
}

.footer-adresse .js-email-reveal > button,
.footer-adresse .js-email-result a {
	color: rgba(var(--c-blanc-rgba));
	font-weight: 500;
}
.footer-adresse .js-email-reveal > button:hover {
	color: #f5a742;
	text-decoration: none;
}