*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --white: #FFFFFF;
  --cream: #FAF7F2;
  --black: #0A0A0A;
  --navy: #1A1A2E;
  --blue: #2D6BE4;
  --grey-light: #F1ECE3;
  --grey-mid: #6A6A6A;
  --nav-h: 73px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--black); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 20px 60px; background: rgba(250,247,242,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(0,0,0,0.06); }
.logo { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--black); text-decoration: none; letter-spacing: -0.2px; }
.logo span { color: var(--blue); }
.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
.nav-links a { font-size: 12px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); text-decoration: none; opacity: 0.58; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-cta { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white) !important; background: var(--black); padding: 9px 20px; border-radius: 2px; opacity: 1 !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--navy) !important; }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; margin: -10px -10px -10px 0; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--black); transition: transform 0.25s ease, opacity 0.15s ease; }
.nav-toggle span + span { margin-top: 6px; }
nav.open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
body.nav-open { overflow: hidden; }

/* STICKY BAR */
.sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; background: var(--black); padding: 14px 60px; display: flex; align-items: center; justify-content: center; transform: translateY(100%); transition: transform 0.4s ease; border-top: 1px solid rgba(255,255,255,0.08); }
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-text { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); }
.sticky-bar-text strong { color: var(--white); font-weight: 400; }
.sticky-bar-cta { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); background: var(--blue); padding: 10px 24px; border-radius: 2px; text-decoration: none; transition: opacity 0.2s; white-space: nowrap; }
.sticky-bar-cta:hover { opacity: 0.85; }

/* HERO */
#hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 130px 60px 100px; background: var(--cream); position: relative; overflow: hidden; }
.hero-title { font-family: var(--font-display); font-size: clamp(30px, 3.6vw, 50px); font-weight: 300; line-height: 1.18; color: var(--black); max-width: 860px; margin-bottom: 28px; }
.hero-title em { font-style: italic; color: var(--navy); }
.hero-subtitle { font-size: 17px; font-weight: 300; color: var(--black); opacity: 0.6; max-width: 580px; line-height: 1.75; margin-bottom: 52px; }
.hero-subtitle--lead { font-size: 19px; opacity: 0.85; margin-bottom: 20px; }
.hero-subtitle--lead strong { font-weight: 600; color: var(--navy); }
.hero-subtitle--mid { margin-bottom: 20px; }
.hero-subtitle--close { font-family: var(--font-display); font-size: clamp(19px, 2vw, 24px); font-style: italic; opacity: 1; margin-bottom: 52px; }
.hero-subtitle--close strong { font-weight: 400; color: var(--navy); }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary { display: inline-block; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); background: var(--black); padding: 14px 32px; border-radius: 2px; text-decoration: none; transition: background 0.2s; }
.btn-primary:hover { background: var(--navy); }
.btn-ghost { display: inline-block; font-size: 13px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); opacity: 0.62; text-decoration: none; padding: 14px 0; border-bottom: 1px solid currentColor; transition: opacity 0.2s; }
.btn-ghost:hover { opacity: 1; }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); background: transparent; border: 1px solid rgba(0,0,0,0.25); padding: 13px 26px; border-radius: 2px; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }
.btn-secondary .badge, .btn-primary .badge { font-size: 9px; letter-spacing: 0.1em; font-weight: 500; color: var(--blue); border: 1px solid rgba(45,107,228,0.4); padding: 2px 6px; border-radius: 2px; }
.btn-primary .badge { margin-left: 6px; vertical-align: middle; }
.hero-tags { margin-top: 80px; padding-top: 40px; border-top: 1px solid rgba(0,0,0,0.08); display: flex; gap: 10px; flex-wrap: wrap; }
.hero-tag { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); opacity: 0.45; border: 1px solid rgba(0,0,0,0.12); padding: 6px 14px; border-radius: 2px; }

/* SECTION LABEL */
.section-label { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.section-label::before { content: ''; display: block; width: 3px; height: 48px; background: var(--blue); flex-shrink: 0; }
.section-label-text { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-mid); }
.section-title { font-family: var(--font-display); font-size: clamp(34px, 3.8vw, 54px); font-weight: 300; line-height: 1.15; color: var(--black); margin-bottom: 48px; }
.sujets-intro { font-size: 15px; font-weight: 300; color: var(--black); opacity: 0.6; max-width: 620px; line-height: 1.75; margin: -24px 0 48px; }

/* PEURS */
#peurs { padding: 120px 60px; background: var(--white); }
#peurs .section-title em { font-style: italic; color: var(--blue); }
.peurs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.peur-card { display: block; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 28px; color: inherit; text-decoration: none; transition: border-color 0.3s; }
a.peur-card:hover { border-top-color: var(--blue); }
.peur-link { display: inline-block; margin-top: 22px; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); border-bottom: 1px solid transparent; padding-bottom: 3px; transition: border-color 0.2s; }
a.peur-card:hover .peur-link { border-bottom-color: var(--blue); }
.peur-num { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--blue); letter-spacing: 0.1em; display: block; margin-bottom: 20px; }
.peur-quote { font-family: var(--font-display); font-size: 24px; font-style: italic; font-weight: 400; line-height: 1.4; color: var(--black); opacity: 0.45; margin-bottom: 20px; }
.peur-answer { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--black); opacity: 0.75; }
.peurs-foot { margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(0,0,0,0.08); text-align: center; }
.peurs-foot a { display: inline-block; font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 30px); font-weight: 400; font-style: italic; color: var(--navy); text-decoration: none; line-height: 1.4; }
.peurs-foot a strong { font-weight: 600; color: var(--blue); font-style: normal; }
.peurs-foot a::after { content: ' →'; color: var(--blue); }
.peurs-foot a:hover strong { text-decoration: underline; }

/* CE QUE ÇA CHANGE */
#concret { padding: 120px 60px; background: var(--cream); }
#concret .section-title em { font-style: italic; color: var(--blue); }
.concret-body { max-width: 720px; margin-top: 40px; }
.concret-body p { font-size: 16px; font-weight: 300; line-height: 1.85; color: var(--black); opacity: 0.8; margin-bottom: 24px; }
.concret-body p strong { font-weight: 600; opacity: 1; color: var(--navy); }
.concret-lede { font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 26px); font-style: italic; line-height: 1.5; opacity: 0.9 !important; }
.concret-foot { font-family: var(--font-display); font-size: clamp(19px, 2vw, 24px); font-style: italic; color: var(--navy); opacity: 1 !important; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(0,0,0,0.08); }

/* OUTILS ET SIMULATEUR */
#jeu { padding: 120px 60px; background: var(--navy); color: var(--white); }
#jeu .section-label-text { color: rgba(255,255,255,0.5); }
.jeu-title { font-family: var(--font-display); font-size: clamp(32px, 3.6vw, 50px); font-weight: 300; line-height: 1.15; color: var(--white); margin-bottom: 20px; max-width: 760px; }
.jeu-title em { font-style: italic; color: var(--blue); }
.jeu-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.5); max-width: 620px; line-height: 1.8; margin-bottom: 48px; }
.jeu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 44px; }
.jeu-item { background: rgba(255,255,255,0.04); padding: 36px 34px; border-top: 2px solid var(--blue); }
.jeu-item h4 { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--white); margin-bottom: 12px; }
.jeu-item p { font-size: 14px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.jeu-item a { display: inline-block; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); text-decoration: none; border-bottom: 1px solid var(--blue); padding-bottom: 3px; transition: color 0.2s; }
.jeu-item a:hover { color: var(--blue); }
.jeu-item .statut { display: inline-block; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); border: 1px solid rgba(45,107,228,0.45); padding: 3px 8px; border-radius: 2px; margin-bottom: 16px; }
.qui-parle { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.7; }
.qui-parle strong { color: var(--white); font-weight: 500; }

/* SUJETS */
#sujets { padding: 120px 60px; background: var(--grey-light); }
.sujets-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.sujet-card { background: var(--white); padding: 48px 44px; position: relative; overflow: hidden; transition: transform 0.3s; }
.sujet-card:hover { transform: translateY(-3px); }
a.sujet-card { display: block; color: inherit; text-decoration: none; }
.sujet-tag { display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); border: 1px solid var(--blue); padding: 4px 10px; border-radius: 2px; margin-bottom: 20px; }
.sujet-title { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: var(--black); line-height: 1.2; margin-bottom: 14px; }
.sujet-desc { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--black); opacity: 0.6; margin-bottom: 22px; }
.sujet-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sujet-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; font-weight: 400; color: var(--black); opacity: 0.6; line-height: 1.5; }
.sujet-item::before { content: ''; display: block; width: 20px; height: 1px; background: var(--blue); flex-shrink: 0; margin-top: 8px; }
.sujet-accent { position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--blue); transition: width 0.4s ease; }
.sujet-card:hover .sujet-accent { width: 100%; }
/* Une carte orpheline sur la dernière ligne occupe toute la largeur */
.sujets-grid > .sujet-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
/* Carte « à venir » */
.sujet-card--soon { background: transparent; border: 1px dashed rgba(0,0,0,0.2); }
.sujet-card--soon:hover { transform: none; }
.sujet-card--soon .sujet-tag { color: var(--grey-mid); border-color: rgba(0,0,0,0.18); }
.sujet-card--soon .sujet-title { opacity: 0.55; }
.sujet-card--soon .sujet-item::before { background: var(--grey-mid); }
.sujet-soon-note { margin-top: 22px; font-size: 13px; font-weight: 400; }
.sujet-soon-note a { color: var(--blue); text-decoration: none; border-bottom: 1px solid rgba(45,107,228,0.35); padding-bottom: 2px; }
.sujet-soon-note a:hover { border-bottom-color: var(--blue); }

/* CITATION */
#citation { padding: 100px 60px; background: var(--navy); }
.citation-text { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); font-style: italic; font-weight: 300; color: rgba(255,255,255,0.9); line-height: 1.5; max-width: 900px; margin: 0 auto; text-align: center; }
.citation-source { display: block; margin-top: 28px; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); text-align: center; }

/* LE LIVRE */
#livre { padding: 120px 60px; background: var(--cream); display: grid; grid-template-columns: 0.8fr 1fr; gap: 80px; align-items: center; }
#livre .section-title { color: var(--black); margin-bottom: 28px; }
#livre .section-title em { font-style: italic; color: var(--navy); }
.livre-cover { border-radius: 2px; overflow: hidden; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25); }
.livre-cover img { display: block; width: 100%; height: auto; }
.livre-bio { font-size: 15px; font-weight: 300; color: var(--black); opacity: 0.65; line-height: 1.85; margin-bottom: 20px; }
.livre-bio strong { color: var(--black); font-weight: 500; }
.livre-link { display: inline-block; margin-top: 8px; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); text-decoration: none; border-bottom: 1px solid var(--blue); padding-bottom: 2px; transition: color 0.2s; }
.livre-link:hover { color: var(--blue); }

/* ACCOMPAGNEMENT */
#accompagnement { padding: 120px 60px 160px; background: var(--navy); color: var(--white); text-align: center; }
#accompagnement .section-label { justify-content: center; }
#accompagnement .section-label::before { background: var(--blue); }
#accompagnement .section-label-text { color: rgba(255,255,255,0.5); }
.accompagnement-title { font-family: var(--font-display); font-size: clamp(34px, 3.8vw, 54px); font-weight: 300; line-height: 1.15; color: var(--white); margin-bottom: 20px; }
.accompagnement-title em { font-style: italic; color: var(--blue); }
.accompagnement-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.5); margin-bottom: 40px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.accompagnement-email { display: inline-block; font-family: var(--font-display); font-size: 24px; font-weight: 400; color: var(--white); text-decoration: none; border-bottom: 1px solid var(--blue); padding-bottom: 4px; transition: color 0.2s; }
.accompagnement-email:hover { color: var(--blue); }
.accompagnement-note { margin-top: 24px; font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.5); max-width: 460px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* ABOUT */
#about { padding: 100px 60px; background: var(--cream); border-top: 1px solid rgba(0,0,0,0.06); }
.about-content { display: grid; grid-template-columns: 200px 1fr; gap: 60px; max-width: 900px; align-items: start; }
.about-photo { border-radius: 2px; overflow: hidden; aspect-ratio: 1; background: var(--grey-light); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-text h3 { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--black); margin-bottom: 12px; }
.about-text p { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--black); opacity: 0.7; margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--black); font-weight: 500; }
.about-note { font-size: 13px; font-weight: 300; color: var(--blue); margin-top: 24px; }

/* NEWSLETTER */
#newsletter { padding: 110px 60px; background: var(--grey-light); text-align: center; }
#newsletter .section-label { justify-content: center; }
.newsletter-title { font-family: var(--font-display); font-size: clamp(30px, 3.2vw, 42px); font-weight: 300; color: var(--black); margin-bottom: 16px; line-height: 1.2; }
.newsletter-sub { font-size: 15px; font-weight: 300; color: var(--black); opacity: 0.6; max-width: 460px; margin: 0 auto 36px; line-height: 1.7; }
.newsletter-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter-input { flex: 1; padding: 14px 18px; border: 1px solid rgba(0,0,0,0.15); border-radius: 2px; font-family: var(--font-body); font-size: 14px; background: var(--white); color: var(--black); }
.newsletter-input:focus { outline: none; border-color: var(--blue); }
.newsletter-btn { font-family: var(--font-body); font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); background: var(--black); padding: 0 28px; border: none; border-radius: 2px; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.newsletter-btn:hover { background: var(--navy); }
.newsletter-note { margin-top: 16px; font-size: 12px; font-weight: 300; color: var(--black); opacity: 0.58; }
.input--hidden { display: none; }

/* ARTICLE SPECIFIC */
#article-hero { padding: 150px 60px 80px; background: var(--cream); max-width: 780px; margin: 0 auto; }
.breadcrumb { font-size: 12px; color: var(--black); opacity: 0.58; margin-bottom: 28px; }
.breadcrumb a { color: var(--black); text-decoration: none; }
.breadcrumb a:hover { opacity: 0.7; }
.article-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); margin-bottom: 24px; }
.article-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 58px); font-weight: 300; line-height: 1.1; color: var(--black); margin-bottom: 24px; }
.article-subtitle { font-size: 18px; font-weight: 300; color: var(--black); opacity: 0.6; line-height: 1.7; margin-bottom: 32px; }
.article-meta { font-size: 12px; color: var(--black); opacity: 0.58; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.08); }
.article-body { max-width: 700px; margin: 0 auto; padding: 0 60px 60px; }
.article-body h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 34px); font-weight: 400; color: var(--black); margin: 56px 0 22px; line-height: 1.25; }
.article-body p { font-size: 17px; font-weight: 300; color: var(--black); opacity: 0.75; line-height: 1.85; margin-bottom: 24px; }
.article-body strong { font-weight: 500; opacity: 1; color: var(--black); }
.pull-quote { background: var(--navy); padding: 48px 52px; margin: 48px 0; }
.pull-quote p { font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 28px); font-style: italic; font-weight: 300; color: rgba(255,255,255,0.92); line-height: 1.55; margin-bottom: 16px; }
.pull-quote p:last-child { margin-bottom: 0; }
.pull-quote span { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.article-body a { color: var(--blue); text-decoration: none; border-bottom: 1px solid rgba(45,107,228,0.35); transition: border-color 0.2s; }
.article-body a:hover { border-bottom-color: var(--blue); }
.divider { height: 1px; background: rgba(0,0,0,0.1); margin: 56px 0; }

.cta-box { background: var(--white); border: 1px solid rgba(0,0,0,0.08); border-left: 3px solid var(--blue); padding: 36px 40px; margin: 56px 0; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-box-title { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--black); margin-bottom: 6px; }
.cta-box-desc { font-size: 14px; font-weight: 300; color: var(--black); opacity: 0.6; line-height: 1.6; }
#next-article { padding: 60px; background: var(--grey-light); text-align: center; }
.next-label { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.next-link { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 40px); font-weight: 400; color: var(--black); text-decoration: none; line-height: 1.2; display: inline-block; transition: color 0.2s; }
.next-link:hover { color: var(--blue); }
.next-link--soon { display: inline-block; color: var(--black); opacity: 0.55; cursor: default; }
.next-link span { display: block; font-family: var(--font-body); font-size: 13px; font-weight: 300; color: var(--black); opacity: 0.6; margin-top: 10px; }

/* PAGE HEADER (Mentions Légales) */
#page-header { padding: 160px 60px 60px; background: var(--cream); }
.page-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); margin-bottom: 20px; }
.page-title { font-family: var(--font-display); font-size: clamp(38px, 4.5vw, 60px); font-weight: 300; line-height: 1.1; color: var(--black); max-width: 800px; }
.page-title em { font-style: italic; color: var(--navy); }
.page-note { margin-top: 24px; font-size: 13px; font-weight: 300; color: var(--black); opacity: 0.6; max-width: 640px; line-height: 1.8; }
#legal, #methode { padding: 20px 60px 140px; }
#methode { padding-bottom: 40px; }
#article-cta { padding: 0 60px 80px; }
#article-cta .cta-box { max-width: 760px; margin: 0 auto; }
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal-article { padding: 44px 0; border-top: 1px solid rgba(0,0,0,0.08); }
.legal-article:first-child { border-top: none; padding-top: 0; }
.legal-num { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.legal-article h2 { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: var(--black); margin-bottom: 18px; }
/* `> p` : sans le combinateur, cette règle écrasait .pull-quote p (même spécificité,
   déclarée plus loin) et rendait la citation noire sur fond navy, donc invisible. */
.legal-article > p { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--black); opacity: 0.75; margin-bottom: 14px; }
.legal-article > p:last-child { margin-bottom: 0; }
.legal-article ul { list-style: none; margin-bottom: 14px; }
.legal-article li { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--black); opacity: 0.75; padding-left: 22px; position: relative; margin-bottom: 6px; }
.legal-article li::before { content: ''; position: absolute; left: 0; top: 11px; width: 8px; height: 1px; background: var(--blue); }
.legal-article strong { font-weight: 500; color: var(--black); opacity: 1; }
.legal-article a { color: var(--blue); text-decoration: underline; }
.placeholder { background: rgba(45,107,228,0.08); padding: 1px 6px; border-radius: 2px; color: var(--navy); font-style: italic; }
.legal-flag { margin-top: 16px; padding: 14px 18px; background: var(--grey-light); border-left: 2px solid var(--blue); font-size: 13px; font-weight: 300; color: var(--black); opacity: 0.7; line-height: 1.7; }

/* FOOTER */
footer { padding: 28px 60px; background: var(--black); border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.5); }
.footer-copy a { color: rgba(255,255,255,0.5); text-decoration: underline; transition: color 0.2s; }
.footer-copy a:hover { color: var(--white); }
.footer-logo { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-logo span { color: var(--blue); }
.footer-logo:hover { color: var(--white); }

@media (max-width: 900px) {
  nav, #hero, #peurs, #concret, #sujets, #jeu, #citation, #livre, #newsletter, #accompagnement, #about, #article-hero, .article-body, #next-article, #page-header, #legal, #methode, #article-cta, footer { padding-left: 24px; padding-right: 24px; }
  .nav-toggle { display: block; }
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; height: calc(100vh - var(--nav-h)); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 40px; background: var(--cream); overflow-y: auto; }
  nav.open .nav-links { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(0,0,0,0.08); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 24px 0; font-size: 14px; letter-spacing: 0.1em; opacity: 0.85; }
  .nav-links .nav-cta { display: inline-block; margin-top: 32px; padding: 16px 28px; font-size: 13px; text-align: center; }
  .sujets-grid { grid-template-columns: 1fr; }
  .peurs-grid { grid-template-columns: 1fr; gap: 40px; }
  .jeu-grid { grid-template-columns: 1fr; gap: 20px; }
  #livre { grid-template-columns: 1fr; gap: 40px; }
  .livre-cover { max-width: 280px; margin: 0 auto; }
  .sticky-bar { flex-direction: column; gap: 10px; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 200px; margin: 0 auto; }
  .cta-box { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { transition: none; opacity: 1; transform: none; }
}
