:root {
  --noir:       #1C1C1C;
  --anthracite: #2E2E2E;
  --gris-moyen: #5A5A5A;
  --gris-clair: #F2F0EB;
  --blanc:      #FAF9F6;
  --jaune:      #D4A017;
  --jaune-vif:  #E8B000;
  --font-titre: 'Oswald', 'Impact', sans-serif;
  --font-corps: 'Source Serif 4', Georgia, serif;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--blanc);
  color: var(--noir);
  font-family: var(--font-corps);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
#header {
  background: var(--blanc);
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 3px solid var(--jaune);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-icon-img {
  height: 86px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
  gap: 2px;
}

.logo-nom {
  font-family: 'Barlow Condensed', 'Impact', sans-serif;
  transform: scaleY(0.8);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--noir);
  text-transform: uppercase;
}

.logo-sub {
  font-family: var(--font-titre);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gris-moyen);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   DROPDOWN SERVICES
   ═══════════════════════════════════════════════════════════════ */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 18px;
  color: var(--gris-moyen);
  font-family: var(--font-titre);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
  text-decoration: none;
  line-height: 1;
}

.nav-dropdown-btn::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 18px; right: 18px;
  height: 2px;
  background: var(--jaune);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-dropdown-btn:hover,
.nav-dropdown-btn.active { color: var(--noir); }

.nav-dropdown-btn:hover::after,
.nav-dropdown-btn.active::after { transform: scaleX(1); }

.nav-arrow {
  font-size: 10px;
  transition: transform var(--transition);
  display: inline-block;
}

.nav-dropdown.open .nav-arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  background: white;
  border-top: 3px solid var(--jaune);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.25s ease;
  z-index: 200;
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: var(--gris-moyen);
  font-family: var(--font-titre);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--gris-clair);
  transition: all var(--transition);
}

.dropdown-item:last-child { border-bottom: none; }

.dropdown-item:hover {
  background: var(--gris-clair);
  color: var(--noir);
  padding-left: 26px;
}

.dropdown-icon { font-size: 16px; flex-shrink: 0; }

.mobile-menu-section {
  padding: 10px 16px 4px;
  font-family: var(--font-titre);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--jaune);
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a {
  padding: 8px 18px;
  color: var(--gris-moyen);
  font-family: var(--font-titre);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 18px; right: 18px;
  height: 2px;
  background: var(--jaune);
  transform: scaleX(0);
  transition: transform var(--transition);
}

nav a:hover { color: var(--noir); }
nav a:hover::after { transform: scaleX(1); }
nav a.active { color: var(--noir); }
nav a.active::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 12px;
  padding: 10px 22px !important;
  background: var(--jaune);
  color: white !important;
  font-family: var(--font-titre);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background var(--transition);
}

.nav-cta:hover { background: var(--jaune-vif) !important; color: white !important; }
.nav-cta::after { display: none !important; }

/* ── Hamburger ── */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px; height: 38px;
  background: none;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.hamburger-btn span {
  display: block;
  width: 20px; height: 2px;
  background: var(--noir);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Menu mobile ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 110px; left: 0; right: 0;
  background: var(--blanc);
  border-top: 2px solid var(--jaune);
  border-bottom: 1px solid var(--gris-clair);
  flex-direction: column;
  z-index: 99;
  padding: 16px;
  gap: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 12px 16px;
  color: var(--gris-moyen);
  font-family: var(--font-titre);
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gris-clair);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--jaune); }

/* ═══════════════════════════════════════════════════════════════
   MAIN — pousse le contenu sous le header fixe
   Les pages avec .hero ou .page-hero en premier enfant
   n'ont pas besoin de margin car leur fond couvre tout
   ═══════════════════════════════════════════════════════════════ */
main { margin-top: 110px; }
main:has(> .hero:first-child)      { margin-top: 0; }
main:has(> .page-hero:first-child) { margin-top: 0; }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 98vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--noir);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(28,28,28,0.82) 5%, rgba(212,160,23,0.2) 100%),
    url('../img/accueil.png') center/cover no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6vw 8vh;
  max-width: 900px;
}

.hero-tag {
  display: inline-block;
  background: var(--jaune);
  color: white;
  font-family: var(--font-titre);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 24px;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.hero h1 {
  font-family: var(--font-titre);
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--jaune);
  display: block;
}

.hero p {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   BOUTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-titre);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-primary { background: var(--jaune); color: white; }
.btn-primary:hover { background: var(--jaune-vif); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
  clip-path: none;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.btn-jaune {
  background: var(--jaune);
  color: white;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-jaune:hover { background: var(--jaune-vif); }

/* ═══════════════════════════════════════════════════════════════
   BANDEAU CHIFFRES
   ═══════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--gris-clair);
  padding: 0 5vw;
  display: flex;
  border-bottom: 3px solid var(--jaune);
  border-top: 3px solid var(--jaune);
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 32px 16px;
  border-right: 1px solid #D8D5CE;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-titre);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--jaune);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--gris-moyen);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
  font-family: var(--font-titre);
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS GÉNÉRIQUES
   ═══════════════════════════════════════════════════════════════ */
section { padding: 88px 6vw; }
section.alt { background: var(--gris-clair); }
section.dark { background: var(--noir); color: white; }

.section-tag {
  display: inline-block;
  background: var(--jaune);
  color: white;
  font-family: var(--font-titre);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 16px;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.section-titre {
  font-family: var(--font-titre);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--noir);
}

.section-titre em { font-style: normal; color: var(--jaune); }

.section-sous-titre {
  color: var(--gris-moyen);
  font-size: 16px;
  max-width: 560px;
  margin-bottom: 52px;
  line-height: 1.65;
}

.dark .section-titre { color: white; }
.dark .section-sous-titre { color: #aaa; }

/* ═══════════════════════════════════════════════════════════════
   SERVICES — GRILLE
   ═══════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: #F2EFE8;
  border: 1px solid #E0DDD6;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 4px;
  background: var(--jaune);
  transition: width 0.4s ease;
}

.service-card:hover::before { width: 100%; }
.service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-4px); }

.service-numero {
  font-family: var(--font-titre);
  font-size: 64px;
  font-weight: 700;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  position: absolute;
  top: 16px; right: 24px;
}

.service-icon { font-size: 36px; margin-bottom: 20px; }

.service-card h3 {
  font-family: var(--font-titre);
  font-size: 20px;
  font-weight: 700;
  color: var(--noir);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.service-card p { color: var(--gris-moyen); font-size: 14px; line-height: 1.65; }

.service-card-link { text-decoration: none; color: inherit; display: block; }

.service-arrow {
  margin-top: 20px;
  font-family: var(--font-titre);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--jaune);
  transition: letter-spacing var(--transition);
}

.service-card-link:hover .service-arrow { letter-spacing: 3px; }
.service-card-link:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.13);
  transform: translateY(-6px);
  border-color: var(--jaune);
}

/* ═══════════════════════════════════════════════════════════════
   PRÉSENTATION (2 colonnes)
   ═══════════════════════════════════════════════════════════════ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-img { position: relative; }

.split-img img { width: 100%; height: 460px; object-fit: cover; }

.split-img::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 60%; height: 60%;
  border: 3px solid var(--jaune);
  z-index: -1;
}

/* ═══════════════════════════════════════════════════════════════
   RÉALISATIONS — GRILLE
   ═══════════════════════════════════════════════════════════════ */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.realisation-card {
  position: relative;
  overflow: hidden;
  background: var(--gris-clair);
  aspect-ratio: 4/3;
}

.realisation-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.realisation-card:hover img { transform: scale(1.06); }

.realisation-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.realisation-tag {
  display: inline-block;
  background: var(--jaune);
  color: white;
  font-family: var(--font-titre);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 8px;
  clip-path: polygon(3px 0%, 100% 0%, calc(100% - 3px) 100%, 0% 100%);
  width: fit-content;
}

.realisation-card h3 {
  font-family: var(--font-titre);
  font-size: 18px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.realisation-card p { color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 4px; }

/* ═══════════════════════════════════════════════════════════════
   CTA BANDE
   ═══════════════════════════════════════════════════════════════ */
.cta-bande {
  background: var(--noir);
  padding: 56px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 4px solid var(--jaune);
}

.cta-bande h2 {
  font-family: var(--font-titre);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.cta-bande h2 span { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-infos { display: flex; flex-direction: column; gap: 28px; }

.contact-item { display: flex; gap: 16px; align-items: flex-start; }

.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--jaune);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.contact-item-text strong {
  display: block;
  font-family: var(--font-titre);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--jaune);
  margin-bottom: 2px;
}

.contact-item-text span { font-size: 15px; color: var(--gris-moyen); }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: var(--font-titre);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gris-moyen);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: white;
  border: 1px solid #D8D5CE;
  padding: 12px 16px;
  color: var(--noir);
  font-family: var(--font-corps);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--jaune);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.12);
}

.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select option { background: white; color: var(--noir); }

/* ═══════════════════════════════════════════════════════════════
   FLASH MESSAGES
   ═══════════════════════════════════════════════════════════════ */
.flash-container {
  position: fixed;
  top: 96px; left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  width: clamp(280px, 40vw, 480px);
}

.flash {
  padding: 14px 20px;
  font-family: var(--font-titre);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-left: 4px solid var(--jaune);
  background: white;
  color: var(--noir);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  margin-bottom: 8px;
}

.flash.success { border-color: #2E7D32; }
.flash.error   { border-color: #C62828; }

@keyframes slideDown {
  from { transform: translateY(-12px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE INTÉRIEURE — titre
   ═══════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--noir);
  padding: 160px 6vw 56px;
  border-bottom: 3px solid var(--jaune);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: attr(data-titre);
  position: absolute;
  right: 4vw; bottom: -12px;
  font-family: var(--font-titre);
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-titre);
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  line-height: 1.05;
}

.page-hero h1 em { font-style: normal; color: var(--jaune); }
.page-hero p { color: #aaa; font-size: 16px; max-width: 540px; margin-top: 12px; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
footer {
  background: var(--noir);
  padding: 56px 6vw 24px;
  border-top: 3px solid var(--jaune);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px;
}

.footer-logo-nom {
  font-family: var(--font-titre);
  font-size: 22px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.footer-logo-nom span { color: var(--jaune); }

.footer-baseline {
  font-size: 11px;
  color: #555;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-desc { color: #555; font-size: 13px; line-height: 1.65; max-width: 300px; }

.footer-col h4 {
  font-family: var(--font-titre);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--jaune);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #666; font-size: 13px; transition: color var(--transition); }
.footer-col ul li a:hover { color: white; }

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

.footer-bottom p { color: #444; font-size: 12px; }
.footer-bottom p a { color: var(--jaune); transition: color var(--transition); }
.footer-bottom p a:hover { color: white; }

/* ═══════════════════════════════════════════════════════════════
   PAGE À PROPOS — ÉQUIPE & VALEURS
   ═══════════════════════════════════════════════════════════════ */
.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.valeur-card {
  background: white;
  border: 1px solid #E0DDD6;
  padding: 32px 24px;
  text-align: center;
  border-top: 3px solid var(--jaune);
}

.valeur-icon { font-size: 36px; margin-bottom: 16px; }

.valeur-card h3 {
  font-family: var(--font-titre);
  font-size: 18px;
  font-weight: 700;
  color: var(--noir);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.valeur-card p { color: var(--gris-moyen); font-size: 14px; line-height: 1.65; }

.equipe-liste {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 700px;
  margin: 0 auto;
}

.employe-ligne {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.employe-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 400px;
  overflow: hidden;
  margin: 0 auto;
}

.employe-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.employe-infos { padding: 20px 0 0 4px; margin: 0 auto; }

.employe-nom {
  font-family: var(--font-titre);
  font-size: 22px;
  font-weight: 700;
  color: var(--noir);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.employe-role {
  font-size: 12px;
  color: var(--jaune);
  font-family: var(--font-titre);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   ENTREPRISE FORMATRICE
   ═══════════════════════════════════════════════════════════════ */
.formatrice-section {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 900px;
  margin: 0 auto;
}

.formatrice-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — breakpoint principal
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  nav .nav-links     { display: none; }
  .hamburger-btn     { display: flex; }
  .services-grid     { grid-template-columns: 1fr; gap: 16px; }
  .split-section     { grid-template-columns: 1fr; gap: 40px; }
  .split-section.reverse { direction: ltr; }
  .split-img::after  { display: none; }
  .contact-grid      { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid       { grid-template-columns: 1fr; gap: 32px; }
  .cta-bande         { flex-direction: column; text-align: center; }
  .stats-bar         { flex-wrap: wrap; }
  .stat-item         { flex: 0 0 33.33%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .realisations-grid { grid-template-columns: 1fr; }
  .formatrice-section { flex-direction: column; gap: 32px; text-align: center; }
  .formatrice-logo   { width: 130px; height: 130px; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — mobile
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  #header        { height: 90px; padding: 0 16px; }
  .logo-icon-img { height: 52px; }
  .logo-nom      { font-size: 22px; }
  .logo-sub      { font-size: 9px; letter-spacing: 2px; }
  .mobile-menu   { top: 72px; }
  main                               { margin-top: 72px; }
  main:has(> .hero:first-child)      { margin-top: 0; }
  main:has(> .page-hero:first-child) { margin-top: 0; }
  section              { padding: 56px 5vw; }
  .hero                { min-height: 80vh; padding-top: 72px; }
  .hero h1             { font-size: 42px; }
  .hero-content        { padding-top: 50px; }
  .page-hero           { padding-top: 120px; }
  .stat-item           { flex: 0 0 33.33%; }
  .flash-container     { top: 80px; }
  .employe-img-wrapper { height: 300px; }
  .employe-nom         { font-size: 18px; }
}