/* ═══════════════════════════════════════════════════════════════
   CABINET RUSSO — Conseil patrimonial franco-suisse
   Charte : encre / terre / métal / papier chaud
   Typo   : Cormorant Garamond (display) · Outfit (sans) · Lora (body)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --ink:        #001629;
  --ink-700:    #0a2236;
  --ink-soft:   #2a3d52;
  --metal:      #929395;
  --metal-soft: #c8c9ca;
  --terra:      #ae7f65;
  --terra-deep: #936548;
  --terra-soft: #d4baad;
  --terra-fade: #f0e6df;
  --paper:      #ffffff;
  --paper-warm: #faf8f5;
  --paper-deep: #f2ede7;
  --shell:      #e8e4df;
  --rule:       rgba(0,22,41,0.12);
  --rule-light: rgba(255,255,255,0.14);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:    'Outfit', system-ui, -apple-system, sans-serif;
  --font-body:    'Lora', Georgia, serif;

  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --maxw: 1180px;
  --gutter: clamp(22px, 5vw, 72px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--shell);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--paper);
  font-size: clamp(16.5px, 1.1vw, 18.5px);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--terra); color: #fff; }

a { color: inherit; text-decoration: none; }
sup { font-size: 0.62em; vertical-align: super; }
strong { color: var(--ink); font-weight: 500; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

/* ── Eyebrow / labels (sans) ── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--terra-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--terra);
  display: inline-block;
}
.eyebrow-light { color: var(--terra-soft); }
.eyebrow-light::before { background: var(--terra-soft); }

/* ════════════════════════ BUTTONS ════════════════════════ */
.btn {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .45s var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn-arrow { transition: transform .45s var(--ease); display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-gold {
  background: var(--terra);
  color: #fff;
  box-shadow: 0 8px 26px -12px rgba(174,127,101,0.7);
}
.btn-gold:hover { background: var(--terra-deep); transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(174,127,101,0.85); }

.btn-ghost { color: var(--ink); border-color: var(--rule); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

.btn-line { color: var(--ink); border-color: var(--ink); background: transparent; }
.btn-line:hover { background: var(--ink); color: #fff; }

.btn-lg { padding: 18px 34px; font-size: 14px; }

.hero .btn-ghost,
.section-dark .btn-ghost,
.section-cta .btn-ghost { color: #fff; border-color: var(--rule-light); }
.hero .btn-ghost:hover,
.section-dark .btn-ghost:hover,
.section-cta .btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ════════════════════════ NAV ════════════════════════ */
.scroll-progress { position: fixed; top: 0; left: 0; width: 100%; height: 2px; z-index: 120; background: transparent; }
.scroll-progress span { display: block; height: 100%; width: 0; background: var(--terra); transition: width .1s linear; }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--gutter);
  transition: padding .5s var(--ease), background .5s var(--ease), box-shadow .5s var(--ease);
}
.nav.scrolled {
  padding: 13px var(--gutter);
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--rule), 0 12px 40px -28px rgba(0,22,41,0.5);
}

.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-mark {
  position: relative;
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  color: var(--paper);
  transition: color .5s var(--ease);
}
.nav-mark-bar { width: 1px; height: 20px; background: var(--terra); transform: rotate(16deg); }
.nav.scrolled .nav-mark { color: var(--ink); }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500; letter-spacing: 0.01em;
  color: var(--paper); transition: color .5s var(--ease);
}
.nav.scrolled .nav-brand-name { color: var(--ink); }
.nav-brand-sub {
  font-family: var(--font-sans);
  font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terra-soft); margin-top: 3px; transition: color .5s var(--ease);
}
.nav.scrolled .nav-brand-sub { color: var(--metal); }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 400; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.78);
  position: relative; padding: 4px 0;
  transition: color .4s var(--ease);
}
.nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--terra);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.nav-links a:hover { color: var(--terra); }
.nav.scrolled .nav-links a:hover { color: var(--terra-deep); }
.nav-links a:hover::after { transform: scaleX(1); }

.btn-nav {
  font-size: 12px; padding: 11px 20px;
  border-color: var(--rule-light); color: #fff;
}
.nav.scrolled .btn-nav { border-color: var(--terra); color: var(--terra-deep); }
.btn-nav:hover { background: var(--terra); color: #fff; border-color: var(--terra); }

/* burger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 1.5px; background: #fff; transition: all .4s var(--ease); }
.nav.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 95;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 0 var(--gutter);
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: none; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 400; color: var(--paper-warm);
  padding: 12px 0; border-bottom: 1px solid var(--rule-light);
}
.mobile-menu a.btn {
  font-family: var(--font-sans); font-size: 14px; border-bottom: 0;
  margin-top: 22px; justify-content: center;
}

/* ════════════════════════ HERO ════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--paper-warm);
  overflow: hidden;
  padding: 140px var(--gutter) 100px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 78% 18%, rgba(174,127,101,0.20), transparent 60%),
    radial-gradient(90% 80% at 10% 100%, rgba(146,147,149,0.14), transparent 55%),
    linear-gradient(180deg, #00111f 0%, var(--ink) 55%, var(--ink-700) 100%);
}
.hero-curves { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .9; }
.curve { stroke-dasharray: 2600; stroke-dashoffset: 2600; animation: draw 3.4s var(--ease) forwards; }
.curve-ch { animation-delay: .35s; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero-arc {
  position: absolute; top: -120px; right: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174,127,101,0.16), transparent 68%);
  filter: blur(8px);
}
.hero-grain { position: absolute; inset: 0; opacity: .5; mix-blend-mode: overlay; background-image: var(--grain); }

.hero-inner { position: relative; z-index: 2; max-width: 980px; margin: 0 auto; width: 100%; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 7vw, 92px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 26px 0 0;
}
.hero-title .line { display: block; }
.hero-title em { font-style: italic; color: var(--terra-soft); font-weight: 400; }
.hero-title-accent {
  font-size: clamp(22px, 3.4vw, 42px);
  color: var(--terra-soft);
  font-style: italic;
  margin-top: 14px;
  font-weight: 400;
}

.hero-lead {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.7;
  color: rgba(245,242,238,0.82);
  max-width: 640px;
  margin: 34px 0 0;
}
.hero-lead strong { color: var(--terra-soft); font-weight: 500; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 42px; }
.hero-note {
  font-family: var(--font-sans);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--metal-soft); margin-top: 26px;
}

.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--terra-soft), transparent); position: relative; overflow: hidden; }
.hero-scroll-line::after { content: ''; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--terra); animation: scrollPulse 2.2s var(--ease-soft) infinite; }
@keyframes scrollPulse { 0% { top: -50%; } 60%,100% { top: 100%; } }
.hero-scroll-text { font-family: var(--font-sans); font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--metal); }

/* ════════════════════════ STRIP (chiffres) ════════════════════════ */
.strip { background: var(--ink-700); color: var(--paper-warm); border-top: 1px solid var(--rule-light); }
.strip-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: stretch; justify-content: space-between;
  padding: 44px var(--gutter);
  gap: 10px;
}
.strip-item { display: flex; flex-direction: column; gap: 8px; text-align: center; flex: 1; padding: 4px 12px; }
.strip-val {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px); font-weight: 400; line-height: 1;
  color: var(--terra-soft);
}
.strip-label {
  font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--metal-soft); line-height: 1.5;
}
.strip-sep { width: 1px; background: var(--rule-light); align-self: stretch; }

/* ════════════════════════ SECTIONS ════════════════════════ */
.section { position: relative; padding: clamp(80px, 11vw, 150px) 0; }
.section-warm { background: var(--paper-warm); }
.section-dark { background: var(--ink); color: var(--paper-warm); overflow: hidden; }
.enjeu-grain { position: absolute; inset: 0; background-image: var(--grain); opacity: .5; mix-blend-mode: overlay; pointer-events: none; }
.section-dark .wrap { position: relative; z-index: 1; }

.section-head { max-width: 760px; margin-bottom: clamp(48px, 6vw, 76px); }
.section-head-tight { margin-bottom: 32px; }
.section-num {
  display: block;
  font-family: var(--font-display);
  font-size: 15px; font-style: italic; color: var(--terra);
  margin-bottom: 18px; letter-spacing: 0.1em;
}
.section-num-light { color: var(--terra-soft); }
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 14px;
}
.section-title-light { color: var(--paper); }
.section-intro {
  font-size: clamp(16px, 1.3vw, 19px);
  margin-top: 26px; max-width: 660px; color: var(--ink-soft);
}

/* ── 01 SPLIT (France | Suisse) ── */
.split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.split-side { padding: 8px 0; }
.split-flag {
  font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--terra-deep);
  display: inline-block; margin-bottom: 18px;
  padding-bottom: 7px; border-bottom: 1px solid var(--rule);
}
.split-ch { text-align: right; }
.split-ch .split-flag { border-color: var(--terra-soft); }
.split-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px); font-style: italic; font-weight: 400;
  line-height: 1.3; color: var(--ink);
}
.split-desc { font-size: 15px; margin-top: 14px; color: var(--ink-soft); }

.split-divider { align-self: stretch; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 160px; position: relative; }
.split-divider-line { width: 1px; flex: 1; background: linear-gradient(var(--rule), var(--terra-soft), var(--rule)); }
.split-divider-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--terra);
  position: absolute; top: 50%; transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(174,127,101,0.14);
}

.gap-statement {
  border-left: 2px solid var(--terra);
  padding: 6px 0 6px 30px;
  max-width: 780px;
  margin: 0 auto clamp(40px, 5vw, 60px);
}
.gap-statement p { font-size: clamp(16px, 1.35vw, 19px); }
.gap-punch {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 27px); font-style: italic;
  color: var(--ink); margin-top: 16px; line-height: 1.35;
}

.questions { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 880px; }
.questions li {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink);
  padding: 20px 8px 20px 38px;
  border-top: 1px solid var(--rule);
  position: relative;
}
.questions li::before {
  content: '?';
  position: absolute; left: 4px; top: 18px;
  font-family: var(--font-display); font-style: italic;
  font-size: 22px; color: var(--terra);
}

/* ── 02 ENJEU (dark) ── */
.enjeu-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.enjeu-lead { font-size: clamp(16px, 1.35vw, 19px); color: rgba(245,242,238,0.8); margin-top: 26px; }
.enjeu-lead strong { color: var(--terra-soft); }
.enjeu-figure {
  border: 1px solid var(--rule-light);
  background: rgba(255,255,255,0.02);
  padding: clamp(30px, 4vw, 48px);
  text-align: center;
  position: relative;
}
.enjeu-figure::before { content: ''; position: absolute; top: 0; left: 0; width: 46px; height: 2px; background: var(--terra); }
.enjeu-figure-label { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--metal-soft); display: block; }
.enjeu-figure-val {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px); font-weight: 400; line-height: 1;
  color: var(--terra-soft); display: block; margin: 18px 0 10px;
  display: flex; align-items: baseline; justify-content: center; gap: 6px;
}
.enjeu-dash { color: var(--metal); }
.enjeu-figure-unit { font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--paper-warm); display: block; }
.enjeu-figure-foot { font-size: 13px; color: var(--metal-soft); margin-top: 20px; line-height: 1.6; }

/* ── 02 DOMAINS grid ── */
.domains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-bottom: clamp(56px, 7vw, 90px); }
.domain { background: var(--paper); padding: clamp(26px, 3vw, 40px); transition: background .5s var(--ease); position: relative; }
.domain:hover { background: var(--paper-warm); }
.domain-idx {
  font-family: var(--font-display); font-style: italic; font-size: 20px;
  color: var(--terra); display: block; margin-bottom: 14px;
}
.domain h3 {
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--ink); margin-bottom: 10px; text-transform: uppercase;
}
.domain p { font-size: 14.5px; color: var(--ink-soft); }

/* ── Pillars dataviz ── */
.pillars { text-align: center; }
.pillars-title { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--metal); }
.pillars-viz {
  display: flex; align-items: flex-end; justify-content: center; gap: clamp(20px, 5vw, 64px);
  height: 240px; margin: 36px auto 18px; max-width: 720px;
  border-bottom: 1px solid var(--rule); padding-bottom: 0;
}
.pillar { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; gap: 0; }
.pillar-bar {
  width: clamp(40px, 7vw, 64px);
  height: 0;
  background: linear-gradient(180deg, var(--terra), var(--terra-deep));
  transition: height 1.2s var(--ease);
  position: relative;
}
.pillar-fr .pillar-bar { background: linear-gradient(180deg, var(--ink-soft), var(--ink)); }
.is-visible .pillar-bar { height: var(--h); }
.pillar-cap { font-family: var(--font-sans); font-size: 12px; font-weight: 600; color: var(--ink); margin-top: 12px; letter-spacing: 0.02em; }
.pillar-sub { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--metal); margin-top: 3px; }
.pillars-foot { font-size: 12.5px; color: var(--metal); margin-top: 20px; font-style: italic; }

/* ── 04 POUR QUI ── */
.forwho { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.forwho-list { list-style: none; }
.forwho-list li {
  display: grid; grid-template-columns: 130px 1fr; gap: 24px; align-items: baseline;
  padding: 22px 0; border-top: 1px solid var(--rule);
}
.forwho-list li:last-child { border-bottom: 1px solid var(--rule); }
.forwho-k { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terra-deep); }
.forwho-v { font-family: var(--font-body); font-size: clamp(15px, 1.25vw, 18px); color: var(--ink); }

/* ── 05 CARNET ── */
.carnet-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 7vw, 96px); align-items: center; }
.carnet-object { display: flex; justify-content: center; perspective: 1600px; }
.carnet-book {
  position: relative;
  width: clamp(220px, 26vw, 300px);
  aspect-ratio: 5 / 7;
  transform: rotateY(-22deg) rotateX(4deg);
  transform-style: preserve-3d;
  transition: transform 1s var(--ease);
  filter: drop-shadow(0 40px 60px rgba(0,22,41,0.32));
}
.carnet-grid:hover .carnet-book { transform: rotateY(-12deg) rotateX(2deg); }
.carnet-spine { position: absolute; left: -14px; top: 0; width: 14px; height: 100%; background: linear-gradient(var(--terra-deep), var(--ink)); transform: rotateY(28deg); transform-origin: right; border-radius: 2px 0 0 2px; }
.carnet-cover {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, var(--ink) 0%, var(--ink-700) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px 4px 4px 2px;
  padding: clamp(22px, 3vw, 32px);
  display: flex; flex-direction: column;
  color: var(--paper-warm);
  overflow: hidden;
}
.carnet-cover::before { content: ''; position: absolute; top: 0; right: 0; width: 120px; height: 120px; background: var(--terra); opacity: .14; border-radius: 0 0 0 120px; }
.carnet-cover-eyebrow { font-family: var(--font-sans); font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--terra-soft); }
.carnet-cover-title { font-family: var(--font-display); font-size: clamp(30px, 4vw, 44px); font-weight: 300; line-height: 1.02; margin-top: auto; color: #fff; }
.carnet-cover-sub { font-family: var(--font-body); font-style: italic; font-size: 13px; color: var(--terra-soft); margin-top: 10px; }
.carnet-cover-rule { width: 40px; height: 1px; background: var(--terra); margin: 18px 0; }
.carnet-cover-foot { font-family: var(--font-sans); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--metal-soft); }

.carnet-lead { font-size: clamp(16px, 1.3vw, 19px); margin: 8px 0 0; }
.carnet-points { list-style: none; margin: 28px 0; }
.carnet-points li {
  font-family: var(--font-sans); font-size: 15px; color: var(--ink);
  padding: 13px 0 13px 30px; border-bottom: 1px solid var(--rule); position: relative;
}
.carnet-points li::before { content: '—'; position: absolute; left: 0; color: var(--terra); }
.carnet-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 30px; }
.carnet-price { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--metal); }

/* ── 06 CONSEILLER ── */
.conseiller-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(34px, 5vw, 72px); align-items: start; }
.conseiller-lead { font-size: clamp(17px, 1.5vw, 22px); font-family: var(--font-body); line-height: 1.7; color: rgba(245,242,238,0.88); }
.conseiller-lead strong { color: var(--terra-soft); }
.creds { display: flex; flex-direction: column; gap: 2px; }
.cred { padding: 20px 0; border-top: 1px solid var(--rule-light); }
.cred:last-child { border-bottom: 1px solid var(--rule-light); }
.cred-k { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terra-soft); display: block; margin-bottom: 7px; }
.cred-v { font-family: var(--font-body); font-size: 15px; color: var(--paper-warm); }

/* ── 07 CTA ── */
.section-cta { background: linear-gradient(150deg, var(--terra-deep) 0%, #7d5238 60%, #5e3d29 100%); color: #fff; overflow: hidden; text-align: center; }
.cta-arc { position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%); width: 900px; height: 900px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%); }
.cta-block { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.section-cta .eyebrow { color: rgba(255,255,255,0.9); }
.section-cta .eyebrow::before { background: rgba(255,255,255,0.7); }
.cta-title { font-family: var(--font-display); font-weight: 300; font-size: clamp(34px, 5vw, 64px); line-height: 1.06; color: #fff; margin: 22px 0; }
.cta-lead { font-size: clamp(16px, 1.35vw, 19px); color: rgba(255,255,255,0.9); max-width: 620px; margin: 0 auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 40px 0 30px; }
.section-cta .btn-gold { background: #fff; color: var(--terra-deep); box-shadow: 0 14px 40px -16px rgba(0,0,0,0.5); }
.section-cta .btn-gold:hover { background: var(--ink); color: #fff; }
.cta-reassure { list-style: none; display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.cta-reassure li {
  font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  display: flex; align-items: center; gap: 9px;
}
.cta-reassure li::before { content: ''; width: 5px; height: 5px; background: rgba(255,255,255,0.7); border-radius: 50%; }

/* ════════════════════════ FOOTER ════════════════════════ */
.footer { background: var(--ink); color: var(--metal-soft); padding: clamp(56px, 7vw, 84px) 0 40px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 44px; border-bottom: 1px solid var(--rule-light); }
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-name { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: #fff; }
.footer-tag { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--metal); }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-nav a { font-family: var(--font-sans); font-size: 13px; color: var(--metal-soft); transition: color .4s var(--ease); }
.footer-nav a:hover { color: var(--terra-soft); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; text-align: right; }
.footer-contact a { font-family: var(--font-sans); font-size: 14px; color: var(--paper-warm); transition: color .4s var(--ease); }
.footer-contact a:hover { color: var(--terra-soft); }
.footer-legal { padding-top: 28px; }
.footer-legal p { font-family: var(--font-sans); font-size: 11.5px; line-height: 1.7; color: var(--metal); }
.footer-disclaimer { margin-top: 12px; max-width: 880px; color: rgba(146,147,149,0.7); }

/* ════════════════════════ REVEAL ANIMATIONS ════════════════════════ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .09s; }
[data-delay="2"] { transition-delay: .18s; }
[data-delay="3"] { transition-delay: .27s; }
[data-delay="4"] { transition-delay: .36s; }
[data-delay="5"] { transition-delay: .45s; }
[data-delay="6"] { transition-delay: .54s; }

/* ════════════════════════ RESPONSIVE ════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .enjeu-grid, .forwho, .carnet-grid, .conseiller-grid { grid-template-columns: 1fr; }
  .domains { grid-template-columns: repeat(2, 1fr); }
  .carnet-object { order: 2; margin-top: 12px; }
  .conseiller-lead { font-size: 19px; }
}

@media (max-width: 560px) {
  .nav-brand-sub { display: none; }
}

@media (max-width: 680px) {
  .strip-inner { flex-wrap: wrap; gap: 28px 0; }
  .strip-item { flex-basis: 50%; }
  .strip-sep { display: none; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split-ch { text-align: left; }
  .split-divider { flex-direction: row; min-height: 0; height: 1px; }
  .split-divider-line { height: 1px; width: 100%; background: linear-gradient(90deg, var(--rule), var(--terra-soft), var(--rule)); }
  .questions { grid-template-columns: 1fr; }
  .domains { grid-template-columns: 1fr; }
  .forwho-list li { grid-template-columns: 1fr; gap: 6px; }
  .pillars-viz { gap: 14px; height: 200px; }
  .cta-reassure { gap: 14px 22px; }
  .footer-inner { flex-direction: column; }
  .footer-contact { text-align: left; }
}

/* grain texture (inlined data-uri, very light) */
:root {
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════════════════════════
   LISIBILITÉ RENFORCÉE — lectorat 55 ans et plus
   (relève les tailles des petits textes sans toucher la mise en page)
   ═══════════════════════════════════════════════════════════════ */
.eyebrow            { font-size: 12px; }
.btn                { font-size: 14.5px; }
.btn-nav            { font-size: 13px; }
.btn-lg             { font-size: 15.5px; }
.nav-links a        { font-size: 14.5px; }
.nav-brand-sub      { font-size: 10.5px; }
.strip-label        { font-size: 13px; }
.section-intro      { font-size: clamp(17px, 1.35vw, 20px); }
.split-flag         { font-size: 12px; }
.split-desc         { font-size: 16.5px; }
.questions li       { font-size: clamp(16px, 1.25vw, 18.5px); }
.gap-statement p    { font-size: clamp(17px, 1.4vw, 20px); }
.enjeu-lead         { font-size: clamp(17px, 1.4vw, 20px); }
.enjeu-figure-label { font-size: 12.5px; }
.enjeu-figure-unit  { font-size: 14px; }
.enjeu-figure-foot  { font-size: 14.5px; }
.domain h3          { font-size: 14px; }
.domain p           { font-size: 16px; }
.pillars-title      { font-size: 12px; }
.pillar-cap         { font-size: 13px; }
.pillar-sub         { font-size: 11px; }
.pillars-foot       { font-size: 14px; }
.forwho-k           { font-size: 12.5px; }
.forwho-v           { font-size: clamp(16px, 1.25vw, 19px); }
.forwho-list li     { padding: 24px 0; }
.carnet-lead        { font-size: clamp(17px, 1.35vw, 20px); }
.carnet-points li   { font-size: 16.5px; }
.carnet-price       { font-size: 13px; margin-top: 16px; }
.cred-k             { font-size: 11.5px; }
.cred-v             { font-size: 16.5px; }
.cta-reassure li    { font-size: 13.5px; }
.cta-lead           { font-size: clamp(17px, 1.4vw, 20px); }
.hero-note          { font-size: 13px; }
.hero-lead          { font-size: clamp(17px, 1.45vw, 21px); }
.footer-tag         { font-size: 12px; }
.footer-nav a       { font-size: 14.5px; }
.footer-contact a   { font-size: 15.5px; }
.footer-legal p     { font-size: 13px; }

/* ── Identité du conseiller ── */
.conseiller-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400; color: #fff; line-height: 1.05;
}
.conseiller-role {
  font-family: var(--font-sans);
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--terra-soft); margin: 12px 0 24px;
}
.conseiller-main .conseiller-lead { margin: 0; }

/* ── Adresse footer ── */
.footer-addr {
  font-family: var(--font-sans);
  font-size: 13px; color: var(--metal); line-height: 1.6; margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   MODALE — DEMANDE D'APPEL
   ═══════════════════════════════════════════════════════════════ */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
}
.modal.open { opacity: 1; pointer-events: auto; }
.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,12,22,0.62);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.modal-panel {
  position: relative;
  width: 100%; max-width: 560px;
  max-height: 92vh; overflow-y: auto;
  background: var(--paper);
  border-top: 4px solid var(--terra);
  box-shadow: 0 40px 90px -30px rgba(0,22,41,0.6);
  padding: clamp(30px, 4.5vw, 52px);
  transform: translateY(18px) scale(0.98);
  transition: transform .5s var(--ease);
}
.modal.open .modal-panel { transform: none; }
.modal-close {
  position: absolute; top: 16px; right: 18px;
  width: 40px; height: 40px;
  background: none; border: 0; cursor: pointer;
  font-size: 30px; line-height: 1; color: var(--metal);
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.modal-close:hover { color: var(--ink); transform: rotate(90deg); }
.modal-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 44px); font-weight: 400; color: var(--ink);
  line-height: 1.05; margin: 16px 0 10px;
}
.modal-intro { font-size: 16.5px; color: var(--ink-soft); margin-bottom: 28px; }

.modal-form .field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.modal-form label {
  display: block;
  font-family: var(--font-sans);
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 8px;
}
.modal-form input,
.modal-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16.5px; color: var(--ink);
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  padding: 13px 15px;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.modal-form textarea { resize: vertical; min-height: 96px; }
.modal-form input:focus,
.modal-form textarea:focus {
  outline: none; border-color: var(--terra); background: #fff;
  box-shadow: 0 0 0 3px rgba(174,127,101,0.15);
}
.modal-form input::placeholder,
.modal-form textarea::placeholder { color: var(--metal); }
.modal-submit { width: 100%; justify-content: center; margin-top: 8px; }
.modal-foot { font-family: var(--font-sans); font-size: 12.5px; color: var(--metal); margin-top: 16px; line-height: 1.6; text-align: center; }

.modal-success { text-align: center; padding: 18px 0 4px; }
.modal-success-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--terra-fade); color: var(--terra-deep);
  font-size: 30px; margin-bottom: 18px;
}
.modal-success h3 { font-family: var(--font-display); font-size: 34px; font-weight: 400; color: var(--ink); margin-bottom: 12px; }
.modal-success p { font-size: 16.5px; color: var(--ink-soft); margin-bottom: 24px; }

@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   LOGO · PORTRAIT · AUDIO
   ═══════════════════════════════════════════════════════════════ */

/* Logo nautile */
.nav-logo { height: 46px; width: auto; display: block; transition: height .5s var(--ease); }
.nav.scrolled .nav-logo { height: 38px; }
.footer-logo { width: 172px; height: auto; display: block; margin-bottom: 16px; }

/* Portrait du conseiller */
.conseiller-body { display: flex; flex-direction: column; }
.conseiller-body .creds { margin-top: 38px; }
.conseiller-portrait { position: relative; margin: 0; align-self: start; }
.conseiller-portrait img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--rule-light);
}
.conseiller-portrait::before {
  content: ''; position: absolute; left: -10px; top: -10px;
  width: 66px; height: 66px;
  border-left: 2px solid var(--terra); border-top: 2px solid var(--terra);
}
.conseiller-portrait figcaption {
  font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--metal-soft);
  margin-top: 18px; line-height: 1.5;
}
.conseiller-portrait figcaption span {
  display: block; font-family: var(--font-display); font-size: 22px;
  letter-spacing: 0.02em; text-transform: none; color: #fff; margin-bottom: 3px;
}

/* Section & lecteur audio */
.audio-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 76px); align-items: center; }
.audio-desc { font-size: clamp(16px, 1.3vw, 19px); margin-top: 22px; }
.audio-player {
  margin: 0; display: flex; align-items: center; gap: 22px;
  background: var(--paper); border: 1px solid var(--rule);
  border-left: 3px solid var(--terra);
  padding: 26px 28px; box-shadow: 0 24px 50px -32px rgba(0,22,41,0.45);
}
.audio-play {
  flex-shrink: 0; width: 60px; height: 60px; border-radius: 50%;
  background: var(--terra); border: 0; cursor: pointer; color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.audio-play:hover { background: var(--terra-deep); transform: scale(1.05); }
.audio-play svg { width: 24px; height: 24px; fill: currentColor; }
.audio-play .ico-pause { display: none; }
.audio-player.playing .ico-play { display: none; }
.audio-player.playing .ico-pause { display: block; }
.audio-meta { flex: 1; min-width: 0; }
.audio-title { font-family: var(--font-sans); font-size: 14px; font-weight: 500; color: var(--ink); display: block; margin-bottom: 14px; }
.audio-track { position: relative; height: 6px; background: var(--paper-deep); border-radius: 3px; cursor: pointer; }
.audio-fill { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: var(--terra); border-radius: 3px; }
.audio-knob { position: absolute; top: 50%; left: 0; width: 15px; height: 15px; border-radius: 50%; background: #fff; border: 2px solid var(--terra); transform: translate(-50%, -50%); box-shadow: 0 2px 6px rgba(0,22,41,0.25); }
.audio-track:focus-visible { outline: 2px solid var(--terra); outline-offset: 5px; }
.audio-times { display: flex; justify-content: space-between; font-family: var(--font-sans); font-size: 12px; color: var(--metal); margin-top: 11px; }

@media (max-width: 1024px) {
  .conseiller-portrait { max-width: 340px; }
}
@media (max-width: 860px) {
  .audio-block { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .audio-player { flex-direction: column; align-items: stretch; text-align: center; gap: 18px; }
  .audio-play { align-self: center; }
}

/* Aperçu du carnet — carrousel */
.preview { margin-top: clamp(56px, 7vw, 92px); }
.preview-head { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 32px; text-align: center; }
.preview-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 3vw, 38px); color: var(--ink); line-height: 1.1; }
.carousel { display: flex; align-items: center; gap: 14px; }
.carousel-track {
  display: flex; gap: clamp(16px, 2.4vw, 28px);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  flex: 1; padding: 14px 4px 10px; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 auto; width: clamp(210px, 26vw, 290px); scroll-snap-align: center; margin: 0; }
.slide img {
  width: 100%; height: auto; display: block; background: #fff;
  border: 1px solid var(--rule);
  box-shadow: 0 26px 50px -28px rgba(0,22,41,0.45);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.slide:hover img { transform: translateY(-4px); box-shadow: 0 34px 60px -28px rgba(0,22,41,0.55); }
.slide figcaption { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--metal); text-align: center; margin-top: 14px; }
.carousel-btn {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--rule); color: var(--ink);
  font-size: 24px; line-height: 1; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.carousel-btn:hover { background: var(--terra); color: #fff; border-color: var(--terra); }
.carousel-dots { display: flex; justify-content: center; gap: 9px; margin-top: 22px; }
.carousel-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--metal-soft); border: 0; padding: 0; cursor: pointer; transition: background .35s var(--ease), transform .35s var(--ease); }
.carousel-dots .dot.active { background: var(--terra); transform: scale(1.3); }

@media (max-width: 680px) {
  .carousel-btn { display: none; }
  .slide { width: 78vw; }
}

/* ════════════════════════ ACTUS & RESSOURCES ════════════════════════ */
.actus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.actu-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.actu-card:hover { transform: translateY(-5px); box-shadow: 0 30px 56px -30px rgba(0,22,41,0.5); }
.actu-thumb { display: block; aspect-ratio: 1200 / 630; overflow: hidden; background: var(--ink); }
.actu-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.actu-card:hover .actu-thumb img { transform: scale(1.04); }
.actu-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.actu-meta {
  font-family: var(--font-sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--terra-deep);
  display: flex; gap: 14px; align-items: center; margin-bottom: 14px;
}
.actu-meta span { display: inline-flex; align-items: center; }
.actu-meta span + span::before { content: '·'; margin-right: 14px; color: var(--metal); }
.actu-title { font-family: var(--font-display); font-size: 26px; font-weight: 400; line-height: 1.18; color: var(--ink); margin-bottom: 12px; }
.actu-title a { color: inherit; text-decoration: none; }
.actu-title a:hover { color: var(--terra-deep); }
.actu-excerpt { font-family: var(--font-body); font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 22px; }
.actu-links { margin-top: auto; display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.actu-link {
  font-family: var(--font-sans); font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--ink); display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--terra); padding-bottom: 3px; transition: color .35s var(--ease), gap .35s var(--ease);
}
.actu-link:hover { color: var(--terra-deep); gap: 12px; }
.actu-link.muted { color: var(--ink-soft); border-bottom-color: var(--rule); }
.actu-link.muted:hover { color: var(--ink); border-bottom-color: var(--terra); }
@media (max-width: 680px) {
  .actus-grid { grid-template-columns: 1fr; gap: 20px; }
}
