/* ============================================================
   Roulette Dossier — feuille de style unique, organisée par
   section. Chaque bloc porte son propre préfixe de classe.
   ============================================================ */

/* --- 00. Jetons ------------------------------------------- */
:root {
  --ink: #201b26;
  --ink-soft: #574d5f;
  --ink-faint: #7b7285;
  --base: #f3f1f6;
  --base-alt: #e9e5ef;
  --surface: #ffffff;
  --plum: #5b2a4a;
  --plum-deep: #3c1b31;
  --plum-tint: #f0e8ee;
  --brass: #9b7423;
  --brass-bright: #b4862b;
  --brass-tint: #f6efdd;
  --line: #ddd6e3;
  --line-soft: #e7e2ec;

  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px;
  --s5: 24px; --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px;

  --r-s: 8px; --r-m: 14px; --r-l: 20px;
  --inner: inset 0 1px 0 rgba(255, 255, 255, .75), inset 0 0 0 1px rgba(32, 27, 38, .015);
  --shadow: 0 1px 2px rgba(32, 27, 38, .05);

  --sans: "Helvetica Neue", Helvetica, "Segoe UI", Roboto, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;

  --wrap: 1160px;
}

/* --- 01. Réglages généraux -------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background-color: var(--base);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 150 150'%3E%3Cg fill='none' stroke='%235b2a4a' stroke-opacity='.045' stroke-width='1.1'%3E%3Cpath d='M12 22h52v11a5 5 0 0 0 0 10v11H12V43a5 5 0 0 0 0-10z'/%3E%3Cpath d='M86 92h52v11a5 5 0 0 0 0 10v11H86v-11a5 5 0 0 0 0-10z'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -.022em;
  line-height: 1.12;
  margin: 0 0 var(--s4);
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; letter-spacing: -.012em; }
h4 { font-size: 1.02rem; letter-spacing: 0; }

p { margin: 0 0 var(--s4); max-width: 72ch; }
ul, ol { margin: 0 0 var(--s4); padding-left: 1.15em; max-width: 72ch; }
li { margin-bottom: var(--s2); }
strong { font-weight: 700; }

a { color: var(--plum); text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; text-underline-offset: 3px; }

:focus-visible { outline: 2px solid var(--plum); outline-offset: 2px; border-radius: 3px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--s5); }
.narrow { max-width: 760px; }
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--plum); color: #fff;
  padding: var(--s3) var(--s4); z-index: 60;
}
.skip:focus { left: var(--s4); top: var(--s4); }

.kicker {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 var(--s3);
  display: block;
}

.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* --- 02. Atomes partagés : boutons, badges, plaques -------- */
.btn {
  display: inline-flex;
  align-items: stretch;
  border-radius: var(--r-s);
  overflow: hidden;
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: -.005em;
  text-decoration: none;
  border: 1px solid var(--plum);
  transition: transform .16s cubic-bezier(.34, 1.7, .5, 1), background-color .16s ease;
}
.btn:hover, .btn:focus-visible { text-decoration: none; }
.btn:active { transform: scale(.955); }
.btn__label { padding: 11px var(--s4); }
.btn__chev {
  display: flex; align-items: center; justify-content: center;
  width: 34px;
  font-family: var(--mono);
  font-size: .95rem;
}

.btn--primary { background: var(--plum); color: #fff; }
.btn--primary .btn__chev { background: var(--plum-deep); border-left: 1px solid rgba(255, 255, 255, .22); }
.btn--primary:hover { background: #4d2340; }

.btn--ghost { background: transparent; color: var(--plum); }
.btn--ghost .btn__chev { border-left: 1px solid var(--line); background: var(--plum-tint); }
.btn--ghost:hover { background: var(--plum-tint); }

.btn--light { background: #fff; color: var(--plum); border-color: var(--line); }
.btn--light .btn__chev { border-left: 1px solid var(--line); background: var(--base-alt); }
.btn--light:hover { background: var(--base); }

.badge {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.45;
  background: var(--plum);
  color: #fff;
  white-space: nowrap;
}
.badge--brass { background: var(--brass); color: #fff; }
.badge--quiet { background: var(--base-alt); color: var(--ink-soft); }
.badge-row { display: flex; flex-wrap: wrap; gap: var(--s2); margin: 0 0 var(--s3); padding: 0; list-style: none; }
.badge-row li { margin: 0; }

.plate {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  box-shadow: var(--inner);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s3) var(--s4);
  height: 76px;
  width: 190px;
  flex: none;
}
.plate--dark { background: #241c2b; border-color: #241c2b; }
.plate img { max-height: 40px; width: auto; max-width: 100%; object-fit: contain; }

/* --- 03. Bandeau d'âge (haut de page) ---------------------- */
.age-bar {
  background: var(--plum-deep);
  color: #efe7ee;
  font-size: .8rem;
  line-height: 1.45;
  padding: 7px 0;
}
.age-bar__in { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s2) var(--s4); }
.age-bar__flag {
  font-family: var(--mono);
  font-weight: 700;
  background: var(--brass-bright);
  color: #241c2b;
  border-radius: 999px;
  padding: 1px 9px;
  font-size: .76rem;
  flex: none;
}
.age-bar p { margin: 0; max-width: none; }
.age-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* --- 04. En-tête : logo centré, liens de part et d'autre --- */
.hd {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.hd__in {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s4);
  padding-top: var(--s4);
  padding-bottom: var(--s4);
}
.hd__brand { display: flex; align-items: center; gap: var(--s3); justify-self: center; text-align: center; }
.hd__brand img { width: 38px; height: 38px; border-radius: 10px; }
.hd__name { font-weight: 700; font-size: 1.06rem; letter-spacing: -.02em; line-height: 1.1; color: var(--ink); }
.hd__name span { display: block; font-family: var(--mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brass); font-weight: 400; }
.hd__nav { display: flex; gap: var(--s5); flex-wrap: wrap; }
.hd__nav--l { justify-content: flex-start; }
.hd__nav--r { justify-content: flex-end; }
.hd__nav a { font-size: .9rem; font-weight: 600; color: var(--ink-soft); }
.hd__nav a:hover { color: var(--plum); }
.hd__nav a[aria-current="page"] { color: var(--plum); box-shadow: inset 0 -2px 0 var(--brass-bright); }
.hd__toggle { display: none; }

@media (max-width: 900px) {
  .hd__nav {
    grid-column: 1 / -1;
    justify-content: center;
    gap: var(--s3) var(--s5);
    padding-top: var(--s4);
    border-top: 1px solid var(--line-soft);
  }
  .hd__nav--r { border-top: 0; padding-top: var(--s2); }
  .hd.is-collapsible .hd__nav { display: none; }
  .hd.is-collapsible.is-open .hd__nav { display: flex; }
  .hd__toggle {
    display: inline-flex; align-items: center; gap: var(--s2);
    justify-self: start;
    background: var(--base); border: 1px solid var(--line); border-radius: var(--r-s);
    padding: 8px var(--s3); font: 600 .85rem/1 var(--sans); color: var(--ink); cursor: pointer;
  }
  .hd__spacer { justify-self: end; }
}

/* --- 05. Héros : un titre géant domine --------------------- */
.hero {
  background-color: var(--plum-deep);
  background-image: linear-gradient(180deg, rgba(60, 27, 49, .82), rgba(36, 16, 30, .93)), url("/assets/hero-band.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: var(--s9) 0 var(--s8);
}
.hero .kicker { color: var(--brass-bright); }
.hero__title {
  font-size: clamp(2.6rem, 7.4vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.035em;
  margin: 0 0 var(--s5);
  max-width: 15ch;
}
.hero__title em { font-style: normal; color: var(--brass-bright); }
.hero__lede { font-size: 1.1rem; color: #e4d9e3; max-width: 62ch; margin: 0 0 var(--s6); }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s3);
  list-style: none;
  margin: 0 0 var(--s6);
  padding: 0;
  max-width: 780px;
}
.hero__stats li {
  margin: 0;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-m);
  padding: var(--s3) var(--s4);
}
@media (max-width: 620px) {
  .hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.hero__stats b { display: block; font-family: var(--mono); font-size: 1.6rem; font-variant-numeric: tabular-nums; letter-spacing: -.03em; }
.hero__stats span { font-size: .8rem; color: #d3c4d2; }
.hero__note {
  font-size: .88rem;
  color: #dccfdb;
  border-left: 2px solid var(--brass-bright);
  padding-left: var(--s4);
  max-width: 68ch;
  margin: 0;
}
.hero__note a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* --- 06. Grille bento -------------------------------------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--s4); }
.bento__tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  box-shadow: var(--inner);
  padding: var(--s5);
  grid-column: span 2;
  display: flex;
  flex-direction: column;
}
.bento__tile > :last-child { margin-bottom: 0; }
.bento__tile--wide { grid-column: span 3; }
.bento__tile--full { grid-column: 1 / -1; }
.bento__tile--four { grid-column: span 4; }
.bento__tile--plum { background: var(--plum); border-color: var(--plum); color: #fff; }
.bento__tile--plum .kicker { color: var(--brass-bright); }
.bento__tile--plum a { color: #fff; }
.bento__tile--tint { background: var(--plum-tint); border-color: #e3d7e2; }
.bento__tile--brass { background: var(--brass-tint); border-color: #ebdcb8; }
.bento__tile--flush { padding: 0; overflow: hidden; }
.bento__tile img.bento__img { width: 100%; height: 100%; min-height: 190px; object-fit: cover; }
.bento__stat { font-family: var(--mono); font-size: 2.4rem; font-variant-numeric: tabular-nums; letter-spacing: -.04em; line-height: 1; margin: 0 0 var(--s2); }

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento__tile, .bento__tile--wide { grid-column: span 2; }
  .bento__tile--four, .bento__tile--full { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .bento__tile, .bento__tile--wide, .bento__tile--four, .bento__tile--full { grid-column: 1 / -1; }
}

/* --- 07. Bandes de section (séparation par teinte) --------- */
.band { padding: var(--s8) 0; }
.band--tint { background: var(--base-alt); }
.band--motif { background: transparent; }
.band--white { background: var(--surface); }
.band--plum { background: var(--plum-deep); color: #f1e9ef; }
.band--plum h2, .band--plum h3 { color: #fff; }
.band--plum a { color: #fff; }
.band__head { max-width: 720px; margin-bottom: var(--s6); }
.band__head p { color: var(--ink-soft); margin-bottom: 0; }
.band--plum .band__head p { color: #d9cbd8; }

/* --- 08. Divulgation d'affiliation ------------------------- */
.disc {
  background: var(--brass-tint);
  border: 1px solid #e8d8b2;
  border-radius: var(--r-m);
  padding: var(--s4) var(--s5);
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
}
.disc__tag {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  background: var(--brass);
  color: #fff;
  border-radius: 999px;
  padding: 3px 10px;
  flex: none;
  margin-top: 3px;
}
.disc p { margin: 0; font-size: .93rem; color: #4a3d20; max-width: none; }
.disc a { color: #6d4f0f; text-decoration: underline; text-underline-offset: 3px; }

.warnstrip {
  border: 1px solid var(--line);
  border-left: 4px solid var(--brass-bright);
  border-radius: var(--r-m);
  background: #fff;
  box-shadow: var(--inner);
  padding: var(--s4) var(--s5);
  margin: 0 0 var(--s6);
}
.warnstrip p { margin: 0; font-weight: 700; font-size: .95rem; max-width: none; }

/* --- 09. Registre des opérateurs (liste numérotée) --------- */
.led { list-style: none; margin: 0; padding: 0; max-width: none; display: grid; gap: var(--s5); }
.led__row {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  box-shadow: var(--inner);
  padding: var(--s5);
  margin: 0;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: var(--s5);
  align-items: start;
}
.led__index {
  font-family: var(--mono);
  font-size: 3.1rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.06em;
  line-height: .9;
  color: var(--line);
}
.led__body { min-width: 0; }
.led__top { display: flex; flex-wrap: wrap; gap: var(--s4); align-items: center; margin-bottom: var(--s4); }
.led__name { margin: 0; font-size: 1.35rem; }
.led__scorebox {
  margin-left: auto;
  background: var(--plum);
  color: #fff;
  border-radius: var(--r-s);
  padding: var(--s2) var(--s4);
  text-align: center;
  flex: none;
}
.led__score { font-family: var(--mono); font-size: 1.5rem; font-variant-numeric: tabular-nums; font-weight: 700; letter-spacing: -.03em; display: block; line-height: 1.1; }
.led__score small { font-size: .78rem; opacity: .72; font-weight: 400; }
.led__scorelabel { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; font-family: var(--mono); opacity: .8; }
.led__facts { list-style: none; margin: 0 0 var(--s4); padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s2) var(--s5); }
.led__facts li { margin: 0; font-size: .9rem; display: flex; gap: var(--s3); border-bottom: 1px dotted var(--line); padding-bottom: 6px; }
.led__facts dfn { font-style: normal; color: var(--ink-faint); flex: none; width: 116px; font-family: var(--mono); font-size: .76rem; letter-spacing: .04em; text-transform: uppercase; padding-top: 3px; }
.led__facts b { font-weight: 600; }
.led__verdict { font-size: .95rem; color: var(--ink-soft); }
.led__foot { grid-column: 1 / -1; }
.led__perf {
  border: 0;
  border-top: 1px dashed var(--line);
  margin: var(--s2) calc(var(--s5) * -1) var(--s5);
  position: relative;
}
.led__perf::before, .led__perf::after {
  content: "";
  position: absolute;
  top: -9px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--base-alt);
  border: 1px solid var(--line);
}
.led__perf::before { left: -10px; }
.led__perf::after { right: -10px; }
.led__actions { display: flex; flex-wrap: wrap; gap: var(--s3); align-items: center; }
.led__small { font-size: .78rem; color: var(--ink-faint); margin: var(--s3) 0 0; max-width: none; }

@media (max-width: 760px) {
  .led__row { grid-template-columns: 1fr; gap: var(--s3); padding: var(--s4); }
  .led__index { font-size: 2.1rem; }
  .led__facts { grid-template-columns: 1fr; }
  .led__scorebox { margin-left: 0; }
  .led__perf { margin-left: calc(var(--s4) * -1); margin-right: calc(var(--s4) * -1); }
  .led__actions .btn { flex: 1 1 auto; justify-content: space-between; }
}

/* --- 10. Analyse critère par critère ----------------------- */
.crit { display: grid; gap: var(--s5); }
.crit__block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  box-shadow: var(--inner);
  padding: var(--s6);
}
.crit__block--lead { border-color: var(--plum); border-width: 2px; }
.crit__head { display: flex; flex-wrap: wrap; gap: var(--s3); align-items: baseline; margin-bottom: var(--s4); }
.crit__no { font-family: var(--mono); font-size: .78rem; letter-spacing: .16em; color: var(--brass); }
.crit__block h3 { margin: 0; font-size: 1.3rem; }
.crit__block p { max-width: 80ch; }
.crit__rank { list-style: none; margin: var(--s5) 0 0; padding: 0; max-width: none; counter-reset: rk; display: grid; gap: var(--s3); }
.crit__rank li {
  margin: 0;
  display: grid;
  grid-template-columns: 26px 108px minmax(0, 1fr) 58px;
  gap: var(--s4);
  align-items: baseline;
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--line-soft);
  font-size: .95rem;
}
.crit__rank li:last-child { border-bottom: 0; padding-bottom: 0; }
.crit__rank li::before {
  counter-increment: rk;
  content: counter(rk);
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  color: var(--ink-faint);
  font-size: .85rem;
}
.crit__rank b { font-weight: 700; }
.crit__mark {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  background: var(--plum-tint);
  color: var(--plum-deep);
  border-radius: var(--r-s);
  padding: 2px 9px;
  font-size: .88rem;
}
.crit__mark--na { background: var(--base-alt); color: var(--ink-faint); font-weight: 400; font-size: .78rem; }

@media (max-width: 620px) {
  .crit__block { padding: var(--s5); }
  .crit__rank li { grid-template-columns: 26px minmax(0, 1fr) 58px; row-gap: var(--s1); }
  .crit__rank li b { grid-column: 2; }
  .crit__rank li span { grid-column: 2 / 4; }
}

/* --- 11. Tableau de comparaison ---------------------------- */
.tbl__scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-m); background: #fff; box-shadow: var(--inner); }
.tbl { border-collapse: collapse; width: 100%; min-width: 720px; font-size: .92rem; }
.tbl caption { text-align: left; padding: var(--s4) var(--s5); color: var(--ink-soft); font-size: .86rem; border-bottom: 1px solid var(--line); }
.tbl th, .tbl td { padding: var(--s3) var(--s4); text-align: left; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
.tbl thead th { background: var(--base-alt); font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; }
.tbl tbody th { font-weight: 600; width: 230px; color: var(--ink); }
.tbl td { font-family: var(--mono); font-variant-numeric: tabular-nums; text-align: center; }
.tbl tbody tr:last-child th, .tbl tbody tr:last-child td { border-bottom: 0; }
.tbl tr:hover td, .tbl tr:hover th { background: #faf8fb; }
.tbl .is-top { color: var(--plum); font-weight: 700; }
.tbl .is-na { color: var(--ink-faint); }
.tbl__foot { font-size: .82rem; color: var(--ink-faint); margin: var(--s3) 0 0; }

/* --- 12. Méthode et note d'honnêteté ----------------------- */
.meth__list { list-style: none; margin: 0 0 var(--s5); padding: 0; display: grid; gap: var(--s3); counter-reset: mt; }
.meth__list li { margin: 0; display: grid; grid-template-columns: 34px 1fr; gap: var(--s3); align-items: start; }
.meth__list li::before {
  counter-increment: mt;
  content: "0" counter(mt);
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--brass);
  padding-top: 3px;
}
.note__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s5); }
.note__col h3 { margin-bottom: var(--s3); }
.note__col ul { margin: 0; padding-left: 1.1em; }
@media (max-width: 720px) { .note__grid { grid-template-columns: 1fr; } }

/* --- 13. Questions fréquentes ------------------------------ */
.faq { display: grid; gap: var(--s6); max-width: 780px; }
.faq__item { border-top: 1px solid var(--line); padding-top: var(--s5); }
.faq__item:first-child { border-top: 0; padding-top: 0; }
.faq__q { font-size: 1.18rem; margin-bottom: var(--s3); }
.faq__item p:last-child { margin-bottom: 0; }

/* --- 14. Avertissement compact ----------------------------- */
.dscl {
  border: 1px solid var(--line);
  border-left: 3px solid var(--plum);
  border-radius: var(--r-m);
  background: #fff;
  padding: var(--s5);
}
.dscl h3 { margin-bottom: var(--s3); }
.dscl p { font-size: .9rem; color: var(--ink-soft); }
.dscl p:last-child { margin-bottom: 0; }

/* --- 15. Ressources officielles + rappel d'âge ------------- */
.res { background: var(--plum-deep); color: #ece2ea; padding: var(--s7) 0 var(--s6); }
.res h2 { color: #fff; font-size: 1.35rem; margin-bottom: var(--s3); }
.res__intro { color: #cdbccb; font-size: .92rem; max-width: 74ch; }
.res__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s3); margin: var(--s5) 0 0; padding: 0; list-style: none; }
.res__grid li { margin: 0; }
.res__grid a {
  display: block;
  height: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-m);
  padding: var(--s4);
  color: #fff;
  text-decoration: none;
}
.res__grid a:hover { background: rgba(255, 255, 255, .12); text-decoration: none; }
.res__grid b { display: block; font-size: .97rem; margin-bottom: 3px; }
.res__grid span { display: block; font-size: .82rem; color: #cbb9c9; }
.res__strip {
  margin-top: var(--s5);
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding-top: var(--s4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s3) var(--s5);
  font-size: .84rem;
  color: #cdbccb;
}
.res__strip a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.res__links { display: flex; flex-wrap: wrap; gap: var(--s2) var(--s4); list-style: none; margin: 0; padding: 0; }
.res__links li { margin: 0; }
@media (max-width: 860px) { .res__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .res__grid { grid-template-columns: 1fr; } }

/* --- 16. Pied de page -------------------------------------- */
.ft { background: #241c2b; color: #cfc4d1; padding: var(--s8) 0 var(--s6); font-size: .9rem; }
.ft__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--s6) var(--s5); }
.ft h3 { color: #fff; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-family: var(--mono); font-weight: 400; margin-bottom: var(--s4); }
.ft ul { list-style: none; margin: 0; padding: 0; }
.ft li { margin-bottom: var(--s2); }
.ft a { color: #cfc4d1; }
.ft a:hover { color: #fff; }
.ft__brand { display: flex; align-items: center; gap: var(--s3); margin-bottom: var(--s4); }
.ft__brand img { width: 34px; height: 34px; border-radius: 9px; }
.ft__brand b { color: #fff; font-size: 1rem; }
.ft p { color: #b3a6b6; font-size: .86rem; }
.ft__warn {
  margin-top: var(--s7);
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: var(--s5);
}
.ft__warn p {
  color: #fff;
  font-weight: 700;
  font-size: .93rem;
  max-width: none;
  margin: 0 0 var(--s3);
}
.ft__legal { display: flex; flex-wrap: wrap; gap: var(--s2) var(--s5); color: #9d90a1; font-size: .82rem; margin: 0; max-width: none; }
@media (max-width: 860px) { .ft__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ft__grid { grid-template-columns: 1fr; } }

/* --- 17. Pages intérieures --------------------------------- */
.pg__head { background: var(--surface); border-bottom: 1px solid var(--line); padding: var(--s8) 0 var(--s7); }
.pg__head h1 { max-width: 20ch; margin-bottom: var(--s4); }
.pg__head p { font-size: 1.05rem; color: var(--ink-soft); }
.pg__head p:last-child { margin-bottom: 0; }
.pg__meta { font-family: var(--mono); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-top: var(--s4); }
.pg__body { padding: var(--s8) 0; }
.pg__body h2 { margin-top: var(--s7); }
.pg__body > :first-child, .pg__body h2:first-child { margin-top: 0; }
.pg__figure { margin: var(--s6) 0; }
.pg__figure img { border-radius: var(--r-m); border: 1px solid var(--line); width: 100%; }
.pg__figure figcaption { font-size: .82rem; color: var(--ink-faint); margin-top: var(--s2); }
.pg__box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  box-shadow: var(--inner);
  padding: var(--s5);
  margin: var(--s6) 0;
}
.pg__box > :last-child { margin-bottom: 0; }
.pg__box--tint { background: var(--plum-tint); border-color: #e3d7e2; }
.pg__cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s5); margin: var(--s6) 0; }
@media (max-width: 720px) { .pg__cols { grid-template-columns: 1fr; } }

.gloss { margin: 0; }
.gloss__group { margin-bottom: var(--s7); }
.gloss__letter {
  font-family: var(--mono);
  font-size: .8rem;
  letter-spacing: .18em;
  color: var(--brass);
  border-bottom: 1px solid var(--line);
  padding-bottom: var(--s2);
  margin-bottom: var(--s4);
}
.gloss dl { margin: 0; display: grid; gap: var(--s4); }
.gloss dt { font-weight: 700; font-size: 1rem; }
.gloss dd { margin: 4px 0 0; color: var(--ink-soft); font-size: .95rem; max-width: 72ch; }

.contact__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  box-shadow: var(--inner);
  padding: var(--s5);
}
.contact__card h3 { margin-bottom: var(--s2); }
.contact__card p { font-size: .95rem; }
.contact__card p:last-child { margin-bottom: 0; }
.contact__mail { font-family: var(--mono); font-size: .95rem; }

/* --- 18. Bandeau cookies ----------------------------------- */
.cc {
  position: fixed;
  left: var(--s4); right: var(--s4); bottom: var(--s4);
  z-index: 50;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  box-shadow: 0 10px 30px rgba(32, 27, 38, .18);
  padding: var(--s5);
  max-width: 720px;
  margin: 0 auto;
  display: none;
}
.cc.is-shown { display: block; }
.cc h2 { font-size: 1.05rem; margin-bottom: var(--s2); }
.cc p { font-size: .88rem; color: var(--ink-soft); margin-bottom: var(--s4); }
.cc__actions { display: flex; flex-wrap: wrap; gap: var(--s3); }

/* --- 19. Mouvement réduit ---------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
  .btn:active { transform: none; }
}
