/* ============================================
   MDZ PISCINE — PISCINISTE CAVALAIRE
   Style principal
   ============================================ */

/* ================================================
   POLICES HÉBERGÉES EN LOCAL — 100% RGPD
   Aucune requête externe vers Google
   ================================================ */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-300italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url('../fonts/jost-v20-latin-200.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/jost-v20-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/jost-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/jost-v20-latin-500.woff2') format('woff2');
}

/* ---- Variables ---- */
:root {
  --bleu-profond: #0a1628;
  --bleu-eau: #1a3a5c;
  --turquoise: #00b4d8;
  --turquoise-clair: #90e0ef;
  --or: #c9a84c;
  --or-clair: #e8d5a3;
  --blanc: #f8f6f1;
  --gris-clair: #e8e4dc;
  --texte: #1a1a2e;
  --font-titre: 'Cormorant Garamond', serif;
  --font-corps: 'Jost', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Curseur personnalisé désactivé sur mobile */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}

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

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

body {
  font-family: var(--font-corps);
  background: var(--blanc);
  color: var(--texte);
  overflow-x: hidden;
  cursor: none;
}

/* ---- Curseur personnalisé ---- */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--turquoise);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid var(--turquoise);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
  opacity: 0.6;
}

body:hover .cursor { opacity: 1; }

/* ---- Pages (SPA) ---- */
.page {
  display: none;
  min-height: 100vh;
}

.page.active {
  display: block;
}

/* ============================================
   PAGE INTRO — Mur de photos animé
   ============================================ */
#page-intro {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #060f1a;
}

/* Grille de colonnes */
.photo-grid {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 6px;
  padding: 0 6px;
}

.photo-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  will-change: transform;
}

.photo-col:nth-child(1) { animation: scrollUp 22s linear infinite; }
.photo-col:nth-child(2) { animation: scrollDown 18s linear infinite; }
.photo-col:nth-child(3) { animation: scrollUp 26s linear infinite; }
.photo-col:nth-child(4) { animation: scrollDown 20s linear infinite; }
.photo-col:nth-child(5) { animation: scrollUp 24s linear infinite; }

@keyframes scrollUp {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes scrollDown {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

.photo-item {
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.photo-item.tall   { height: 240px; }
.photo-item.medium { height: 170px; }
.photo-item.short  { height: 135px; }

/* Overlays directionnels */
.grid-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(6,15,26,0.88) 0%, rgba(6,15,26,0.55) 50%, rgba(6,15,26,0.15) 100%),
    linear-gradient(to right, rgba(6,15,26,0.95) 0%, transparent 20%, transparent 80%, rgba(6,15,26,0.95) 100%),
    linear-gradient(to bottom, rgba(6,15,26,0.85) 0%, transparent 25%, transparent 72%, rgba(6,15,26,0.92) 100%);
  z-index: 2;
}

/* Contenu central */
.intro-center {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  padding: 2rem;
}

.intro-logo-ring {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.2s;
}

.intro-logo-ring svg {
  width: 26px;
  height: 26px;
  fill: rgba(201, 168, 76, 0.9);
}

.intro-eyebrow {
  font-family: var(--font-corps);
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.45em;
  color: rgba(232, 213, 163, 1);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.4s;
}

.intro-titre {
  font-family: var(--font-titre);
  font-weight: 300;
  font-size: clamp(3.5rem, 9vw, 7rem);
  color: #ffffff;
  line-height: 0.95;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards 0.6s;
  text-shadow: 0 2px 40px rgba(6,15,26,0.6);
}

.intro-titre em {
  font-style: italic;
  color: #90e0ef;
  display: block;
  text-shadow: 0 2px 40px rgba(6,15,26,0.5);
}

.intro-sep {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 1), transparent);
  margin: 1.5rem auto;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.1s;
}

.intro-sub {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: rgba(248, 246, 241, 0.85);
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1s;
}

.btn-entrer {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(201, 168, 76, 0.45);
  background: rgba(201, 168, 76, 0.06);
  color: var(--or-clair);
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.4s;
  transition: var(--transition);
}

.btn-entrer:hover {
  background: rgba(201, 168, 76, 0.14);
  border-color: rgba(201, 168, 76, 0.9);
  letter-spacing: 0.38em;
  color: var(--or);
}

.btn-entrer .arrow {
  width: 22px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.35s ease;
}

.btn-entrer .arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

.btn-entrer:hover .arrow { width: 34px; }

/* Indicateurs dots */
.slide-indicators {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 6;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.8s;
}

.slide-dot {
  width: 20px;
  height: 1px;
  background: rgba(248, 246, 241, 0.25);
  cursor: pointer;
  transition: var(--transition);
}

.slide-dot.active {
  width: 36px;
  background: rgba(201, 168, 76, 0.8);
}

/* Compteur slide */
.slide-counter {
  position: absolute;
  right: 2rem;
  bottom: 1.5rem;
  z-index: 6;
  font-family: var(--font-titre);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(248, 246, 241, 0.25);
  letter-spacing: 0.15em;
  opacity: 0;
  animation: fadeIn 1s ease forwards 2s;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  cursor: pointer;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--or);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--or);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--blanc);
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav-logo-sub {
  font-family: var(--font-corps);
  font-size: 0.6rem;
  font-weight: 200;
  color: var(--or-clair);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 246, 241, 0.7);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--or);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blanc);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-contact-btn {
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--or-clair) !important;
  transition: var(--transition) !important;
}

.nav-contact-btn:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--or) !important;
}

.nav-contact-btn::after { display: none !important; }

/* Burger button */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 9001;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--blanc);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-mobile-open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-mobile-open .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-mobile-open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   PAGE ACCUEIL
   ============================================ */
#page-accueil { background: var(--blanc); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/189296/pexels-photo-189296.jpeg?auto=compress&w=1800');
  background-size: cover;
  background-position: center 60%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-bg.loaded { transform: scale(1); }

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(5,20,35,0.92) 0%,
    rgba(5,20,35,0.7) 40%,
    rgba(5,20,35,0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 8vw 6vh;
  max-width: 780px;
  align-self: flex-end;
}

.hero-eyebrow {
  font-family: var(--font-corps);
  font-weight: 200;
  font-size: 0.68rem;
  letter-spacing: 0.5em;
  color: var(--or-clair);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.hero-titre {
  font-family: var(--font-titre);
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}

.hero-titre em { font-style: italic; color: var(--turquoise-clair); display: block; }

.hero-desc {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(248,246,241,0.7);
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 1s, transform 0.8s ease 1s;
}

.reveal-hero.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Badges hero bas droite */
.hero-badges {
  position: absolute;
  bottom: 3rem;
  right: 8vw;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.5s;
  background: rgba(6,15,26,0.5);
  backdrop-filter: blur(8px);
  padding: 1.2rem 2rem;
  border: 1px solid rgba(201,168,76,0.2);
}

.hero-badge { text-align: center; }
.badge-num {
  display: block;
  font-family: var(--font-titre);
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}
.badge-label {
  font-family: var(--font-corps);
  font-size: 0.58rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  color: rgba(248,246,241,0.5);
  text-transform: uppercase;
}
.hero-badge-sep { width: 1px; height: 40px; background: rgba(248,246,241,0.2); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 3;
}
.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  color: rgba(248,246,241,0.4);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(248,246,241,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.5); opacity: 0.8; }
}

/* Boutons globaux */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: var(--or);
  color: var(--bleu-profond);
  font-family: var(--font-corps);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--or-clair);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201,168,76,0.3);
}
.btn-secondary {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.65);
  cursor: pointer;
  border: none;
  background: transparent;
  transition: color 0.3s;
}
.btn-secondary:hover { color: var(--blanc); }

/* Labels et titres sections */
.section-label {
  font-family: var(--font-corps);
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  color: var(--or);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-titre {
  font-family: var(--font-titre);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--bleu-profond);
  line-height: 1.1;
}
.section-titre em { font-style: italic; color: var(--turquoise); }

/* ── À PROPOS ── */
.section-apropos {
  padding: 9rem 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.apropos-visuel {
  position: relative;
  height: 560px;
}

.apropos-img-grande {
  position: absolute;
  top: 0; right: 0;
  width: 88%; height: 85%;
  background-size: cover;
  background-position: center;
}

.apropos-img-petite {
  position: absolute;
  bottom: 0; left: 0;
  width: 52%; height: 50%;
  background-size: cover;
  background-position: center;
  border: 8px solid var(--blanc);
}

.apropos-annee {
  position: absolute;
  top: -2rem; left: -2rem;
  background: var(--or);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.annee-num {
  font-family: var(--font-titre);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--bleu-profond);
  line-height: 1;
}
.annee-label {
  font-family: var(--font-corps);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: rgba(10,22,40,0.6);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.apropos-corps {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.9;
  color: #555;
  margin-top: 1.5rem;
}

.apropos-atouts {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.apropos-atouts li {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.9rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.atout-icon { color: var(--or); font-size: 0.6rem; flex-shrink: 0; }

/* ── SERVICES ── */
.section-services { padding: 8rem 8vw; background: #fafaf8; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
}
.section-intro-txt {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.9rem;
  color: #888;
  max-width: 300px;
  line-height: 1.7;
  text-align: right;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: white;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--turquoise), var(--or));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  box-shadow: 0 20px 60px rgba(0,100,148,0.07);
  transform: translateY(-4px);
}
.service-num {
  font-family: var(--font-titre);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gris-clair);
  line-height: 1;
  margin-bottom: 1.2rem;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: var(--turquoise-clair); }
.service-icon { width: 38px; height: 38px; margin-bottom: 1.2rem; color: var(--turquoise); }
.service-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }
.service-nom { font-family: var(--font-titre); font-size: 1.35rem; font-weight: 400; color: var(--bleu-profond); margin-bottom: 0.8rem; }
.service-desc { font-family: var(--font-corps); font-weight: 300; font-size: 0.88rem; line-height: 1.8; color: #666; }

/* ── CHIFFRES CLÉS ── */
.section-chiffres {
  padding: 6rem 8vw;
  background: var(--bleu-profond);
  position: relative;
  overflow: hidden;
}
.section-chiffres::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, transparent 70%);
}
.chiffres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  align-items: center;
}
.chiffre-item { text-align: center; }
.chiffre-num {
  font-family: var(--font-titre);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--blanc);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.chiffre-label {
  font-family: var(--font-corps);
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(248,246,241,0.5);
  text-transform: uppercase;
}

/* ── GALERIE PHOTOS ── */
.section-galerie { padding: 8rem 8vw; background: var(--blanc); }
.galerie-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.galerie-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 8px;
  margin-bottom: 3rem;
}
.galerie-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.galerie-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.galerie-item:nth-child(4) { grid-column: span 2; }
.galerie-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.galerie-item:hover .galerie-img { transform: scale(1.06); }
.galerie-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.galerie-item:hover .galerie-overlay { opacity: 1; }
.galerie-info-lieu {
  font-family: var(--font-corps);
  font-size: 0.65rem;
  font-weight: 200;
  letter-spacing: 0.3em;
  color: var(--turquoise-clair);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.galerie-info-nom {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  color: #fff;
  font-weight: 400;
}
.galerie-cta { text-align: center; }

/* ── TÉMOIGNAGES ── */
.section-temoignages {
  padding: 8rem 8vw;
  background: #fafaf8;
}
.temoignages-header {
  text-align: center;
  margin-bottom: 4rem;
}
.temoignages-slider {
  overflow: hidden;
  position: relative;
}
.temoignage-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.temoignage-card {
  flex: 0 0 calc(50% - 1rem);
  background: white;
  padding: 3rem;
  border-left: 3px solid var(--or);
  transition: var(--transition);
}
.temoignage-etoiles {
  color: var(--or);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.temoignage-texte {
  font-family: var(--font-titre);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--bleu-profond);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.temoignage-auteur {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.auteur-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bleu-profond);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-corps);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--or);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.auteur-nom {
  font-family: var(--font-corps);
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--bleu-profond);
}
.auteur-lieu {
  font-family: var(--font-corps);
  font-weight: 200;
  font-size: 0.75rem;
  color: #999;
  margin-top: 0.2rem;
}
.temoignages-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.temo-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--gris-clair);
  background: white;
  cursor: pointer;
  font-size: 1rem;
  color: var(--bleu-profond);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.temo-btn:hover {
  background: var(--bleu-profond);
  color: var(--blanc);
  border-color: var(--bleu-profond);
}
.temo-dots { display: flex; gap: 0.5rem; }
.temo-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gris-clair);
  transition: var(--transition);
  cursor: pointer;
}
.temo-dot.active { background: var(--or); width: 20px; border-radius: 3px; }

/* ── ZONE D'INTERVENTION ── */
.section-zone {
  padding: 8rem 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  background: var(--blanc);
}
.zone-desc {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.85;
  color: #555;
  margin: 1.5rem 0;
}
.zone-villes {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
}
.zone-villes li {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.88rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.zone-villes li::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--turquoise);
  flex-shrink: 0;
}
.zone-carte {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, rgba(0,100,148,0.06), rgba(0,180,216,0.04));
  border: 1px solid rgba(0,180,216,0.15);
}
.carte-visuel {
  position: absolute;
  inset: 2rem;
}
.carte-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.carte-point {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  transform: translate(-50%, -50%);
}
.point-pulse {
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--turquoise);
  position: relative;
}
.point-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--turquoise);
  opacity: 0.5;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.5); opacity: 0; }
}
.carte-point:first-child .point-pulse { background: var(--or); }
.carte-point:first-child .point-pulse::after { border-color: var(--or); }
.point-label {
  font-family: var(--font-corps);
  font-size: 0.6rem;
  font-weight: 300;
  color: var(--bleu-profond);
  letter-spacing: 0.1em;
  white-space: nowrap;
  background: rgba(255,255,255,0.9);
  padding: 2px 6px;
  order: 1;
}

/* Label au-dessus du point */
.carte-point--top { flex-direction: column-reverse; }
.carte-point--top .point-label { order: 0; margin-bottom: 3px; }

/* Label en-dessous du point (défaut) */
.carte-point--bottom .point-label { margin-top: 3px; }

@media (max-width: 768px) {
  .point-label {
    font-size: 0.48rem;
    padding: 1px 3px;
    letter-spacing: 0;
  }
  .point-pulse {
    width: 7px;
    height: 7px;
  }
}

/* ── CTA FINAL ── */
.section-cta-final {
  position: relative;
  padding: 10rem 8vw;
  text-align: center;
  overflow: hidden;
}
.cta-final-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.cta-final-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,20,35,0.92), rgba(0,53,84,0.85));
}
.cta-final-content { position: relative; z-index: 2; }

/* ============================================
   PAGE À PROPOS
   ============================================ */
#page-apropos { background: var(--blanc); padding-top: 70px; }

/* Header hero split */
.apropos-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 70px);
}

.apropos-header-content {
  background: var(--bleu-profond);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 6vw 8rem;
  position: relative;
  z-index: 2;
}

.apropos-header-titre {
  font-family: var(--font-titre);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: #fff;
  line-height: 1.05;
  margin: 1rem 0 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}
.apropos-header-titre em { font-style: italic; color: var(--turquoise-clair); display: block; }

.apropos-header-desc {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(248,246,241,0.65);
  max-width: 420px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.9s, transform 0.8s ease 0.9s;
}

.apropos-header-visuel {
  position: relative;
  overflow: hidden;
}
.apropos-header-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease-out;
  transform: scale(1.06);
}
.apropos-header-img.loaded { transform: scale(1); }
.apropos-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.4), transparent);
}

/* Timeline */
.apropos-histoire {
  padding: 9rem 8vw;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8rem;
  align-items: start;
}
.histoire-intro { position: sticky; top: 8rem; }
.histoire-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gris-clair);
  position: relative;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--gris-clair);
}
.timeline-item::after {
  content: '';
  position: absolute;
  left: calc(100px - 5px);
  top: 2.8rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--or);
  border: 2px solid var(--blanc);
  box-shadow: 0 0 0 2px var(--or);
}
.timeline-annee {
  font-family: var(--font-titre);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--or);
  line-height: 1;
  padding-top: 0.2rem;
  text-align: right;
  padding-right: 1.5rem;
}
.timeline-titre {
  font-family: var(--font-titre);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--bleu-profond);
  margin-bottom: 0.8rem;
}
.timeline-texte {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.85;
  color: #666;
}

/* Valeurs */
.apropos-valeurs {
  padding: 8rem 8vw;
  background: #fafaf8;
}
.valeurs-header { margin-bottom: 4rem; }
.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.valeur-card {
  background: white;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.valeur-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--turquoise), var(--or));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.valeur-card:hover::after { transform: scaleX(1); }
.valeur-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,100,148,0.08); }
.valeur-icon {
  width: 48px; height: 48px;
  color: var(--turquoise);
  margin-bottom: 1.5rem;
}
.valeur-icon svg { width: 100%; height: 100%; }
.valeur-titre {
  font-family: var(--font-titre);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--bleu-profond);
  margin-bottom: 1rem;
}
.valeur-texte {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.8;
  color: #666;
}

/* Processus */
.apropos-processus {
  padding: 8rem 8vw;
  background: var(--blanc);
}
.processus-header { margin-bottom: 4rem; }
.processus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.processus-step {
  background: #fafaf8;
  padding: 3rem 2.5rem;
  position: relative;
  transition: var(--transition);
  border-top: 2px solid transparent;
}
.processus-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--turquoise), var(--or));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.processus-step:hover::before { transform: scaleX(1); }
.processus-step:hover { background: white; box-shadow: 0 20px 50px rgba(0,100,148,0.06); transform: translateY(-4px); }
.step-num {
  font-family: var(--font-titre);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gris-clair);
  line-height: 1;
  margin-bottom: 1.2rem;
  transition: color 0.3s;
}
.processus-step:hover .step-num { color: var(--turquoise-clair); }
.step-icon {
  width: 38px; height: 38px;
  color: var(--turquoise);
  margin-bottom: 1.2rem;
}
.step-icon svg { width: 100%; height: 100%; }
.step-titre {
  font-family: var(--font-titre);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--bleu-profond);
  margin-bottom: 0.8rem;
}
.step-texte {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.8;
  color: #666;
}
@media (max-width: 1024px) { .processus-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .processus-grid { grid-template-columns: 1fr; } }


/* Certifications */
.apropos-certifs {
  background: var(--bleu-profond);
  padding: 8rem 8vw;
  position: relative;
  overflow: hidden;
}
.apropos-certifs::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.08), transparent 70%);
}
.certifs-contenu { position: relative; z-index: 1; }
.certifs-desc {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 1rem;
  color: rgba(248,246,241,0.6);
  max-width: 520px;
  line-height: 1.8;
  margin: 1.5rem 0 3rem;
}
.certifs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.certif-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 2rem;
  transition: var(--transition);
}
.certif-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.certif-badge {
  font-family: var(--font-titre);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--or);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.certif-nom {
  font-family: var(--font-corps);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--blanc);
  margin-bottom: 0.5rem;
}
.certif-desc {
  font-family: var(--font-corps);
  font-weight: 200;
  font-size: 0.78rem;
  color: rgba(248,246,241,0.45);
  line-height: 1.6;
}

/* Responsive à propos */
@media (max-width: 1024px) {
  .apropos-header { grid-template-columns: 1fr; min-height: auto; }
  .apropos-header-visuel { height: 50vh; }
  .apropos-histoire { grid-template-columns: 1fr; gap: 3rem; }
  .histoire-intro { position: static; }
  .valeurs-grid { grid-template-columns: 1fr 1fr; }
  .equipe-grid { grid-template-columns: 1fr 1fr; }
  .certifs-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 768px) {
  .valeurs-grid { grid-template-columns: 1fr; }
  .equipe-grid { grid-template-columns: 1fr 1fr; }
  .certifs-grid { grid-template-columns: 1fr 1fr; }
  .timeline-item { grid-template-columns: 70px 1fr; gap: 1.5rem; }
}

/* ============================================
   PAGE RÉALISATIONS
   ============================================ */
#page-realisations { background: var(--blanc); padding-top: 70px; }

.page-header-dark {
  padding: 5rem 8vw 5rem;
  background: var(--bleu-profond);
  position: relative;
  overflow: hidden;
}
.page-header-dark::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.07), transparent 70%);
}
.page-header-eyebrow {
  font-family: var(--font-corps);
  font-size: 0.65rem;
  font-weight: 200;
  letter-spacing: 0.5em;
  color: var(--or-clair);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.page-header-titre {
  font-family: var(--font-titre);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--blanc);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.page-header-titre em { font-style: italic; color: var(--turquoise-clair); }
.page-header-desc {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(248,246,241,0.55);
  max-width: 480px;
  line-height: 1.7;
}

/* Galerie mosaïque éditoriale */
.realisations-galerie {
  padding: 3rem 8vw 4rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 280px;
  gap: 6px;
}

.realisation-item {
  position: relative;
  overflow: hidden;
}

/* Mosaïque — groupes de 5 : grande à gauche, 4 petites à droite */
.realisation-item:nth-child(5n+1) { grid-column: span 5; grid-row: span 2; }
.realisation-item:nth-child(5n+2) { grid-column: span 4; }
.realisation-item:nth-child(5n+3) { grid-column: span 3; }
.realisation-item:nth-child(5n+4) { grid-column: span 3; }
.realisation-item:nth-child(5n+5) { grid-column: span 4; }

.realisation-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.realisation-item:hover .realisation-img { transform: scale(1.06); }

/* CTA réalisations */
.realisations-cta {
  padding: 5rem 8vw 7rem;
  text-align: center;
  background: #fafaf8;
}

/* Responsive galerie */
@media (max-width: 1024px) {
  .realisations-galerie {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 220px;
  }
  .realisation-item:nth-child(5n+1) { grid-column: span 4; grid-row: span 2; }
  .realisation-item:nth-child(5n+2) { grid-column: span 2; }
  .realisation-item:nth-child(5n+3) { grid-column: span 2; }
  .realisation-item:nth-child(5n+4) { grid-column: span 2; }
  .realisation-item:nth-child(5n+5) { grid-column: span 4; }
}

@media (max-width: 768px) {
  .realisations-galerie {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
    padding: 1.5rem 4vw 3rem;
    gap: 4px;
  }
  .realisation-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .realisation-item:nth-child(3n+1) {
    grid-column: span 2;
  }
  .realisation-item:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .realisations-galerie {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
    gap: 3px;
  }
  .realisation-item:nth-child(3n+1) {
    grid-column: span 2;
  }
  .realisation-item:last-child {
    grid-column: span 2;
  }
}


/* ============================================
   PAGE CONTACT
   ============================================ */
#page-contact {
  background: var(--blanc);
  padding-top: 70px;
  position: relative;
  z-index: 0;
}

.contact-wrapper {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 0;
}

.contact-gauche {
  background: var(--bleu-profond);
  padding: 6rem 5vw 6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.contact-gauche::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
}

.contact-titre {
  font-family: var(--font-titre);
  font-weight: 300;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--blanc);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.contact-titre em {
  font-style: italic;
  color: var(--turquoise-clair);
}

.contact-intro {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(248, 246, 241, 0.6);
  max-width: 380px;
  margin-bottom: 4rem;
}

.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--or);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-label {
  font-family: var(--font-corps);
  font-size: 0.6rem;
  font-weight: 200;
  letter-spacing: 0.3em;
  color: var(--or-clair);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.contact-info-val {
  font-family: var(--font-corps);
  font-weight: 300;
  color: var(--blanc);
  font-size: 0.95rem;
}

.contact-droite {
  padding: 10rem 5vw 6rem;
  background: #fafaf8;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.formulaire-titre {
  font-family: var(--font-titre);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--bleu-profond);
  margin-bottom: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-corps);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gris-clair);
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--texte);
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--turquoise);
}

.form-textarea {
  resize: none;
  height: 100px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}

.form-submit {
  margin-top: 2rem;
  padding: 1.1rem 2.5rem;
  background: var(--bleu-profond);
  color: var(--blanc);
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.form-submit:hover {
  background: var(--turquoise);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 180, 216, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #060f1a;
  padding: 4rem 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: var(--font-corps);
  font-weight: 200;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(248, 246, 241, 0.3);
}

.footer-logo {
  font-family: var(--font-titre);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(248, 246, 241, 0.3);
  letter-spacing: 0.1em;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-family: var(--font-corps);
  font-weight: 200;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: rgba(248, 246, 241, 0.3);
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: rgba(248, 246, 241, 0.7);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE COMPLET
   ============================================ */

/* ── TABLET 1024px ── */
@media (max-width: 1024px) {

  /* Nav */
  .nav { padding: 1rem 2rem; }
  .nav.scrolled { padding: 1rem 2rem; }

  /* Accueil */
  .section-apropos { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 6vw; }
  .apropos-visuel { height: 380px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .chiffres-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .section-zone { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 6vw; }
  .zone-carte { height: 300px; }
  .section-galerie { padding: 5rem 6vw; }
  .galerie-mosaic { grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 200px 200px; }
  .galerie-item:first-child { grid-column: span 1; grid-row: span 1; }
  .galerie-item:nth-child(4) { grid-column: span 1; }
  .section-temoignages { padding: 5rem 6vw; }
  .temoignage-card { flex: 0 0 calc(100% - 1rem); }

  /* À propos */
  .apropos-header { grid-template-columns: 1fr; min-height: auto; }
  .apropos-header-visuel { height: 40vh; min-height: 280px; }
  .apropos-histoire { grid-template-columns: 1fr; gap: 2rem; padding: 5rem 6vw; }
  .histoire-intro { position: static; }
  .valeurs-grid { grid-template-columns: 1fr 1fr; }
  .apropos-valeurs { padding: 5rem 6vw; }
  .processus-grid { grid-template-columns: 1fr 1fr; }
  .apropos-processus { padding: 5rem 6vw; }
  .certifs-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .apropos-certifs { padding: 5rem 6vw; }

  /* Contact */
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-gauche { padding: 4rem 6vw; }
  .contact-droite { padding: 4rem 6vw; }

  /* Réalisations */
  .realisations-cta { padding: 3rem 6vw 5rem; }
}

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

  /* ── BURGER MENU ── */
  .nav { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  /* Menu mobile ouvert */
  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(10,22,40,0.99);
    backdrop-filter: blur(20px);
    padding: 2rem 2rem 3rem;
    gap: 0;
    z-index: 8999;
    border-top: 1px solid rgba(201,168,76,0.2);
  }
  .nav-mobile-open .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-mobile-open .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: rgba(248,246,241,0.85);
  }
  .nav-mobile-open .nav-links a.nav-contact-btn {
    margin-top: 1rem;
    border: 1px solid rgba(201,168,76,0.4);
    padding: 0.8rem 1.5rem;
    display: inline-block;
  }

  /* ── INTRO ── */
  .photo-col:nth-child(4),
  .photo-col:nth-child(5) { display: none; }
  .photo-grid { gap: 4px; padding: 0 4px; }
  .intro-titre { font-size: clamp(2.5rem, 14vw, 4.5rem); }
  .intro-eyebrow { font-size: 0.55rem; letter-spacing: 0.3em; }
  .intro-sub { font-size: 0.62rem; letter-spacing: 0.18em; }
  .slide-counter { display: none; }

  /* ── HERO ACCUEIL ── */
  .hero { height: 100svh; }
  .hero-content { padding: 0 6vw 10vh; }
  .hero-badges { display: none; }
  .hero-scroll { display: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .btn-secondary { color: rgba(248,246,241,0.7); }

  /* ── SECTIONS ACCUEIL ── */
  .section-apropos { grid-template-columns: 1fr; padding: 4rem 6vw; gap: 2.5rem; }
  .apropos-visuel { height: 300px; }
  .apropos-annee { top: -1rem; left: -1rem; padding: 1rem; }
  .annee-num { font-size: 1.6rem; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 0.8rem; margin-bottom: 2.5rem; }
  .section-intro-txt { text-align: left; max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .section-services { padding: 4rem 6vw; }
  .chiffres-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .section-chiffres { padding: 4rem 6vw; }
  .section-galerie { padding: 4rem 6vw; }
  .galerie-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .galerie-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 6px; }
  .galerie-item { height: 160px; }
  .galerie-item:first-child { grid-column: span 2; height: 200px; }
  .galerie-item:nth-child(4) { grid-column: span 1; }
  .section-temoignages { padding: 4rem 6vw; }
  .temoignage-card { flex: 0 0 100%; padding: 2rem 1.5rem; }
  .temoignage-texte { font-size: 0.95rem; }
  .section-zone { grid-template-columns: 1fr; padding: 4rem 6vw; gap: 2rem; }
  .zone-carte { height: 260px; }
  .zone-villes { grid-template-columns: 1fr 1fr; }
  .section-cta-final { padding: 6rem 6vw; }

  /* ── À PROPOS ── */
  #page-apropos { padding-top: 60px; }
  .apropos-header { grid-template-columns: 1fr; }
  .apropos-header-content { padding: 3rem 6vw 4rem; }
  .apropos-header-visuel { height: 50vw; min-height: 220px; }
  .apropos-histoire { grid-template-columns: 1fr; padding: 4rem 6vw; gap: 1.5rem; }
  .timeline-item { grid-template-columns: 60px 1fr; gap: 1rem; padding: 1.5rem 0; }
  .timeline-item::before { left: 60px; }
  .timeline-item::after { left: calc(60px - 5px); }
  .timeline-annee { font-size: 1.2rem; padding-right: 1rem; }
  .valeurs-grid { grid-template-columns: 1fr; }
  .apropos-valeurs { padding: 4rem 6vw; }
  .processus-grid { grid-template-columns: 1fr; }
  .apropos-processus { padding: 4rem 6vw; }
  .certifs-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .apropos-certifs { padding: 4rem 6vw; }
  .certif-badge { font-size: 2rem; }

  /* ── RÉALISATIONS ── */
  #page-realisations { padding-top: 60px; }
  .page-header-dark { padding: 3rem 6vw 3rem; }

  .realisations-cta { padding: 3rem 6vw 4rem; }

  /* ── CONTACT ── */
  #page-contact { padding-top: 60px; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-gauche { padding: 3rem 6vw; }
  .contact-droite { padding: 3rem 6vw; }
  .form-grid { grid-template-columns: 1fr; }

  /* ── MENTIONS ── */
  #page-mentions { padding-top: 60px; }
  .mentions-header { padding: 3rem 6vw 3rem; }
  .mentions-contenu { padding: 3rem 6vw 4rem; }
  .credits-grid { grid-template-columns: 1fr; }
  .mentions-infos span { min-width: 110px; }

  /* ── FOOTER ── */
  .footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2.5rem 6vw; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

/* ── PETIT MOBILE 480px ── */
@media (max-width: 480px) {

  .certifs-grid { grid-template-columns: 1fr; }
  .chiffres-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .zone-villes { grid-template-columns: 1fr; }
  .galerie-mosaic { grid-template-columns: 1fr; }
  .galerie-item, .galerie-item:first-child { grid-column: span 1; height: 180px; }
}


/* ============================================
   PAGE MENTIONS LÉGALES
   ============================================ */
#page-mentions {
  background: var(--blanc);
  padding-top: 70px;
}

.mentions-header {
  padding: 5rem 8vw 4rem;
  background: var(--bleu-profond);
  position: relative;
  overflow: hidden;
}
.mentions-header::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.07), transparent 70%);
}

.mentions-contenu {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 8vw 6rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.mentions-bloc {
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gris-clair);
}
.mentions-bloc:last-child { border-bottom: none; }

.mentions-bloc-highlight {
  background: #f0f8ff;
  border: 1px solid rgba(0,180,216,0.15);
  border-radius: 4px;
  padding: 2.5rem;
  border-bottom: none;
}

.mentions-titre {
  font-family: var(--font-titre);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--bleu-profond);
  margin-bottom: 1.2rem;
}

.mentions-texte {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.85;
  color: #555;
}
.mentions-texte strong { font-weight: 500; color: var(--bleu-profond); }
.mentions-texte a { color: var(--turquoise); text-decoration: none; }
.mentions-texte a:hover { text-decoration: underline; }

.mentions-infos {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.mentions-infos p {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.9rem;
  color: #555;
  display: flex;
  gap: 1rem;
}
.mentions-infos span {
  font-weight: 400;
  color: var(--bleu-profond);
  min-width: 180px;
}

.mentions-liste {
  list-style: none;
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.mentions-liste li {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.9rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.mentions-liste li::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--turquoise);
  flex-shrink: 0;
}

.credits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.credit-item {
  background: white;
  border: 1px solid rgba(0,180,216,0.12);
  padding: 1.5rem;
}
.credit-logo {
  font-family: var(--font-titre);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--bleu-profond);
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--gris-clair);
}
.credit-desc {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.75;
  color: #666;
}
.credit-desc a { color: var(--turquoise); text-decoration: none; display: block; margin-top: 0.5rem; }

@media (max-width: 768px) {
  .credits-grid { grid-template-columns: 1fr; }
  .mentions-infos span { min-width: 130px; }
}

/* Bloc warning mentions */
.mentions-bloc-warning {
  background: #fff8e6;
  border: 1px solid #f0c040;
  border-left: 4px solid #f0c040;
  padding: 1.5rem 2rem;
  border-radius: 4px;
}

/* Tableau données */
.mentions-table {
  margin-top: 1.2rem;
  border: 1px solid var(--gris-clair);
  overflow: hidden;
}
.mentions-table-row {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.2fr;
  border-bottom: 1px solid var(--gris-clair);
  padding: 0.7rem 1rem;
  font-family: var(--font-corps);
  font-size: 0.85rem;
  font-weight: 300;
  color: #555;
  gap: 1rem;
}
.mentions-table-row:last-child { border-bottom: none; }
.mentions-table-header {
  background: var(--bleu-profond);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.8);
}
@media (max-width: 768px) {
  .mentions-table-row { grid-template-columns: 1fr; gap: 0.2rem; }
  .mentions-table-header span:nth-child(2),
  .mentions-table-header span:nth-child(3) { display: none; }
  .credits-grid { grid-template-columns: 1fr !important; }
}
