/* ════════════════════════════════════════════════════════════════
   NY Perspectives · Maquette V1 · Design system partagé
   Architecture inspirée cepi.fr · Palette bleu nuit + sauge pastel
   À utiliser sur toutes les pages du dossier mockup-nyperspectives/
═══════════════════════════════════════════════════════════════════ */

:root {
  /* ── PALETTE PRINCIPALE ─────────────────────────────────────── */
  --p:        #1E3A5F;   /* bleu nuit — primaire, autorité B2B     */
  --p-h:      #2A4D7A;   /* hover                                  */
  --p-d:      #142840;   /* foncé — bandeaux, accents forts        */
  --p-dd:     #0B1A2E;   /* très foncé — footer                    */
  --p-l:      #DCE7F2;   /* bleu pastel clair — fonds              */
  --p-ll:     #EEF4FA;   /* très clair — alt section               */
  --p-bord:   #C6D6E6;   /* bordure bleue douce                    */

  /* ── ACCENT SAUGE (vert pastel humain) ──────────────────────── */
  --s:        #7FB39E;   /* sauge — accent doux                    */
  --s-h:      #6FA28D;
  --s-d:      #4F8472;   /* sauge foncé — texte sur clair          */
  --s-l:      #DAE9E2;   /* sauge pastel — fond léger              */
  --s-ll:     #EBF3EF;

  /* ── ACCENT OR (rappel charte historique, à dose homéopathique) */
  --gold:     #C9A84C;
  --gold-l:   #E8D89A;

  --dark:     #14202E;
  --dark-2:   #25364A;
  --white:    #ffffff;
  --gray:     #F6F8FB;   /* gris très légèrement bleuté            */
  --text:     #1A2433;
  --muted:    #5F6E80;
  --border:   #E2E8EF;

  --mw:       1260px;
  --radius:   0;          /* coins droits — signature premium       */
  --radius-s: 2px;

  /* ── DÉGRADÉS ──────────────────────────────────────────────── */
  --grad-hero:    linear-gradient(125deg, #142840 0%, #1E3A5F 55%, #2A4D7A 100%);
  --grad-hero-l:  linear-gradient(160deg, #EEF4FA 0%, #DCE7F2 55%, #C6D6E6 100%);
  --grad-deep:    linear-gradient(135deg, #0B1A2E 0%, #1E3A5F 60%, #2A4D7A 100%);
  --grad-sage:    linear-gradient(145deg, #EBF3EF 0%, #DAE9E2 100%);
  --grad-card:    linear-gradient(180deg, #ffffff 0%, #F6F8FB 100%);

  /* ── OMBRES douces ─────────────────────────────────────────── */
  --sh-card:      0 6px 22px -10px rgba(30, 58, 95, 0.18);
  --sh-card-hov:  0 22px 52px -18px rgba(30, 58, 95, 0.30);
  --sh-img:       0 35px 70px -28px rgba(11, 26, 46, 0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text); background: #fff; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 500; letter-spacing: -.015em; }

.wrap { max-width: var(--mw); margin: 0 auto; padding: 0 3rem; }

/* ── Justification globale des paragraphes ──────────────────── */
.section p,
.page-hd p,
.cta-text p,
.faq-a,
.foot-about,
.card p,
.card-parcours-body p,
.pillar p,
.manifesto p,
.txt-img p,
.contact-info p { text-align: left; }

/* ── Badge maquette (référence bloc boilerplate) ────────────── */
.btag {
  display: none !important;
  position: absolute; top: .6rem; right: .6rem; z-index: 99;
  background: rgba(30, 58, 95, .92); color: #fff;
  font-size: .5rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; padding: .28rem .8rem; border-radius: 2rem;
  pointer-events: none; font-family: 'Inter', sans-serif;
}
.btag-new { background: rgba(201, 168, 76, .95) !important; color: var(--p-dd); }

/* ════════════════════════════════════════════════════════════
   BOUTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .95rem 2.1rem; font-weight: 600; font-size: .88rem;
  letter-spacing: .005em; border: 1.5px solid transparent;
  transition: all .25s ease; border-radius: var(--radius);
  font-family: inherit; cursor: pointer; text-decoration: none;
}
.btn-p   { background: var(--p); color: #fff; }
.btn-p:hover { background: var(--p-h); transform: translateY(-1px); box-shadow: var(--sh-card); }
.btn-s   { background: var(--s); color: var(--p-dd); }
.btn-s:hover { background: var(--s-h); }
.btn-wh  { background: #fff; color: var(--p); }
.btn-wh:hover { background: var(--p-ll); }
.btn-ow-wh { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ow-wh:hover { background: rgba(255,255,255,.10); border-color: #fff; }
.btn-ow-p { background: transparent; color: var(--p); border-color: var(--p); }
.btn-ow-p:hover { background: var(--p); color: #fff; }
.btn-ow-s { background: transparent; color: var(--s-d); border-color: var(--s); }
.btn-ow-s:hover { background: var(--s); color: var(--p-dd); }
.btn-gold { background: var(--gold); color: var(--p-dd); }
.btn-gold:hover { background: #b89740; }
.arr::after { content: ' →'; transition: transform .25s; }
.btn:hover .arr::after, .arr:hover::after { transform: translateX(3px); }

/* ════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════ */
.navbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 3rem;
}
.navbar.solid {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.45rem; font-weight: 500; color: #fff;
  letter-spacing: -.02em;
}
.logo em { font-style: italic; color: var(--s); font-weight: 400; }
.navbar.solid .logo { color: var(--p); }

.nav-links {
  display: flex; list-style: none; gap: 2rem; align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,.88); font-size: .85rem; font-weight: 500;
  transition: color .2s; position: relative;
}
.navbar.solid .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--s-l); }
.navbar.solid .nav-links a:hover { color: var(--p); }
.nav-links a.active { color: var(--s-l); }
.navbar.solid .nav-links a.active { color: var(--p); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 1.5px; background: currentColor;
}
.nav-cta {
  background: var(--s) !important; color: var(--p-dd) !important;
  padding: .65rem 1.4rem; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--s-h) !important; }

/* ── Burger ─────────────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 44px; height: 44px;
  background: none; border: none; cursor: pointer; padding: 0;
  flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.88); border-radius: 1px;
  transition: transform .25s, opacity .2s;
}
.navbar.solid .nav-burger span { background: var(--p); }

/* ── Panneau mobile ─────────────────────────────────────── */
.mobile-panel {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  flex-direction: column;
  background: var(--p-dd);
  overflow-y: auto;
}
.mobile-panel.open { display: flex; }
.mobile-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}
.logo-mobile { font-family: 'Fraunces', serif; font-size: 1.35rem; font-weight: 500; color: #fff; letter-spacing: -.02em; }
.logo-mobile em { font-style: italic; color: var(--s); font-weight: 400; }
.nav-close {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: none; border: none; cursor: pointer;
  position: relative; flex-shrink: 0;
}
.nav-close span {
  display: block; position: absolute; width: 20px; height: 2px;
  background: rgba(255,255,255,.75); border-radius: 1px;
}
.nav-close span:first-child { transform: rotate(45deg); }
.nav-close span:last-child  { transform: rotate(-45deg); }
.mobile-panel-links {
  list-style: none; padding: 1.5rem 1.5rem 0; display: flex; flex-direction: column;
}
.mobile-panel-links li { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-panel-links a {
  display: block; padding: 1.1rem 0;
  font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 400;
  color: rgba(255,255,255,.88); transition: color .2s;
}
.mobile-panel-links a:hover { color: var(--s-l); }
.mobile-panel-links a.active { color: var(--s-l); }
.mobile-panel-cta {
  padding: 2rem 1.5rem; margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-panel-cta .btn { width: 100%; justify-content: center; }

/* ════════════════════════════════════════════════════════════
   EYEBROWS & HEADINGS
═══════════════════════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: 'Inter', sans-serif;
  font-size: .72rem; font-weight: 600; letter-spacing: .25em;
  text-transform: uppercase; color: var(--s-d);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--s); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ''; width: 32px; height: 1px; background: var(--s); }
.eyebrow.light { color: var(--s-l); }
.eyebrow.light::before, .eyebrow.light::after { background: var(--s-l); }
.eyebrow.gold { color: var(--gold); }
.eyebrow.gold::before, .eyebrow.gold::after { background: var(--gold); }

.section-head {
  text-align: center; max-width: 780px; margin: 0 auto 4rem;
}
.section-head h2,
h2.h-sec {
  font-size: clamp(2rem, 3.4vw, 2.9rem); font-weight: 500;
  line-height: 1.18; margin-bottom: 1.2rem;
}
.section-head h2 em,
h2.h-sec em { font-style: italic; color: var(--p); font-weight: 400; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-head.light h2 { color: #fff; }
.section-head.light h2 em { color: var(--s-l); }
.section-head.light p { color: rgba(255,255,255,.78); }

/* ════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 88vh;
  overflow: hidden; display: flex; align-items: center;
}
.hero.dark  { background: var(--grad-hero); color: #fff; }
.hero.light { background: var(--grad-hero-l); }
.hero.compact { min-height: 62vh; }

/* Texture subtile sur hero dark */
.hero.dark::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(127, 179, 158, .18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(201, 168, 76, .08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-wrap {
  position: relative; z-index: 2;
  max-width: var(--mw); margin: 0 auto; width: 100%;
  padding: 9rem 3rem 5rem;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem;
  align-items: center;
}
.hero.compact .hero-wrap { padding-top: 8rem; padding-bottom: 4rem; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: 'Inter', sans-serif;
  font-size: .7rem; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; margin-bottom: 2rem;
}
.hero-eyebrow::before { content: ''; width: 38px; height: 1px; background: var(--s); }
.hero.dark .hero-eyebrow { color: var(--s-l); }
.hero.light .hero-eyebrow { color: var(--s-d); }

.hero-h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem); font-weight: 400;
  line-height: 1.05; letter-spacing: -.03em; margin-bottom: 1.8rem;
}
.hero-h1 em {
  font-style: italic; color: var(--s); font-weight: 300;
}
.hero.light .hero-h1 em { color: var(--p); }

.hero-sub {
  font-size: 1.1rem; max-width: 34rem; margin-bottom: 2.5rem;
  line-height: 1.7; font-weight: 400;
}
.hero.dark  .hero-sub { color: rgba(255,255,255,.82); }
.hero.light .hero-sub { color: var(--muted); }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* Image hero — frame asymétrique */
.hero-media {
  position: relative; height: 560px;
}
.hero-media-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  box-shadow: var(--sh-img);
}
/* cadre or décalé */
.hero-media::before {
  content: ''; position: absolute;
  top: -24px; left: -24px; width: 100%; height: 100%;
  border: 1.5px solid var(--gold);
  z-index: 0; opacity: .55;
}
.hero.compact .hero-media { height: 380px; }

/* Ligne d'horizon (sauge) bas hero */
.hero-line {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--s); z-index: 3;
}

/* ════════════════════════════════════════════════════════════
   PAGE HEADER (sous-pages)
═══════════════════════════════════════════════════════════════ */
.page-hd {
  position: relative; background: var(--grad-deep); color: #fff;
  padding: 7rem 0 5rem; overflow: hidden;
}
.page-hd::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 30%, rgba(127, 179, 158, .22) 0%, transparent 60%);
}
.page-hd-wrap {
  max-width: 900px; margin: 0 auto; padding: 0 3rem;
  position: relative; z-index: 2; text-align: center;
}
.page-hd h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem); font-weight: 400;
  line-height: 1.1; margin-bottom: 1.25rem;
}
.page-hd h1 em { font-style: italic; color: var(--s-l); font-weight: 300; }
.page-hd p {
  font-size: 1.15rem; color: rgba(255,255,255,.82);
  max-width: 720px; margin: 0 auto; line-height: 1.65;
}
.breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--s-l); margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: var(--s-l); }

/* ════════════════════════════════════════════════════════════
   RIBBON (bandeau de transition)
═══════════════════════════════════════════════════════════════ */
.ribbon {
  background: var(--p-d); position: relative; color: #fff;
}
.ribbon-inner {
  max-width: var(--mw); margin: 0 auto;
  padding: 2.5rem 3rem;
  display: grid; grid-template-columns: 1fr auto; gap: 2rem;
  align-items: center;
}
.ribbon-inner p {
  font-size: 1rem; color: rgba(255,255,255,.85); line-height: 1.65;
  max-width: 52rem;
}
.ribbon-inner p strong { color: var(--s-l); font-weight: 600; }
.ribbon-link {
  display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap;
  font-size: .78rem; font-weight: 600; color: #fff; font-family: 'Inter', sans-serif;
  text-transform: uppercase; letter-spacing: .14em;
  border: 1px solid rgba(255,255,255,.4); padding: .8rem 1.5rem;
  transition: all .25s; border-radius: var(--radius);
}
.ribbon-link::after { content: ' →'; }
.ribbon-link:hover { border-color: var(--s); background: var(--s); color: var(--p-dd); }

/* ════════════════════════════════════════════════════════════
   SECTIONS GÉNÉRIQUES
═══════════════════════════════════════════════════════════════ */
.section { padding: 6.5rem 0; position: relative; }
.section.tight { padding: 4rem 0; }
.section.bg-white   { background: #fff; }
.section.bg-gray    { background: var(--gray); }
.section.bg-blue-l  { background: var(--p-ll); }
.section.bg-blue-ll { background: var(--p-l); }
.section.bg-sage-l  { background: var(--s-ll); }
.section.bg-dark    { background: var(--dark); color: #fff; padding: 3rem 0;}
.section.bg-dark .eyebrow { margin-bottom: 3rem !important; }
.section.bg-grad-deep { background: var(--grad-deep); color: #fff; overflow: hidden; }
.section.bg-grad-sage { background: var(--grad-sage); }
.section.bg-grad-deep::before {
  content: ''; position: absolute;
  top: 0; right: 0; width: 55%; height: 100%;
  background: radial-gradient(ellipse at right, rgba(127, 179, 158, .22) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Section éditoriale — fond subtil pour intro blanches ── */
/*    Usage : ajouter la classe bg-editorial sur une .section  */
.section.bg-editorial {
  background:
    radial-gradient(circle at 12% 30%, rgba(127, 179, 158, .22) 0%, transparent 42%),
    radial-gradient(circle at 85% 70%, rgba(30, 58, 95, .10)   0%, transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f0f7f4 50%, #ffffff 100%);
  overflow: hidden;
}
/* Filigrane typographique — presque invisible, richesse de fond */
.section.bg-editorial::before {
  content: 'NY Perspectives';
  position: absolute;
  right: 3rem; bottom: 1.5rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(56px, 8vw, 120px);
  font-style: italic; font-weight: 300;
  color: rgba(127, 179, 158, .10);
  pointer-events: none; white-space: nowrap;
  z-index: 0; line-height: 1; letter-spacing: -.02em;
  user-select: none;
}
/* Élévation du contenu au-dessus du pseudo-élément */
.section.bg-editorial > .wrap { position: relative; z-index: 1; }
/* Mobile : filigrane masqué pour ne pas déborder */
@media (max-width: 640px) {
  .section.bg-editorial::before { display: none; }
}

/* ── Engagement au long cours — section fusionnée ───────── */
#engagement { padding: 5rem 0; }           /* légèrement moins de padding vertical que les 6.5rem par défaut */
.engagement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.engagement-left .eyebrow { margin-bottom: 1.75rem; }
.engagement-left p {
  color: var(--p-m, #3a5070);             /* légèrement plus soutenu que --muted pour équilibrer le bloc blanc */
  font-size: 1.02rem;
  line-height: 1.95;
  margin-top: 1.1rem;
}
.engagement-right {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 28px rgba(30, 58, 95, .07);
  padding: 2.5rem 2.25rem;
}
.engagement-quote {
  margin: 0 0 2rem;
  padding: .25rem 0 .25rem 1.5rem;
  border-left: 4px solid var(--s);
  position: relative;
}
.engagement-quote p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-style: italic;
  font-weight: 300;
  color: var(--p);
  line-height: 1.65;
  margin: 0;
  text-align: left;
}
.engagement-quote p em {
  color: var(--s-d);
  font-style: italic;
  font-weight: 400;                       /* légèrement plus pesant pour "courage" */
}
.engagement-rebonds {
  padding-top: 1.75rem;
  border-top: 1px solid var(--s-l);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.engagement-rebonds img { max-width: 130px; height: auto; }
.engagement-rebonds h3 { font-size: .98rem; color: var(--p); margin: 0; line-height: 1.45; }
.engagement-rebonds p { color: var(--muted); font-size: .9rem; line-height: 1.8; margin: 0; text-align: left; }
@media (max-width: 800px) {
  #engagement { padding: 4rem 0; }
  .engagement-grid { grid-template-columns: 1fr; gap: 2rem; }
  .engagement-quote p { font-size: clamp(1.2rem, 5vw, 1.4rem); }
}

/* ── text-image alternable ───────────────────────────────── */
.txt-img {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.txt-img.reverse .txt-img-media { order: -1; }
.txt-img h2, .txt-img h3 {
  font-size: clamp(1.8rem, 2.9vw, 2.4rem); font-weight: 500;
  line-height: 1.18; margin-bottom: 1.3rem;
}
.txt-img h2 em, .txt-img h3 em { font-style: italic; color: var(--p); font-weight: 400; }
.txt-img p { color: var(--muted); margin-bottom: 1.1rem; font-size: 1.02rem; }
.txt-img-media {
  position: relative; height: 500px;
  box-shadow: var(--sh-img);
}
.txt-img-media img { width: 100%; height: 100%; object-fit: cover; }
/* cadre sauge décalé */
.txt-img-media::after {
  content: ''; position: absolute;
  bottom: -22px; right: -22px; width: 60%; height: 60%;
  border: 1.5px solid var(--s); z-index: -1;
}
.txt-img.reverse .txt-img-media::after {
  bottom: -22px; right: auto; left: -22px;
  border-color: var(--gold); opacity: .65;
}
/* Variante portrait — colonne image réduite */
.txt-img--portrait { grid-template-columns: 1.4fr 0.72fr; }

/* ════════════════════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════════════════════ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.card {
  background: #fff; padding: 2.75rem 2.25rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--s);
  transition: all .28s; position: relative;
  border-radius: var(--radius);
  display: flex; flex-direction: column;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-card-hov);
  border-top-color: var(--p);
}
.card .card-num {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem; font-weight: 300; font-style: italic;
  color: var(--s-d); line-height: 1; margin-bottom: 1.25rem;
}
.card h3 {
  font-size: 1.4rem; font-weight: 500; color: var(--p);
  margin-bottom: 1rem; line-height: 1.25;
}
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 1.25rem; flex-grow: 1; }
.card ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.card ul li {
  font-size: .9rem; color: var(--text); padding: .4rem 0 .4rem 1.5rem;
  position: relative; line-height: 1.5;
}
.card ul li::before {
  content: '→'; position: absolute; left: 0; top: .4rem;
  color: var(--s-d); font-weight: 600;
}
.card-link {
  font-size: .78rem; font-weight: 600; color: var(--p);
  text-transform: uppercase; letter-spacing: .12em; font-family: 'Inter', sans-serif;
  border-bottom: 1.5px solid var(--s); padding-bottom: .35rem;
  display: inline-block; align-self: flex-start; transition: color .2s;
}
.card-link::after { content: ' →'; }
.card-link:hover { color: var(--p-h); }

/* Card variante "parcours" — plus visuelle (cepi-like) */
.card-parcours {
  background: #fff; border: 1px solid var(--border);
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  transition: all .3s;
}
.card-parcours:hover { box-shadow: var(--sh-card-hov); transform: translateY(-4px); }
.card-parcours-img {
  height: 200px; background-size: cover; background-position: center;
  position: relative;
}
.card-parcours-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 26, 46, .55) 100%);
}
.card-parcours-tag {
  position: absolute; top: 1.25rem; left: 1.25rem; z-index: 2;
  background: var(--s); color: var(--p-dd);
  font-family: 'Inter', sans-serif;
  font-size: .68rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; padding: .4rem .9rem;
}
.card-parcours-body { padding: 2rem 2rem 2.25rem; flex-grow: 1; display: flex; flex-direction: column; }
.card-parcours-body h3 {
  font-size: 1.5rem; font-weight: 500; color: var(--p);
  margin-bottom: .9rem; line-height: 1.2;
}
.card-parcours-body p { color: var(--muted); font-size: .95rem; margin-bottom: 1.5rem; flex-grow: 1; }

/* ════════════════════════════════════════════════════════════
   STATS / ADN
═══════════════════════════════════════════════════════════════ */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,.12);
  position: relative; z-index: 2;
}
.stat { background: transparent; padding: 2.75rem 1.5rem; text-align: center; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.6rem, 4.2vw, 3.6rem); font-weight: 400;
  color: #fff; line-height: 1; margin-bottom: .75rem; letter-spacing: -.02em;
}
.stat-num small {
  font-size: 1.5rem; color: var(--s-l); font-weight: 400; margin-left: .2rem;
  font-family: 'Fraunces', serif; font-style: italic;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: .82rem; color: rgba(255,255,255,.82);
  text-transform: uppercase; letter-spacing: .14em; font-weight: 500;
}
.stats-foot {
  margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.stats-foot-item {
  display: flex; align-items: center; gap: .8rem;
  color: rgba(255,255,255,.9); font-size: .9rem; font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.stats-foot-item::before {
  content: '✓'; width: 26px; height: 26px;
  background: var(--s); color: var(--p-dd);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .82rem;
}
/* 5 cartes centrées (3+2) — signaux CODIR */
.cards-5-wrap {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem;
}
.cards-5-wrap > .card {
  flex: 1 1 calc(33.333% - 1.5rem); min-width: 260px; max-width: 380px;
}

/* Repères éditoriaux — label au-dessus de la valeur principale */
.stats-grid--reperes .stat-label {
  margin-bottom: .5rem;
}
.stats-grid--reperes .stat-num {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .stats-grid--reperes .stat {
    padding: 2rem 1.5rem;
  }
}

/* ════════════════════════════════════════════════════════════
   LOGOS CLIENTS
═══════════════════════════════════════════════════════════════ */
.logos-strip {
  background: #fff; padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}
.logos-strip-head {
  text-align: center; font-family: 'Inter', sans-serif;
  font-size: .75rem; font-weight: 600; letter-spacing: .25em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 2.2rem;
}
.logos-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 2rem;
  align-items: center; justify-items: center;
}
.logo-item {
  font-family: 'Fraunces', serif; font-style: italic;
  color: #95a3b5; font-size: 1.4rem; font-weight: 500;
  letter-spacing: -.01em;
  opacity: .8; transition: opacity .25s;
  text-align: center;
}
.logo-item:hover { opacity: 1; color: var(--p); }

/* ════════════════════════════════════════════════════════════
   PILLIERS / VALEURS (3 piliers texte avec gros chiffre)
═══════════════════════════════════════════════════════════════ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.pillar { position: relative; padding-top: 1rem; }
.pillar-num {
  font-family: 'Fraunces', serif;
  font-size: 5rem; font-weight: 300; font-style: italic;
  color: var(--s); line-height: .85;
  position: absolute; top: -2rem; left: -1rem; opacity: .25; z-index: 0;
}
.pillar h3 {
  font-size: 1.55rem; font-weight: 500; color: var(--p);
  margin-bottom: 1rem; position: relative; z-index: 1;
}
.pillar p { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.pillar.on-dark h3 { color: #fff; }
.pillar.on-dark p { color: rgba(255,255,255,.78); }
.pillar.on-dark .pillar-num { color: var(--s-l); }

/* ════════════════════════════════════════════════════════════
   MANIFESTE / CITATION
═══════════════════════════════════════════════════════════════ */
.manifesto {
  max-width: 880px; margin: 0 auto; text-align: center;
  padding: 1rem 0;
}
.manifesto-mark {
  font-family: 'Fraunces', serif;
  font-size: 6rem; line-height: .5; color: var(--s);
  font-style: italic; font-weight: 300; margin-bottom: 1.5rem;
}
.manifesto blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 400; font-style: italic;
  color: var(--p); line-height: 1.4; margin-bottom: 2rem;
}
.manifesto cite {
  font-family: 'Inter', sans-serif; font-style: normal;
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.manifesto.light blockquote { color: #fff; }
.manifesto.light cite { color: var(--s-l); }
.manifesto.light .manifesto-mark { color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   TÉMOIGNAGES
═══════════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem;
  position: relative; z-index: 2;
}
.testi {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  padding: 2.5rem 2.25rem; position: relative;
  border-radius: var(--radius);
}
.testi::before {
  content: '"'; position: absolute; top: .5rem; left: 1.5rem;
  font-size: 4.5rem; line-height: 1; color: var(--s);
  font-family: 'Fraunces', serif; font-style: italic;
}
.testi.light {
  background: #fff; border-color: var(--border);
  box-shadow: var(--sh-card);
}
.testi p {
  color: rgba(255,255,255,.9); font-size: .96rem; line-height: 1.7;
  margin: 2rem 0 1.5rem; font-family: 'Fraunces', serif; font-style: italic;
  font-weight: 400;
}
.testi.light p { color: var(--text); }
.testi-foot {
  display: flex; align-items: center; gap: .9rem;
  padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.12);
}
.testi.light .testi-foot { border-color: var(--border); }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--p-l); color: var(--p); font-family: 'Fraunces', serif;
  display: flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: 1rem;
}
.testi-name { color: #fff; font-weight: 600; font-size: .92rem; font-family: 'Inter', sans-serif; }
.testi.light .testi-name { color: var(--text); }
.testi-role { color: rgba(255,255,255,.65); font-size: .78rem; margin-top: .15rem; font-family: 'Inter', sans-serif; }
.testi.light .testi-role { color: var(--muted); }

/* ════════════════════════════════════════════════════════════
   TÉMOIGNAGES ÉDITORIAUX (page temoignages.html)
   Un item = portrait + identité à gauche / texte long à droite
═══════════════════════════════════════════════════════════════ */
.temoignage-list { display: flex; flex-direction: column; }

.temoignage-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4.5rem;
  align-items: start;
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border);
}
.temoignage-item:last-child { border-bottom: none; }

.temoignage-portrait { position: sticky; top: 2rem; }
.temoignage-portrait-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: 1px solid var(--border);
  box-shadow: var(--sh-card);
  filter: grayscale(15%);
}
.temoignage-identity {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 2px solid var(--s);
}
.temoignage-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.18rem; font-weight: 500; color: var(--p);
  line-height: 1.25;
}
.temoignage-role {
  font-family: 'Inter', sans-serif;
  font-size: .82rem; color: var(--muted);
  margin-top: .4rem; line-height: 1.6;
}

.temoignage-body { padding-top: .5rem; }
.temoignage-quote-mark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 5.5rem; line-height: .55;
  color: var(--s); font-style: italic; font-weight: 300;
  display: block; margin-bottom: 1.5rem;
  user-select: none;
}
.temoignage-body p {
  font-size: .97rem; line-height: 1.75;  /* légèrement réduit pour fluidité */
  color: var(--text); margin-bottom: 1.15rem;
  text-align: justify;
}
.temoignage-body p:last-child { margin-bottom: 0; }

/* Phrase forte — exergue sobre */
.temoignage-exergue {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.08rem; font-style: italic; font-weight: 400;
  color: var(--p); line-height: 1.65;
  padding: 1.1rem 1.5rem;
  border-left: 3px solid var(--s);
  background: var(--s-ll);
  margin: 1.5rem 0;
  text-align: left;
}

/* Clone JS affiché avant le bouton quand replié */
.temoignage-exergue--preview {
  /* hérite tous les styles de .temoignage-exergue */
  margin-bottom: 0;
}

/* ─── Collapse : sans JS tout le contenu est visible ─── */
.temoignage-collapse {
  overflow: hidden;
  transition: max-height .45s ease, opacity .32s ease;
}
/* ─── Quand JS est chargé : on scelle l'état initial ─── */
.js-ready .temoignage-collapse {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
.js-ready .temoignage-collapse.open {
  max-height: 4000px;
  opacity: 1;
  pointer-events: auto;
}

/* Bouton "Lire la suite / Fermer" */
.temoignage-toggle {
  display: inline-flex; align-items: center; gap: .45rem;
  background: none; border: none; padding: .25rem 0; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: .78rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--s-d);
  margin-top: .75rem;
  transition: color .2s;
}
.temoignage-toggle::after { content: ' ↓'; }
.temoignage-toggle[aria-expanded="true"]::after { content: ' ↑'; }
.temoignage-toggle:hover { color: var(--p); }
.temoignage-toggle:focus-visible {
  outline: 2px solid var(--s);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .temoignage-item { grid-template-columns: 1fr; gap: 2rem; }
  .temoignage-portrait {
    position: static;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1.5rem;
    align-items: center;
  }
  .temoignage-identity { margin-top: 0; border-top: none; padding-top: 0; border-left: 2px solid var(--s); padding-left: 1rem; }
  .temoignage-toggle { font-size: .82rem; min-height: 44px; }
}
@media (max-width: 640px) {
  .temoignage-item { padding: 3rem 0; gap: 1.5rem; }
  .temoignage-portrait { grid-template-columns: 90px 1fr; gap: 1rem; }
  .temoignage-quote-mark { font-size: 3.5rem; }
  .temoignage-body p { font-size: .95rem; }
  .temoignage-exergue { font-size: 1rem; padding: 1rem 1.25rem; }
  .temoignage-toggle { min-height: 44px; }
}

/* ════════════════════════════════════════════════════════════
   FAQ ACCORDÉON
═══════════════════════════════════════════════════════════════ */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.8fr; gap: 5rem; align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.6rem 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  font-family: 'Fraunces', serif;
  font-size: 1.15rem; font-weight: 500; color: var(--p); cursor: pointer; line-height: 1.4;
}
.faq-q::after {
  content: '+'; flex-shrink: 0; width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--s); color: var(--s-d);
  font-size: 1.2rem; font-weight: 400; transition: all .22s;
  font-family: 'Inter', sans-serif;
}
.faq-item.open .faq-q::after { content: '−'; background: var(--s); color: var(--p-dd); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s, margin .35s;
  color: var(--muted); font-size: .98rem; line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 600px; margin-top: 1rem; }

/* ════════════════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════════════════ */
.cta-final { position: relative; overflow: hidden; }
.cta-final.deep   { background: var(--grad-deep); }
.cta-final.sage   { background: var(--grad-sage); }
.cta-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  align-items: stretch; min-height: 480px;
}
.cta-text { padding: 5rem 3rem 5rem 0; max-width: 600px; margin-left: auto; align-self: center; }
.cta-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.9rem); font-weight: 500;
  color: #fff; line-height: 1.1; margin-bottom: 1.5rem;
}
.cta-final.sage .cta-text h2 { color: var(--p); }
.cta-text h2 em { font-style: italic; color: var(--s-l); font-weight: 400; }
.cta-final.sage .cta-text h2 em { color: var(--p-h); }
.cta-text p {
  color: rgba(255,255,255,.86); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.7;
}
.cta-final.sage .cta-text p { color: var(--muted); }
.cta-media {
  position: relative; min-height: 480px;
  background-size: cover; background-position: center;
}
.cta-media::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--p-dd) 0%, transparent 35%);
  opacity: .4;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
footer {
  background: var(--p-dd); color: rgba(255,255,255,.72);
  padding: 4.5rem 0 2rem;
}
.foot-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem;
}
.foot-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem; font-weight: 500; color: #fff; margin-bottom: 1.2rem;
}
.foot-logo em { font-style: italic; color: var(--s); font-weight: 400; }
.foot-about { font-size: .92rem; line-height: 1.7; max-width: 24rem; margin-bottom: 1.2rem; }
.foot-address {
  font-size: .85rem; line-height: 1.6; color: rgba(255,255,255,.55);
  border-left: 2px solid var(--s); padding-left: .9rem;
}
.foot-col h4 {
  font-family: 'Inter', sans-serif;
  color: #fff; font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em; margin-bottom: 1.3rem;
}
.foot-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.foot-col a { font-size: .9rem; transition: color .2s; }
.foot-col a:hover { color: var(--s-l); }
.foot-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .8rem; font-family: 'Inter', sans-serif;
}

/* Newsletter inline */
.newsletter {
  background: var(--p-d); padding: 3rem 0; color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.newsletter-inner {
  max-width: var(--mw); margin: 0 auto; padding: 0 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.newsletter h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem; font-weight: 500; color: #fff;
  line-height: 1.3; margin-bottom: .35rem;
}
.newsletter h3 em { font-style: italic; color: var(--s-l); font-weight: 400; }
.newsletter p { color: rgba(255,255,255,.7); font-size: .92rem; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1; padding: 1rem 1.2rem; border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.05); color: #fff; font-family: inherit; font-size: .92rem;
  border-radius: 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form button {
  padding: 1rem 1.8rem; border: 0; background: var(--s); color: var(--p-dd);
  font-weight: 600; font-family: inherit; font-size: .88rem; cursor: pointer;
  letter-spacing: .04em; transition: background .2s;
}
.newsletter-form button:hover { background: var(--s-h); }

/* ════════════════════════════════════════════════════════════
   FORM (contact)
═══════════════════════════════════════════════════════════════ */
.form-card {
  background: #fff; padding: 3rem; border: 1px solid var(--border);
  box-shadow: var(--sh-card);
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.form-row { display: flex; flex-direction: column; gap: .5rem; }
.form-row.full { grid-column: 1 / -1; }
.form-row label {
  font-family: 'Inter', sans-serif;
  font-size: .78rem; font-weight: 600; color: var(--p);
  letter-spacing: .08em; text-transform: uppercase;
}
.form-row input, .form-row select, .form-row textarea {
  padding: .95rem 1rem; border: 1px solid var(--border);
  font-family: 'Inter', sans-serif; font-size: .96rem; color: var(--text);
  background: var(--gray); border-radius: 0; transition: all .2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: 0; border-color: var(--p); background: #fff;
  box-shadow: 0 0 0 3px rgba(127, 179, 158, .15);
}
.form-row textarea { resize: vertical; min-height: 140px; }
.form-row small { font-size: .8rem; color: var(--muted); }
.honeypot { position: absolute; left: -9999px; }

/* Contact layout grid */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}

/* Contact infos column */
.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-info-block {
  border-left: 2px solid var(--s); padding-left: 1.2rem;
}
.contact-info-block h4 {
  font-family: 'Inter', sans-serif;
  font-size: .75rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--s-d); margin-bottom: .65rem;
}
/* Liens directs (tél, email, LinkedIn) : Fraunces, lisible */
.contact-info-block > a {
  font-family: 'Fraunces', serif; font-size: 1.1rem;
  color: var(--p); font-weight: 400; line-height: 1.5;
  display: block;
}
.contact-info-block > a:hover { color: var(--s-d); }
/* Texte d'adresse : Inter léger, aéré */
.contact-info-block p {
  font-family: 'Inter', sans-serif; font-size: .875rem;
  color: var(--muted); font-weight: 400; line-height: 1.65;
}
/* Nom du lieu dans une adresse : Fraunces, non gras, accent */
.contact-info-block strong {
  font-family: 'Fraunces', serif; font-size: .975rem;
  color: var(--p); font-weight: 400; display: block; margin-bottom: .15rem;
}
.contact-info-block small {
  display: block; margin-top: .4rem; font-family: 'Inter', sans-serif;
  font-size: .82rem; color: var(--muted); font-weight: 400;
}
/* Label de catégorie d'adresse (Bureau / Siège social, etc.) */
.contact-loc-label {
  display: block; font-family: 'Inter', sans-serif;
  font-size: .72rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--s-d); margin-bottom: .35rem;
}

/* ════════════════════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card {
  background: #fff; border: 1px solid var(--border);
  display: flex; flex-direction: column; transition: all .28s;
}
.blog-card:hover { box-shadow: var(--sh-card-hov); transform: translateY(-4px); }
.blog-card-img {
  height: 220px; background-size: cover; background-position: center;
}
.blog-card-body { padding: 1.8rem 1.75rem 2rem; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card-meta {
  display: flex; gap: 1rem; font-family: 'Inter', sans-serif;
  font-size: .72rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--s-d); margin-bottom: .85rem;
}
.blog-card-meta .dot { color: var(--border); }
.blog-card h3 {
  font-size: 1.25rem; font-weight: 500; color: var(--p);
  margin-bottom: .85rem; line-height: 1.3;
}
.blog-card p { color: var(--muted); font-size: .93rem; flex-grow: 1; margin-bottom: 1.2rem; }
.blog-card .card-link { margin-top: auto; }

.blog-featured {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
  background: #fff; border: 1px solid var(--border); margin-bottom: 4rem;
}
.blog-featured-img { min-height: 420px; background-size: cover; background-position: center; }
.blog-featured-body { padding: 3.5rem 3rem; align-self: center; }
.blog-featured-body h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 500; color: var(--p);
  margin: 1rem 0 1.2rem; line-height: 1.2;
}
.blog-featured-body p { color: var(--muted); font-size: 1rem; margin-bottom: 1.8rem; line-height: 1.7; }

/* ════════════════════════════════════════════════════════════
   ARTICLE INDIVIDUEL (blog-article.html)
═══════════════════════════════════════════════════════════════ */

/* Hero article — bleu nuit, fil d'Ariane + méta auteur/date */
.article-hero {
  background: var(--grad-deep); color: #fff;
  padding: 5.5rem 0 4rem; overflow: hidden; position: relative;
}
.article-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 78% 28%, rgba(127, 179, 158, .18) 0%, transparent 55%);
  pointer-events: none;
}
.article-hero-inner {
  max-width: 860px; margin: 0 auto; padding: 0 3rem;
  position: relative; z-index: 2;
}
.article-hero .breadcrumb { margin-bottom: 1.8rem; }
.article-hero .eyebrow { margin-bottom: 1.1rem; }
.article-hero-h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 400;
  line-height: 1.1; letter-spacing: -.025em; margin-bottom: 1.4rem;
}
.article-hero-h1 em { font-style: italic; color: var(--s-l); font-weight: 300; }
.article-hero-chapo {
  font-size: 1.12rem; color: rgba(255,255,255,.82);
  max-width: 680px; line-height: 1.72; margin-bottom: 1.8rem; font-weight: 400;
}
.article-hero-meta {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  font-family: 'Inter', sans-serif; font-size: .83rem; color: rgba(255,255,255,.65);
}
.article-meta-dot { color: rgba(255,255,255,.3); }

/* Image de couverture — continuité du fond sombre du hero */
.article-cover {
  background: var(--p-dd); padding: 0 0 3.5rem;
  position: relative;
}
.article-cover-inner {
  max-width: 1020px; margin: 0 auto; padding: 0 3rem;
}
.article-cover-img {
  width: 100%; height: auto; max-height: 560px;
  object-fit: cover; display: block;
  box-shadow: 0 30px 60px -20px rgba(11, 26, 46, .50);
}

/* Corps de l'article — colonne centrale ≈ 760px */
.article-body-wrap { background: #fff; padding: 5rem 0 3rem; }
.article-body {
  max-width: 760px; margin: 0 auto; padding: 0 3rem;
  position: relative;
}

/* Paragraphe lead / chapô interne */
.article-lead {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.22rem; font-weight: 400; font-style: italic;
  color: var(--p); line-height: 1.85;
  margin-bottom: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

/* Titres dans le corps */
.article-body h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 500; color: var(--p);
  margin: 3.2rem 0 1.2rem; line-height: 1.18;
}
.article-body h3 {
  font-size: 1.18rem; font-weight: 500; color: var(--p);
  margin: 2.4rem 0 .9rem; line-height: 1.3;
}

/* Paragraphes — lecture confortable, pas de justification forcée */
.article-body p {
  font-size: 1.02rem; line-height: 1.88; color: var(--text);
  margin-bottom: 1.5rem; text-align: left;
}

/* Liens dans le corps */
.article-body a {
  color: var(--p); border-bottom: 1px solid var(--s);
  transition: color .2s, border-color .2s;
}
.article-body a:hover { color: var(--s-d); border-color: var(--s-d); }

/* Citation mise en valeur */
.article-quote {
  border-left: 4px solid var(--s);
  margin: 3rem 0; padding: 1.5rem 2rem;
  background: var(--s-ll);
}
.article-quote p {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(1.12rem, 1.9vw, 1.42rem);
  color: var(--p); line-height: 1.62;
  margin-bottom: 0; text-align: left;
}

/* Listes à puces */
.article-body ul {
  list-style: none; padding: 0; margin: 1.5rem 0 2rem;
}
.article-body ul li {
  font-size: 1rem; color: var(--text); line-height: 1.75;
  padding: .55rem 0 .55rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.article-body ul li:first-child { border-top: 1px solid var(--border); }
.article-body ul li::before {
  content: '→'; position: absolute; left: 0; top: .55rem;
  color: var(--s-d); font-weight: 600; font-size: .9rem;
}

/* Listes numérotées */
.article-body ol {
  list-style: none; padding: 0; margin: 1.5rem 0 2rem;
  counter-reset: article-ol;
}
.article-body ol li {
  counter-increment: article-ol;
  font-size: 1rem; color: var(--text); line-height: 1.75;
  padding: .55rem 0 .55rem 2.4rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.article-body ol li:first-child { border-top: 1px solid var(--border); }
.article-body ol li::before {
  content: counter(article-ol);
  position: absolute; left: 0; top: .5rem;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic; font-size: 1.2rem;
  color: var(--s-d); font-weight: 300;
  line-height: 1;
}

/* Sources / lectures complémentaires */
.article-sources {
  margin-top: 3.5rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.article-sources h3 {
  font-family: 'Inter', sans-serif;
  font-size: .72rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 1rem;
}
.article-sources ul { margin: 0; }
.article-sources ul li {
  font-size: .91rem; color: var(--muted);
  border-bottom: none; border-top: none;
  padding: .3rem 0 .3rem 1.5rem;
}
.article-sources ul li::before { top: .3rem; }
.article-sources a { color: var(--p); border-bottom: 1px solid var(--s-l); }
.article-sources a:hover { color: var(--s-d); }

/* Retour au journal */
.article-back {
  max-width: 760px; margin: 2.5rem auto 0;
  padding: 2rem 3rem 0;
  border-top: 1px solid var(--border);
}
.article-back-link {
  font-family: 'Inter', sans-serif;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  display: inline-flex; align-items: center; gap: .5rem;
  transition: color .2s;
}
.article-back-link:hover { color: var(--p); }

/* CTA bas d'article */
.article-cta-section {
  background: var(--grad-deep); color: #fff;
  padding: 5.5rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.article-cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(127, 179, 158, .22) 0%, transparent 58%);
  pointer-events: none;
}
.article-cta-inner {
  max-width: 680px; margin: 0 auto; padding: 0 3rem;
  position: relative; z-index: 2;
}
.article-cta-eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: 'Inter', sans-serif;
  font-size: .72rem; font-weight: 600; letter-spacing: .25em;
  text-transform: uppercase; color: var(--s-l);
  margin-bottom: 1.4rem;
}
.article-cta-eyebrow::before,
.article-cta-eyebrow::after {
  content: ''; width: 28px; height: 1px; background: var(--s-l);
}
.article-cta-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 400;
  color: #fff; line-height: 1.18; margin-bottom: 1.3rem;
  letter-spacing: -.02em;
}
.article-cta-text {
  color: rgba(255,255,255,.78); font-size: 1.05rem;
  margin-bottom: 2.4rem; line-height: 1.7;
}

/* ── Responsive article ─────────────────────────────────── */
@media (max-width: 1024px) {
  .article-hero-inner,
  .article-cover-inner { max-width: 100%; }
  .article-body,
  .article-back { max-width: 100%; }
}
@media (max-width: 640px) {
  .article-hero { padding: 4rem 0 2.5rem; }
  .article-hero-inner,
  .article-cover-inner,
  .article-body,
  .article-back,
  .article-cta-inner { padding-left: 1.25rem; padding-right: 1.25rem; }
  .article-hero-h1 { font-size: clamp(1.65rem, 7vw, 2.3rem); }
  .article-hero-meta { gap: .5rem; font-size: .78rem; }
  .article-cover { padding-bottom: 2rem; }
  .article-cover-img { max-height: 260px; }
  .article-body-wrap { padding: 3rem 0 2rem; }
  .article-lead { font-size: 1.08rem; margin-bottom: 2rem; padding-bottom: 2rem; }
  .article-body h2 { margin-top: 2.4rem; }
  .article-quote { padding: 1.2rem 1.4rem; margin: 2.2rem 0; }
  .article-quote p { font-size: 1.08rem; }
  .article-back { padding-top: 1.5rem; }
  .article-cta-section { padding: 4rem 0; }
}

/* ════════════════════════════════════════════════════════════
   PROCESS / ÉTAPES (parcours 4 colonnes)
═══════════════════════════════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.step { text-align: center; position: relative; z-index: 1; padding: 0 .5rem; }
.step-num {
  width: 64px; height: 64px; margin: 0 auto 1.5rem;
  background: #fff; border: 1.5px solid var(--s);
  color: var(--p); font-family: 'Fraunces', serif;
  font-weight: 400; font-size: 1.6rem; font-style: italic;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.step h3 {
  font-size: 1.15rem; font-weight: 500; color: var(--p); margin-bottom: .75rem;
}
.step p { color: var(--muted); font-size: .92rem; line-height: 1.6; }
.steps-line {
  position: absolute; top: 32px; left: 8%; right: 8%; height: 1px;
  background: repeating-linear-gradient(to right, var(--s) 0 6px, transparent 6px 14px);
  z-index: 0;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-wrap, .txt-img, .cta-grid, .faq-grid,
  .newsletter-inner, .blog-featured {
    grid-template-columns: 1fr; gap: 2.5rem;
  }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .cards-3, .cards-4, .stats-grid, .testimonials-grid,
  .pillars, .blog-grid, .steps, .logos-row, .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-media, .txt-img-media, .cta-media { height: 380px; min-height: 380px; }
  .cta-text { padding: 4rem 2rem; margin-left: 0; }
  .steps-line { display: none; }
  .blog-featured-body { padding: 2.5rem; }
}
@media (max-width: 640px) {
  .wrap, .navbar, .hero-wrap, .newsletter-inner, .page-hd-wrap { padding-left: 1.25rem; padding-right: 1.25rem; }
  .cards-3, .cards-4, .cards-2, .stats-grid, .testimonials-grid,
  .pillars, .blog-grid, .steps, .logos-row, .form-grid, .foot-grid {
    grid-template-columns: 1fr;
  }
  .ribbon-inner { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
}
