.profil-modal-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
  width: 100%;
  margin-top: 10px;
}
.profil-modal-photo-portrait {
  width: 140px;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(30,53,48,0.10);
  flex-shrink: 0;
}
.profil-modal-infos {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.profil-modal-role {
  font-size: 0.92rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.profil-modal-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--noir);
  margin: 0 0 8px 0;
}
.profil-modal-contact {
  display: inline-block;
  margin: 8px 0 18px 0;
  font-size: 0.98rem;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 6px 18px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.profil-modal-contact:hover {
  background: var(--accent);
  color: var(--blanc);
}
.profil-modal-texte {
  font-size: 1.13rem;
  line-height: 1.6;
  color: var(--noir-doux);
  margin-top: 0;
  text-align: left;
}
@media (max-width: 700px) {
  .profil-modal-flex {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .profil-modal-photo-portrait {
    width: 110px;
    height: 160px;
  }
  .profil-modal-infos {
    align-items: center;
    text-align: center;
  }
  .profil-modal-texte {
    text-align: center;
  }
}
.profil-modal-encadre {
  border: 2px solid #222;
  padding: 28px 24px;
  margin-top: 24px;
  margin-bottom: 0;
  font-size: 1.18rem;
  line-height: 1.6;
  text-align: left;
  background: #fff;
  border-radius: 6px;
  font-family: 'Poppins', serif;
  font-weight: 400;
}
@media (max-width: 600px) {
  .profil-modal-encadre {
    font-size: 1.04rem;
    padding: 18px 8px;
  }
}
/* --- PROFIL MODAL --- */
.profil-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10010;
  background: rgba(30, 53, 48, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s var(--ease-out-expo), visibility 0.35s;
  opacity: 0;
}
.profil-modal-overlay.open {
  display: flex;
  opacity: 1;
}
 .profil-modal {
   background: var(--creme);
   border-radius: 18px;
   box-shadow: 0 8px 48px 0 rgba(30,53,48,0.18);
   max-width: 700px;
   width: 96vw;
   padding: 48px 48px 40px 48px;
   position: relative;
   display: flex;
   flex-direction: column;
   align-items: center;
   animation: modalPopIn 0.5s var(--ease-out-expo);
 }
@keyframes modalPopIn {
  0% { transform: scale(0.96) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.profil-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 12;
  color: var(--charcoal);
  transition: border-color 0.3s ease, transform 0.4s var(--ease-out-expo);
}
.profil-modal-close svg {
  width: 14px;
  height: 14px;
}
.profil-modal-close:hover {
  border-color: var(--accent);
  transform: rotate(90deg);
}
.profil-modal-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 22px;
}
.profil-modal-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px 0 rgba(30,53,48,0.10);
}
.profil-modal-identity {
  text-align: center;
}
.profil-modal-role {
  font-size: 0.92rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.profil-modal-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--noir);
  margin: 0 0 8px 0;
}
.profil-modal-contact {
  display: inline-block;
  margin-top: 2px;
  font-size: 0.98rem;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 6px 18px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.profil-modal-contact:hover {
  background: var(--accent);
  color: var(--blanc);
}
.profil-modal-body {
  margin-top: 8px;
  color: var(--noir-doux);
  font-size: 1.08rem;
  line-height: 1.6;
  text-align: left;
}
.profil-modal-body p {
  margin-bottom: 14px;
}
.profil-modal-engagement {
  margin-top: 10px;
  font-size: 1.01rem;
  color: var(--accent);
  font-weight: 600;
}
@media (max-width: 900px) {
  .profil-modal {
    max-width: 98vw;
    padding: 24px 4vw 24px 4vw;
  }
  .profil-modal-photo {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 600px) {
  .profil-modal {
    padding: 10px 2vw 18px 2vw;
    max-width: 100vw;
  }
  .profil-modal-photo {
    width: 70px;
    height: 70px;
  }
}
/* ============================================
   BRL GESTION PRIVÉE — Refonte Design
   Inspiré Step Avocats + Rydge
   Minimaliste · Organique · Moderne
   ============================================ */

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

:root {
  --turquoise: #2e4f45;
  --vert-mineral: #2e4f45;
  --noir: #2e4f45;           /* Turquoise gris foncé — BRL officiel */
  --noir-doux: #1e3530;      /* Turquoise très foncé — texte body */
  --charcoal: #3d5e53;       /* Turquoise légèrement allégé */
  --gris-fonce: #5a7870;
  --gris: #8fa8a0;
  --gris-clair: #b8ccc8;
  --sable: #f0f0f0;
  --sable-clair: #f7f7f7;
  --creme: #FFFFFF;          /* Blanc officiel — BRL */
  --blanc: #FFFFFF;
  --accent: #c2a876;         /* Orange grisé — BRL officiel */
  --accent-clair: #d4bc96;
  --accent-subtil: rgba(194, 168, 118, 0.08);

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-height: 95px;
  --padding-x: clamp(24px, 5vw, 80px);
  --padding-section: clamp(100px, 15vh, 200px);
  --max-width: 1280px;
  --section-title-size: clamp(1.3rem, 1.8vw, 1.6rem);
  --section-title-line-height: 1.14;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--creme);
  color: var(--noir-doux);
  line-height: 1.6;
  overflow-x: hidden;
}

@media (pointer: coarse) {
}

body.no-scroll { overflow: hidden; }

::selection {
  background: var(--accent);
  color: var(--blanc);
}

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

/* --- CURSOR --- */
*, *::before, *::after { cursor: default; }
a, button, [role="button"], select,
input[type="submit"], input[type="button"],
input[type="checkbox"], input[type="radio"],
input[type="range"], input[type="file"],
label[for], [tabindex]:not([tabindex="-1"]),
[data-open-profil], [data-menu-profil],
.burger, .mt-btn, .tab-btn, .valeur-card,
.equipe-card-link, .equipe-card-cta, .equipe-card-mail,
.contact-popup-btn, .contact-agence-ligne, .contact-direct-item,
.legal-link, .legal-crosslink-link, .profil-modal-close,
.contact-modal-close, .nav-logo, .nav-espace-client,
.footer-nav a, .footer-logo, .menu-links a, .menu-profils a,
.profil-contact-btn, .cf-submit { cursor: pointer; }
input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], input[type="password"], textarea { cursor: text; }

/* --- LOADER --- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--noir);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s var(--ease-out-expo), visibility 1s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: clamp(200px, 32vw, 380px);
  color: #fff;
  opacity: 0;
  animation: loaderReveal 2s var(--ease-out-expo) forwards;
}
.loader-logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.loader-line {
  width: 100%;
  height: 1px;
  background: var(--accent);
  margin: 10px auto 0;
  transform: scaleX(0);
  transform-origin: left center;
  animation: loaderLine 1.5s var(--ease-out-expo) 0.5s forwards;
}

@keyframes loaderReveal {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes loaderLine {
  to { transform: scaleX(1); }
}



/* --- SCROLL PROGRESS --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-clair));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 10001;
  pointer-events: none;
}

@media (pointer: coarse), (max-width: 768px) {

  /* Overlay équipe → toujours visible, pas de décalage */
  .equipe-card-overlay {
    transform: translateY(0);
    padding-bottom: 60px; /* espace pour ne pas chevaucher le bouton contacter */
  }

  /* Bouton contacter → toujours visible */
  .equipe-card-mail { opacity: 1; transform: translateY(0); }

  /* Actions "Voir le profil" → toujours visible */
  .equipe-card-actions { opacity: 1; transform: translateY(0); }

  /* Nom plus petit sur mobile */
  .equipe-card-name { font-size: clamp(1.4rem, 7vw, 2rem); }

  /* Pas de zoom/dézoom au tap */
  .equipe-card:hover .equipe-card-img { filter: grayscale(100%); transform: none; }
}

/* --- NAV --- */
/* Nav section wrapper — sticky after hero */
.nav-section {
  position: relative;
  z-index: 1000;
  background: #2e4f45;
}
.nav-section.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.nav-section.menu-open {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1002;
}
.nav.menu-open .nav-logo,
.nav.menu-open .nav-espace-client {
  opacity: 0;
  pointer-events: none;
}


.nav {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--padding-x);
  background: transparent;
  transition: background 0.5s ease, backdrop-filter 0.5s ease;
}

/* Neutraliser l'effet glass scrolled dans la nav-section (fond solide de la section) */
.nav-section .nav.scrolled {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.legal-page .nav,
.profil-page .nav {
  background: var(--vert-mineral);
}

/* Dès le premier scroll : bande glass qui reste tout le long */
.nav.scrolled {
  background: rgba(22, 38, 30, 0.52);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav.menu-open,
.nav.menu-open.scrolled {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 55px;
  color: var(--blanc);
  z-index: 1001;
  text-decoration: none;
}

@media (min-width: 768px) {
  .nav-logo { height: 75px; }
}
.nav-logo img {
  height: 100%;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}

/* Logo et éléments toujours blancs — le fond glass assure le contraste */
.nav.menu-open .nav-logo img { filter: brightness(0) invert(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1001;
}

.nav-espace-client {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  padding: 6px 13px;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.4s ease;
  white-space: nowrap;
}

.nav-espace-client:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
}

.nav.menu-open .nav-espace-client { color: #ffffff; border-color: rgba(255,255,255,0.4); }

.burger {
  width: 28px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #ffffff;
  border-radius: 1px;
  transition: all 0.5s var(--ease-out-expo), background 0.4s ease;
  transform-origin: center;
}

/* Menu ouvert : burger blanc sur fond sombre overlay */
.nav.menu-open .burger span { background: var(--blanc); }

.nav.menu-open .burger span:nth-child(1) { transform: translateY(8.25px) rotate(45deg); }
.nav.menu-open .burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.menu-open .burger span:nth-child(3) { transform: translateY(-8.25px) rotate(-45deg); }

/* --- MENU OVERLAY --- */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--noir);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s var(--ease-in-out), visibility 0.7s;
}

.menu-overlay.open { opacity: 1; visibility: visible; }

.menu-links {
  list-style: none;
  text-align: center;
}

.menu-links li {
  overflow: hidden;
  margin: 4px 0;
}

.menu-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  color: var(--blanc);
  display: inline-block;
  transform: translateY(120%);
  transition: transform 0.8s var(--ease-out-expo), color 0.3s ease;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.menu-overlay.open .menu-links a { transform: translateY(0); }
.menu-links li:nth-child(1) a { transition-delay: 0.08s; }
.menu-links li:nth-child(2) a { transition-delay: 0.13s; }
.menu-links li:nth-child(3) a { transition-delay: 0.18s; }
.menu-links li:nth-child(4) a { transition-delay: 0.23s; }
.menu-links li:nth-child(5) a { transition-delay: 0.28s; }
.menu-links a:hover { color: var(--accent-clair); }

.menu-divider {
  width: 32px;
  height: 1px;
  background: var(--gris-fonce);
  margin: 40px auto 32px;
  opacity: 0;
  transition: opacity 0.5s ease 0.35s;
}

.menu-overlay.open .menu-divider { opacity: 1; }

.menu-profils { text-align: center; }

.menu-profils a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gris);
  letter-spacing: 0.06em;
  display: block;
  padding: 6px 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s ease;
}

.menu-overlay.open .menu-profils a { opacity: 1; transform: translateY(0); }
.menu-overlay.open .menu-profils a:nth-child(1) { transition-delay: 0.4s; }
.menu-overlay.open .menu-profils a:nth-child(2) { transition-delay: 0.45s; }
.menu-profils a:hover { color: var(--accent-clair); }

.menu-partner {
  position: absolute;
  bottom: clamp(28px, 4vh, 48px);
  left: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}

.menu-overlay.open .menu-partner {
  opacity: 1;
  transform: translateY(0);
}

.menu-partner-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gris);
}

.menu-partner-logo {
  width: 150px;
  height: auto;
  display: block;
  opacity: 1;
}

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
}

.section {
  padding: var(--padding-section) 0;
  position: relative;
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}

/* --- HERO --- */
.hero {
  height: 100vh;
  height: 100dvh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background:
    radial-gradient(circle at 72% 18%, rgba(244, 232, 203, 0.18), transparent 16%),
    radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #0f1816 0%, #182824 18%, #284238 38%, #4b645a 62%, #37564c 82%, #2e4f45 100%);
  color: var(--blanc);
  position: relative;
  overflow: hidden;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-scene-glow,
.hero-artwork {
  position: absolute;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
}

.hero-scene-glow {
  border-radius: 999px;
  filter: blur(110px);
  opacity: 0.82;
}

.hero-scene-glow--left {
  top: 9%;
  left: -4%;
  width: 38vw;
  height: 34vw;
  min-width: 300px;
  min-height: 260px;
  background: radial-gradient(circle, rgba(212, 188, 150, 0.25) 0%, rgba(212, 188, 150, 0.09) 44%, transparent 74%);
}

.hero-scene-glow--right {
  top: 14%;
  right: -6%;
  width: 34vw;
  height: 30vw;
  min-width: 260px;
  min-height: 220px;
  background: radial-gradient(circle, rgba(247, 246, 243, 0.16) 0%, rgba(247, 246, 243, 0.06) 42%, transparent 72%);
}

.hero-artwork {
  inset: 0;
  transform-origin: center bottom;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-artwork.is-ready {
  opacity: 0.98;
}

.hero-artwork::before,
.hero-artwork::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-artwork::before {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.08), transparent 17%),
    radial-gradient(circle at 58% 32%, rgba(247, 246, 243, 0.10), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 34%, rgba(9, 17, 15, 0.1) 100%);
  mix-blend-mode: screen;
  opacity: 0.75;
}

.hero-artwork::after {
  background:
    linear-gradient(180deg, rgba(9, 17, 15, 0) 0%, rgba(9, 17, 15, 0) 54%, rgba(9, 17, 15, 0.1) 100%),
    radial-gradient(circle at 50% 82%, rgba(247, 246, 243, 0.12), transparent 22%);
  mix-blend-mode: soft-light;
}

.hero-artwork svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  filter:
    drop-shadow(0 24px 70px rgba(8, 17, 15, 0.18))
    drop-shadow(0 70px 140px rgba(8, 17, 15, 0.16));
}

.hero-artwork g {
  transform-box: fill-box;
  transform-origin: center bottom;
  will-change: transform, opacity, filter;
}

.hero-artwork #sky {
  opacity: 0.92;
}

.hero-artwork #mountains {
  opacity: 0.96;
  filter: drop-shadow(0 16px 40px rgba(15, 24, 22, 0.1));
}

.hero-artwork #trees2 {
  opacity: 0.9;
}

.hero-artwork #trees1 {
  opacity: 0.95;
  filter: drop-shadow(0 10px 32px rgba(8, 17, 15, 0.16));
}

.hero-artwork #foreground {
  opacity: 0.98;
  filter: drop-shadow(0 8px 24px rgba(8, 17, 15, 0.18));
}


/* Voile très léger — juste assez pour ancrer le texte sans noyer le fond */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    ellipse 62% 52% at 28% 50%,
    rgba(8, 17, 15, 0.44) 0%,
    rgba(8, 17, 15, 0.16) 46%,
    transparent 78%
  );
  pointer-events: none;
}

.hero::after {
  content: none;
}

.hero > .container {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
}



.hero-content {
  position: relative;
  z-index: 5;
  width: min(100%, 980px);
  max-width: 980px;
  padding: clamp(78px, 11vh, 124px) 0 88px;
  /* Transition pour lisser le retour en haut quand on scroll vite */
  transition: opacity 0.4s ease, transform 0.4s ease;
  will-change: opacity, transform;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(247, 246, 243, 0.92);
  background: linear-gradient(180deg, rgba(12, 21, 19, 0.18) 0%, rgba(12, 21, 19, 0.08) 100%);
  border: 1px solid rgba(247, 246, 243, 0.14);
  box-shadow: 0 18px 44px rgba(8, 17, 15, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-tag::before {
  content: '';
  width: 26px;
  height: 1px;
  background: rgba(212, 188, 150, 0.9);
}

.hero-titre {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 4.15vw, 4.85rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 12px;
  max-width: none;
  opacity: 0;
  color: #f7f6f3;
  text-shadow:
    0 14px 32px rgba(8, 17, 15, 0.12),
    0 34px 84px rgba(8, 17, 15, 0.08);
}

.hero-titre .hero-line {
  display: block;
  white-space: nowrap;
}

.hero-titre .hero-line:first-child {
  margin-left: 0.02em;
}

.hero-titre .hero-line:last-child {
  margin-left: 0.12em;
}

.hero-break-mobile {
  display: none;
}

.hero-titre em {
  font-style: normal;
  color: #d4bc96;
  font-weight: 700;
  -webkit-text-stroke: 0;
  text-shadow:
    0 12px 26px rgba(15, 24, 22, 0.1),
    0 26px 58px rgba(15, 24, 22, 0.06);
}

.hero-sous-titre {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-scroll {
  position: absolute;
  bottom: calc(clamp(68px, 11vh, 92px) + 24px);
  right: var(--padding-x);
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  z-index: 4;
  animation: heroScrollIn 1s ease 2.5s forwards;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(46,79,69,0.5);
  writing-mode: vertical-lr;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 0; }
  100% { top: 100%; }
}

@keyframes heroScrollIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Word-by-word reveal */
.hero-titre .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 6px;
  margin-bottom: -6px;
}

.hero-titre .word-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  will-change: transform, opacity;
}

/* Hero CTA */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
}

.hero-cta-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color 0.4s ease;
}

.hero-cta-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent);
  transition: width 0.6s var(--ease-out-expo);
  transform-origin: left;
}

.hero-cta:hover .hero-cta-text { color: var(--noir); }
.hero-cta:hover .hero-cta-line { width: 72px; }

/* --- SECTION VOUS --- */
.section-vous {
  background: #2e4f45;
  position: relative;
  z-index: 0;
  margin-top: 0;
  overflow: hidden;
  padding: clamp(140px, 20vh, 260px) 0;
}

.section-vous::before {
  content: none;
}

.section-vous::after {
  content: 'brl';
  position: absolute;
  bottom: 2%;
  right: -2%;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(10rem, 25vw, 22rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  letter-spacing: -0.05em;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}

.section-vous > .container {
  position: relative;
  z-index: 1;
}

.vous-layout {
  display: grid;
  grid-template-columns: 7fr 7fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
  margin-top: 0;
}

.vous-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: center;
}

.vous-left .section-tag {
  margin-bottom: 0;
}

.vous-titre {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
  max-width: 18ch;
}

.vous-titre em { font-style: italic; color: var(--accent); font-weight: 700; }

.vous-items {
  display: flex;
  flex-direction: column;
  padding-top: 0;
}

.vous-item {
  border-top: 1px solid rgba(255,255,255,0.12);
  position: relative;
}

.vous-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }

.vous-item-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  background: none;
  border: none;
  text-align: left;
  gap: 24px;
}

.vous-item-label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: color 0.35s ease;
  flex: 1;
  text-align: left;
}

.vous-item.open .vous-item-label { color: var(--accent); }
.vous-item-header:hover .vous-item-label { color: var(--accent); }

.vous-item-toggle {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.4s ease, transform 0.5s var(--ease-out-expo);
}

.vous-item-toggle::before,
.vous-item-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255,255,255,0.8);
  transition: transform 0.45s var(--ease-out-expo), opacity 0.35s ease, background 0.3s ease;
}

.vous-item-toggle::before {
  width: 10px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.vous-item-toggle::after {
  width: 1px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.vous-item.open .vous-item-toggle {
  border-color: var(--accent);
  transform: rotate(45deg);
}

.vous-item.open .vous-item-toggle::before,
.vous-item.open .vous-item-toggle::after {
  background: var(--accent);
}

.vous-item.open .vous-item-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.vous-item-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.65s var(--ease-out-expo);
}

.vous-item.open .vous-item-body { grid-template-rows: 1fr; }

.vous-item-body > div { overflow: hidden; }

.vous-item-body p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(255,255,255,0.7);
  padding: 0 56px 28px 0;
}

/* --- SECTION NOUS --- */
.section-nous {
  background: var(--blanc);
  position: relative;
  overflow: hidden;
}

.section-nous::after {
  content: 'Confiance';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(6rem, 15vw, 14rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.025);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.nous-titre {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--noir);
  margin: 0 0 72px 0;
  max-width: 820px;
  position: relative;
  z-index: 1;
  text-align: left;
}

.nous-titre em { font-style: italic; color: var(--accent); font-weight: 700; }

.section-nous .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  z-index: 1;
}

.section-nous .section-tag {
  align-self: flex-start;
}

.nous-piliers {
  display: flex;
  justify-content: flex-start;
  gap: clamp(32px, 6vw, 80px);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 48px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.nous-pilier {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 0 0 16px;
  background: none;
  border: none;
  border-bottom: 1.5px solid transparent;
  text-align: left;
  transition: border-color 0.4s ease;
}

.nous-pilier.active {
  border-bottom-color: var(--accent);
}

.nous-pilier-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nous-pilier.active .nous-pilier-num { opacity: 1; }

.nous-pilier-label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.8vw, 3.5rem);
  color: var(--noir);
  letter-spacing: -0.03em;
  line-height: 1;
  opacity: 0.18;
  transition: opacity 0.4s ease;
}

.nous-pilier.active .nous-pilier-label { opacity: 1; }
.nous-pilier:hover .nous-pilier-label { opacity: 0.5; }

.nous-content-zone {
  position: relative;
  min-height: 100px;
  padding: 40px 0 0;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.nous-content-text {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  line-height: 1.8;
  color: var(--gris-fonce);
  max-width: 580px;
  text-align: left;
  position: absolute;
  top: 40px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s var(--ease-out-expo), transform 0.45s var(--ease-out-expo);
  pointer-events: none;
}

.nous-content-text.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
  top: auto;
}

/* --- SECTION NOS VALEURS --- */
.section-valeurs {
  background: transparent;
  position: relative;
  overflow: visible;
  margin: 0;
  z-index: 1;
}

.section-valeurs::before {
  content: '';
  position: absolute;
  inset: -44px -4%;
  background: #f0f4f2;
  transform: rotate(-1deg);
  z-index: -1;
}

.section-valeurs::after {
  content: 'Nous';
  position: absolute;
  bottom: -8%;
  right: -2%;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(10rem, 25vw, 22rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.06);
  letter-spacing: -0.05em;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.valeurs-layout {
  display: grid;
  grid-template-columns: 7fr 7fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
  margin-top: 0;
}

.valeurs-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: center;
}

.valeurs-left .section-tag {
  margin-bottom: 0;
  color: var(--accent);
}

.valeurs-titre {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--noir);
  margin: 0;
  max-width: 18ch;
}

.valeurs-titre em { font-style: italic; color: var(--accent); font-weight: 700; }

.valeurs-items {
  display: flex;
  flex-direction: column;
  padding-top: 0;
}

.valeurs-item {
  border-top: 1px solid rgba(0,0,0,0.08);
  position: relative;
}

.valeurs-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }

.valeurs-item-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  background: none;
  border: none;
  text-align: left;
  gap: 24px;
}

.valeurs-item-label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--noir);
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: color 0.35s ease;
  flex: 1;
  text-align: left;
}

.valeurs-item-header:hover .valeurs-item-label { color: var(--accent); }

.valeurs-item-toggle {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.4s ease, transform 0.5s var(--ease-out-expo);
}

.valeurs-item-toggle::before,
.valeurs-item-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(0,0,0,0.6);
  transition: transform 0.45s var(--ease-out-expo), opacity 0.35s ease, background 0.3s ease;
}

.valeurs-item-toggle::before {
  width: 10px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.valeurs-item-toggle::after {
  width: 1px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.valeurs-item.open .valeurs-item-toggle {
  border-color: var(--accent);
  transform: rotate(45deg);
}

.valeurs-item.open .valeurs-item-toggle::before,
.valeurs-item.open .valeurs-item-toggle::after {
  background: var(--accent);
}

.valeurs-item.open .valeurs-item-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

/* --- MODALES VALEURS --- */
.valeur-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.valeur-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.valeur-modal {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(32px, 5vw, 56px);
  max-width: 520px;
  width: 100%;
  position: relative;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.45s var(--ease-out-expo), opacity 0.35s ease;
  opacity: 0;
}

.valeur-modal-overlay.open .valeur-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.valeur-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: border-color 0.3s ease, transform 0.4s var(--ease-out-expo);
  padding: 0;
}

.valeur-modal-close:hover {
  border-color: var(--accent);
  transform: rotate(90deg);
}

.valeur-modal-close svg { width: 14px; height: 14px; }

.valeur-modal-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 16px;
}

.valeur-modal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--noir);
  margin-bottom: 20px;
}

.valeur-modal-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal);
}

/* --- ENGAGEMENTS --- */
.section-engagements {
  background: var(--creme);
  position: relative;
  z-index: 2;
  padding: clamp(140px, 20vh, 260px) 0;
}

.engagements-titre {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--noir);
  margin-top: 8px;
  max-width: 18ch;
}

.engagements-titre em {
  font-style: normal;
  color: var(--accent);
}

.section-engagements .section-tag { color: var(--accent); }

.section-engagements .valeurs-item {
  border-top-color: rgba(0,0,0,0.1);
}

.section-engagements .valeurs-item-label {
  color: var(--noir);
}

.section-engagements .valeurs-item-header:hover .valeurs-item-label {
  color: var(--accent);
}

.section-engagements .valeurs-item-toggle {
  border-color: rgba(0,0,0,0.2);
}

.section-engagements .valeurs-item-toggle::before,
.section-engagements .valeurs-item-toggle::after {
  background: var(--noir);
}

.section-engagements .valeurs-item.open .valeurs-item-toggle {
  border-color: var(--accent);
}

.section-engagements .valeurs-item.open .valeurs-item-toggle::before,
.section-engagements .valeurs-item.open .valeurs-item-toggle::after {
  background: var(--accent);
}

/* --- ÉQUIPE --- */
.section-equipe {
  background: var(--vert-mineral);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.equipe-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 90vh;
  max-height: 90vh;
}

.equipe-card {
  position: relative;
  overflow: hidden;
}

.equipe-card-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
}

.equipe-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: none;
  filter: grayscale(100%);
  transition: filter 0.7s ease, transform 0.9s var(--ease-out-expo);
  display: block;
}

.equipe-card:hover .equipe-card-img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.equipe-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(32px, 4vw, 56px) clamp(32px, 4vw, 56px) clamp(22px, 2.8vw, 38px);
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(32px);
  transition: transform 0.5s var(--ease-out-expo);
}

.equipe-card:hover .equipe-card-overlay {
  transform: translateY(0);
}

.equipe-card-role {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 20px;
  align-self: flex-start;
}

.equipe-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.equipe-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.equipe-card:hover .equipe-card-actions {
  opacity: 1;
  transform: translateY(0);
}

.equipe-card-cta {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.equipe-card-cta:hover {
  color: #ffffff;
}

.equipe-card-mail {
  position: absolute;
  bottom: clamp(22px, 2.8vw, 38px);
  right: clamp(32px, 4vw, 56px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  background: rgba(0, 0, 0, 0.50);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid rgba(194, 168, 118, 0.35);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s, background 0.25s ease, border-color 0.25s ease;
  z-index: 10;
}

.equipe-card:hover .equipe-card-mail {
  opacity: 1;
  transform: translateY(0);
}

.equipe-card-mail:hover {
  background: rgba(194, 168, 118, 0.22);
  border-color: rgba(194, 168, 118, 0.75);
}

/* --- INTERLUDE --- */
.interlude {
  background: var(--charcoal);
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

.interlude::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(194,168,116,0.15) 0%, transparent 55%);
  pointer-events: none;
}

.interlude .container { position: relative; z-index: 1; }

.interlude-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-clair);
  margin-bottom: 40px;
}

.interlude-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.interlude-statement {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.2rem, 8vw, 9rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--blanc);
}

/* --- SECTION MÉTHODE --- */
.section-methode {
  background: #2e4f45;
  color: var(--blanc);
  overflow: hidden;
  position: relative;
  padding-bottom: 32px;
}

.methode-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.section-methode .container { position: relative; z-index: 1; }

.section-methode .section-tag { color: var(--accent-clair); }
.section-methode .section-tag::before { background: var(--accent-clair); }

.methode-intro {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 100px;
  max-width: 650px;
  color: var(--creme);
}

/* --- 3 COLONNES MÉTHODE --- */
/* --- MÉTHODE TIMELINE --- */
.methode-timeline {
  position: relative;
  margin-bottom: 100px;
}

/* Track */
.mt-track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-bottom: 72px;
  padding: 0;
}

.mt-track-bg {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 1px;
  background: rgba(255,255,255,0.08);
  z-index: 0;
  overflow: hidden;
}

.mt-track-progress {
  display: block;
  height: 100%;
  background: linear-gradient(to right, var(--accent), rgba(194,168,116,0.25));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s var(--ease-out-expo);
}

.mt-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  position: relative;
  z-index: 1;
  padding: 0;
}

.mt-node-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(194,168,116,0.4);
  background: transparent;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease;
}

.mt-node:hover:not(.active) .mt-node-dot {
  border-color: rgba(194,168,116,0.7);
  background: rgba(194,168,116,0.1);
}

.mt-node.active .mt-node-dot {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.3);
  box-shadow: 0 0 0 5px rgba(194,168,116,0.18);
}

.mt-node-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.35s ease;
  white-space: nowrap;
}

.mt-node:hover:not(.active) .mt-node-label {
  color: rgba(255,255,255,0.55);
}

.mt-node.active .mt-node-label {
  color: var(--accent-clair);
  font-weight: 600;
}

/* Panels */
.mt-panels {
  position: relative;
  min-height: 320px;
  margin-bottom: 28px;
}

.mt-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.55s var(--ease-out-expo), transform 0.55s var(--ease-out-expo);
  pointer-events: none;
}

.mt-panel.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.mt-panel.leaving {
  position: absolute;
  opacity: 0;
  transform: translateX(-48px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
}

.mt-panel-bg-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(11rem, 22vw, 22rem);
  color: transparent;
  -webkit-text-stroke: 2px rgba(194,168,116,0.28);
  line-height: 0.85;
  letter-spacing: -0.06em;
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
  align-self: flex-start;
}

.mt-panel-content {
  flex: 1;
}

.mt-panel-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 4rem);
  color: var(--blanc);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 32px;
}

.mt-panel-text {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
  max-width: 520px;
  border-left: 2px solid rgba(194,168,116,0.35);
  padding-left: 20px;
}

.mt-panel-text + .mt-panel-text {
  margin-top: 0.75em;
}

/* Navigation */
.mt-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.mt-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.mt-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent-clair);
  background: rgba(194,168,116,0.1);
  transform: scale(1.08);
}

.mt-btn:disabled {
  opacity: 0.2;
}

.mt-btn svg { width: 20px; height: 20px; }

.mt-step-counter {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  min-width: 56px;
  text-align: center;
}

#mtCurrent {
  color: var(--accent-clair);
  font-size: 1.15rem;
  font-weight: 400;
}

.mt-step-sep { opacity: 0.4; }

.methode-bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.methode-citation {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  color: var(--gris);
  font-style: italic;
}

/* --- LINK ARROW --- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--accent-clair);
  position: relative;
  padding: 2px 0;
  transition: color 0.3s ease;
}

.link-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-clair);
  transition: width 0.5s var(--ease-out-expo);
}

.link-arrow:hover::after { width: 100%; }

.link-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s var(--ease-out-expo);
}

.link-arrow:hover svg { transform: translateX(6px); }

.link-arrow--dark { color: var(--accent); }
.link-arrow--dark::after { background: var(--accent); }

/* --- SECTION CONTACT --- */
/* === SECTION CONTACT === */
.section-contact {
  background: var(--creme);
  position: relative;
}

.contact-layout {
  display: grid;
  grid-template-columns: 5fr 5fr;
  gap: clamp(60px, 10vw, 120px);
  align-items: stretch;
}

/* Gauche */
.contact-left {
  display: flex;
  flex-direction: column;
}

.contact-left .section-tag { margin-bottom: 24px; }

.contact-direct {
  margin-top: 0;
  margin-bottom: 0;
}

/* Bouton popup */
.contact-popup-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  margin-top: 24px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 100px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.3s ease, transform 0.3s ease;
}
.contact-popup-btn svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.contact-popup-btn:hover { background: #a8925f; }
.contact-popup-btn:hover svg { transform: translateX(4px); }

/* Agences */
.contact-agences {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-agence {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.09);
  display: flex;
  flex-direction: column;
}

.contact-agence-img {
  width: 100%;
  height: 140px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.contact-agence-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 22px 26px;
}

.contact-agence-ville {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(194,168,118,0.12);
  border: 1px solid rgba(194,168,118,0.3);
  padding: 5px 12px;
  border-radius: 20px;
  align-self: flex-start;
  margin-bottom: 10px;
}

.contact-agence-adresse {
  font-size: 0.82rem;
  color: rgba(0,0,0,0.42);
  line-height: 1.5;
  margin-bottom: 8px;
}

.contact-agence-ligne {
  font-size: 0.84rem;
  color: var(--gris-fonce);
  text-decoration: none;
  transition: color 0.25s ease;
}
.contact-agence-ligne:hover { color: var(--accent); }

/* Contacts directs */
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-direct-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  text-decoration: none;
  transition: color 0.25s ease;
  gap: 16px;
}
.contact-direct-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.07); }

.contact-direct-name {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--noir);
  transition: color 0.25s ease;
}

.contact-direct-mail {
  font-size: 0.76rem;
  color: rgba(0,0,0,0.4);
  transition: color 0.25s ease;
}

.contact-direct-item:hover .contact-direct-name,
.contact-direct-item:hover .contact-direct-mail { color: var(--accent); }

/* Modal popup formulaire */
.contact-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,20,18,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s;
}

.contact-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.contact-modal {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(32px, 5vw, 56px);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.4s var(--ease-out-expo);
}

.contact-modal-overlay.open .contact-modal { transform: translateY(0); }

.contact-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--noir);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.contact-modal-close svg { width: 16px; height: 16px; }
.contact-modal-close:hover { border-color: var(--noir); }

.contact-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--noir);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.contact-titre {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line-height);
  letter-spacing: -0.02em;
  color: var(--noir);
  margin-bottom: 24px;
}

.contact-titre em {
  font-style: italic;
  color: var(--accent);
  font-weight: 700;
}

.contact-sous-titre {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gris-fonce);
  line-height: 1.8;
  margin-bottom: 48px;
}

.contact-direct-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(0,0,0,0.3);
  margin-bottom: 8px;
}

/* Droite */
.contact-right { padding-top: 4px; display: flex; flex-direction: column; justify-content: center; }

/* FORMULAIRE */
.contact-form { position: relative; }

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

.cf-group {
  position: relative;
  margin-bottom: 40px;
}

.cf-group input,
.cf-group select,
.cf-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  border-radius: 0;
  padding: 12px 0 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--noir);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.3s ease;
  resize: none;
}

.cf-group textarea {
  line-height: 1.7;
  height: 100px;
}

.cf-group select {
}

/* Floating label */
.cf-group label {
  position: absolute;
  left: 0;
  top: 13px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(0,0,0,0.38);
  pointer-events: none;
  transition: top 0.25s var(--ease-out-expo), font-size 0.25s var(--ease-out-expo), color 0.25s ease;
}

.cf-group input:focus ~ label,
.cf-group input:not(:placeholder-shown) ~ label,
.cf-group select:focus ~ label,
.cf-group select:valid ~ label,
.cf-group textarea:focus ~ label,
.cf-group textarea:not(:placeholder-shown) ~ label {
  top: -14px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}

/* Ligne cuivrée au focus */
.cf-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
  pointer-events: none;
}

.cf-group:focus-within .cf-line { transform: scaleX(1); }
.cf-group:focus-within > input,
.cf-group:focus-within > select,
.cf-group:focus-within > textarea { border-color: transparent; }

.cf-optional {
  font-size: 0.78rem;
  opacity: 0.55;
}

/* Flèche select custom */
.cf-group--select::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-right: 1px solid rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(0,0,0,0.3);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

/* Footer formluaire */
.cf-footer {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cf-honeypot {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.cf-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--blanc);
  border: none;
  border-radius: 100px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: background 0.3s ease, transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
  flex-shrink: 0;
}

.cf-submit svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out-expo); }

.cf-submit:hover {
  background: #9c8363;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(194,168,116,0.3);
}

.cf-submit:disabled {
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.cf-submit:hover svg { transform: translateX(4px); }

.cf-mention {
  font-size: 0.7rem;
  color: rgba(0,0,0,0.22);
  font-weight: 400;
  line-height: 1.6;
}

/* Messages formulaire */
.cf-error,
.cf-success {
  display: none;
  align-items: center;
  gap: 16px;
  background: rgba(194,168,116,0.08);
  border: 1px solid rgba(194,168,116,0.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 32px;
}

.cf-error {
  border-color: rgba(160,80,64,0.2);
  background: rgba(160,80,64,0.08);
}

.cf-error.visible,
.cf-success.visible { display: flex; }

.cf-success svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.cf-error p,
.cf-success p {
  font-size: 0.9rem;
  color: var(--gris-fonce);
  line-height: 1.5;
}

/* Droite : contacts */
.contact-right {
  position: static;
}

/* --- FOOTER --- */
.footer {
  background: var(--noir);
  padding: 64px var(--padding-x) 48px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--padding-x);
  right: var(--padding-x);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(194,168,116,0.2), transparent);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  color: var(--blanc);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.footer-logo img {
  height: 55px;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .footer-logo img { height: 75px; }
}

.footer-logo:hover { opacity: 0.6; }

.footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.footer-nav a:hover { color: var(--accent-clair); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-legal {
  font-size: 0.68rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.2);
  font-weight: 400;
}

.footer-copy {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.15);
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- REVEAL (bidirectionnel : apparition + disparition animée au scroll) --- */
/* État initial — GSAP ScrollTrigger gère animation + reverse */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
}



/* --- PROFIL PAGE --- */
.profil-page { background: var(--creme); }

.profil-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gris);
  z-index: 1001;
  transition: color 0.3s ease;
}

.profil-back:hover { color: var(--accent); }
.profil-back svg { width: 16px; height: 16px; }

.profil-hero {
  padding: calc(var(--nav-height) + 80px) 0 60px;
}

.profil-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: end;
}

.profil-photo {
  width: 280px;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  filter: grayscale(20%);
}

.profil-identity h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.profil-identity h1 strong { font-weight: 700; }

.profil-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.profil-contact-details {
  font-size: 0.92rem;
  color: var(--gris);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.profil-location {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--gris);
}

.profil-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  background: rgba(46, 79, 69, 0.08);
  border: 1px solid rgba(46, 79, 69, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  align-self: flex-start;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.profil-contact-btn:hover {
  background: rgba(46, 79, 69, 0.15);
  border-color: var(--accent);
  color: var(--accent);
}

.profil-body {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px var(--padding-x) 120px;
}

.profil-text {
  max-width: 640px;
  margin-left: 340px;
}

.profil-text p {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 2;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.profil-engagement {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.profil-engagement p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--noir);
}

.profil-engagement strong { font-weight: 600; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .vous-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .vous-left { align-self: auto; }

  .mt-panels { min-height: auto; }
  .mt-panel { flex-direction: column; align-items: flex-start; gap: 8px; }
  .mt-panel-bg-num { font-size: clamp(7rem, 22vw, 12rem); align-self: auto; }
  .mt-node-label { display: none; }
  .mt-panel-text { border-left: none; padding-left: 0; padding-top: 0; }
  .mt-panel-text:first-of-type { border-top: 2px solid rgba(194,168,116,0.35); padding-top: 20px; }

  .equipe-inner { grid-template-columns: 1fr; height: auto; max-height: none; }
  .equipe-card { height: 100vw; min-height: 500px; }
  .equipe-card-img { min-height: unset; object-position: center center; }
  .nous-piliers { flex-direction: column; align-items: center; gap: 0; padding-top: 32px; border-top: 1px solid rgba(0,0,0,0.08); }
  .nous-pilier { border-bottom: 1px solid rgba(0,0,0,0.08); padding: 20px 0; }
  .nous-pilier.active { border-bottom-color: var(--accent); }
  .nous-left { align-self: auto; }

  .section-vous::after,
  .section-nous::after { font-size: clamp(6rem, 18vw, 12rem); opacity: 0.7; }

  .valeurs-layout { grid-template-columns: 1fr; gap: 40px; }
  .valeurs-left { align-self: auto; }

  .profil-hero-inner { grid-template-columns: 200px 1fr; gap: 40px; }
  .profil-photo { width: 200px; height: 260px; }
  .profil-text { margin-left: 0; }

  .methode-bottom { flex-direction: column; gap: 32px; text-align: center; }
  .contact-layout { grid-template-columns: 1fr; gap: 56px; }
  .contact-right { position: static; }
  .cf-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 768px) {
  :root { --nav-height: 80px; }
  .hero-scroll { display: none; }
  .hero {
    min-height: 620px;
    background:
      radial-gradient(circle at 72% 14%, rgba(244, 232, 203, 0.16), transparent 18%),
      linear-gradient(180deg, #101917 0%, #1d302b 26%, #36544a 62%, #2e4f45 100%);
  }
  .hero-content {
    padding: 44px 0 104px;
    max-width: 100%;
  }
  .hero-tag {
    margin-bottom: 28px;
    padding: 10px 16px;
  }
  .hero-titre {
    font-size: clamp(2.25rem, 4.8vw, 3.9rem);
    line-height: 0.92;
  }
  .hero-titre .hero-line:last-child {
    margin-left: 0.08em;
  }
  .hero-scene {
    inset: 0 -8% 0;
  }
  .hero-scene-glow--left {
    width: 56vw;
    height: 50vw;
    left: -10%;
  }
  .hero-scene-glow--right {
    width: 52vw;
    height: 46vw;
    right: -12%;
  }
  .hero-artwork {
    inset: 0;
  }
  .section-nous::after { display: none; }
  .profil-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .profil-photo { width: 200px; height: 260px; margin: 0 auto; }
  .profil-text { margin-left: 0; }

  .footer-top { flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer-nav { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .contact-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 32px;
  }

  .contact-card-detail, .contact-card-lieu { justify-content: center; }

  .hero {
    min-height: 560px;
  }
  .hero-titre {
    font-size: clamp(2.3rem, 12vw, 3.2rem);
    letter-spacing: -0.02em;
    max-width: 9ch;
    line-height: 1.02;
  }
  .hero-titre .hero-line {
    display: block;
    white-space: normal;
  }
  .hero-titre .hero-line:first-child,
  .hero-titre .hero-line:last-child {
    margin-left: 0;
  }
  .hero-break-mobile {
    display: block;
  }
  .hero-sous-titre {
    max-width: 92%;
    font-size: 0.96rem;
    line-height: 1.65;
  }
  .hero-tag {
    margin-bottom: 30px;
    font-size: 0.72rem;
    padding: 9px 14px;
  }
  .hero-scene {
    inset: 0 -14% 0;
  }
  .hero-scene-glow--left,
  .hero-scene-glow--right {
    filter: blur(54px);
  }
  .hero-artwork {
    inset: 0;
  }
  .hero-artwork::before {
    opacity: 0.55;
  }
  .hero-cta { margin-top: 40px; }
  .hero-cta-text { font-size: 0.78rem; }

  .menu-partner { bottom: 20px; left: 20px; }
  .menu-partner-logo { width: 110px; }
}

/* --- LEGAL PAGES --- */
.legal-page {
  background:
    radial-gradient(circle at top left, rgba(194, 168, 118, 0.12), transparent 32%),
    linear-gradient(180deg, #f3f1ea 0%, #ffffff 22%, #f7f6f2 100%);
}

.legal-main {
  position: relative;
  overflow: clip;
}

.legal-main::before,
.legal-main::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(30px);
  opacity: 0.7;
}

.legal-main::before {
  top: 120px;
  right: -140px;
  width: 360px;
  height: 360px;
  background: rgba(194, 168, 118, 0.14);
}

.legal-main::after {
  top: 420px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: rgba(46, 79, 69, 0.08);
}

.legal-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 78vh, 760px);
  padding: calc(var(--nav-height) + 56px) 0 56px;
}

.legal-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 460px);
  gap: clamp(28px, 4.5vw, 84px);
  align-items: center;
}

.legal-hero-copy {
  max-width: 760px;
  align-self: center;
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.4vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--noir);
  max-width: 11ch;
  text-wrap: balance;
}

.legal-intro {
  max-width: 34rem;
  margin-top: 28px;
  font-size: clamp(1.02rem, 1.6vw, 1.14rem);
  line-height: 1.85;
  color: rgba(30, 53, 48, 0.84);
}

.legal-summary-card,
.legal-card,
.legal-crosslink {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(46, 79, 69, 0.09);
  box-shadow:
    0 24px 60px rgba(27, 43, 38, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
}

.legal-summary-card {
  width: min(100%, 460px);
  padding: 30px;
  border-radius: 28px;
  justify-self: end;
  align-self: center;
}

.legal-summary-card::before,
.legal-card::before,
.legal-crosslink::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(194, 168, 118, 0.8), rgba(194, 168, 118, 0.08));
}

.legal-summary-label,
.legal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.legal-summary-label::before,
.legal-kicker::before {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
}

.legal-summary-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.legal-summary-list div {
  padding-top: 16px;
  border-top: 1px solid rgba(46, 79, 69, 0.08);
}

.legal-summary-list dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(46, 79, 69, 0.54);
  margin-bottom: 7px;
}

.legal-summary-list dd {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--noir);
}

.legal-content {
  padding: 8px 0 120px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.legal-card,
.legal-crosslink {
  border-radius: 30px;
  padding: clamp(26px, 3vw, 34px);
}

.legal-card {
  grid-column: span 6;
}

.legal-card--wide {
  grid-column: span 7;
}

.legal-card--full,
.legal-crosslink {
  grid-column: 1 / -1;
}

.legal-card-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.legal-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2.05rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--noir);
  max-width: 18ch;
}

.legal-body {
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(30, 53, 48, 0.84);
}

.legal-body + .legal-body {
  margin-top: 14px;
}

.legal-body--strong {
  color: var(--noir);
  font-weight: 500;
}

.legal-detail-list {
  display: grid;
  gap: 18px;
}

.legal-detail {
  padding-top: 16px;
  border-top: 1px solid rgba(46, 79, 69, 0.08);
}

.legal-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(46, 79, 69, 0.54);
}

.legal-detail p {
  font-size: 1.04rem;
  line-height: 1.72;
  color: var(--noir);
}

.legal-bullets {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.legal-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(30, 53, 48, 0.84);
}

.legal-bullets li::before {
  content: '';
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.legal-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(194, 168, 118, 0.08);
  border: 1px solid rgba(194, 168, 118, 0.18);
}

.legal-note-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.legal-note p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--noir);
}

.legal-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.legal-link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.legal-link:hover {
  color: var(--noir);
}

.legal-placeholder {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(46, 79, 69, 0.06);
  border: 1px solid rgba(46, 79, 69, 0.1);
  color: rgba(30, 53, 48, 0.72);
}

.legal-crosslink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-crosslink p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(30, 53, 48, 0.8);
}

.legal-crosslink-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(46, 79, 69, 0.12);
  background: rgba(46, 79, 69, 0.04);
  color: var(--noir);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.legal-crosslink-link:hover {
  background: var(--noir);
  border-color: var(--noir);
  color: var(--blanc);
}

@media (max-width: 1100px) {
  .legal-hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .legal-summary-card {
    width: min(100%, 560px);
    max-width: 560px;
    justify-self: start;
  }

  .legal-card,
  .legal-card--wide {
    grid-column: span 6;
  }
}

@media (max-width: 900px) {
  .legal-hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 48px);
  }

  .legal-hero-inner {
    gap: 28px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-card,
  .legal-card--wide,
  .legal-card--full,
  .legal-crosslink {
    grid-column: 1 / -1;
  }

  .legal-split,
  .legal-crosslink {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .legal-hero {
    padding-top: calc(var(--nav-height) + 36px);
    padding-bottom: 36px;
  }

  .legal-summary-card,
  .legal-card,
  .legal-crosslink {
    border-radius: 24px;
  }

  .legal-summary-card::before,
  .legal-card::before,
  .legal-crosslink::before {
    left: 20px;
    right: 20px;
  }
}

@media (max-width: 560px) {
  .legal-title {
    max-width: none;
    font-size: clamp(2.25rem, 13vw, 3.4rem);
  }

  .legal-hero-inner {
    gap: 22px;
  }

  .legal-intro,
  .legal-body,
  .legal-detail p,
  .legal-bullets li,
  .legal-crosslink p {
    font-size: 0.98rem;
  }

  .legal-summary-list dd {
    font-size: 0.95rem;
  }

  .legal-summary-card,
  .legal-card,
  .legal-crosslink {
    padding: 22px;
  }

  .legal-crosslink-link {
    width: 100%;
  }

  .legal-placeholder {
    max-width: 100%;
    white-space: normal;
    border-radius: 18px;
  }

  .legal-content {
    padding-bottom: 88px;
  }
}
