/* Pages légales — mentions légales, CGV, confidentialité.
   Feuille volontairement autonome et minuscule : ces pages doivent rester
   lisibles et imprimables même si la charte de la vitrine évolue. */
:root {
  --bg: #0B0C10;
  --panel: #12141A;
  --fg: #E9E9EC;
  --fg-dim: #9A9DA8;
  --accent: #8B7BD8;
  --line: #23262F;
  --warn-bg: #3A2418;
  --warn-fg: #FFB27A;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 400 16px/1.7 -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
}
.wrap { max-width: 780px; margin: 0 auto; padding: 40px 22px 80px; }
header.top {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding-bottom: 22px; margin-bottom: 34px; border-bottom: 1px solid var(--line);
}
header.top img { height: 24px; width: auto; }
header.top a { color: var(--fg-dim); text-decoration: none; font-size: 14px; }
header.top a:hover { color: var(--accent); }
header.top .sep { color: var(--line); }
h1 { font-size: 30px; line-height: 1.25; letter-spacing: -0.02em; margin: 0 0 6px; }
.updated { color: var(--fg-dim); font-size: 13.5px; margin: 0 0 34px; }
h2 {
  font-size: 19px; letter-spacing: -0.01em; margin: 42px 0 12px;
  padding-top: 18px; border-top: 1px solid var(--line);
}
h3 { font-size: 16px; margin: 26px 0 8px; }
p, li { color: #D3D5DC; }
ul, ol { padding-left: 22px; }
li { margin: 6px 0; }
a { color: var(--accent); }
strong { color: var(--fg); font-weight: 600; }
table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14.5px; }
th, td { text-align: left; padding: 10px 12px; border: 1px solid var(--line); vertical-align: top; }
th { background: var(--panel); color: var(--fg); font-weight: 600; }
.note {
  background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: 6px; padding: 14px 16px; margin: 20px 0; font-size: 14.5px;
}
/* ⚠️ Marqueur des informations que seul l'éditeur peut fournir. Volontairement
   CRIARD : une page publiée avec un trou doit se voir au premier coup d'œil.
   Un SIRET inventé serait une faute ; un trou visible est seulement une tâche.

   ⚠️ Il RENVOIE À LA LIGNE, et ce n'est pas cosmétique : le marqueur du
   médiateur fait 58 caractères, soit ~395 points, quand un téléphone de
   375 points n'en offre que 339 dans `.wrap`. En `nowrap`, il sortait de la
   page. `box-decoration-break: clone` redonne son cadre à CHAQUE ligne, sans
   quoi un marqueur sur deux lignes perd sa bordure au milieu et cesse de
   crier. */
.todo {
  background: var(--warn-bg); color: var(--warn-fg); font-weight: 600;
  padding: 1px 7px; border-radius: 4px; border: 1px dashed var(--warn-fg);
  font-size: 13.5px;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.draft {
  background: var(--warn-bg); color: var(--warn-fg); border: 1px solid var(--warn-fg);
  border-radius: 8px; padding: 14px 16px; margin: 0 0 30px; font-size: 14.5px;
}
footer.foot {
  margin-top: 60px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; gap: 14px; flex-wrap: wrap; font-size: 13.5px; color: var(--fg-dim);
}
footer.foot a { color: var(--fg-dim); text-decoration: none; }
footer.foot a:hover { color: var(--accent); }
@media (max-width: 560px) { h1 { font-size: 25px; } .wrap { padding: 28px 18px 60px; } }
