/* ═══════════════════════════════════════════════════════════════
   LEXVOX-VICTIME.FR — Feuille de style principale
   Basée sur la charte graphique LAWIA "Editorial Gravity"
   Étendue avec composants spécifiques dommage corporel

   Principes :
   - Bleu sky + Crème + Noir + Or prestige
   - Georgia / Calibri / Consolas / Caveat
   - Zéro dégradé, zéro rouge/vert/orange/violet
   - Bordures épaisses, ombres offset solides
   - Alternance sections claires/sombres
   - UX trauma-informed : calme, espaces, empathie
   ═══════════════════════════════════════════════════════════════ */


/* ═══ 1. VARIABLES COULEURS ═══ */
:root {
  /* Bleus (accent) */
  --bleu:    #6A9BCC;
  --bleu-f:  #4A7BA8;
  --bleu-c:  #A8C4E0;
  --bleu-p:  #D3E5F8;

  /* Neutres */
  --dark:    #141413;
  --code:    #1A1917;
  --creme:   #FAF9F5;
  --gris:    #B0AEA5;
  --gris-c:  #E8E6DC;

  /* Utilitaire négatif */
  --negatif: #C4745B;

  /* Or prestige — badges, certifications, séparateurs institutionnels */
  --or:      #C5A55A;
  --or-c:    #D4BC7C;

  /* Dimensions & effets */
  --r: 12px;
  --shadow:      0 4px 16px rgba(20,20,19, 0.10);
  --shadow-bleu: 0 4px 16px rgba(74,123,168, 0.18);
}


/* ═══ 2. RESET & BASE ═══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: Calibri, 'Gill Sans', sans-serif;
  background: var(--creme);
  color: var(--dark);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bleu-f); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--dark); }


/* ═══ 3. TYPOGRAPHIE ═══ */
h1, h2, h3, h4 { font-family: Georgia, serif; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1.12; margin-bottom: 1.2rem; }
h2 { font-size: 2.4rem; line-height: 1.2; margin-bottom: 1rem; }
h3 { font-size: 1.4rem; line-height: 1.3; margin-bottom: 0.6rem; }
h4 { font-size: 1.1rem; line-height: 1.4; margin-bottom: 0.4rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.overline {
  font-family: Calibri, sans-serif;
  font-size: 0.7rem;
  color: var(--bleu-f);
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.accent { color: var(--bleu); }
.handwritten {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  color: var(--bleu-f);
  margin: -0.3rem 0 1rem;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  transform: rotate(-1deg);
}
.handwritten::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--bleu-f);
  opacity: 0.35;
}


/* ═══ 4. LAYOUT ═══ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
section { padding: 5.5rem 0; }


/* ═══ 5. COMPOSANTS DÉCORATIFS ═══ */
.ink   { display: block; width: 48px; height: 3px; background: var(--bleu-f); margin-bottom: 1rem; }
.ink-c { display: block; width: 48px; height: 3px; background: var(--bleu-f); margin: 0 auto 1rem; }
.ink-or { display: block; width: 48px; height: 3px; background: var(--or); margin-bottom: 1rem; }

.tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--dark);
  color: var(--creme);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border: 2px solid var(--dark);
  box-shadow: 2px 2px 0 0 var(--bleu-f);
}
.tag-or {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--or);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border: 2px solid var(--or);
}

.dots-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--gris-c) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}


/* ═══ 6. NAVIGATION ═══ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.7rem 0;
  background: var(--creme);
  border-bottom: 3px solid var(--dark);
  transition: all 0.3s;
}
nav .container { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: Georgia, serif; font-size: 1.5rem; font-weight: 700; color: var(--dark); text-decoration: none; }
.logo span { color: var(--bleu); }

nav ul { display: flex; list-style: none; gap: 1.6rem; align-items: center; }
nav a { color: var(--gris); text-decoration: none; font-size: 0.95rem; font-weight: 600; transition: color 0.2s; }
nav a:hover { color: var(--dark); }

.nav-cta {
  background: var(--dark);
  color: var(--creme) !important;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  border: 2px solid var(--dark);
}
.nav-cta:hover { background: var(--bleu); border-color: var(--bleu); }

/* Reassurance bar sticky sous la nav */
.reassurance-bar {
  position: relative;
  margin-top: 56px;
  left: 0; right: 0;
  z-index: 99;
  background: var(--dark);
  padding: 0.6rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gris);
  border-bottom: none;
  margin-bottom: 0;
}
.reassurance-bar span { margin: 0 1.2rem; }
.reassurance-bar strong { color: var(--creme); }
.reassurance-bar a { color: var(--bleu-c); font-weight: 700; }


/* ═══ 7. BOUTONS (3 variantes) ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  font-family: Calibri, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 3px solid var(--dark);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary { background: var(--dark); color: var(--creme); box-shadow: var(--shadow-bleu); }
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 0 var(--bleu-f); color: var(--creme); }

.btn-outline { background: var(--creme); color: var(--dark); }
.btn-outline:hover { background: var(--bleu-p); color: var(--dark); }

.btn-light { background: var(--bleu); color: #fff; border-color: var(--bleu); box-shadow: 6px 6px 0 0 var(--creme); }
.btn-light:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 0 var(--creme); color: #fff; }

.btn-phone {
  background: var(--dark);
  color: var(--or) !important;
  border-color: var(--dark);
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.btn-phone:hover { background: var(--bleu-f); border-color: var(--bleu-f); }


/* ═══ 8. CARDS ═══ */
.card {
  background: #fff;
  border: 3px solid var(--dark);
  border-radius: var(--r);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}
.card-dark {
  background: var(--code);
  border: 2px solid #2a2a28;
  border-radius: var(--r);
  padding: 1.6rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.card-dark:hover {
  border-color: var(--bleu);
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px var(--bleu);
}
.card-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--bleu);
  opacity: 0;
  transition: opacity 0.3s;
}
.card-dark:hover::before { opacity: 1; }

/* Temoignages — ombre adoucie pour sections empathie */
.card-testi {
  background: #fff;
  border: 3px solid var(--dark);
  border-radius: var(--r);
  padding: 1.5rem;
  box-shadow: 4px 4px 2px 0 rgba(20,20,19,0.25);
}
.card-testi .testi-stars { color: var(--or); font-size: 1rem; margin-bottom: 0.5rem; }
.card-testi .testi-text { font-size: 0.9rem; font-style: italic; color: var(--dark); margin-bottom: 0.8rem; }
.card-testi .testi-author { font-size: 0.78rem; font-weight: 700; color: var(--gris); }

.card-price {
  max-width: 460px;
  margin: 2rem auto 0;
  background: var(--creme);
  border: 3px solid var(--creme);
  border-radius: var(--r);
  padding: 2.5rem;
  text-align: center;
  color: var(--dark);
  box-shadow: 8px 8px 0 0 var(--bleu-f);
}

/* Practice area cards */
.practice-card {
  background: #fff;
  border: 3px solid var(--dark);
  border-radius: var(--r);
  padding: 1.8rem;
  text-decoration: none;
  color: var(--dark);
  display: block;
  transition: all 0.2s;
  box-shadow: var(--shadow);
}
.practice-card:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 0 var(--bleu-f);
  color: var(--dark);
}
.practice-card .practice-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
}
.practice-card .practice-icon svg {
  width: 42px;
  height: 42px;
  stroke: var(--dark);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.practice-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.practice-card p { font-size: 0.85rem; color: var(--gris); margin-bottom: 0.8rem; }
.practice-card .practice-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--bleu-f);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}


/* ═══ 9. FAQ ACCORDÉON ═══ */
details {
  border: 3px solid var(--dark);
  border-radius: var(--r);
  margin-bottom: 0.8rem;
  background: #fff;
  overflow: hidden;
}
summary {
  padding: 1rem 1.2rem;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-family: Consolas, monospace;
  font-size: 1.2rem;
  color: var(--bleu);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}
details[open] summary::after { content: '\2212'; }
details[open] summary { border-bottom: 1px solid var(--gris-c); }
details .faq-body { padding: 1rem 1.2rem; font-size: 0.88rem; color: var(--dark); line-height: 1.7; }
details .faq-body p { color: var(--dark); }


/* ═══ 10. QUICK ANSWER BLOCK (GEO/LLMO) ═══ */
.quick-answer {
  background: var(--creme);
  border-left: 4px solid var(--bleu);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.7;
}
.quick-answer strong { color: var(--dark); }


/* ═══ 10b. TABLE DES MATIERES (plan de lecture) ═══ */
.toc {
  position: static !important;
  background: #fff;
  border: 3px solid var(--dark);
  border-radius: var(--r);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  z-index: auto;
}
.toc-title {
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.toc-title::after {
  content: '▼';
  font-size: 0.7rem;
  color: var(--bleu);
  transition: transform 0.3s;
}
.toc.collapsed .toc-title::after { transform: rotate(-90deg); }
.toc.collapsed .toc-list { display: none; }
.toc-list {
  list-style: none;
  counter-reset: toc-counter;
}
.toc-list li {
  counter-increment: toc-counter;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--gris-c);
}
.toc-list li:last-child { border-bottom: none; }
.toc-list li::before {
  content: counter(toc-counter) ".";
  font-family: Georgia, serif;
  font-weight: 700;
  color: var(--bleu-f);
  margin-right: 0.5rem;
}
.toc-list a {
  color: var(--dark);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}
.toc-list a:hover { color: var(--bleu-f); }
.toc-sublist {
  list-style: none;
  padding-left: 1.5rem;
  margin-top: 0.2rem;
}
.toc-sublist li {
  border-bottom: none;
  padding: 0.15rem 0;
}
.toc-sublist li::before {
  content: "–";
  color: var(--gris);
  margin-right: 0.4rem;
}
.toc-sublist a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gris);
}

/* ═══ 10c. TEMPS DE LECTURE ═══ */
.reading-time {
  font-family: Calibri, sans-serif;
  font-size: 0.78rem;
  color: var(--gris);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.reading-time svg { width: 14px; height: 14px; stroke: var(--gris); stroke-width: 2; fill: none; }

/* ═══ 10d. BLOC AUTEUR ARTICLE ═══ */
.article-author {
  background: var(--bleu-p);
  border: 3px solid var(--dark);
  border-radius: var(--r);
  padding: 1.5rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin: 2rem 0;
}
.article-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  object-fit: cover;
  object-position: center 15%;
  flex-shrink: 0;
}
.article-author-info h4 { font-size: 1rem; margin-bottom: 0.1rem; }
.article-author-info p { font-size: 0.78rem; color: var(--gris); margin-bottom: 0; }
.article-author-info .badge-or { margin-top: 0.3rem; }

/* ═══ 10e. ARTICLES LIES ═══ */
.related-articles {
  margin: 2rem 0;
}
.related-articles h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.related-card {
  background: #fff;
  border: 2px solid var(--gris-c);
  border-radius: var(--r);
  padding: 1rem;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.2s;
  display: block;
}
.related-card:hover {
  border-color: var(--bleu);
  transform: translateY(-2px);
}
.related-card h4 { font-size: 0.88rem; margin-bottom: 0.3rem; }
.related-card p { font-size: 0.75rem; color: var(--gris); margin-bottom: 0; }

/* ═══ 10f. BOUTONS PARTAGE SOCIAL ═══ */
.social-share {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}
.social-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  border: 2px solid var(--gris-c);
  color: var(--gris);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.2s;
}
.social-share a:hover { border-color: var(--bleu); color: var(--bleu); }

@media (max-width: 900px) {
  .related-grid { grid-template-columns: 1fr; }
  .article-author { flex-direction: column; text-align: center; }
}
.section-dark .quick-answer { background: var(--code); border-left-color: var(--bleu-c); color: var(--bleu-c); }


/* ═══ 11. BREADCRUMB ═══ */
.breadcrumb {
  font-family: Calibri, sans-serif;
  font-size: 0.78rem;
  color: var(--gris);
  margin-bottom: 1.5rem;
  padding-top: 5rem;
}
.breadcrumb a { color: var(--bleu-f); text-decoration: none; }
.breadcrumb a:hover { color: var(--dark); text-decoration: underline; }
.breadcrumb .separator { margin: 0 0.4rem; color: var(--gris-c); }


/* ═══ 12. DATA TABLES ═══ */
.table-wrapper { overflow-x: auto; margin-bottom: 2rem; -webkit-overflow-scrolling: touch; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  border: 3px solid var(--dark);
  font-size: 0.88rem;
}
.data-table thead { background: var(--bleu-f); color: #fff; }
.data-table th {
  padding: 0.8rem 1rem;
  text-align: left;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.data-table td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--gris-c); }
.data-table tbody tr:nth-child(even) { background: var(--bleu-p); }
.data-table tbody tr:nth-child(odd) { background: #fff; }
.section-dark .data-table { border-color: #2a2a28; }
.section-dark .data-table thead { background: var(--bleu-f); }
.section-dark .data-table td { border-bottom-color: #2a2a28; color: var(--creme); }
.section-dark .data-table tbody tr:nth-child(even) { background: var(--code); }
.section-dark .data-table tbody tr:nth-child(odd) { background: var(--dark); }


/* ═══ 13. STAT BLOCKS ═══ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-block .stat-number {
  font-family: Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-block .stat-label {
  font-family: Calibri, sans-serif;
  font-size: 0.82rem;
  color: var(--gris);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-dark .stat-block .stat-number { color: var(--or); }
.section-dark .stat-block .stat-label { color: var(--bleu-c); }


/* ═══ 14. DATE UPDATED (GEO) ═══ */
.date-updated {
  font-family: Calibri, sans-serif;
  font-size: 0.9rem;
  color: var(--gris);
  font-style: italic;
  margin-top: -1rem;
  margin-bottom: 1.5rem;
}
.date-updated time { font-style: normal; font-weight: 600; }


/* ═══ 15. CALLOUT (citations legales, avertissements) ═══ */
.callout {
  border-left: 4px solid var(--bleu-f);
  background: var(--bleu-p);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.88rem;
  line-height: 1.7;
}
.callout-or {
  border-left: 4px solid var(--or);
  background: #faf6eb;
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.88rem;
  line-height: 1.7;
}
.callout cite, .callout-or cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--gris);
}


/* ═══ 16. STEPS (étapes numérotées) ═══ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.step {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border: 3px solid var(--dark);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2.5px solid var(--dark);
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: var(--gris); }


/* ═══ 17. AUTEUR / AVATAR ═══ */
.author-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.author-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid var(--dark);
  object-fit: cover;
  object-position: center 15%;
  flex-shrink: 0;
}
.author-initials {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--creme);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-info h3 { font-size: 1.3rem; margin-bottom: 0.2rem; }
.author-info .author-title { font-size: 0.85rem; color: var(--bleu-f); font-weight: 700; margin-bottom: 0.5rem; }
.author-info .author-credentials { font-size: 0.82rem; color: var(--gris); }
.author-info .author-credentials li { margin-bottom: 0.2rem; }
.badge-or {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--or);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}


/* ═══ 18. FORMULAIRE CONTACT ═══ */
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-family: Georgia, serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 3px solid var(--dark);
  border-radius: 4px;
  font-family: Calibri, sans-serif;
  font-size: 0.95rem;
  background: #fff;
  color: var(--dark);
  transition: border-color 0.2s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--bleu);
  box-shadow: 0 0 0 3px rgba(106,155,204,0.2);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }


/* ═══ 19. MAP CONTAINER ═══ */
.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 45%;
  border: 3px solid var(--dark);
  border-radius: var(--r);
  overflow: hidden;
}
.map-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* ═══ 20. GRIDS UTILITAIRES ═══ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }


/* ═══ 21. FOOTER ═══ */
footer {
  background: var(--dark);
  border-top: 2px solid #2a2a28;
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h4 {
  font-family: Georgia, serif;
  font-size: 0.9rem;
  color: var(--creme);
  margin-bottom: 0.8rem;
}
.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 0.78rem;
  color: var(--gris);
  line-height: 1.8;
}
.footer-col a { text-decoration: none; }
.footer-col a:hover { color: var(--bleu-c); }
.footer-col ul { list-style: none; }
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #2a2a28;
}
.footer-bottom p { color: var(--gris); font-size: 0.72rem; }


/* ═══ 22. SECTIONS — ALTERNANCE DES FONDS ═══ */
/*
  Rythme obligatoire — jamais deux fonds identiques consécutifs :
  1. var(--creme)   #FAF9F5   Crème       — texte --dark
  2. var(--bleu-p)  #D3E5F8   Bleu pâle   — texte --dark
  3. var(--dark)    #141413   Noir         — texte --creme
  4. #fff                     Blanc pur    — texte --dark
  5. var(--bleu-f)  #4A7BA8   Bleu foncé   — texte #fff
*/

.section-dark { background: var(--dark); color: var(--creme); }
.section-dark .overline { color: var(--bleu-c); }
.section-dark .ink, .section-dark .ink-c { background: var(--creme); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--creme); }
.section-dark p { color: var(--bleu-c); }
.section-dark a { color: var(--bleu-c); }

.section-bleu-pale { background: var(--bleu-p); color: var(--dark); }
.section-bleu-pale .overline { color: var(--bleu-f); }

.section-bleu-fonce { background: var(--bleu-f); color: #fff; }
.section-bleu-fonce .overline { color: var(--bleu-p); }
.section-bleu-fonce .ink-c { background: #fff; }
.section-bleu-fonce h2, .section-bleu-fonce h3 { color: #fff; }
.section-bleu-fonce p { color: rgba(255,255,255,0.85); }


/* ═══ 23. TRUST BADGES ═══ */
.trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--gris);
  font-weight: 600;
}
.trust-badge svg {
  width: 20px;
  height: 20px;
  stroke: var(--or);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}


/* ═══ 24. HAMBURGER & MOBILE MENU ═══ */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.3rem; }
.hamburger svg { width: 28px; height: 28px; stroke: var(--dark); stroke-width: 2.5; stroke-linecap: round; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--creme);
  z-index: 200;
  padding: 5rem 2rem 2rem;
  text-align: center;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 1.2rem; align-items: center; }
.mobile-menu a { font-family: Georgia, serif; font-size: 1.2rem; color: var(--dark); text-decoration: none; font-weight: 700; }
.mobile-menu a:hover { color: var(--bleu); }
.mobile-menu .close-menu {
  position: absolute;
  top: 1rem; right: 1.5rem;
  background: none; border: none;
  cursor: pointer;
  font-size: 2rem;
  color: var(--dark);
  font-family: Consolas, monospace;
}


/* ═══ 25. RESPONSIVE ═══ */
@media (max-width: 900px) {
  nav ul { display: none; }
  .hamburger { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .reassurance-bar span { margin: 0 0.5rem; font-size: 0.7rem; }
}

@media (max-width: 600px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.6rem; }
  section { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .reassurance-bar { font-size: 0.65rem; }
  .reassurance-bar span { display: block; margin: 0.1rem 0; }
}


/* ═══ 26. PRINT ═══ */
@media print {
  nav, .reassurance-bar, .mobile-menu, footer, .btn, .nav-cta { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  section { padding: 1rem 0; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
  .card, .practice-card, .step, details { border-color: #ccc; box-shadow: none; }
}


/* ═══ 27. SKIP LINK (ACCESSIBILITÉ) ═══ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--dark);
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
}
