/* ============================================================
   NOKANHUI & ASSOCIÉS — Version intermédiaire
   Contenu & structure du site en ligne + design premium
   Typo : Fraunces (display) + Hanken Grotesk (texte)
   Palette : porcelaine + bleu marque (#2E4A6B) + or marque (#B8892A)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
::selection { background: var(--bleu); color: #FBF7EF; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

/* ---------- TOKENS ---------- */
:root {
  /* Fonds porcelaine */
  --paper:     #F5F3EE;   /* porcelaine chaude (fond global)   */
  --paper-2:   #ECE9E1;   /* pierre claire (sections alt)      */
  --paper-3:   #E0DDD3;   /* pierre ombrée                     */

  /* Encres / sombres */
  --ink:       #16202E;   /* graphite bleu très profond        */
  --ink-2:     #1A2433;   /* variante section sombre           */
  --ink-soft:  #4C5563;   /* texte secondaire gris-bleu        */

  /* Bleu de marque */
  --bleu:      #2E4A6B;
  --bleu-fonce:#1E3450;
  --bleu-soft: #79889E;   /* bleu-gris pour labels             */

  /* Or de marque (conservé) + déclinaisons champagne premium */
  --or:        #B8892A;
  --or-fonce:  #8A6A38;   /* or profond pour texte accent      */
  --or-clair:  #D4A84A;
  --champagne: #C2A06A;   /* accent sur fonds sombres          */
  --champagne-clair: #D4A84A;   /* accent display sur fonds sombres (avant #DBC79E, jugé trop beige) */

  --line:       rgba(22,32,46,.16);
  --line-soft:  rgba(22,32,46,.085);
  --line-light: rgba(245,243,238,.18);

  --txt:   var(--ink);
  --txt-2: var(--ink-soft);

  /* Typo */
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:    'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Rythme */
  --wrap: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(3.4rem, 6.5vw, 5.5rem);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-soft: cubic-bezier(.4,.01,.2,1);
  --radius: 14px;
}

/* ---------- BODY ---------- */
body {
  font-family: var(--sans);
  color: var(--txt);
  background: var(--paper);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  font-feature-settings: "ss01";
}
/* Grain papier léger */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9000;
  opacity: .04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- TYPO ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 460;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-optical-sizing: auto;
}
.it { font-style: italic; font-weight: 420; }
p { font-size: 1.0625rem; color: var(--txt-2); }

/* Étiquette de section */
.eyebrow {
  font-family: var(--sans);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--or-fonce);
  display: inline-flex; align-items: center; gap: .7rem;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--or); display: inline-block; }
.eyebrow.no-rule::before { display: none; }
.eyebrow.center { justify-content: center; }
.eyebrow.on-dark { color: var(--champagne-clair); }
.eyebrow.on-dark::before { background: var(--champagne); }

/* ---------- LAYOUT ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-head h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); margin-top: .9rem; letter-spacing: -0.02em; }
.section-head h2 .it { color: var(--or-fonce); }
.section-head p { margin-top: .9rem; max-width: 58ch; margin-inline: auto; font-size: 1.02rem; }

/* ---------- BOUTONS ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-weight: 600;
  font-size: .92rem; letter-spacing: .01em;
  padding: .95rem 1.7rem; border-radius: 100px;
  transition: transform .5s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .45s var(--ease), border-color .35s;
  white-space: nowrap;
}
.btn .arr { transition: transform .4s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--bleu); color: #FBF7EF; box-shadow: 0 1px 0 rgba(0,0,0,.04); }
.btn-primary:hover { background: var(--bleu-fonce); transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(30,52,80,.6); }
.btn-gold { background: var(--or); color: #FBF7EF; }
.btn-gold:hover { background: var(--or-clair); transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(184,137,42,.55); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--bleu-fonce); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(22,32,46,.5); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn-light { border: 1px solid var(--line-light); color: var(--paper); }
.btn-light:hover { background: var(--paper); color: var(--ink); transform: translateY(-2px); border-color: var(--paper); }

.link-arrow {
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  color: var(--or-fonce);
  display: inline-flex; align-items: center; gap: .45rem;
  border-bottom: 1px solid transparent;
  transition: gap .35s var(--ease), border-color .35s;
  width: fit-content;
}
.link-arrow .arr { transition: transform .4s var(--ease); }
.link-arrow:hover { gap: .7rem; border-bottom-color: var(--or); }

/* ============================================================
   NAVBAR
   ============================================================ */
#progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: linear-gradient(90deg, var(--bleu), var(--or)); z-index: 1200; transition: width .1s linear; }
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem var(--gutter);
  transition: padding .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
/* Fond flouté porté par un pseudo-élément (et non par #navbar) : sinon `backdrop-filter`
   fait de #navbar un bloc conteneur pour les `position:fixed` → le menu mobile (inset:0)
   se retrouvait calé sur la navbar (barre fine) une fois scrollé, donc affiché en partie. */
#navbar::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: rgba(245,243,238,.82);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  opacity: 0; transition: opacity .4s var(--ease);
}
#navbar.scrolled {
  padding: .65rem var(--gutter);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 8px 30px -22px rgba(22,32,46,.6);
}
#navbar.scrolled::before { opacity: 1; }
.nav-logo { height: 50px; width: auto; display: block; transition: height .4s var(--ease); }
#navbar.scrolled .nav-logo { height: 42px; }

.nav-links { display: flex; align-items: center; gap: .4rem; }
.nav-links > li { position: relative; }
.nav-links a:not(.btn) {
  font-family: var(--sans); font-weight: 500; font-size: .95rem;
  color: var(--ink); padding: .55rem .85rem; border-radius: 6px;
  display: inline-flex; align-items: center; gap: .35rem;
  transition: color .3s, background .3s;
}
.nav-links a:not(.btn):hover { color: var(--or-fonce); }
.nav-links .chevron { font-size: .55rem; transition: transform .35s var(--ease); opacity: .6; }
.nav-dropdown:hover .chevron { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% + .4rem); left: 0;
  min-width: 230px; background: var(--paper);
  border: 1px solid var(--line-soft); border-radius: 12px;
  padding: .5rem; box-shadow: 0 24px 50px -24px rgba(22,32,46,.4);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: flex !important; align-items: center; gap: .7rem;
  padding: .7rem .8rem !important; border-radius: 8px; width: 100%; font-weight: 500;
}
.dropdown-menu a:hover { background: var(--paper-2); }
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-prevenir { background: var(--bleu); }
.dot-former { background: var(--or); }
.dot-soutenir { background: var(--bleu-fonce); }

.nav-cta { background: var(--ink); color: var(--paper) !important; padding: .6rem 1.25rem !important; border-radius: 100px; transition: background .35s, transform .45s var(--ease) !important; }
.nav-cta:hover { background: var(--bleu) !important; color: #FBF7EF !important; transform: translateY(-2px); }

.hamburger { display: none; width: 42px; height: 42px; position: relative; z-index: 1102; }
.hamburger span { position: absolute; left: 9px; right: 9px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .4s var(--ease), opacity .3s, top .3s; }
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 20px; }
.hamburger span:nth-child(3) { top: 26px; }
.hamburger.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ============================================================
   HERO — centré sur les personnes
   ============================================================ */
#hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem var(--gutter) 4rem; overflow: hidden;
  background: radial-gradient(125% 75% at 50% -12%, rgba(224,221,211,0), rgba(224,221,211,.45)), var(--paper);
}
.hero-atmo { position: absolute; inset: -10% -6%; z-index: 0; pointer-events: none; will-change: transform; }
.bloom { position: absolute; border-radius: 50%; filter: blur(48px); opacity: .5; will-change: transform; }
.bloom-1 { width: 44vw; height: 44vw; top: -6%; right: 3%; background: radial-gradient(circle, rgba(194,160,106,.55), transparent 64%); animation: floatA 19s var(--ease-soft) infinite; }
.bloom-2 { width: 42vw; height: 42vw; bottom: -14%; left: -9%; background: radial-gradient(circle, rgba(46,74,107,.5), transparent 64%); animation: floatB 23s var(--ease-soft) infinite; }
.bloom-3 { width: 27vw; height: 27vw; bottom: -2%; right: 11%; background: radial-gradient(circle, rgba(184,137,42,.4), transparent 64%); animation: floatC 21s var(--ease-soft) infinite; }
@keyframes floatA { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-3%,5%) scale(1.06); } }
@keyframes floatB { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(4%,-4%) scale(1.05); } }
@keyframes floatC { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-4%,-3%) scale(1.08); } }
#hero .topo-lines { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .6; }

.hero-grid { position: relative; z-index: 2; max-width: var(--wrap); margin: 0 auto; width: 100%; }
.hero-tag {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--bleu);
  padding: .5rem .9rem .5rem .55rem; border: 1px solid var(--line); border-radius: 100px;
  background: rgba(245,243,238,.5); margin-bottom: 2rem;
}
.hero-tag b { background: var(--bleu); color: var(--paper); font-weight: 700; padding: .15rem .5rem; border-radius: 100px; font-size: .66rem; letter-spacing: .1em; }
.hero-title {
  font-family: var(--display); font-weight: 420;
  font-size: clamp(2.9rem, 8vw, 6.4rem); line-height: 1.0;
  letter-spacing: -0.025em; max-width: 15ch; color: var(--ink);
}
.hero-title .line { display: block; overflow: hidden; padding: .14em 0 .16em; margin: -.14em 0 -.16em; }
.hero-title .line > span { display: block; }
.js .hero-title .line > span { transform: translateY(116%); animation: lineUp 1.15s var(--ease) both; animation-delay: var(--ld, 0s); }
.hero-title .accent { font-style: italic; font-weight: 420; color: var(--or-fonce); position: relative; }
.hero-title .accent::after { content: ''; position: absolute; left: 0; right: 0; bottom: .04em; height: .045em; background: var(--or-clair); opacity: .85; transform: scaleX(0); transform-origin: left; }
.js .hero-title .accent::after { animation: underline 1s var(--ease) 1.35s forwards; }
@keyframes lineUp { from { transform: translateY(116%); } to { transform: translateY(0); } }
@keyframes underline { to { transform: scaleX(1); } }

.hero-btns { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-meta { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; align-items: center; }
.hero-meta .mi { display: flex; flex-direction: column; gap: .15rem; }
.hero-meta .mi b { font-family: var(--display); font-size: 1.5rem; font-weight: 500; color: var(--bleu); line-height: 1; }
.hero-meta .mi span { font-size: .76rem; letter-spacing: .04em; color: var(--ink-soft); text-transform: uppercase; font-weight: 600; }
.hero-meta .mi-sep { width: 1px; height: 34px; background: var(--line); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600;
  transition: opacity .5s var(--ease);
}
.hero-scroll .scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--ink), transparent); position: relative; overflow: hidden; }
.hero-scroll .scroll-line::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: var(--or); animation: scrolldot 2.2s var(--ease) infinite; }
@keyframes scrolldot { 0% { transform: translateY(-100%); } 60%,100% { transform: translateY(280%); } }

/* ---------- HERO · TROMBINOSCOPE ÉQUIPE ---------- */
.hero-team { margin-top: 2.6rem; display: flex; align-items: center; gap: 1.15rem; flex-wrap: wrap; }
.hero-team-avatars { display: flex; }
.ht-av { position: relative; display: block; width: 48px; height: 48px; margin-left: -14px; border-radius: 50%; }
.ht-av:first-child { margin-left: 0; }
.js .ht-av { opacity: 0; transform: translateY(14px) scale(.65); transition: opacity .75s var(--ease), transform .75s var(--ease); transition-delay: calc(var(--i) * 65ms + 120ms); }
.hero-team.in .ht-av { opacity: 1; transform: translateY(0) scale(1); }
.ht-ring {
  display: block; width: 100%; height: 100%; border-radius: 50%; overflow: hidden;
  background: var(--paper-3); border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px var(--line), 0 6px 16px -9px rgba(22,32,46,.55);
  animation: htFloat 7s var(--ease-soft) infinite; animation-delay: calc(var(--i) * -0.82s);
  transition: box-shadow .45s var(--ease);
}
.ht-av img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; filter: grayscale(1) contrast(1.04) brightness(1.03); transition: filter .55s var(--ease), transform .65s var(--ease); }
@keyframes htFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.hero-team.in .ht-av:hover { transform: translateY(-7px) scale(1.08); z-index: 30; }
.ht-av:hover .ht-ring { box-shadow: 0 0 0 1.5px var(--or), 0 16px 28px -11px rgba(30,52,80,.55); }
.ht-av:hover img { filter: none; transform: scale(1.06); }
.ht-name {
  position: absolute; bottom: calc(100% + 11px); left: 50%; transform: translateX(-50%) translateY(7px);
  background: var(--ink); border: 1px solid var(--line-light); padding: .4rem .7rem; border-radius: 8px;
  opacity: 0; pointer-events: none; white-space: nowrap; z-index: 40;
  box-shadow: 0 16px 34px -16px rgba(22,32,46,.7);
  transition: opacity .32s var(--ease), transform .32s var(--ease);
}
.ht-name b { display: block; font-family: var(--sans); font-weight: 600; font-size: .76rem; color: var(--paper); letter-spacing: .01em; }
.ht-name span { display: block; font-size: .66rem; font-weight: 500; color: var(--champagne-clair); margin-top: .05rem; }
.ht-name::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 5px solid transparent; border-top-color: var(--ink); }
.ht-av:hover .ht-name { opacity: 1; transform: translateX(-50%) translateY(0); }
.hero-team-label { display: flex; flex-direction: column; gap: .12rem; }
.hero-team-label b { font-family: var(--display); font-weight: 500; font-size: 1.08rem; color: var(--ink); line-height: 1.15; letter-spacing: -0.01em; }
.hero-team-label .htl-sub { font-size: .76rem; color: var(--ink-soft); font-weight: 500; letter-spacing: .01em; display: inline-flex; align-items: center; gap: .4rem; }
.hero-team-label .htl-sub .arr { color: var(--or-fonce); transition: transform .4s var(--ease); }
.hero-team:hover .hero-team-label .htl-sub .arr { transform: translateX(4px); }
@media (max-width: 480px) { .ht-av { width: 42px; height: 42px; margin-left: -12px; } .hero-team-label b { font-size: 1rem; } }

/* ---------- HERO · MUR DE PORTRAITS DÉFILANT ---------- */
.hero-wall {
  position: absolute; top: 0; right: 0; bottom: 0; width: 42%; z-index: 1; pointer-events: none; overflow: hidden;
  display: flex; gap: clamp(.9rem, 1.6vw, 1.6rem); justify-content: flex-end; padding-left: 9%; opacity: .32;
  -webkit-mask-image: linear-gradient(to left, #000 24%, rgba(0,0,0,0) 86%), linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 16%, #000 84%, rgba(0,0,0,0) 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to left, #000 24%, rgba(0,0,0,0) 86%), linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 16%, #000 84%, rgba(0,0,0,0) 100%);
  mask-composite: intersect;
}
.hw-col { display: flex; flex-direction: column; flex: 1; min-width: 0; will-change: transform; }
.hw-col:nth-child(2) { margin-top: -11%; }
.hw-col:nth-child(3) { margin-top: -5%; }
.js .hw-col.up { animation: hwUp var(--dur, 50s) linear infinite; }
.js .hw-col.down { animation: hwDown var(--dur, 50s) linear infinite; }
@keyframes hwUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes hwDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }
.hw-tile { display: block; margin-bottom: clamp(.9rem, 1.6vw, 1.6rem); }
.hw-tile img { width: 100%; height: auto; display: block; border-radius: 14px; border: 1px solid rgba(245,243,238,.5); box-shadow: 0 16px 32px -20px rgba(22,32,46,.45); filter: grayscale(1) contrast(1.02) brightness(1.04); }
@media (max-width: 1100px) { .hero-wall { width: 50%; opacity: .22; } }
@media (max-width: 900px) { .hero-wall { display: none; } }

/* ============================================================
   CLIENTS / MARQUEE
   ============================================================ */
#clients { padding-block: clamp(1.8rem, 3.5vw, 2.8rem); position: relative; border-top: 1px solid var(--line-soft); background: var(--paper); }
.clients-head { text-align: center; margin-bottom: 1.6rem; }
.clients-head span { font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); display: inline-flex; align-items: center; gap: .8rem; }
.clients-head span::before, .clients-head span::after { content: ''; width: 30px; height: 1px; background: var(--line); }
.marquee-wrapper { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 64s linear infinite; }
.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-list { display: flex; align-items: center; }
.client-item { flex-shrink: 0; padding: 0 clamp(1.1rem, 2.4vw, 2rem); display: flex; align-items: center; justify-content: center; height: 54px; }
.client-item img { max-height: 36px; width: auto; max-width: 116px; object-fit: contain; opacity: .92; mix-blend-mode: multiply; transition: opacity .4s var(--ease), transform .45s var(--ease); }
.client-item:hover img { opacity: 1; transform: scale(1.05); }
.client-featured img { max-height: 42px; }

/* ============================================================
   PRÉSENTATION / MANIFESTE (sombre)
   ============================================================ */
#presentation { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; padding-block: clamp(2rem, 3.5vw, 3rem); }
#presentation::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(50% 60% at 85% 15%, rgba(46,74,107,.7), transparent 70%), radial-gradient(45% 55% at 8% 95%, rgba(184,137,42,.3), transparent 72%); animation: bgBreath 16s ease-in-out infinite; }
@keyframes bgBreath { 0%,100% { opacity: .45; transform: scale(1); } 50% { opacity: .7; transform: scale(1.05); } }
.presentation-inner { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; }
.presentation-mark { display: none; }
.presentation-quote { font-family: var(--display); font-weight: 380; font-size: clamp(1.1rem, 2vw, 1.6rem); line-height: 1.45; letter-spacing: -0.01em; color: var(--paper); margin-top: .8rem; }
.presentation-quote .it { color: var(--champagne-clair); }
.presentation-foot { margin-top: 1.4rem; display: flex; align-items: center; gap: 1rem; color: rgba(245,243,238,.7); font-size: .9rem; }
.presentation-foot .ln { width: 36px; height: 1px; background: var(--champagne); }

/* ============================================================
   CHIFFRES
   ============================================================ */
#chiffres { background: var(--ink); color: var(--paper); padding-top: clamp(1.5rem, 3vw, 2.5rem); padding-bottom: clamp(4.5rem, 9vw, 7rem); position: relative; }
.chiffres-label { position: relative; z-index: 2; margin-bottom: 1.5rem; display: flex; align-items: center; gap: .9rem; font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--bleu-soft); }
.chiffres-label .ln { flex: 1; height: 1px; background: var(--line-light); }
.stats-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); }
.stat-card { padding: 2.4rem 1.6rem; border-right: 1px solid var(--line-light); position: relative; }
.stat-card:last-child { border-right: 0; }
.stat-number { font-family: var(--display); font-weight: 400; font-size: clamp(2.8rem, 6vw, 4.4rem); line-height: 1; color: var(--champagne-clair); letter-spacing: -0.02em; display: block; }
.stat-label { display: block; margin-top: .8rem; font-size: .92rem; color: rgba(245,243,238,.78); font-weight: 500; line-height: 1.4; }

/* ============================================================
   LES 3 AXES — onglets + ENCADRÉS À INFOBULLES (du site en ligne)
   ============================================================ */
#axes { background: var(--paper); }
.axes-tabs { display: flex; gap: .6rem; margin-bottom: 2rem; flex-wrap: wrap; justify-content: center; }
.axe-tab {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.6rem; border-radius: 100px; border: 1px solid var(--line);
  font-family: var(--sans); font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); background: var(--paper);
  transition: all .35s var(--ease);
}
.axe-tab .axe-num { font-family: var(--sans); font-size: .72rem; opacity: .55; }
.axe-tab svg { width: 16px; height: 16px; }
.axe-tab:hover { border-color: var(--bleu); color: var(--bleu); transform: translateY(-2px); }
.axe-tab.active { background: var(--bleu); border-color: var(--bleu); color: #FBF7EF; box-shadow: 0 14px 30px -14px rgba(46,74,107,.55); }
.axe-tab.active .axe-num { opacity: .8; }
.axe-tab[data-axe="former"].active { background: var(--or); border-color: var(--or); box-shadow: 0 14px 30px -14px rgba(184,137,42,.55); }
.axe-tab[data-axe="soutenir"].active { background: var(--bleu-fonce); border-color: var(--bleu-fonce); box-shadow: 0 14px 30px -14px rgba(30,52,80,.55); }

.axes-content { min-height: 360px; }
.axe-panel { display: none; }
.axe-panel.active { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; animation: panelIn .45s var(--ease) both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.axe-panel-intro h3 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.axe-panel-intro .sep { width: 44px; height: 3px; background: var(--or); margin: 1.1rem 0 1.3rem; border-radius: 2px; }
.axe-panel[data-panel="former"] .axe-panel-intro .sep { background: var(--bleu); }
.axe-panel-intro .desc { max-width: 46ch; font-size: 1.08rem; line-height: 1.7; color: var(--ink-soft); }
.axe-panel-intro .axe-cta { margin-top: 1.8rem; }

/* Encadrés services (boîtes avec infobulle au survol) */
.axe-services { display: flex; flex-direction: column; gap: .7rem; }
.axe-service {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 12px;
  padding: .95rem 1.2rem; transition: border-color .3s, box-shadow .35s var(--ease), transform .35s var(--ease), background .3s;
  cursor: pointer;
}
.axe-service:hover { border-color: var(--line); box-shadow: 0 14px 30px -22px rgba(22,32,46,.45); transform: translateX(4px); background: linear-gradient(90deg, rgba(184,137,42,.05), transparent); }
.axe-service-row { display: flex; align-items: center; gap: .75rem; }
.axe-service-row .marker { color: var(--or); font-size: .85rem; flex-shrink: 0; transition: transform .3s; }
.axe-service:hover .axe-service-row .marker { transform: translateX(2px); }
.axe-service-row a { flex: 1; font-family: var(--sans); font-weight: 600; font-size: 1rem; color: var(--ink); transition: color .3s; }
.axe-service:hover .axe-service-row a { color: var(--or-fonce); }
.axe-service-row .ax-arrow { color: var(--bleu-soft); opacity: 0; transition: opacity .3s, transform .4s var(--ease); flex-shrink: 0; }
.axe-service:hover .ax-arrow { opacity: 1; transform: translateX(4px); color: var(--or); }
.axe-tooltip { max-height: 0; opacity: 0; overflow: hidden; font-size: .86rem; line-height: 1.5; color: var(--ink-soft); padding-left: 1.6rem; transition: max-height .35s var(--ease), opacity .35s var(--ease), margin-top .35s var(--ease); }
.axe-service:hover .axe-tooltip { max-height: 5rem; opacity: 1; margin-top: .5rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta-mid { background: var(--paper-2); padding-block: clamp(2.5rem, 5vw, 4rem); }
.cta-banner { background: var(--or); color: #FBF7EF; border-radius: 18px; padding: clamp(2rem, 4vw, 2.8rem) clamp(1.8rem, 4vw, 3.4rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; position: relative; overflow: hidden; max-width: var(--wrap); margin: 0 auto; }
.cta-banner::after { content: ''; position: absolute; right: -40px; top: -40px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.25), transparent 70%); pointer-events: none; }
.cta-banner h3 { color: #FBF7EF; font-size: clamp(1.5rem, 3vw, 2.1rem); position: relative; z-index: 2; }
.cta-banner p { color: rgba(255,255,255,.9); margin-top: .4rem; position: relative; z-index: 2; }
.cta-banner .btn { position: relative; z-index: 2; }

/* ============================================================
   CHAMPS D'INTERVENTION
   ============================================================ */
#champs { background: var(--paper); }
.champs-group { margin-top: 2.6rem; }
.champs-label { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; font-family: var(--sans); font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.champs-label .ln { flex: 1; height: 1px; background: var(--line); }
.champs-label.indiv { color: var(--bleu); }
.champs-label.collec { color: var(--or-fonce); }
.champs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.champ { display: flex; align-items: center; gap: 1rem; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 12px; padding: 1.3rem 1.4rem; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.champ:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -22px rgba(22,32,46,.4); border-color: var(--line); }
.champ-ic { width: 46px; height: 46px; border-radius: 11px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: transform .45s var(--ease), background .4s; }
.champ:hover .champ-ic { transform: scale(1.08) rotate(-4deg); }
.ic-bleu { background: rgba(46,74,107,.1); color: var(--bleu); }
.ic-or { background: rgba(184,137,42,.12); color: var(--or-fonce); }
.champ-name { font-family: var(--sans); font-weight: 600; font-size: .98rem; color: var(--ink); line-height: 1.3; }

/* ============================================================
   RESSOURCES / BLOG
   ============================================================ */
#ressources { background: var(--paper-2); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.blog-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 16px; overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -28px rgba(22,32,46,.42); border-color: var(--line); }
.blog-img { position: relative; aspect-ratio: 3/2; overflow: hidden; display: block; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,32,46,.78), transparent 55%); }
.blog-cat { position: absolute; top: 1rem; left: 1rem; z-index: 3; }
.blog-cat-tag { background: rgba(245,243,238,.92); color: var(--ink); font-family: var(--sans); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .4rem .75rem; border-radius: 100px; }
.blog-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.3rem; z-index: 3; }
.blog-overlay p { font-family: var(--display); font-weight: 480; font-size: 1.2rem; line-height: 1.22; color: var(--paper); letter-spacing: -0.01em; }
.blog-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.blog-date { font-family: var(--sans); font-size: .76rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--bleu-soft); }
.blog-excerpt { margin-top: .9rem; font-size: .96rem; line-height: 1.6; color: var(--ink-soft); flex: 1; }
.blog-meta { display: flex; align-items: center; gap: .55rem; margin-top: 1.2rem; }
.blog-meta .av { width: 28px; height: 28px; border-radius: 50%; background: var(--bleu); color: var(--paper); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: .68rem; font-weight: 600; flex-shrink: 0; }
.blog-meta span { font-size: .82rem; color: var(--ink-soft); font-weight: 600; }
.blog-link { margin-top: 1.1rem; }
.blog-card:hover .blog-link .arr { transform: translateX(4px); }

/* ============================================================
   PHILOSOPHIE
   ============================================================ */
#philo { background: var(--bleu); color: var(--paper); text-align: center; position: relative; overflow: hidden; padding-block: clamp(4rem, 9vw, 7rem); }
#philo::before { content: ''; position: absolute; inset: 0; opacity: .35; background: radial-gradient(60% 80% at 50% 0%, rgba(194,160,106,.5), transparent 70%); }
.philo-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.philo-inner .eyebrow { color: #FBF7EF; justify-content: center; }
.philo-inner .eyebrow::before { background: rgba(251,247,239,.6); }
.philo-quote { font-family: var(--display); font-weight: 400; font-size: clamp(1.6rem, 4.2vw, 3rem); line-height: 1.18; color: var(--paper); margin-top: 1.4rem; letter-spacing: -0.015em; }
.philo-quote .it { color: var(--champagne-clair); }

/* ============================================================
   RDV / CONTACT
   ============================================================ */
#rdv { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
#rdv::before { content: ''; position: absolute; inset: 0; opacity: .5; pointer-events: none; background: radial-gradient(45% 55% at 12% 12%, rgba(46,74,107,.6), transparent 70%), radial-gradient(40% 50% at 92% 88%, rgba(184,137,42,.3), transparent 72%); animation: bgBreath 18s ease-in-out infinite; }
.rdv-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.rdv-left h2 { color: var(--paper); font-size: clamp(2rem, 4.5vw, 3.2rem); margin-top: 1.1rem; }
.rdv-left h2 .it { color: var(--champagne-clair); }
.rdv-left > p { margin-top: 1.2rem; max-width: 44ch; color: rgba(245,243,238,.8); font-size: 1.08rem; }
.rdv-infos { margin-top: 2.4rem; display: flex; flex-direction: column; gap: 1.4rem; }
.rdv-info { display: flex; align-items: center; gap: 1.1rem; }
.rdv-info-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(245,243,238,.08); border: 1px solid var(--line-light); color: var(--champagne-clair); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .45s var(--ease), background .4s; }
.rdv-info:hover .rdv-info-icon { transform: translateY(-3px); background: rgba(194,160,106,.16); }
.rdv-info-label { display: block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--bleu-soft); font-weight: 700; }
.rdv-info-value { display: block; font-family: var(--display); font-size: 1.25rem; font-weight: 460; color: var(--paper); margin-top: .15rem; }
.rdv-info-value a:hover { color: var(--champagne-clair); }
.rdv-cal { background: var(--paper); border-radius: 16px; padding: .5rem; box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); }
.calendly-inline-widget { border-radius: 12px; overflow: hidden; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: var(--ink-2); color: var(--paper); padding-top: clamp(3.5rem, 7vw, 5.5rem); padding-bottom: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-light); }
.footer-brand img { height: 38px; width: auto; opacity: .92; }
.footer-brand p { margin-top: 1.2rem; max-width: 32ch; color: rgba(245,243,238,.62); font-size: .95rem; }
.footer-col h4 { font-family: var(--sans); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--champagne-clair); margin-bottom: 1.2rem; }
.footer-links { display: flex; flex-direction: column; gap: .7rem; }
.footer-links a { color: rgba(245,243,238,.72); font-size: .96rem; transition: color .3s, padding-left .3s var(--ease); width: fit-content; }
.footer-links a:hover { color: var(--champagne-clair); padding-left: .3rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.8rem; }
.footer-bottom p { font-size: .84rem; color: rgba(245,243,238,.5); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .84rem; color: rgba(245,243,238,.5); transition: color .3s; }
.footer-bottom-links a:hover { color: var(--champagne-clair); }

/* ============================================================
   FLOATING RDV
   ============================================================ */
#floatingRdv { position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 1050; opacity: 0; visibility: hidden; transform: translateY(20px) scale(.95); transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s; box-shadow: 0 20px 40px -16px rgba(184,137,42,.6); }
#floatingRdv.visible { opacity: 1; visibility: visible; transform: none; }

/* ============================================================
   CURSEUR PERSONNALISÉ
   ============================================================ */
#cursor-dot, #cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 9500; transform: translate(-50%, -50%); }
#cursor-dot { width: 6px; height: 6px; background: var(--bleu); transition: width .3s, height .3s, background .3s; }
#cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(22,32,46,.4); transition: width .4s var(--ease), height .4s var(--ease), border-color .4s, background .4s; }
body.cursor-hover #cursor-ring { width: 52px; height: 52px; border-color: var(--or); background: rgba(184,137,42,.08); }
body.cursor-hover #cursor-dot { width: 0; height: 0; }
@media (pointer: coarse) { #cursor-dot, #cursor-ring { display: none; } }

/* ============================================================
   REVEAL
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); transition-delay: var(--rd, 0ms); }
.js .reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .axe-panel.active { grid-template-columns: 1fr; gap: 1.8rem; }
  .rdv-inner { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: 0; }
  .stat-card:nth-child(1), .stat-card:nth-child(2) { border-bottom: 1px solid var(--line-light); }
  .champs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .hamburger { display: block; }
  .nav-links {
    position: fixed; inset: 0; z-index: 1101; flex-direction: column; justify-content: center; align-items: flex-start;
    gap: .4rem; padding: 5rem var(--gutter) 2rem; background: var(--paper);
    transform: translateX(100%); transition: transform .55s var(--ease); overflow-y: auto;
  }
  .nav-links.mobile-open { transform: none; }
  .nav-links > li { width: 100%; }
  .nav-links a:not(.btn) { font-size: 1.6rem; font-family: var(--display); font-weight: 460; padding: .7rem 0; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: .3rem 0 .8rem 1rem; min-width: 0; background: transparent; }
  .dropdown-menu a { font-family: var(--sans) !important; font-size: 1.05rem !important; }
  .nav-cta { font-size: 1rem !important; margin-top: 1rem; }
  .nav-dropdown .chevron { display: none; }
}
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
  .champs-grid { grid-template-columns: 1fr; }
  .hero-meta .mi-sep { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .axes-tabs { gap: .4rem; }
  .axe-tab { padding: .7rem 1rem; font-size: .72rem; }
}
@media (max-width: 420px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { border-right: 0; border-bottom: 1px solid var(--line-light); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
  .js .hero-title .line > span { transform: none; }
  .marquee-track { animation: none; }
  .hero-atmo { transform: none !important; }
}

/* ============================================================
   ============  PAGES INTERNES (services, équipe, articles) ===
   ============================================================ */

/* ---------- NAVBAR sur bannière sombre (pages internes) ---------- */
#navbar.over-dark:not(.scrolled) .nav-logo { filter: brightness(0) invert(1); opacity: .95; }
#navbar.over-dark:not(.scrolled) .nav-links a:not(.btn) { color: var(--paper); }
#navbar.over-dark:not(.scrolled) .nav-links a:not(.btn):hover { color: var(--champagne-clair); }
#navbar.over-dark:not(.scrolled) .dropdown-menu a:not(.btn) { color: var(--ink); }
#navbar.over-dark:not(.scrolled) .dropdown-menu a:not(.btn):hover { color: var(--or-fonce); }
#navbar.over-dark:not(.scrolled) .nav-cta { background: var(--paper); color: var(--ink) !important; }
#navbar.over-dark:not(.scrolled) .nav-cta:hover { background: var(--champagne-clair); color: var(--ink) !important; }
#navbar.over-dark:not(.scrolled) .hamburger span { background: var(--paper); }
#navbar.over-dark:not(.scrolled) .nav-links.mobile-open a:not(.btn) { color: var(--ink); }
#navbar.over-dark:not(.scrolled) .nav-links.mobile-open .nav-cta { background: var(--ink); color: var(--paper) !important; }
#navbar.over-dark:not(.scrolled) .hamburger.open span { background: var(--ink); }

/* ---------- PAGE HERO (bannière sombre) ---------- */
.page-hero { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; padding: clamp(8rem,14vw,11rem) var(--gutter) clamp(3.5rem,7vw,5.5rem); }
/* Halo : bleu dominant + nuance dorée subtile dans un coin (rappel des couleurs de marque) */
.page-hero::before { content: ''; position: absolute; inset: 0; opacity: .5; pointer-events: none; background: radial-gradient(50% 60% at 85% 12%, rgba(46,74,107,.7), transparent 70%), radial-gradient(48% 58% at 4% 96%, rgba(184,137,42,.34), transparent 72%); animation: bgBreath 16s ease-in-out infinite; }
/* Fin filet doré localisé : légère transition dorée au bas du bandeau */
.page-hero::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; pointer-events: none; z-index: 3; background: linear-gradient(90deg, transparent 10%, rgba(184,137,42,.9) 34%, rgba(212,168,74,.55) 50%, rgba(184,137,42,0) 72%, transparent 100%); opacity: .75; }
.page-hero-inner { position: relative; z-index: 2; max-width: var(--wrap); margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.6rem,6.5vw,5rem); color: var(--paper); line-height: 1.0; letter-spacing: -.025em; }
.page-hero h1 .it, .page-hero h1 .accent { font-style: italic; color: var(--champagne-clair); }

/* Theming par axe (charte : Prévenir=bleu · Former=or · Soutenir=bleu foncé) — base sombre conservée, l'accent change.
   La classe d'axe se pose sur <body> (axe-former / axe-soutenir) ; défaut = bleu (Prévenir). */
.axe-former .page-hero::before, .page-hero.axe-former::before { background: radial-gradient(54% 64% at 84% 10%, rgba(184,137,42,.5), transparent 70%), radial-gradient(46% 56% at 5% 96%, rgba(46,74,107,.5), transparent 72%); }
.axe-former .page-hero::after, .page-hero.axe-former::after { background: linear-gradient(90deg, transparent 10%, var(--or-clair) 36%, var(--or) 52%, rgba(184,137,42,0) 74%, transparent 100%); opacity: .85; }
.axe-soutenir .page-hero, .page-hero.axe-soutenir { background: var(--bleu-fonce); }
.axe-soutenir .page-hero::before, .page-hero.axe-soutenir::before { background: radial-gradient(52% 62% at 85% 12%, rgba(46,74,107,.65), transparent 70%), radial-gradient(46% 56% at 5% 96%, rgba(184,137,42,.26), transparent 72%); }

/* Onglets de prestation teintés par axe (sélecteur services) */
.axe-former .svc-tab .svc-tab-ic { background: rgba(184,137,42,.1); color: var(--or-fonce); }
.axe-former .svc-tab.active { background: var(--or); border-color: var(--or); box-shadow: 0 16px 32px -16px rgba(184,137,42,.55); }
.axe-former .svc-tab.active .svc-tab-ic { background: rgba(255,255,255,.18); color: #FBF7EF; }
.axe-soutenir .svc-tab.active { background: var(--bleu-fonce); border-color: var(--bleu-fonce); box-shadow: 0 16px 32px -16px rgba(30,52,80,.6); }

/* Tag « type de prévention » intégré au bandeau */
.axe-tag { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.5rem; padding: .5rem 1.05rem .5rem .75rem; border-radius: 100px; border: 1px solid var(--line-light); background: rgba(245,243,238,.06); font-family: var(--sans); font-size: .73rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(245,243,238,.9); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.axe-tag .at-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; background: var(--champagne); }
.axe-tag.prim .at-dot { background: #90AFD4; box-shadow: 0 0 0 4px rgba(144,175,212,.16); }
.axe-tag.sec  .at-dot { background: var(--or-clair); box-shadow: 0 0 0 4px rgba(212,168,74,.18); }
.axe-tag.tert .at-dot { background: #7E93B4; box-shadow: 0 0 0 4px rgba(126,147,180,.16); }
.page-hero .lead, .page-hero-inner > p { margin-top: 1.4rem; max-width: 62ch; color: rgba(245,243,238,.82); font-size: clamp(1.05rem,1.7vw,1.25rem); line-height: 1.6; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: .55rem; font-family: var(--sans); font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: rgba(245,243,238,.55); margin-bottom: 1.8rem; }
.breadcrumb a { color: rgba(245,243,238,.7); transition: color .3s; }
.breadcrumb a:hover { color: var(--champagne-clair); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: var(--champagne-clair); }
.pill-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; position: relative; z-index: 2; }
.pill { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1.05rem; border-radius: 100px; border: 1px solid var(--line-light); background: rgba(245,243,238,.05); color: rgba(245,243,238,.9); font-family: var(--sans); font-size: .82rem; font-weight: 500; transition: background .35s, transform .4s var(--ease), border-color .35s; }
.pill:hover { background: rgba(184,137,42,.16); border-color: var(--champagne); transform: translateY(-2px); color: #FBF7EF; }

/* Pills-filtres (page ressources) : boutons cliquables, état actif doré */
button.pill { appearance: none; -webkit-appearance: none; cursor: pointer; }
.pill.active { background: rgba(184,137,42,.32); border-color: var(--champagne-clair); color: #FBF7EF; }
.pill.active svg { color: var(--champagne-clair); }
#publications { scroll-margin-top: 5.5rem; }
.blog-card.cat-hidden { display: none; }

/* ---------- LISTE DE PRESTATIONS (services) ---------- */
.svc-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); margin-top: 1rem; }
.svc-entry { padding: clamp(2rem,4vw,3rem) 0; border-bottom: 1px solid var(--line); scroll-margin-top: 6rem; }
.svc-entry .num { font-family: var(--sans); font-size: .8rem; font-weight: 700; letter-spacing: .14em; color: var(--bleu-soft); }
.svc-entry h3 { font-size: clamp(1.5rem,3vw,2.05rem); margin-top: .5rem; }
.svc-entry .desc { margin-top: 1rem; max-width: 70ch; font-size: 1.08rem; line-height: 1.7; color: var(--ink-soft); }
.svc-entry .desc.quote { font-family: var(--display); font-style: italic; color: var(--bleu); }
.detail-cols { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.6rem; margin-top: 1.6rem; }
.detail-cols h4 { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--or-fonce); margin-bottom: .7rem; }
.detail-cols ul { display: flex; flex-direction: column; gap: .5rem; }
.detail-cols li { font-size: .98rem; color: var(--ink-soft); line-height: 1.5; padding-left: 1.1rem; position: relative; list-style: none; }
.detail-cols li::before { content: ''; position: absolute; left: 0; top: .6em; width: 6px; height: 6px; border-radius: 50%; background: var(--bleu); }
.detail-cols .detail-text p { font-size: .98rem; color: var(--ink-soft); line-height: 1.6; }
.svc-meta { display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: .75rem; margin-top: 1.8rem; }
.svc-meta .m { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 12px; padding: .9rem 1.1rem; }
.svc-meta .m.or { border-color: rgba(184,137,42,.3); background: rgba(184,137,42,.05); }
.svc-meta .m b { display: block; font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--bleu-soft); margin-bottom: .25rem; }
.svc-meta .m.or b { color: var(--or-fonce); }
.svc-meta .m span { font-size: .92rem; color: var(--ink-soft); line-height: 1.45; }
.axe-cta { margin-top: 1.8rem; }

/* ---------- PILIERS (liste verticale : icône + titre + description) ---------- */
.pillars-grid { display: flex; flex-direction: column; gap: .85rem; margin-top: 2.4rem; }
.pillar { display: flex; gap: 1.2rem; align-items: flex-start; background: var(--paper); border: 1px solid var(--line-soft); border-left: 3px solid var(--bleu); border-radius: 3px 14px 14px 3px; padding: 1.3rem 1.6rem; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.pillar:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -22px rgba(22,32,46,.4); }
.pillar-ic { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(46,74,107,.1); color: var(--bleu); transition: transform .45s var(--ease); }
.pillar:hover .pillar-ic { transform: scale(1.08) rotate(-4deg); }
.pillar h4 { font-family: var(--display); font-size: 1.18rem; font-weight: 500; color: var(--ink); line-height: 1.25; }
.pillar p { margin-top: .4rem; font-size: .95rem; line-height: 1.6; color: var(--ink-soft); }
/* Accent des piliers par axe (Prévenir=bleu défaut · Former=or · Soutenir=bleu foncé) */
.axe-former .pillar { border-left-color: var(--or); }
.axe-former .pillar-ic { background: rgba(184,137,42,.12); color: var(--or-fonce); }
.axe-soutenir .pillar { border-left-color: var(--bleu-fonce); }
.axe-soutenir .pillar-ic { background: rgba(30,52,80,.1); color: var(--bleu-fonce); }

/* ---------- CROSS-NAV "Nos autres services" ---------- */
.cross-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
.cross-card { display: flex; gap: 1.2rem; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 16px; padding: 1.6rem 1.8rem; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.cross-card:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -26px rgba(22,32,46,.4); border-color: var(--line); }
.cross-card .cross-ic { width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: transform .45s var(--ease); }
.cross-card:hover .cross-ic { transform: scale(1.08) rotate(-4deg); }
.cross-card.is-bleu .cross-ic { background: rgba(46,74,107,.1); color: var(--bleu); }
.cross-card.is-or .cross-ic { background: rgba(184,137,42,.12); color: var(--or-fonce); }
.cross-card h3 { font-family: var(--display); font-size: 1.4rem; font-weight: 500; color: var(--ink); }
.cross-card p { margin-top: .4rem; font-size: .94rem; line-height: 1.6; color: var(--ink-soft); }
.cross-card .cross-link { margin-top: .7rem; font-family: var(--sans); font-size: .73rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--or-fonce); display: inline-flex; gap: .4rem; }
.cross-card.is-bleu .cross-link { color: var(--bleu); }

/* ---------- ÉQUIPE : grille de portraits ---------- */
.member-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.2rem; }
@media (max-width: 1040px) { .member-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 680px) { .member-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 400px) { .member-grid { grid-template-columns: 1fr; } }
.member { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 16px; overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s; display: flex; flex-direction: column; }
.member:hover { transform: translateY(-5px); box-shadow: 0 28px 48px -28px rgba(22,32,46,.4); border-color: var(--line); }
.member-photo { aspect-ratio: 1/1; overflow: hidden; background: var(--paper-3); }
.member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; filter: grayscale(1) contrast(1.03); transition: filter .55s var(--ease), transform .8s var(--ease); }
.member:hover .member-photo img { filter: none; transform: scale(1.04); }
.member-body { padding: 1.2rem 1.3rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.member-name { font-family: var(--display); font-size: 1.22rem; font-weight: 500; color: var(--ink); line-height: 1.15; }
.member-role { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--or-fonce); margin-top: .35rem; min-height: 2.1em; }
.member-bio { margin-top: .7rem; font-size: .92rem; line-height: 1.55; color: var(--ink-soft); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.member-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.member-tags .t { font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 100px; background: var(--paper-2); color: var(--bleu); }
.member-tags .t.or { background: rgba(184,137,42,.1); color: var(--or-fonce); }
.member-tags .t.soutenir { background: rgba(30,52,80,.09); color: var(--bleu-fonce); }

/* Section sombre "Rejoindre" */
.join-section { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.join-section::before { content: ''; position: absolute; inset: 0; opacity: .5; pointer-events: none; background: radial-gradient(45% 55% at 10% 15%, rgba(46,74,107,.6), transparent 70%), radial-gradient(40% 50% at 92% 90%, rgba(184,137,42,.28), transparent 72%); animation: bgBreath 18s ease-in-out infinite; }

/* ---------- ARTICLES (long-form) ---------- */
.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.article-aside { position: sticky; top: 6rem; display: flex; flex-direction: column; gap: 1.5rem; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .55rem .9rem; margin-top: 1.5rem; position: relative; z-index: 2; font-family: var(--sans); font-size: .85rem; font-weight: 600; color: rgba(245,243,238,.7); }
.article-meta .cat { background: var(--or); color: #FBF7EF; padding: .32rem .85rem; border-radius: 100px; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.article-meta .sep { opacity: .45; }
/* Intro d'article = même taille que le corps (que ce soit un <p class="article-intro"> ou un wrapper) */
.article-intro { font-family: var(--sans); font-size: 1.08rem; line-height: 1.8; color: var(--ink); font-weight: 400; margin-bottom: 2.5rem; }
.article-intro .it { font-style: italic; color: var(--or-fonce); }
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1.4rem; }
.prose p { font-size: 1.12rem; line-height: 1.8; color: var(--ink); }
.prose h2 { font-size: clamp(1.7rem,3.4vw,2.4rem); margin-top: 3rem; letter-spacing: -.02em; }
.prose h3 { font-size: clamp(1.3rem,2.4vw,1.7rem); margin-top: 2.2rem; }
.prose ul, .prose ol { padding-left: 1.3rem; display: flex; flex-direction: column; gap: .7rem; }
.prose li { font-size: 1.08rem; line-height: 1.7; color: var(--ink); }
.prose blockquote { border-left: 3px solid var(--or); padding: .4rem 0 .4rem 1.6rem; font-family: var(--display); font-style: italic; font-size: 1.35rem; line-height: 1.4; color: var(--bleu); }
.prose a { color: var(--or-fonce); border-bottom: 1px solid var(--line); }
.prose a:hover { border-bottom-color: var(--or); }
.prose img { border-radius: 14px; margin-top: 1.6rem; }
.prose figure { margin-top: 1.6rem; }
.prose figcaption { font-size: .85rem; color: var(--ink-soft); margin-top: .6rem; text-align: center; }
.toc { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 14px; padding: 1.3rem 1.4rem; }
.toc h4 { font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--bleu-soft); margin-bottom: .9rem; }
.toc ul { display: flex; flex-direction: column; gap: .5rem; list-style: none; padding: 0; }
.toc a { font-size: .92rem; color: var(--ink-soft); line-height: 1.4; transition: color .3s, border-color .3s; border-left: 2px solid transparent; padding-left: .7rem; display: block; }
.toc a:hover { color: var(--or-fonce); border-left-color: var(--or); }
.aside-cta { background: var(--ink); color: var(--paper); border-radius: 14px; padding: 1.5rem; position: relative; overflow: hidden; }
.aside-cta h4 { color: var(--paper); font-size: 1.25rem; }
.aside-cta p { color: rgba(245,243,238,.75); font-size: .9rem; margin: .6rem 0 1.1rem; }
.callout { background: var(--paper-2); border-left: 3px solid var(--or); border-radius: 0 12px 12px 0; padding: 1.3rem 1.6rem; }
.callout .label { font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--or-fonce); display: block; margin-bottom: .5rem; }
.callout p { margin: 0 !important; font-family: var(--display); font-style: italic; font-size: 1.15rem; line-height: 1.5; color: var(--bleu); }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.compare-col { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 14px; padding: 1.4rem 1.5rem; }
.compare-col > * + * { margin-top: .7rem; }
.compare-col h4 { font-size: 1.25rem; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.15rem 0; }
.faq-item summary { font-family: var(--display); font-size: clamp(1.1rem,2vw,1.35rem); color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--or); font-size: 1.5rem; line-height: 1; transition: transform .35s var(--ease); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { margin-top: .9rem; color: var(--ink-soft); line-height: 1.75; font-size: 1.02rem; }
.faq-item .faq-a > * + * { margin-top: .8rem; }
.prose table, .article-table { width: 100%; border-collapse: collapse; font-size: .96rem; }
.prose th, .prose td, .article-table th, .article-table td { text-align: left; padding: .75rem .9rem; border-bottom: 1px solid var(--line); }
.prose th, .article-table th { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--bleu); }
.article-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.article-tags .t { background: var(--paper-2); border: 1px solid var(--line-soft); border-radius: 100px; padding: .35rem .9rem; font-size: .8rem; color: var(--ink-soft); }

/* ---------- PAGE HERO en deux colonnes (Équipe) ---------- */
.page-hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.hero-cats { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.hero-cat { display: flex; align-items: flex-start; gap: .85rem; padding: 1.1rem 1.2rem; background: rgba(245,243,238,.06); border: 1px solid var(--line-light); border-left: 3px solid var(--or); border-radius: 10px; }
.hero-cat .hc-ic { flex-shrink: 0; width: 36px; height: 36px; background: rgba(245,243,238,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--champagne-clair); }
.hero-cat h4 { font-family: var(--display); font-size: 1rem; font-weight: 500; color: var(--paper); margin: 0 0 .25rem; }
.hero-cat p { font-size: .82rem; color: rgba(245,243,238,.68); margin: 0; line-height: 1.55; }

/* ---------- CARTES "feature" (valeur ajoutée, engagements) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.2rem; }
.feature-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 16px; padding: 2rem 1.7rem; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -26px rgba(22,32,46,.4); border-color: var(--line); }
.feature-ic { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: rgba(184,137,42,.1); color: var(--or-fonce); margin-bottom: 1.2rem; transition: transform .45s var(--ease); }
.feature-card:hover .feature-ic { transform: scale(1.08) rotate(-4deg); }
.feature-card h3 { font-family: var(--display); font-size: 1.3rem; font-weight: 500; color: var(--ink); }
.feature-card p { margin-top: .6rem; font-size: .96rem; line-height: 1.65; color: var(--ink-soft); }

/* Valeur ajoutée — rangée compacte unifiée (à dividers) */
.valeur-row { display: grid; grid-template-columns: repeat(3,1fr); background: var(--paper); border: 1px solid var(--line-soft); border-radius: 18px; overflow: hidden; }
.valeur-item { padding: 1.7rem 1.7rem; border-right: 1px solid var(--line-soft); display: flex; gap: 1rem; }
.valeur-item:last-child { border-right: 0; }
.valeur-item .v-ic { width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0; background: rgba(184,137,42,.1); color: var(--or-fonce); display: flex; align-items: center; justify-content: center; }
.valeur-item h3 { font-family: var(--display); font-size: 1.15rem; font-weight: 500; color: var(--ink); line-height: 1.2; }
.valeur-item p { margin-top: .4rem; font-size: .92rem; line-height: 1.55; color: var(--ink-soft); }
@media (max-width: 820px) { .valeur-row { grid-template-columns: 1fr; } .valeur-item { border-right: 0; border-bottom: 1px solid var(--line-soft); } .valeur-item:last-child { border-bottom: 0; } }

/* ---------- ÉQUIPE : carte cliquable + données de la fiche (cachées, lues par le modal) ---------- */
.member { cursor: pointer; }
.member:focus-visible { outline: 2px solid var(--or); outline-offset: 3px; }
.member-detail { display: none; }
.member-cta { margin-top: auto; padding-top: .9rem; font-family: var(--sans); font-size: .73rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--or-fonce); display: inline-flex; align-items: center; gap: .4rem; }
.member-cta .arr { transition: transform .35s var(--ease); }
.member:hover .member-cta { color: var(--or); }
.member:hover .member-cta .arr { transform: translateX(4px); }
.cert-list { display: flex; flex-direction: column; gap: .4rem; }
.cert-badge { font-size: .82rem; color: var(--ink-soft); line-height: 1.4; padding-left: 1rem; position: relative; }
.cert-badge::before { content: ''; position: absolute; left: 0; top: .55em; width: 5px; height: 5px; border-radius: 50%; background: var(--or); }

/* ---------- ÉQUIPE : modal fiche profil (pop-up qui agrandit le profil) ---------- */
.profile-modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 2.5rem); }
.profile-modal.open { display: flex; }
.pm-backdrop { position: absolute; inset: 0; background: rgba(16,22,33,.6); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); opacity: 0; animation: pmFade .35s var(--ease) forwards; }
.pm-dialog { position: relative; z-index: 2; width: min(760px, 100%); max-height: min(88vh, 780px); display: grid; grid-template-columns: 270px 1fr; background: var(--paper); border-radius: 20px; overflow: hidden; box-shadow: 0 50px 110px -45px rgba(0,0,0,.62); transform: scale(.92) translateY(12px); opacity: 0; animation: pmPop .42s var(--ease) forwards; }
@keyframes pmFade { to { opacity: 1; } }
@keyframes pmPop { to { transform: none; opacity: 1; } }
.pm-photo { position: relative; background: var(--paper-3); }
.pm-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.pm-close { position: absolute; top: 1rem; right: 1rem; z-index: 5; width: 40px; height: 40px; border-radius: 50%; background: rgba(245,243,238,.92); color: var(--ink); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px -12px rgba(0,0,0,.5); transition: background .3s, transform .4s var(--ease); }
.pm-close:hover { background: var(--paper); transform: rotate(90deg); }
.pm-body { padding: clamp(1.6rem, 3vw, 2.3rem); overflow-y: auto; max-height: min(88vh, 780px); }
.pm-name { font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.05rem); font-weight: 500; color: var(--ink); line-height: 1.12; letter-spacing: -.01em; }
.pm-role { font-family: var(--sans); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--or-fonce); margin-top: .55rem; }
.pm-bio { margin-top: 1rem; font-size: 1rem; line-height: 1.6; color: var(--ink-soft); }
.pm-detail { margin-top: 1.4rem; border-top: 1px solid var(--line-soft); padding-top: 1.3rem; }
.pm-detail .mm-section + .mm-section { margin-top: 1.2rem; }
.pm-detail .mm-label { font-family: var(--sans); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--bleu-soft); margin-bottom: .55rem; }
.pm-detail p { font-size: .92rem; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 620px) {
  .pm-dialog { grid-template-columns: 1fr; max-height: 90vh; }
  .pm-photo { height: 220px; }
  .pm-body { max-height: calc(90vh - 220px); }
}
@media (prefers-reduced-motion: reduce) {
  .pm-backdrop, .pm-dialog { animation: none; opacity: 1; transform: none; }
}

/* ---------- BANDE CITATION (conviction) ---------- */
.quote-band { background: var(--bleu); color: var(--paper); text-align: center; position: relative; overflow: hidden; padding-block: clamp(3.5rem,8vw,6rem); }
.quote-band::before { content: ''; position: absolute; inset: 0; opacity: .35; background: radial-gradient(60% 80% at 50% 0%, rgba(194,160,106,.5), transparent 70%); }
.quote-band .qb-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.quote-band .eyebrow { color: #FBF7EF; justify-content: center; }
.quote-band .eyebrow::before { background: rgba(251,247,239,.6); }
.quote-band .qb-quote { font-family: var(--display); font-style: italic; font-weight: 400; font-size: clamp(1.4rem,3.6vw,2.4rem); line-height: 1.4; color: var(--paper); margin-top: 1.3rem; }

/* ---------- REJOINDRE / CONTACT ---------- */
.join-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; position: relative; z-index: 2; }
.join-inner h2 { color: var(--paper); font-size: clamp(2rem,4.5vw,3rem); margin-top: 1rem; }
.join-inner h2 .it { color: var(--champagne-clair); }
.join-inner > div > p { margin-top: 1.2rem; max-width: 50ch; color: rgba(245,243,238,.8); font-size: 1.05rem; line-height: 1.7; }
.join-list { margin-top: 1.6rem; display: flex; flex-direction: column; gap: .7rem; }
.join-list li { color: rgba(245,243,238,.82); font-size: .98rem; padding-left: 1.5rem; position: relative; }
.join-list li::before { content: '→'; position: absolute; left: 0; color: var(--champagne); }
.contact-card { background: var(--paper); border-radius: 18px; padding: 2.2rem; box-shadow: 0 30px 60px -30px rgba(0,0,0,.5); }
.contact-card h3 { font-family: var(--display); font-size: 1.5rem; color: var(--ink); }
.contact-card > p { margin-top: .5rem; font-size: .95rem; color: var(--ink-soft); }
.contact-info { margin: 1.6rem 0; display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: .9rem; color: var(--ink); font-size: .96rem; }
.contact-item .ci-ic { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; background: rgba(46,74,107,.08); color: var(--bleu); display: flex; align-items: center; justify-content: center; }

/* ============================================================
   FICHES SERVICES — onglets verticaux + fiche détaillée
   ============================================================ */
.svc-shell { display: grid; grid-template-columns: 290px 1fr; gap: clamp(1.4rem, 3vw, 2.4rem); align-items: start; margin-top: 2rem; scroll-margin-top: 5.5rem; }
.svc-selector { display: flex; flex-direction: column; gap: .55rem; position: sticky; top: 6rem; }
.svc-tab { display: flex; align-items: center; gap: .9rem; text-align: left; width: 100%; padding: .95rem 1.05rem; border-radius: 13px; border: 1px solid var(--line-soft); background: var(--paper); transition: transform .35s var(--ease), background .35s, border-color .35s, box-shadow .4s var(--ease); }
.svc-tab .svc-tab-ic { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(46,74,107,.08); color: var(--bleu); transition: background .35s, color .35s; }
.svc-tab .svc-tab-name { font-family: var(--sans); font-weight: 600; font-size: .94rem; color: var(--ink); line-height: 1.3; }
.svc-tab:hover { border-color: var(--line); transform: translateX(3px); }
.svc-tab.active { background: var(--bleu); border-color: var(--bleu); box-shadow: 0 16px 32px -16px rgba(46,74,107,.6); }
.svc-tab.active .svc-tab-name { color: #FBF7EF; }
.svc-tab.active .svc-tab-ic { background: rgba(255,255,255,.16); color: #FBF7EF; }

.svc-stage { position: relative; min-width: 0; }
.svc-panel { display: none; }
.svc-panel.active { display: block; animation: panelIn .45s var(--ease) both; }
.svc-panel-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.3rem; }
.svc-panel-head .sp-ic { width: 52px; height: 52px; border-radius: 14px; background: rgba(184,137,42,.1); color: var(--or-fonce); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svc-panel-head h3 { font-size: clamp(1.45rem, 2.8vw, 2rem); line-height: 1.15; }

.svc-brief { background: var(--paper-2); border-left: 3px solid var(--or); border-radius: 0 14px 14px 0; padding: 1.2rem 1.5rem; margin-bottom: 1.3rem; }
.svc-brief .lbl { font-family: var(--sans); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--or-fonce); display: block; margin-bottom: .5rem; }
/* Texte « Quoi ? » : même typo et même taille que le reste de la carte ; la mise en avant vient du bloc */
.svc-brief p { font-family: var(--sans); font-style: normal; font-size: 1rem; line-height: 1.6; color: var(--bleu); font-weight: 500; margin: 0; }

.svc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.svc-card { position: relative; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 14px; padding: 1.3rem 1.4rem 1.4rem 1.5rem; box-shadow: 0 16px 32px -28px rgba(22,32,46,.55); overflow: hidden; }
.svc-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; }
.svc-card.obj::before { background: var(--bleu); }
.svc-card.steps::before { background: var(--or); }
.svc-card-head { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; padding-bottom: .85rem; border-bottom: 1px solid var(--line-soft); }
.svc-card-head .cardic { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svc-card-head h4 { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.svc-card.obj .cardic { background: rgba(46,74,107,.1); color: var(--bleu); }
.svc-card.obj h4 { color: var(--bleu); }
.svc-card.steps .cardic { background: rgba(184,137,42,.1); color: var(--or-fonce); }
.svc-card.steps h4 { color: var(--or-fonce); }

.obj-list { display: flex; flex-direction: column; gap: .7rem; }
.obj-list li { display: flex; gap: .6rem; font-size: .95rem; line-height: 1.5; color: var(--ink-soft); }
.obj-list li::before { content: '✓'; color: var(--or); font-weight: 800; flex-shrink: 0; }

.steps-list { position: relative; display: flex; flex-direction: column; gap: .8rem; padding-left: 1.5rem; }
.steps-list::before { content: ''; position: absolute; left: 5px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.steps-list li { position: relative; font-size: .95rem; line-height: 1.5; color: var(--ink-soft); }
.steps-list li::before { content: ''; position: absolute; left: -1.5rem; top: .35em; width: 12px; height: 12px; border-radius: 50%; background: var(--paper); border: 2px solid var(--or); }

/* Métadonnées prestation = tags à icône cohérents (durée, taille, méthode, format, intervenants…) */
.svc-metabar { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.4rem; }
.svc-metabar .m { display: flex; align-items: center; gap: .6rem; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 11px; padding: .5rem .9rem .5rem .5rem; box-shadow: 0 12px 24px -22px rgba(22,32,46,.5); }
.svc-metabar .m-ic { width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(46,74,107,.09); color: var(--bleu); }
.svc-metabar .m-ic svg { width: 15px; height: 15px; }
.svc-metabar .m-tx { display: flex; flex-direction: column; gap: .08rem; line-height: 1.2; }
.svc-metabar .m b { font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--bleu-soft); }
.svc-metabar .m span { font-size: .82rem; color: var(--ink); font-weight: 500; }
.svc-metabar .m.or { background: rgba(184,137,42,.06); border-color: rgba(184,137,42,.32); }
.svc-metabar .m.or .m-ic { background: rgba(184,137,42,.14); color: var(--or-fonce); }
.svc-metabar .m.or b { color: var(--or-fonce); }
.svc-panel .axe-cta { margin-top: 1.4rem; }

/* Prévention primaire en 2 colonnes */
.primaire-split { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center; }
.primaire-split .section-head { text-align: left; margin: 0; max-width: none; }
.primaire-split .pillars-grid { margin-top: 0; }

@media (max-width: 900px) {
  .primaire-split { grid-template-columns: 1fr; }
}

/* ACCORDÉON mobile des prestations (≤ 760px) : site.js replace chaque panneau
   juste sous son onglet → le contenu s'ouvre en place, sans scroller au-delà des autres.
   Desktop & tablette (> 760px) gardent le sélecteur vertical + fiche à droite, inchangés. */
@media (max-width: 760px) {
  .svc-shell { grid-template-columns: 1fr; }
  .svc-selector { position: static; display: block; }
  .svc-stage { display: none; }
  .svc-selector .svc-tab { width: 100%; scroll-margin-top: 5.5rem; }
  .svc-selector .svc-panel + .svc-tab { margin-top: .55rem; }
  .svc-selector .svc-tab::after { content: '+'; margin-left: auto; font-size: 1.3rem; line-height: 1; color: var(--bleu-soft); flex-shrink: 0; transition: transform .3s var(--ease), color .3s; }
  .svc-selector .svc-tab.active { border-bottom-left-radius: 0; border-bottom-right-radius: 0; transform: none; box-shadow: none; }
  .svc-selector .svc-tab.active::after { transform: rotate(45deg); color: #FBF7EF; }
  .svc-selector .svc-panel { margin: 0; }
  .svc-selector .svc-panel.active { background: var(--paper); border: 1px solid var(--line-soft); border-top: 0; border-radius: 0 0 13px 13px; padding: 1.2rem 1.15rem 1.35rem; box-shadow: 0 18px 36px -30px rgba(22,32,46,.5); }
  .svc-selector .svc-panel .svc-panel-head { display: none; }
}
@media (max-width: 600px) {
  .svc-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   ARTICLES (corps long-form conservé verbatim)
   ============================================================ */
.article-tag { display: inline-block; background: var(--or); color: #FBF7EF; font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .85rem; border-radius: 100px; margin-bottom: 1.1rem; }
.page-hero .article-meta, .article-hero .article-meta { display: flex; align-items: center; flex-wrap: wrap; gap: .6rem .9rem; margin-top: 1.6rem; color: rgba(245,243,238,.72); font-size: .9rem; font-weight: 500; }
.meta-author { display: flex; align-items: center; gap: .6rem; }
.author-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--bleu); color: var(--paper); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: .82rem; font-weight: 600; }
.meta-sep { width: 1px; height: 16px; background: var(--line-light); }
.meta-read svg { vertical-align: middle; }

.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: clamp(2rem,5vw,4rem); align-items: start; max-width: var(--wrap); margin: clamp(3rem,6vw,5rem) auto; padding-inline: var(--gutter); }
.article-body { min-width: 0; }
.article-body p { font-size: 1.08rem; line-height: 1.8; color: var(--ink); margin-top: 1.2rem; }
.article-body strong { font-weight: 700; color: var(--ink); }
.article-body em { font-style: italic; }
.article-intro { margin-bottom: 2.5rem; }
/* Intro = même taille/typo que le corps (pas de « chapeau » sur-dimensionné) */
.article-intro p { font-family: var(--sans); font-weight: 400; font-size: 1.08rem; line-height: 1.8; color: var(--ink); margin-top: 1.2rem; }
.article-intro p:first-child { margin-top: 0; }
.article-section { margin-top: 3.4rem; scroll-margin-top: 6rem; }
.article-section h2 { font-size: clamp(1.7rem,3.4vw,2.4rem); letter-spacing: -.02em; line-height: 1.12; }
.article-section h3 { font-size: clamp(1.25rem,2.4vw,1.6rem); margin-top: 2.1rem; }
.article-body .accent { color: var(--or-fonce); font-style: italic; font-weight: inherit; }
.article-section .separator { display: block; width: 44px; height: 3px; background: var(--or); border-radius: 2px; margin-top: 1.1rem; }

.key-block { background: var(--paper-2); border-left: 3px solid var(--or); border-radius: 0 12px 12px 0; padding: 1.4rem 1.7rem; margin-top: 1.7rem; }
.key-block p { font-family: var(--display); font-style: italic; font-size: clamp(1.15rem,2vw,1.35rem); line-height: 1.5; color: var(--bleu); margin: 0; }

.article-list, .article-list-ordered { margin-top: 1.2rem; padding-left: 1.4rem; display: flex; flex-direction: column; gap: .7rem; }
.article-list { list-style: disc; }
.article-list-ordered { list-style: decimal; }
.article-list li, .article-list-ordered li { font-size: 1.06rem; line-height: 1.7; color: var(--ink); padding-left: .3rem; }
.article-list li::marker, .article-list-ordered li::marker { color: var(--or); font-weight: 700; }

.table-wrap { overflow-x: auto; margin-top: 1.7rem; border: 1px solid var(--line-soft); border-radius: 12px; }
.article-table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 480px; }
.article-table thead th { background: var(--paper-2); font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--bleu); text-align: left; padding: .9rem 1rem; }
.article-table td { padding: .85rem 1rem; border-top: 1px solid var(--line-soft); color: var(--ink-soft); line-height: 1.5; vertical-align: top; }
.article-table td:nth-child(2) { font-weight: 600; color: var(--ink); }
.article-table td.num { color: var(--or-fonce); font-weight: 700; text-align: center; }

.error-grid { display: grid; gap: 1rem; margin-top: 1.7rem; }
.error-card { background: var(--paper); border: 1px solid var(--line-soft); border-left: 3px solid var(--or); border-radius: 0 12px 12px 0; padding: 1.4rem 1.6rem; }
.error-num { font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--or-fonce); }
.error-title { font-family: var(--display); font-size: 1.2rem; font-weight: 500; color: var(--ink); margin-top: .4rem; line-height: 1.25; }
.error-desc { margin-top: .6rem; font-size: 1rem; line-height: 1.65; color: var(--ink-soft); }

.quote-block { background: var(--ink); color: var(--paper); border-radius: 14px; padding: 1.6rem 1.8rem; margin-top: 1.7rem; }
.quote-label { font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--champagne-clair); display: block; margin-bottom: .6rem; }
.quote-block p { font-family: var(--display); font-style: italic; font-size: clamp(1.15rem,2vw,1.3rem); line-height: 1.5; color: var(--paper); margin: 0; }

.prevention-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1.7rem; }
.prevention-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 14px; padding: 1.5rem; }
.prevention-icon { width: 44px; height: 44px; border-radius: 11px; background: rgba(46,74,107,.1); color: var(--bleu); display: flex; align-items: center; justify-content: center; }
.prevention-level { font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--bleu-soft); margin-top: 1rem; }
.prevention-title { font-family: var(--display); font-size: 1.15rem; font-weight: 500; color: var(--ink); margin-top: .3rem; line-height: 1.25; }
.prevention-desc { margin-top: .6rem; font-size: .95rem; line-height: 1.6; color: var(--ink-soft); }

.examples-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 1.7rem; }
.example-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 14px; padding: 1.5rem 1.6rem; }
.example-tag { display: inline-block; font-family: var(--sans); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--or-fonce); background: rgba(184,137,42,.1); padding: .3rem .7rem; border-radius: 100px; }
.example-tag.tag-mix { color: var(--bleu); background: rgba(46,74,107,.1); }
.example-tag.tag-qvct { color: #2d6a4f; background: rgba(45,106,79,.1); }
.example-title { font-family: var(--display); font-size: 1.2rem; font-weight: 500; color: var(--ink); margin-top: .7rem; line-height: 1.25; }
.example-action, .example-analysis, .example-watch { margin-top: .65rem; font-size: .98rem; line-height: 1.6; color: var(--ink-soft); }
.example-watch { border-left: 2px solid var(--or); padding-left: .8rem; }

.synthese-block { background: var(--paper-2); border-radius: 14px; padding: 1.5rem 1.7rem; margin-top: 1.7rem; }
.synthese-block ul { padding-left: 1.2rem; display: flex; flex-direction: column; gap: .9rem; list-style: disc; }
.synthese-block li { font-size: 1.05rem; line-height: 1.7; color: var(--ink); }
.synthese-block li::marker { color: var(--or); }

/* Carte « article suivant » en fin de corps d'article */
.next-article { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-top: 3.2rem; padding: 1.5rem 1.8rem; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 16px; box-shadow: 0 18px 40px -30px rgba(22,32,46,.5); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.next-article:hover { transform: translateY(-3px); box-shadow: 0 28px 52px -30px rgba(22,32,46,.45); border-color: var(--line); }
.next-article .na-label { font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--or-fonce); display: block; margin-bottom: .4rem; }
.next-article .na-title { font-family: var(--display); font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 500; color: var(--ink); line-height: 1.2; display: block; }
.next-article .na-arrow { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--bleu); color: #FBF7EF; display: flex; align-items: center; justify-content: center; transition: transform .4s var(--ease), background .35s; }
.next-article:hover .na-arrow { transform: translateX(4px); background: var(--bleu-fonce); }
@media (max-width: 480px) { .next-article { flex-direction: column; align-items: flex-start; gap: 1.1rem; } }

/* Sidebar article */
.article-sidebar { position: sticky; top: 6rem; align-self: start; display: flex; flex-direction: column; gap: 1.3rem; }
.sidebar-block { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 14px; padding: 1.3rem 1.4rem; }
.sidebar-block h4 { font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--bleu-soft); margin-bottom: .9rem; }
.sidebar-toc, .sidebar-related { display: flex; flex-direction: column; gap: .55rem; }
.sidebar-toc a, .sidebar-related a { font-size: .92rem; color: var(--ink-soft); line-height: 1.4; transition: color .3s, border-color .3s; display: block; border-left: 2px solid transparent; padding-left: .7rem; }
.sidebar-toc a:hover, .sidebar-related a:hover { color: var(--or-fonce); border-left-color: var(--or); }
.sidebar-related a span { color: var(--or); margin-right: .25rem; }
.sidebar-cta { background: var(--ink); color: var(--paper); border-radius: 14px; padding: 1.5rem; }
.sidebar-cta p { color: rgba(245,243,238,.85); font-size: .96rem; line-height: 1.55; }
.sidebar-cta a { display: inline-block; margin-top: 1rem; background: var(--or); color: #FBF7EF; padding: .7rem 1.3rem; border-radius: 100px; font-weight: 600; font-size: .88rem; transition: background .35s, transform .4s var(--ease); }
.sidebar-cta a:hover { background: var(--or-clair); transform: translateY(-2px); }

.article-footer-nav { max-width: var(--wrap); margin: 0 auto; padding: 1.8rem var(--gutter); display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; border-top: 1px solid var(--line); }
.back-link { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--sans); font-weight: 600; font-size: .95rem; color: var(--or-fonce); transition: gap .3s; }
.back-link:hover { gap: .8rem; }
.share-label { font-size: .85rem; color: var(--ink-soft); }

.cta-section { background: var(--ink); color: var(--paper); text-align: center; padding: clamp(3.5rem,8vw,6rem) var(--gutter); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; opacity: .45; pointer-events: none; background: radial-gradient(45% 60% at 15% 10%, rgba(46,74,107,.6), transparent 70%), radial-gradient(40% 55% at 90% 95%, rgba(184,137,42,.28), transparent 72%); animation: bgBreath 18s ease-in-out infinite; }
.cta-section > * { position: relative; z-index: 2; }
.cta-section h2 { color: var(--paper); font-size: clamp(1.8rem,4vw,2.8rem); }
.cta-section h2 span { color: var(--champagne-clair); font-style: italic; }
.cta-section p { color: rgba(245,243,238,.8); max-width: 60ch; margin: 1rem auto 0; font-size: 1.05rem; line-height: 1.6; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.btn-white { background: var(--paper); color: var(--ink); padding: .95rem 1.7rem; border-radius: 100px; font-family: var(--sans); font-weight: 600; font-size: .92rem; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(0,0,0,.5); }
.btn-outline-white { border: 1px solid var(--line-light); color: var(--paper); padding: .95rem 1.7rem; border-radius: 100px; font-family: var(--sans); font-weight: 600; font-size: .92rem; transition: background .35s, color .35s, transform .4s var(--ease); }
.btn-outline-white:hover { background: var(--paper); color: var(--ink); transform: translateY(-2px); }

/* ============================================================
   ARTICLES — composants étendus (corps verbatim repris du live)
   ============================================================ */
/* Puces SVG dans les listes */
.article-list li:has(> .bullet), .article-list-ordered li:has(> .bullet) { list-style: none; display: flex; gap: .7rem; padding-left: 0; align-items: flex-start; }
.article-body .bullet { width: 20px; height: 20px; flex-shrink: 0; color: var(--or); margin-top: .2em; }

/* Grilles de cartes */
.gollac-grid, .factors-grid, .impacts-grid, .impact-grid, .roles-grid, .parties-grid, .trois-p-grid, .trio-grid, .leviers-list { display: grid; gap: 1rem; margin-top: 1.7rem; }
.gollac-grid, .factors-grid, .impacts-grid, .impact-grid, .trio-grid, .roles-grid, .parties-grid { grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); }
.trois-p-grid { grid-template-columns: repeat(3, 1fr); }
.leviers-list { grid-template-columns: 1fr; gap: .85rem; }

/* Carte générique numérotée / titrée */
.gollac-card, .factor-card, .impact-card, .role-card, .partie-card, .p-card, .trio-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 14px; padding: 1.5rem 1.6rem; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.gollac-card:hover, .factor-card:hover, .impact-card:hover, .role-card:hover, .partie-card:hover, .p-card:hover, .trio-card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -24px rgba(22,32,46,.4); border-color: var(--line); }
.gollac-num, .factor-num, .role-num { font-family: var(--display); font-size: 1.55rem; font-weight: 500; color: var(--or); line-height: 1; margin-bottom: .55rem; }
.p-letter { width: 44px; height: 44px; border-radius: 12px; background: rgba(184,137,42,.1); color: var(--or-fonce); font-family: var(--display); font-size: 1.35rem; font-weight: 600; display: flex; align-items: center; justify-content: center; margin-bottom: .8rem; }
.gollac-title, .factor-title, .impact-card-title, .p-label, .trio-title { font-family: var(--display); font-size: 1.16rem; font-weight: 500; color: var(--ink); line-height: 1.25; margin-bottom: .5rem; display: block; }
.role-title, .partie-title, .impact-title { display: flex; align-items: center; gap: .55rem; font-family: var(--display); font-size: 1.16rem; font-weight: 500; color: var(--ink); line-height: 1.25; margin-bottom: .55rem; }
.role-title svg, .partie-title svg, .impact-title svg { color: var(--or-fonce); flex-shrink: 0; }
.gollac-desc, .factor-desc, .p-desc, .trio-desc, .role-card p, .partie-card p, .impact-card p, .prevention-text .prevention-desc { font-size: .96rem; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.trio-icon { width: 44px; height: 44px; border-radius: 11px; background: rgba(46,74,107,.1); color: var(--bleu); display: flex; align-items: center; justify-content: center; margin-bottom: .9rem; }
.impact-card.positive { border-left: 3px solid var(--bleu); }
.impact-card.warning { border-left: 3px solid var(--or); }

/* Leviers : numéro à gauche + contenu */
.levier-item { display: flex; gap: 1.1rem; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 14px; padding: 1.3rem 1.5rem; transition: transform .35s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.levier-item:hover { transform: translateX(3px); box-shadow: 0 18px 36px -24px rgba(22,32,46,.4); border-color: var(--line); }
.levier-num { width: 38px; height: 38px; border-radius: 50%; background: var(--bleu); color: #FBF7EF; font-family: var(--display); font-weight: 600; font-size: 1.05rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.levier-title { font-family: var(--display); font-size: 1.15rem; font-weight: 500; color: var(--ink); margin-bottom: .4rem; }
.levier-desc { font-size: .96rem; line-height: 1.6; color: var(--ink-soft); }

/* Blocs definition / conclusion (mise en avant éditoriale) */
.definition-block, .conclusion-block { background: var(--paper-2); border-left: 3px solid var(--or); border-radius: 0 12px 12px 0; padding: 1.4rem 1.7rem; margin-top: 1.7rem; }
.definition-block p, .conclusion-block p { font-family: var(--display); font-style: italic; font-size: clamp(1.1rem,1.9vw,1.3rem); line-height: 1.5; color: var(--bleu); margin: 0; }
.definition-block p + p, .conclusion-block p + p { margin-top: .7rem; }
.definition-block strong, .conclusion-block strong { font-weight: 600; color: var(--or-fonce); }

/* Alerte / encart fort */
.alert-block { display: flex; gap: .9rem; align-items: flex-start; background: rgba(184,137,42,.07); border: 1px solid rgba(184,137,42,.3); border-radius: 12px; padding: 1.2rem 1.4rem; margin-top: 1.5rem; }
.alert-block svg, .alert-icon { color: var(--or-fonce); flex-shrink: 0; margin-top: .15em; }
.alert-block p { font-size: 1rem; line-height: 1.65; color: var(--ink); margin: 0; }

/* Liste « comportements » (flèches) */
.behavior-list { margin-top: 1.4rem; display: flex; flex-direction: column; gap: .7rem; }
.behavior-list li { position: relative; padding-left: 1.6rem; font-size: 1.05rem; line-height: 1.65; color: var(--ink); }
.behavior-list li::before { content: '→'; position: absolute; left: 0; color: var(--or); font-weight: 700; }

/* Comparaison versus (avant / après) */
.versus-block { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.7rem; }
.versus-col { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 14px; padding: 1.4rem 1.5rem; }
.versus-col.col-before { border-top: 3px solid var(--bleu-soft); }
.versus-col.col-after { border-top: 3px solid var(--or); }
.versus-label { display: flex; align-items: center; gap: .5rem; font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.col-before .versus-label { color: var(--ink-soft); }
.col-after .versus-label { color: var(--or-fonce); }
.versus-list { display: flex; flex-direction: column; gap: .55rem; }
.versus-list li { display: flex; gap: .55rem; font-size: .95rem; line-height: 1.55; color: var(--ink-soft); }
.versus-list li::before { flex-shrink: 0; font-weight: 700; }
.col-before .versus-list li::before { content: '✕'; color: var(--ink-soft); }
.col-after .versus-list li::before { content: '✓'; color: var(--or); }

/* Chiffre clé in-article */
.stat-block { display: flex; gap: 1.4rem; align-items: center; background: var(--ink); color: var(--paper); border-radius: 16px; padding: 1.6rem 1.9rem; margin-top: 1.7rem; }
.stat-block .stat-number { font-family: var(--display); font-size: clamp(2.4rem,5vw,3.2rem); font-weight: 400; color: var(--champagne-clair); line-height: 1; flex-shrink: 0; }
.stat-block .stat-label { font-size: 1rem; line-height: 1.6; color: rgba(245,243,238,.85); margin: 0; }
.stat-block .stat-label strong { color: var(--paper); font-weight: 600; }
@media (max-width: 520px) { .stat-block { flex-direction: column; align-items: flex-start; gap: .6rem; } }

/* Source de citation (sous quote-block sombre) */
.quote-block .quote-source { display: block; margin-top: .85rem; font-family: var(--sans); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--champagne-clair); font-style: normal; }

/* FAQ — accordéon */
.faq-list { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.7rem; }
.faq-item { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 14px; overflow: hidden; transition: border-color .3s, box-shadow .35s var(--ease); }
.faq-item:hover { border-color: var(--line); box-shadow: 0 16px 32px -28px rgba(22,32,46,.45); }
.faq-question { display: flex; align-items: center; gap: .9rem; width: 100%; text-align: left; padding: 1.15rem 1.4rem; cursor: pointer; }
.faq-num { width: 30px; height: 30px; border-radius: 50%; background: rgba(184,137,42,.1); color: var(--or-fonce); font-family: var(--display); font-weight: 600; font-size: .88rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.faq-q-text { flex: 1; font-family: var(--display); font-size: clamp(1.05rem,1.8vw,1.2rem); font-weight: 500; color: var(--ink); line-height: 1.3; }
.faq-icon { width: 20px; height: 20px; color: var(--or); flex-shrink: 0; transition: transform .35s var(--ease); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; padding: 0 1.4rem; transition: max-height .45s var(--ease), padding-bottom .45s var(--ease); }
.faq-item.open .faq-answer { max-height: 1800px; padding-bottom: 1.3rem; }
.faq-answer > * { margin-top: .8rem; }
.faq-answer > :first-child { margin-top: 0; padding-top: .15rem; }
.faq-answer p { font-size: 1rem; line-height: 1.7; color: var(--ink-soft); }
.faq-answer strong { color: var(--ink); font-weight: 700; }
.faq-answer ul, .faq-answer ol { padding-left: 1.4rem; display: flex; flex-direction: column; gap: .5rem; }
.faq-answer ul { list-style: disc; }
.faq-answer ol { list-style: decimal; }
.faq-answer li { font-size: 1rem; line-height: 1.6; color: var(--ink-soft); padding-left: .2rem; }
.faq-answer li::marker { color: var(--or); }

/* ---------- RESPONSIVE pages internes ---------- */
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-aside, .article-sidebar { position: static; }
  .cross-grid { grid-template-columns: 1fr; }
  .page-hero-split { grid-template-columns: 1fr; }
  .join-inner { grid-template-columns: 1fr; }
  .prevention-grid { grid-template-columns: 1fr; }
  .examples-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .compare { grid-template-columns: 1fr; }
  .hero-cats { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .compare { grid-template-columns: 1fr; }
}
