
/* ═════════════════════════════════════════════════
   TOKENS
═════════════════════════════════════════════════ */
:root {
  /* Palette — V1 Navy éditorial */
  --navy:      #0D1F3C;
  --navy-deep: #081428;
  --navy-mid:  #162d56;
  --gold:      #C9A84C;
  --gold-lt:   #E2C77A;
  --gold-soft: rgba(201,168,76,.14);
  --ivory:     #F5F1EA;
  --ivory-2:   #EBE4D6;
  --paper:     #FBF8F2;
  --ink:       #0D1F3C;
  --ink-soft:  rgba(13,31,60,.65);
  --ink-mute:  rgba(13,31,60,.42);
  --line:      rgba(13,31,60,.10);

  /* Type families */
  /* Le panneau Tweaks, retire de cette page, imposait DM Serif Display au
     chargement. Les cinq autres pages du site declarent Fraunces : index
     etait la seule exception, et c'est le panneau qui la creait. La page
     rejoint donc le reste du site.

     Verifie avant d'appliquer, sur les 11 titres .display de la page :
     10 conservent leur hauteur au pixel pres, aucun ne deborde de son
     conteneur, et le onzieme PASSE de 120 a 80 px -- il tenait sur trois
     lignes en DM Serif, il en tient deux en Fraunces. Aucune metrique
     cassee, donc, et deux defauts corriges au passage :
       - « .display em » retrouve un VRAI italique : la requete ligne 26
         demande Fraunces avec son axe ital, ce qui n'etait pas le cas de
         DM Serif Display -- les 10 titres italiques dores etaient jusqu'ici
         inclines par le navigateur, faute de fonte ;
       - « font-variation-settings: opsz 144, SOFT 30 » (regle .display)
         redevient effectif : ce sont des axes propres a Fraunces, inertes
         sur DM Serif Display qui n'est pas une police variable. */
  --f-display: 'Fraunces', Georgia, serif;
  --f-body:    'Inter', 'Manrope', system-ui, sans-serif;

  /* Density */
  --section-py: clamp(88px, 11vw, 160px);
  --gutter:     clamp(20px, 4vw, 48px);
  --maxw:       1280px;
}

/* ═════════════════════════════════════════════════
   BASE
═════════════════════════════════════════════════ */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--f-body); font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-wide { max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); }

/* Type scale */
.display { font-family: var(--f-display); font-weight: 400; line-height: .98; letter-spacing: -.02em; font-variation-settings: "opsz" 144, "SOFT" 30; }
.display em { font-style: italic; color: var(--gold); font-weight: 400; }
.eyebrow {
  font-family: var(--f-body); font-size: 11px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before { content:''; width: 28px; height: 1px; background: currentColor; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.label-xs { font-size: 10px; letter-spacing: .32em; text-transform: uppercase; font-weight: 500; }
.lede { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.55; color: var(--ink-soft); font-weight: 300; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 32px; font-size: 12px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  transition: all .4s cubic-bezier(.22,.61,.36,1);
  border: 1px solid transparent; position: relative;
}
.btn-primary { background: var(--navy); color: var(--ivory); }
.btn-primary:hover { background: var(--gold); color: var(--navy); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--ivory); }
.btn-ghost-light { border-color: rgba(245,241,234,.35); color: var(--ivory); }
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1ebe57; }
.btn svg { width: 14px; height: 14px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s cubic-bezier(.22,.61,.36,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* Rule */
.rule { height: 1px; background: var(--line); }
.rule-gold { height: 1px; background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent); }

/* Paper texture (very subtle) */
.paper-tex {
  background-image:
    radial-gradient(ellipse at top left, rgba(201,168,76,.04), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(13,31,60,.03), transparent 60%);
}

/* ═════════════════════════════════════════════════
   NAV
═════════════════════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  padding: 24px var(--gutter);
  transition: background .4s, backdrop-filter .4s, padding .3s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13,31,60,.92);
  backdrop-filter: blur(14px) saturate(1.2);
  padding: 14px var(--gutter);
  border-bottom-color: rgba(201,168,76,.18);
}
.nav-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: baseline; gap: 10px; color: var(--ivory); }
.logo-mark {
  font-family: var(--f-display); font-weight: 500;
  font-size: 22px; letter-spacing: .22em;
}
.logo-sub { font-size: 9px; letter-spacing: .45em; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-link {
  color: rgba(245,241,234,.7); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 500; transition: color .3s;
}
.nav-link:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold); color: var(--gold); padding: 10px 22px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
  transition: all .3s;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }
.nav-burger { display: none; color: var(--ivory); width: 28px; height: 28px; }
.nav-burger svg { width: 100%; height: 100%; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
}

/* Mobile menu */
.m-menu { display: none; }
.m-menu.open { display: block; }
.m-menu {
  margin-top: 16px; padding: 24px var(--gutter);
  background: rgba(8,20,40,.96); border: 1px solid rgba(201,168,76,.18);
}
.m-menu a { display: block; padding: 12px 0; color: rgba(245,241,234,.7); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; }

/* ═════════════════════════════════════════════════
   1. HERO
═════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  background: var(--navy-deep); color: var(--ivory); overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 140px var(--gutter) 80px;
}
.hero-media {
  position: absolute; inset: 0;
  background: url('../images/hero.webp') center/cover no-repeat;
  filter: saturate(.9) contrast(1.05);
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,20,40,.55) 0%, rgba(8,20,40,.15) 35%, rgba(8,20,40,.85) 100%),
    linear-gradient(105deg, rgba(8,20,40,.75) 0%, rgba(8,20,40,.1) 55%, transparent 100%);
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 60%, transparent 0%, rgba(8,20,40,.5) 100%);
  pointer-events: none;
}
.hero-topbar {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: .6;
}
.hero-content { position: relative; max-width: var(--maxw); margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end; }
.hero-text { max-width: 720px; }
.hero-title {
  font-size: clamp(40px, 4.8vw, 76px);
  line-height: 1.06;
  overflow-wrap: break-word;
  color: var(--ivory); margin: 20px 0 24px;
  font-weight: 300;
}
.hero-title .italic { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-title .line-2 { display: block; padding-left: clamp(0px, 2vw, 32px); }
.hero-title .line-3 { display: block; }
.hero-sub {
  font-size: clamp(16px, 1.25vw, 19px); line-height: 1.6; max-width: 540px;
  color: rgba(245,241,234,.75); font-weight: 300; margin-bottom: 24px;
}
.hero-sub strong { color: var(--ivory); font-weight: 500; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }

/* Guarantee badge — hero */
.hero-guarantee {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(201,168,76,.45);
  border-radius: 2px;
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.07);
  margin-bottom: 60px;
}

/* Hero meta card (bottom right) */
.hero-meta {
  border-left: 1px solid rgba(201,168,76,.25);
  padding-left: 32px;
}
.hero-meta-header { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-meta-header .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(201,168,76,.2); animation: pulse-dot 2.2s infinite; }
.hero-meta-header span { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.hero-meta-item { padding: 18px 0; border-top: 1px solid rgba(245,241,234,.08); }
.hero-meta-item:first-of-type { border-top: 0; }
.hero-meta-k { font-family: var(--f-display); font-size: 36px; font-weight: 300; line-height: 1; color: var(--ivory); }
.hero-meta-k em { color: var(--gold); font-style: italic; font-size: .7em; }
.hero-meta-l { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(245,241,234,.5); margin-top: 8px; }

/* Diaspora flags strip */
.flags {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 40px; align-items: center;
  padding: 18px 36px; border: 1px solid rgba(201,168,76,.22);
  background: rgba(8,20,40,.55); backdrop-filter: blur(10px);
  z-index: 3;
}
.flags-label { font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: rgba(245,241,234,.5); padding-right: 24px; border-right: 1px solid rgba(245,241,234,.12); }
.flags-list { display: flex; gap: 32px; }
.flag {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(245,241,234,.75);
}
.flag-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,.45); } 50% { box-shadow: 0 0 0 10px rgba(201,168,76,0); } }

@media (max-width: 900px) {
  .hero { min-height: 92vh; padding-top: 120px; padding-bottom: 140px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-title .line-2 { padding-left: 0; }
  .hero-meta { border-left: 0; border-top: 1px solid rgba(201,168,76,.2); padding-left: 0; padding-top: 28px; }
  .flags { flex-direction: column; gap: 16px; padding: 18px 24px; }
  .flags-label { border-right: 0; border-bottom: 1px solid rgba(245,241,234,.12); padding: 0 0 12px 0; }
  .flags-list { gap: 20px; flex-wrap: wrap; justify-content: center; }
}

/* ═════════════════════════════════════════════════
   2. NARRATION DIASPORA
═════════════════════════════════════════════════ */
.narr { background: var(--paper); padding: var(--section-py) 0; position: relative; }
.narr .paper-tex { position: absolute; inset: 0; pointer-events: none; }
.narr-head {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: end;
  margin-bottom: 96px; position: relative;
}
.narr-head .eyebrow { color: var(--gold); }
.narr-head h2 {
  font-family: var(--f-display); font-weight: 300; font-size: clamp(40px, 5.5vw, 84px);
  line-height: 1; letter-spacing: -.02em; margin: 0;
}
.narr-head h2 em { font-style: italic; color: var(--gold); }
.narr-head .kicker { display: flex; flex-direction: column; gap: 16px; }
.narr-head p { color: var(--ink-soft); max-width: 520px; font-size: 16px; line-height: 1.65; }

/* Quote banner */
.narr-quote {
  max-width: 1440px; margin: 0 auto 96px; padding: 0 var(--gutter); position: relative;
}
.narr-quote-frame {
  position: relative; overflow: hidden;
  min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 40px;
}
.narr-quote-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.narr-quote-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,31,60,.8) 0%, rgba(13,31,60,.35) 50%, rgba(13,31,60,.8) 100%);
}
.narr-quote-text {
  position: relative; z-index: 2; text-align: center; max-width: 820px;
  color: var(--ivory);
}
.narr-quote-text .q-mark {
  font-family: var(--f-display); font-size: 110px; font-style: italic;
  color: var(--gold); opacity: .5; line-height: 1; margin-bottom: -30px;
}
.narr-quote-text blockquote {
  font-family: var(--f-display); font-weight: 300; font-style: italic;
  font-size: clamp(24px, 3vw, 36px); line-height: 1.25;
  margin: 0 0 24px; letter-spacing: -.01em;
}
.narr-quote-text blockquote .hl { color: var(--gold); font-style: normal; font-weight: 400; }
.narr-quote-text cite {
  display: block; font-style: normal; font-size: 11px;
  letter-spacing: .3em; text-transform: uppercase; color: rgba(245,241,234,.55);
}

/* Two cols: Problem vs Solution */
.narr-cols {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.narr-col {
  padding: 56px 48px;
  position: relative;
}
.narr-col-problem {
  background: var(--ivory);
  border: 1px solid var(--line);
}
.narr-col-solution {
  background: var(--navy); color: var(--ivory);
  position: relative; overflow: hidden;
}
.narr-col-solution::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-lt), var(--gold));
}
.narr-col-solution::after {
  content: ''; position: absolute; bottom: -100px; right: -100px;
  width: 300px; height: 300px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.12);
}
.narr-col h3 {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  font-weight: 500; margin: 0 0 40px;
}
.narr-col-problem h3 { color: #a02f2f; }
.narr-col-solution h3 { color: var(--gold); }
.narr-item { display: flex; gap: 18px; padding: 18px 0; border-top: 1px dashed; }
.narr-item:first-of-type { border-top: 0; padding-top: 0; }
.narr-col-problem .narr-item { border-color: rgba(160,47,47,.15); }
.narr-col-solution .narr-item { border-color: rgba(201,168,76,.15); }
.narr-item-mark {
  flex-shrink: 0; width: 24px; font-family: var(--f-display);
  font-size: 20px; line-height: 1.4;
}
.narr-col-problem .narr-item-mark { color: #a02f2f; opacity: .6; }
.narr-col-solution .narr-item-mark { color: var(--gold); }
.narr-item-title { font-weight: 500; font-size: 15px; margin-bottom: 4px; }
.narr-col-problem .narr-item-title { color: var(--ink); }
.narr-col-solution .narr-item-title { color: var(--ivory); }
.narr-item-desc { font-size: 13px; line-height: 1.6; }
.narr-col-problem .narr-item-desc { color: var(--ink-mute); }
.narr-col-solution .narr-item-desc { color: rgba(245,241,234,.55); }

/* Closing quote */
.narr-close {
  max-width: 980px; margin: 96px auto 0; padding: 0 var(--gutter); text-align: center;
}
.narr-close blockquote {
  font-family: var(--f-display); font-weight: 300; font-style: italic;
  font-size: clamp(24px, 2.8vw, 36px); line-height: 1.3;
  margin: 0 0 20px; color: var(--ink);
}
.narr-close blockquote em { color: var(--gold); font-style: italic; font-weight: 400; }
.narr-close cite { display: block; font-style: normal; font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: var(--ink-mute); }

@media (max-width: 820px) {
  .narr-head { grid-template-columns: 1fr; gap: 28px; align-items: start; margin-bottom: 64px; }
  .narr-cols { grid-template-columns: 1fr; gap: 24px; }
  .narr-col { padding: 40px 28px; }
}

/* ═════════════════════════════════════════════════
   3. SERVICES
═════════════════════════════════════════════════ */
.services { background: var(--navy); color: var(--ivory); padding: var(--section-py) 0; position: relative; overflow: hidden; }
.services::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .05;
  background:
    radial-gradient(circle at 15% 20%, var(--gold) 0, transparent 35%),
    radial-gradient(circle at 85% 80%, var(--gold) 0, transparent 35%);
}
.services-head {
  max-width: var(--maxw); margin: 0 auto 96px; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: end; position: relative;
}
.services-head .eyebrow { color: var(--gold); }
.services-head h2 {
  font-family: var(--f-display); font-weight: 300; font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1; letter-spacing: -.02em; margin: 0; color: var(--ivory);
}
.services-head h2 em { font-style: italic; color: var(--gold); }
.services-head p { color: rgba(245,241,234,.6); max-width: 520px; font-size: 16px; line-height: 1.65; }

.svc-grid {
  max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.15);
}
.svc {
  background: var(--navy-deep);
  padding: 56px 44px 48px;
  position: relative; display: flex; flex-direction: column;
  transition: background .6s ease;
}
.svc:hover { background: #06101f; }
.svc-hero { position: relative; margin: -56px -44px 40px; height: 280px; overflow: hidden; }
.svc-hero img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.22,.61,.36,1); }
.svc:hover .svc-hero img { transform: scale(1.06); }
.svc-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--navy-deep) 100%);
}
.svc-number {
  position: absolute; top: 24px; left: 28px; z-index: 2;
  font-family: var(--f-display); font-size: 72px; font-weight: 300; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px var(--gold);
}
.svc-tag {
  position: absolute; top: 32px; right: 28px; z-index: 2;
  font-size: 9px; letter-spacing: .25em; text-transform: uppercase;
  padding: 6px 12px; border: 1px solid rgba(245,241,234,.35); color: var(--ivory);
  backdrop-filter: blur(4px); background: rgba(8,20,40,.3);
}
.svc-featured .svc-tag { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.1); }
.svc h3 {
  font-family: var(--f-display); font-weight: 400; font-size: 32px; line-height: 1.1;
  letter-spacing: -.01em; margin: 0 0 20px; color: var(--ivory);
}
.svc-lead { font-size: 14px; line-height: 1.65; color: rgba(245,241,234,.6); margin: 0 0 28px; }
.svc-list { list-style: none; padding: 0; margin: 0 0 36px; border-top: 1px solid rgba(245,241,234,.08); }
.svc-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(245,241,234,.08);
  font-size: 13px; color: rgba(245,241,234,.7); line-height: 1.45;
}
.svc-list li::before { content: ''; flex-shrink: 0; width: 14px; height: 1px; background: var(--gold); margin-top: 9px; }
.svc-foot { margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(201,168,76,.2); display: flex; justify-content: space-between; align-items: center; }
.svc-foot-label { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); }
.svc-foot-arrow { width: 32px; height: 32px; border: 1px solid rgba(201,168,76,.4); display: flex; align-items: center; justify-content: center; color: var(--gold); transition: all .3s; }
.svc:hover .svc-foot-arrow { background: var(--gold); color: var(--navy); }

@media (max-width: 1000px) {
  .services-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .svc-grid { grid-template-columns: 1fr; }
}

/* ═════════════════════════════════════════════════
   4. CHIFFRES — bandeau navy impact
═════════════════════════════════════════════════ */
.stats {
  background: var(--navy-deep); color: var(--ivory);
  padding: var(--section-py) 0; position: relative; overflow: hidden;
}
.stats::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .07;
  background:
    radial-gradient(circle at 25% 30%, var(--gold) 0, transparent 35%),
    radial-gradient(circle at 75% 70%, var(--gold) 0, transparent 35%);
}
.stats::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: .4;
}
.stats-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.stats-head { text-align: center; margin-bottom: 88px; position: relative; }
.stats-head .eyebrow { color: var(--gold); }
.stats-head h2 {
  font-family: var(--f-display); font-weight: 300; font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1; letter-spacing: -.02em; margin: 16px 0 0; color: var(--ivory);
}
.stats-head h2 em { font-style: italic; color: var(--gold); }
.stats-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(201,168,76,.18);
  border-bottom: 1px solid rgba(201,168,76,.18);
  position: relative;
}
.stat {
  padding: 64px 24px 56px; text-align: center; position: relative;
  border-right: 1px solid rgba(201,168,76,.12);
  transition: background .4s;
}
.stat:last-child { border-right: 0; }
.stat:hover { background: rgba(201,168,76,.04); }
.stat-k {
  font-family: var(--f-display); font-weight: 300; font-size: clamp(48px, 6vw, 88px);
  line-height: 1; letter-spacing: -.03em; color: var(--ivory);
}
.stat-k em { color: var(--gold); font-style: italic; }
.stat-k sup { font-size: .42em; color: var(--gold); font-style: italic; vertical-align: super; margin-left: 4px; font-weight: 400; }
.stat-rule { width: 32px; height: 1px; background: var(--gold); margin: 22px auto; }
.stat-l { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: rgba(245,241,234,.55); line-height: 1.6; font-weight: 500; }

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 1px solid rgba(201,168,76,.12); border-bottom: 1px solid rgba(201,168,76,.12); padding: 40px 16px; }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .stat:last-child:nth-child(odd) { grid-column: 1 / -1; border-right: 0; }
}

/* ═════════════════════════════════════════════════
   5. PROCESSUS — TIMELINE
═════════════════════════════════════════════════ */
.process { background: var(--ivory); padding: var(--section-py) 0; position: relative; }
.process-inner { max-width: 1080px; margin: 0 auto; padding: 0 var(--gutter); }
.process-head { text-align: center; margin-bottom: 96px; }
.process-head h2 {
  font-family: var(--f-display); font-weight: 300; font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1; letter-spacing: -.02em; margin: 16px 0 0;
}
.process-head h2 em { font-style: italic; color: var(--gold); }

.steps { position: relative; }
.steps::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(180deg, transparent, var(--line) 8%, var(--line) 92%, transparent);
  transform: translateX(-.5px);
}
.step { display: grid; grid-template-columns: 1fr 88px 1fr; gap: 0; margin-bottom: 64px; align-items: center; }
.step:last-child { margin-bottom: 0; }
.step-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ivory); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 14px; color: var(--gold);
  margin: 0 auto; position: relative; z-index: 2;
}
.step-dot.filled { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.step-card {
  background: var(--paper); padding: 32px 36px;
  border: 1px solid var(--line);
}
.step-eyebrow { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.step-card h4 { font-family: var(--f-display); font-weight: 400; font-size: 26px; line-height: 1.15; margin: 0 0 14px; color: var(--ink); letter-spacing: -.01em; }
.step-card p { font-size: 14px; line-height: 1.7; color: var(--ink-soft); margin: 0; }
.step-photo { overflow: hidden; height: 220px; position: relative; }
.step-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
.step-photo:hover img { transform: scale(1.04); }
.step-photo::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(201,168,76,.2); pointer-events: none; }

.step-left .step-card { grid-column: 1; margin-right: 40px; text-align: right; }
.step-left .step-photo { grid-column: 3; margin-left: 40px; }
.step-right .step-photo { grid-column: 1; margin-right: 40px; }
.step-right .step-card { grid-column: 3; margin-left: 40px; text-align: left; }
.step-card-only .step-card-center { grid-column: 1 / span 3; margin: 0 auto; max-width: 560px; text-align: center; }

@media (max-width: 820px) {
  .steps::before { left: 22px; }
  .step { grid-template-columns: 44px 1fr; gap: 24px; align-items: start; }
  .step-dot { grid-column: 1; margin: 0; }
  .step-card, .step-photo, .step-card-center { grid-column: 2 !important; margin: 0 !important; text-align: left !important; }
  .step-photo { height: 160px; margin-bottom: 12px !important; }
  .step-right { grid-template-columns: 44px 1fr; }
  .step-right .step-photo { order: -1; }
}

/* ═════════════════════════════════════════════════
   6. FONDATEURS
═════════════════════════════════════════════════ */
.founders {
  background: var(--navy-deep); color: var(--ivory);
  padding: var(--section-py) 0; position: relative; overflow: hidden;
}
.founders::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,168,76,.08), transparent 70%);
}
.founders-rings { position: absolute; inset: 0; pointer-events: none; opacity: .06; }
.founders-rings div { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); border-radius: 50%; border: 1px solid var(--gold); }
.founders-rings div:nth-child(1) { width: 480px; height: 480px; }
.founders-rings div:nth-child(2) { width: 760px; height: 760px; }
.founders-rings div:nth-child(3) { width: 1080px; height: 1080px; }

.founders-inner { position: relative; max-width: 960px; margin: 0 auto; padding: 0 var(--gutter); text-align: center; }
.founders-inner h2 {
  font-family: var(--f-display); font-weight: 300; font-size: clamp(40px, 6vw, 88px);
  line-height: 1; letter-spacing: -.02em; margin: 0 0 36px; color: var(--ivory);
}
.founders-inner h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.founders-lede { font-size: clamp(16px, 1.3vw, 20px); color: rgba(245,241,234,.72); line-height: 1.6; max-width: 680px; margin: 0 auto 56px; font-weight: 300; }
.founders-lede strong { color: var(--ivory); font-weight: 500; }
.founders-lede .gold { color: var(--gold); font-weight: 500; }

/* Seats meter */

/* Featured quote */
.founders-quote {
  position: relative; padding: 72px 56px; max-width: 820px; margin: 0 auto 48px;
  border-top: 1px solid rgba(201,168,76,.35); border-bottom: 1px solid rgba(201,168,76,.35);
}
.founders-quote .q-mark { font-family: var(--f-display); font-size: 120px; line-height: .5; color: rgba(201,168,76,.3); font-style: italic; }
.founders-quote blockquote {
  font-family: var(--f-display); font-weight: 300; font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px); line-height: 1.3; letter-spacing: -.01em;
  margin: 12px 0 40px; color: var(--ivory);
}
.founders-quote blockquote .gold { color: var(--gold); font-style: normal; font-weight: 500; }

.founders-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 36px; margin-top: 48px; }
.founders-trust > div { display: flex; align-items: center; gap: 10px; font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: rgba(245,241,234,.45); }
.founders-trust > div::before { content: '✦'; color: var(--gold); }

@media (max-width: 820px) {
  .founders-quote { padding: 48px 24px; }
}

/* ═════════════════════════════════════════════════
   7. CTA FINAL
═════════════════════════════════════════════════ */
.cta { background: var(--paper); padding: 0 0 clamp(48px, 6vw, 88px); position: relative; }
.cta-photo { position: relative; height: clamp(280px, 40vh, 440px); overflow: hidden; }
.cta-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.cta-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,31,60,.1), rgba(251,248,242,1) 92%);
}
.cta-card {
  position: relative; max-width: 980px; margin: -80px auto 0; padding: 0 var(--gutter);
  text-align: center; z-index: 2;
}
.cta-card-inner { background: var(--paper); padding: 64px 48px 52px; border: 1px solid var(--line); position: relative; }
.cta-card-inner::before { content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.cta-card h2 {
  font-family: var(--f-display); font-weight: 300; font-size: clamp(40px, 5vw, 72px);
  line-height: 1; letter-spacing: -.02em; margin: 0 0 24px;
}
.cta-card h2 em { font-style: italic; color: var(--gold); }
.cta-card p { color: var(--ink-soft); max-width: 560px; margin: 0 auto 40px; font-size: 17px; line-height: 1.65; font-weight: 300; }
.cta-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-trust {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 28px;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line);
}
.cta-trust > div { display: flex; align-items: center; gap: 8px; font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--ink-mute); }
.cta-trust > div::before { content: '✦'; color: var(--gold); }

/* ═════════════════════════════════════════════════
   TICKER (sous hero)
═════════════════════════════════════════════════ */
.ticker {
  background: var(--navy-deep); color: rgba(245,241,234,.7);
  border-top: 1px solid rgba(201,168,76,.18);
  border-bottom: 1px solid rgba(201,168,76,.18);
  overflow: hidden; position: relative;
}
.ticker::before, .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--navy-deep), transparent); }
.ticker::after  { right: 0; background: linear-gradient(270deg, var(--navy-deep), transparent); }
.ticker-track {
  display: flex; gap: 60px; padding: 16px 0;
  animation: ticker-scroll 48s linear infinite;
  white-space: nowrap; width: max-content;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 500; color: rgba(245,241,234,.65);
}
.ticker-item .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.ticker-item .live { color: #4ade80; }
.ticker-item strong { color: var(--ivory); font-weight: 500; }
.ticker-item em { color: var(--gold); font-style: normal; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═════════════════════════════════════════════════
   QUARTIERS DAKAR
═════════════════════════════════════════════════ */
/* ═══════ PREUVE TERRAIN ═══════ */
.preuve { background: var(--navy); color: var(--ivory); padding: var(--section-py) 0; }
.preuve-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.preuve-head { max-width: 660px; margin-bottom: 44px; }
.preuve-head .display { color: var(--ivory); margin: 14px 0 16px; }
.preuve-head .display em { color: var(--gold); }
.preuve-head p { color: rgba(245,241,234,.72); font-size: 15px; margin: 0; font-weight: 300; }
.preuve-head strong { color: var(--ivory); font-weight: 500; }
.preuve-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px 34px; align-items: start; }
.preuve-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.preuve-photos figure { margin: 0; border: 1px solid rgba(201,168,76,.22); background: rgba(245,241,234,.03); }
.preuve-photos img { width: 100%; height: 178px; object-fit: cover; }
.preuve-attente {
  height: 178px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 9px; padding: 14px; text-align: center;
  color: rgba(245,241,234,.42); font-size: 10.5px; line-height: 1.4;
  border-bottom: 1px solid rgba(201,168,76,.14);
}
.preuve-attente svg { width: 24px; height: 24px; color: var(--gold); opacity: .55; }
.preuve-photos figcaption { padding: 9px 11px; font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(245,241,234,.5); font-weight: 600; }
.preuve-side { display: flex; flex-direction: column; gap: 14px; }
.preuve-score { border: 1px solid rgba(201,168,76,.35); padding: 20px 24px; text-align: center; }
.preuve-score-n { font-family: var(--f-display); font-size: 46px; line-height: 1; color: var(--gold); }
.preuve-score-n span { font-size: 17px; color: rgba(245,241,234,.45); }
.preuve-score-l { font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: rgba(245,241,234,.55); margin-top: 7px; }
.preuve-proto { border-left: 2px solid var(--gold); padding: 3px 0 3px 15px; font-size: 13px; color: rgba(245,241,234,.72); line-height: 1.6; }
.preuve-proto-h { font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 5px; }
.preuve-releve { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: flex-end; gap: 20px 40px; border-top: 1px solid rgba(201,168,76,.18); padding-top: 26px; }
.preuve-releve-h { font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 600; width: 100%; }
.preuve-releve ul { list-style: none; margin: 0; padding: 0; flex: 1; min-width: 260px; columns: 2; column-gap: 34px; }
.preuve-releve li { color: rgba(245,241,234,.75); font-size: 13.5px; padding: 5px 0 5px 16px; position: relative; break-inside: avoid; }
.preuve-releve li::before { content: '✦'; color: var(--gold); position: absolute; left: 0; }
.preuve-mention { margin: 30px 0 0; font-size: 12px; color: rgba(245,241,234,.42); max-width: 700px; line-height: 1.65; }
@media (max-width: 900px) { .preuve-grid { grid-template-columns: 1fr; } .preuve-releve ul { columns: 1; } }
@media (max-width: 560px) { .preuve-photos { grid-template-columns: 1fr; } .preuve-photos img, .preuve-attente { height: 200px; } }

.zones { background: var(--paper); padding: var(--section-py) 0; position: relative; overflow: hidden; }
.zones::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201,168,76,.06), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(13,31,60,.04), transparent 40%);
}
.zones-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); position: relative; }
.zones-head {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: end;
  margin-bottom: 80px;
}
.zones-head h2 {
  font-family: var(--f-display); font-weight: 300; font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1; letter-spacing: -.02em; margin: 16px 0 0;
}
.zones-head h2 em { font-style: italic; color: var(--gold); }
.zones-head p { color: var(--ink-soft); max-width: 560px; font-size: 16px; line-height: 1.65; margin: 0; }

.zones-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px;
  align-items: stretch;
}
.zones-map {
  position: relative; background: var(--navy);
  min-height: 520px; overflow: hidden;
  border: 1px solid rgba(201,168,76,.2);
}
.zones-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.zones-map-label {
  position: absolute; top: 28px; left: 28px; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; background: rgba(8,20,40,.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,.25);
}
.zones-map-label .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse-dot 2.2s infinite; }
.zones-map-label span { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.zones-map-cap {
  position: absolute; bottom: 28px; left: 28px; right: 28px; z-index: 3;
  display: flex; justify-content: space-between; align-items: end; gap: 24px;
  color: var(--ivory);
}
.zones-map-cap-l { font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: rgba(245,241,234,.5); margin-bottom: 6px; }
.zones-map-cap-v { font-family: var(--f-display); font-size: 28px; font-weight: 300; color: var(--ivory); line-height: 1; }
.zones-map-cap-v em { color: var(--gold); font-style: italic; }
.zone-pin {
  cursor: pointer; transition: all .3s;
}
.zone-pin circle { transition: all .3s; }
.zone-pin:hover circle { fill: var(--gold-lt); r: 8; }
.zone-pin text { font-family: var(--f-body); font-size: 9px; fill: var(--ivory); text-transform: uppercase; letter-spacing: .15em; }

.zones-list { display: flex; flex-direction: column; gap: 0; }
.zones-list-head {
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 24px;
}
.zone-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--line);
  cursor: pointer; transition: padding .3s;
}
.zone-row:hover { padding-left: 8px; }
.zone-row:last-child { border-bottom: 0; }
.zone-num {
  font-family: var(--f-display); font-size: 14px; color: var(--gold);
  font-style: italic; width: 24px;
}
.zone-info { display: flex; flex-direction: column; gap: 4px; }
.zone-name { font-family: var(--f-display); font-size: 22px; line-height: 1; color: var(--ink); font-weight: 400; letter-spacing: -.01em; }
.zone-tag { font-size: 11px; color: var(--ink-mute); }
.zone-arrow {
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); color: var(--ink-mute); transition: all .3s;
}
.zone-row:hover .zone-arrow { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.zones-foot {
  margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: var(--ink-soft);
}
.zones-foot strong { color: var(--ink); font-weight: 500; }

@media (max-width: 1000px) {
  .zones-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .zones-grid { grid-template-columns: 1fr; }
  .zones-map { min-height: 360px; }
}

/* ═════════════════════════════════════════════════
   TÉMOIGNAGES
═════════════════════════════════════════════════ */
.testi { background: var(--ivory); padding: var(--section-py) 0; position: relative; overflow: hidden; }
.testi-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.testi-head { text-align: center; margin-bottom: 80px; }
.testi-head h2 {
  font-family: var(--f-display); font-weight: 300; font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1; letter-spacing: -.02em; margin: 16px 0 0;
}
.testi-head h2 em { font-style: italic; color: var(--gold); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testi-card {
  background: var(--paper); padding: 44px 36px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  position: relative;
  transition: all .4s ease;
}
.testi-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(13,31,60,.06); }
.testi-card::before {
  content: '"'; position: absolute; top: 12px; right: 24px;
  font-family: var(--f-display); font-size: 80px; line-height: 1;
  color: var(--gold); opacity: .2; font-style: italic;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.testi-stars span { color: var(--gold); font-size: 14px; }
.testi-scenario {
  display: inline-block; align-self: flex-start; margin-bottom: 18px;
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  padding: 5px 12px; border: 1px solid rgba(201,168,76,.35);
}
.testi-quote {
  font-family: var(--f-display); font-weight: 300; font-style: italic;
  font-size: 18px; line-height: 1.5; color: var(--ink);
  margin: 0 0 32px; flex: 1;
  letter-spacing: -.005em;
}
.testi-quote .hl { color: var(--gold); font-style: normal; font-weight: 400; }
.testi-author { display: flex; align-items: center; gap: 14px; padding-top: 24px; border-top: 1px solid var(--line); }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 16px; font-weight: 400;
  flex-shrink: 0; border: 1px solid rgba(201,168,76,.3);
}
.testi-name { font-weight: 500; font-size: 14px; color: var(--ink); }
.testi-meta { font-size: 11px; color: var(--ink-mute); margin-top: 2px; letter-spacing: .05em; }
.testi-flag {
  margin-left: auto;
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); padding: 4px 10px; border: 1px solid rgba(201,168,76,.3);
}

@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ═════════════════════════════════════════════════
   FAQ
═════════════════════════════════════════════════ */
.faq { background: var(--paper); padding: var(--section-py) 0; position: relative; }
.faq-inner { max-width: 1080px; margin: 0 auto; padding: 0 var(--gutter); }
.faq-head {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: end;
  margin-bottom: 72px;
}
.faq-head h2 {
  font-family: var(--f-display); font-weight: 300; font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1; letter-spacing: -.02em; margin: 16px 0 0;
}
.faq-head h2 em { font-style: italic; color: var(--gold); }
.faq-head p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; margin: 0; max-width: 480px; }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0; text-align: left; gap: 32px;
  font-family: var(--f-display); font-size: clamp(20px, 2vw, 26px);
  font-weight: 400; color: var(--ink); letter-spacing: -.005em;
  line-height: 1.25;
  transition: color .3s;
}
.faq-q:hover { color: var(--gold); }
.faq-q-num {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  font-family: var(--f-body); color: var(--gold); font-weight: 500;
  font-style: normal; flex-shrink: 0; min-width: 36px;
}
.faq-q-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); transition: all .3s;
  position: relative;
}
.faq-q-icon::before, .faq-q-icon::after {
  content: ''; position: absolute; background: currentColor;
  transition: transform .3s;
}
.faq-q-icon::before { width: 12px; height: 1px; }
.faq-q-icon::after  { width: 1px; height: 12px; }
.faq-item.open .faq-q-icon { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.faq-item.open .faq-q-icon::after { transform: scaleY(0); }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .4s ease;
}
.faq-a-inner { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p {
  margin: 0 0 28px; padding-right: 64px;
  color: var(--ink-soft); line-height: 1.7; font-size: 15px;
  max-width: 760px;
}
.faq-foot {
  text-align: center; margin-top: 56px;
  padding-top: 40px; border-top: 1px solid var(--line);
}
.faq-foot p { color: var(--ink-soft); font-size: 15px; margin: 0 0 20px; }
.faq-foot p strong { color: var(--ink); font-weight: 500; }

@media (max-width: 820px) {
  .faq-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .faq-q { font-size: 18px; gap: 16px; }
  .faq-a p { padding-right: 0; }
}

/* ═════════════════════════════════════════════════
   FOOTER
═════════════════════════════════════════════════ */
footer { background: var(--navy-deep); color: rgba(245,241,234,.6); position: relative; }
.foot-topbar { height: 2px; background: linear-gradient(90deg, var(--gold-lt), var(--gold)); }
.foot-inner { max-width: var(--maxw); margin: 0 auto; padding: 80px var(--gutter) 40px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
.foot-brand { display: flex; flex-direction: column; gap: 24px; }
.foot-logo .logo-mark { color: var(--ivory); font-size: 24px; letter-spacing: .25em; }
.foot-logo .logo-sub { color: var(--gold); }
.foot-brand p { font-size: 14px; line-height: 1.65; max-width: 420px; color: rgba(245,241,234,.5); }
.foot-ohada {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 18px; border: 1px solid rgba(201,168,76,.25);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
}
.foot-ohada .mark { font-family: var(--f-display); color: var(--gold); font-weight: 500; }
.foot-ohada .sep { width: 1px; height: 14px; background: rgba(201,168,76,.25); }
.foot-col h4 { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--ivory); margin: 0 0 24px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-col a { font-size: 13px; color: rgba(245,241,234,.55); transition: color .3s; }
.foot-col a:hover { color: var(--gold); }
.foot-contact-item { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: rgba(245,241,234,.55); }
.foot-contact-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.foot-bottom { max-width: var(--maxw); margin: 0 auto; padding: 24px var(--gutter); border-top: 1px solid rgba(245,241,234,.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; align-items: center; }
.foot-bottom p { font-size: 11px; color: rgba(245,241,234,.32); line-height: 1.6; margin: 0; }
.foot-bottom-links { display: flex; gap: 24px; }
.foot-bottom-links a { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: rgba(245,241,234,.32); transition: color .3s; }
.foot-bottom-links a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .foot-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ═════════════════════════════════════════════════
   WHATSAPP FLOAT
═════════════════════════════════════════════════ */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.35);
  animation: wa-pulse 2.2s infinite;
  transition: transform .3s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 26px; height: 26px; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,.45); }
  60%     { box-shadow: 0 4px 24px rgba(37,211,102,.35), 0 0 0 16px rgba(37,211,102,0); }
}


/* ═════════════════════════════════════════════════
   CHAINE DE PREUVE + ESPACE PROPRIETAIRE
   Aucune couleur, aucune police, aucun jeton nouveau : ces deux sections
   n'utilisent que ce que le bloc :root declare deja.
═════════════════════════════════════════════════ */
.chaine { padding: var(--section-py) 0; }
.chaine-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.chaine-head .display { font-size: clamp(38px, 5vw, 72px); margin: 14px 0 0; }
.chaine-head p { font-size: 15px; line-height: 1.75; color: var(--ink-soft); margin: 18px 0 0; }
.chaine-rail { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(198px, 1fr)); }
.maillon { background: var(--paper); border: 1px solid var(--line); padding: 26px 22px; }
.maillon-n { font-family: var(--f-display); font-size: 13px; letter-spacing: .28em; color: var(--gold); margin-bottom: 14px; }
.maillon h4 { font-family: var(--f-display); font-weight: 400; font-size: 21px; line-height: 1.15; margin: 0 0 12px; color: var(--ink); letter-spacing: -.01em; }
.maillon p { font-size: 13.5px; line-height: 1.65; color: var(--ink-soft); margin: 0; }
.chaine-note { margin: 34px auto 0; max-width: 780px; text-align: center; font-size: 12.5px; line-height: 1.75; color: var(--ink-mute); }

.espace { background: var(--ivory); padding: var(--section-py) 0; }
.espace-head { max-width: 680px; margin: 0 auto 46px; text-align: center; }
.espace-head .display { font-size: clamp(38px, 5vw, 72px); margin: 14px 0 0; }
.espace-head p { font-size: 15px; line-height: 1.75; color: var(--ink-soft); margin: 18px 0 0; }
.espace-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
.espace-carte { background: var(--paper); border: 1px solid var(--line); }
.espace-carte figure { margin: 0; border-bottom: 1px solid var(--line); }
.espace-carte img { width: 100%; height: 208px; object-fit: cover; object-position: top; display: block; }
.espace-attente {
  height: 208px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 18px; text-align: center;
  color: var(--ink-mute); font-size: 11px; line-height: 1.5; letter-spacing: .04em;
  background: repeating-linear-gradient(135deg, transparent 0 9px, rgba(13,31,60,.035) 9px 18px);
}
.espace-legende { padding: 18px 20px 22px; }
.espace-tag { display: inline-block; font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,.35); padding: 4px 9px; margin-bottom: 12px; }
.espace-legende h4 { font-family: var(--f-display); font-weight: 400; font-size: 19px; margin: 0 0 8px; color: var(--ink); }
.espace-legende p { font-size: 13px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.espace-note { margin: 30px auto 0; max-width: 780px; text-align: center; font-size: 12.5px; line-height: 1.75; color: var(--ink-mute); }

[hidden] { display:none !important; }
:focus-visible { outline:3px solid #C9A84C; outline-offset:4px; }
input, select, textarea { max-width:100%; min-width:0; }
.field, .phone, .hero-text { min-width:0; }
.nav-burger { min-width:44px; min-height:44px; }
.gg-lang button { min-width:44px; min-height:44px; }
@media(max-width:600px) {
 .field-row { grid-template-columns:minmax(0,1fr); }
 input,select,textarea { font-size:16px; }
 .hero-guarantee { max-width:100%; overflow-wrap:anywhere; }
}
@media(prefers-reduced-motion:reduce) {
 *, *::before, *::after { animation:none !important; transition:none !important; scroll-behavior:auto !important; }
 .reveal { opacity:1 !important; transform:none !important; }
}


/* V6 — quatre services, grille compacte et liens natifs accessibles */
.svc-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:2px; }
.svc { padding:30px 32px 26px; min-width:0; }
.svc-hero { margin:-30px -32px 22px; height:185px; flex-shrink:0; }
.svc h3 { min-height:70px; margin-bottom:16px; }
.svc-lead { min-height:92px; margin-bottom:18px; }
.svc-list { margin-bottom:18px; }
.svc-list li { padding:9px 0; }
.svc-highlight { color:var(--gold); font-size:13px; line-height:1.6; margin:0 0 12px; }
.svc-price { color:var(--gold-lt); font-size:20px; font-weight:600; margin:0 0 10px; }
.svc-price span { font-size:13px; display:block; margin-top:5px; }
.svc-tax { color:rgba(245,241,234,.65); font-size:11px; line-height:1.6; margin:0 0 20px; }
a.svc-foot { text-decoration:none; min-height:52px; padding:14px 8px 0; transition:background .2s; }
a.svc-foot:hover { background:rgba(201,168,76,.08); }
a.svc-foot:focus-visible, a:focus-visible, button:focus-visible { outline:2px solid var(--gold); outline-offset:5px; }
a.svc-foot:active { background:rgba(201,168,76,.2); transform:translateY(1px); }
@media(min-width:761px) { .svc { display:grid; grid-template-rows:185px 70px 92px 1fr auto auto auto 52px; row-gap:14px; } .svc-hero { margin-bottom:0; height:215px; } .svc h3,.svc-lead,.svc-list { margin-bottom:0; } .svc-foot { grid-row:8; } }
@media(max-width:760px) { .svc-grid { grid-template-columns:minmax(0,1fr); } .svc { padding:26px 22px; } .svc-hero { margin:-26px -22px 20px; } .svc h3,.svc-lead { min-height:0; } .svc-tag { right:16px; letter-spacing:.12em; } }
@media(prefers-reduced-motion:reduce) { *,*::before,*::after { scroll-behavior:auto!important; transition:none!important; animation:none!important; } }

.detail-hero { background:var(--navy-deep); color:var(--ivory); padding:155px var(--gutter) 70px; }
.detail-hero-inner,.detail-section { max-width:1200px; margin:auto; }
.detail-hero h1 { font-family:var(--f-display); font-size:clamp(42px,6vw,76px); font-weight:400; line-height:1.1; margin:20px 0; }
.detail-hero h1 em { color:var(--gold); }
.detail-hero p { max-width:680px; line-height:1.8; color:rgba(245,241,234,.75); }
.service-jump { display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.service-jump a { padding:12px 16px; border:1px solid rgba(201,168,76,.5); color:var(--gold-lt); font-size:13px; text-decoration:none; }
.detail-section { padding:70px var(--gutter); scroll-margin-top:90px; border-bottom:1px solid var(--line); }
.detail-section h2 { font-family:var(--f-display); font-size:clamp(32px,4vw,48px); font-weight:400; margin:12px 0 24px; }
.detail-section h3 { font-size:18px; line-height:1.6; margin:24px 0 14px; }
.detail-section p,.detail-section li { line-height:1.85; font-size:15px; }
.detail-section ul,.detail-section ol { padding-left:22px; }
.detail-columns { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:36px; }
.detail-actions { display:flex; flex-wrap:wrap; gap:16px; margin-top:30px; }
.detail-actions a { min-height:48px; }
.detail-note { font-size:13px!important; color:var(--ink-soft); }
.zones-list { columns:3; }
footer .foot-col h3 { font-family:var(--f-body); font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); margin-bottom:20px; }
@media(max-width:760px) { .detail-columns { grid-template-columns:1fr; gap:10px; } .detail-section { padding:48px 22px; } .detail-actions { flex-direction:column; align-items:stretch; } .zones-list { columns:2; } }
