/* =========================================================
   Fiduciaire Bellerive & Associés
   Feuille de style principale
   Palette : vert profond, papier chaud, or/terracotta
   ========================================================= */

:root {
  /* couleurs */
  --vert: #1f3d2e;
  --vert-fonce: #16281c;
  --vert-clair: #355944;
  --papier: #f6f4ef;
  --papier-2: #efece4;
  --or: #a9793f;
  --or-clair: #c79a63;
  --encre: #23291f;
  --encre-doux: #55604f;
  --trait: rgba(31, 61, 46, 0.16);
  --trait-fort: rgba(31, 61, 46, 0.32);

  /* typo */
  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* mesures */
  --marge: clamp(1.25rem, 4vw, 3.5rem);
  --large: 1220px;
  --texte: 34rem;
  --rythme: clamp(3.5rem, 7vw, 6.5rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--papier);
  color: var(--encre);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ---------- typographie ---------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--vert-fonce);
  margin: 0 0 .6em;
  font-variation-settings: "SOFT" 20, "WONK" 0;
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.2; }
h4 { font-size: 1.0625rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--vert); text-decoration-color: var(--or); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--or); }

strong { font-weight: 600; }
em { font-style: italic; }

.lede {
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  line-height: 1.5;
  color: var(--encre-doux);
  max-width: 32rem;
}

.serif-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--vert-clair);
}

/* petit label en capitales, avec filet */
.eyebrow {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--or);
  display: flex;
  align-items: center;
  gap: .85rem;
  margin: 0 0 1.6rem;
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--trait);
}
.eyebrow--seul::after { display: none; }

.num {
  font-family: var(--serif);
  font-variant-numeric: lining-nums;
  color: var(--or);
}

/* ---------- structure ---------- */

.wrap { width: 100%; max-width: var(--large); margin-inline: auto; padding-inline: var(--marge); }
.wrap--etroit { max-width: 860px; }

section { padding-block: var(--rythme); }
section:first-of-type { padding-top: clamp(2.5rem, 5vw, 4rem); }

.filet { border: 0; height: 1px; background: var(--trait); margin: 0; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--vert-fonce); color: var(--papier);
  padding: .75rem 1.25rem; z-index: 100;
}
.skip:focus { left: 0; }

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

/* ---------- en-tête ---------- */

.entete {
  position: sticky; top: 0; z-index: 50;
  background: var(--papier);
  border-bottom: 1px solid var(--trait);
}
.entete__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  min-height: 76px;
}

.logo { display: flex; align-items: baseline; gap: .6rem; text-decoration: none; color: var(--vert-fonce); }
.logo__mot {
  font-family: var(--serif);
  font-size: 1.32rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo__mot em { font-style: italic; color: var(--or); }
.logo__sous {
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--encre-doux); font-weight: 500;
}

.nav ul { list-style: none; display: flex; gap: 1.9rem; margin: 0; padding: 0; align-items: center; }
.nav a {
  text-decoration: none;
  font-size: .935rem;
  color: var(--encre);
  padding-block: .35rem;
  border-bottom: 1px solid transparent;
}
.nav a:hover { color: var(--vert); border-bottom-color: var(--or); }
.nav a[aria-current] { border-bottom-color: var(--vert); font-weight: 500; }

.nav__cta {
  border: 1px solid var(--vert) !important;
  padding: .5rem 1.05rem !important;
  border-radius: 2px;
}
.nav__cta:hover { background: var(--vert); color: var(--papier) !important; }

.burger {
  display: none;
  background: none; border: 1px solid var(--trait-fort); border-radius: 2px;
  padding: .55rem .7rem; cursor: pointer; color: var(--vert-fonce);
  font: inherit; font-size: .85rem;
  align-items: center; gap: .5rem;
}
.burger span { display: block; width: 18px; height: 1px; background: currentColor; position: relative; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1px; background: currentColor;
}
.burger span::before { top: -5px; }
.burger span::after { top: 5px; }

@media (max-width: 900px) {
  .burger { display: inline-flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--papier);
    border-bottom: 1px solid var(--trait);
    display: none;
    padding: 1rem var(--marge) 1.6rem;
  }
  .nav[data-ouvert="true"] { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav li { border-bottom: 1px solid var(--trait); }
  .nav li:last-child { border-bottom: 0; padding-top: 1rem; }
  .nav a { display: block; padding: .85rem 0; font-size: 1.05rem; border-bottom: 0; }
  .nav__cta { display: inline-block !important; }
}

/* ---------- boutons ---------- */

.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .95rem; font-weight: 500;
  padding: .82rem 1.5rem;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid var(--vert-fonce);
  background: var(--vert-fonce); color: var(--papier);
  transition: background .18s ease, color .18s ease, border-color .18s ease;
  cursor: pointer;
}
.btn:hover { background: var(--or); border-color: var(--or); color: #fff; }
.btn--vide { background: transparent; color: var(--vert-fonce); }
.btn--vide:hover { background: var(--vert-fonce); border-color: var(--vert-fonce); color: var(--papier); }
.btn--clair { background: var(--papier); border-color: var(--papier); color: var(--vert-fonce); }
.btn--clair:hover { background: var(--or); border-color: var(--or); color: #fff; }

.lien-fleche {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 500; font-size: .95rem; text-decoration: none;
  color: var(--vert);
  border-bottom: 1px solid var(--trait-fort);
  padding-bottom: .2rem;
}
.lien-fleche::after { content: "\2192"; transition: transform .2s ease; }
.lien-fleche:hover { color: var(--or); border-bottom-color: var(--or); }
.lien-fleche:hover::after { transform: translateX(4px); }

/* ---------- héros ---------- */

.heros { padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3rem, 6vw, 5rem); position: relative; overflow: hidden; }
.heros__grille {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: end;
}
@media (max-width: 860px) { .heros__grille { grid-template-columns: 1fr; } }
.heros h1 { max-width: 13ch; }
.heros h1 em { font-style: italic; color: var(--or); }

.arc {
  position: absolute; right: -14%; top: -34%;
  width: min(48vw, 640px); opacity: .55; pointer-events: none; z-index: 0;
}
.heros .wrap { position: relative; z-index: 1; }

/* encart « repères » du héros */
.reperes { border-top: 2px solid var(--vert-fonce); padding-top: 1.1rem; }
.reperes dl { margin: 0; }
.reperes div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .85rem 0; border-bottom: 1px solid var(--trait);
}
.reperes dt { font-size: .9rem; color: var(--encre-doux); max-width: 22ch; }
.reperes dd {
  margin: 0; font-family: var(--serif); font-size: 1.35rem;
  color: var(--vert-fonce); white-space: nowrap;
}
.reperes__note { font-size: .78rem; color: var(--encre-doux); margin-top: .9rem; }

/* ---------- index des services ---------- */

.index-services { border-top: 1px solid var(--trait); }
.index-services__ligne {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 15rem) minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: baseline;
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--trait);
  text-decoration: none;
  color: inherit;
  transition: background .2s ease, padding .2s ease;
}
.index-services__ligne:hover {
  background: var(--papier-2);
  padding-inline: 1.1rem;
  color: inherit;
}
.index-services__ligne:hover h3 { color: var(--or); }
.index-services__ligne h3 { margin: 0; transition: color .2s ease; }
.index-services__ligne p { font-size: .95rem; color: var(--encre-doux); margin: 0; max-width: 46ch; }
.index-services__num { font-family: var(--serif); color: var(--or); font-size: 1rem; }
.index-services__fleche { font-size: 1.2rem; color: var(--trait-fort); }
.index-services__ligne:hover .index-services__fleche { color: var(--or); }

@media (max-width: 760px) {
  .index-services__ligne { grid-template-columns: 3rem 1fr; gap: .5rem 1rem; }
  .index-services__ligne p { grid-column: 2; }
  .index-services__fleche { display: none; }
}

/* ---------- bandeau sombre ---------- */

.sombre { background: var(--vert-fonce); color: var(--papier); }
.sombre h2, .sombre h3 { color: var(--papier); }
.sombre .eyebrow { color: var(--or-clair); }
.sombre .eyebrow::after { background: rgba(246, 244, 239, .2); }
.sombre p { color: rgba(246, 244, 239, .78); }
.sombre a { color: var(--papier); }
.sombre a:hover { color: var(--or-clair); }
.sombre .filet { background: rgba(246, 244, 239, .18); }
.sombre a.btn--clair { color: var(--vert-fonce); }
.sombre a.btn--clair:hover { color: #fff; }
.sombre a.lien-fleche { border-bottom-color: rgba(246, 244, 239, .38); }

/* ---------- méthode / étapes ---------- */

.etapes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
.etapes > div { border-top: 2px solid var(--or); padding-top: 1.2rem; }
.etapes h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.etapes span {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--or); display: block; margin-bottom: .8rem; font-weight: 600;
}
@media (max-width: 760px) { .etapes { grid-template-columns: 1fr; } }

/* ---------- piliers ---------- */

.piliers { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 5vw, 4rem) clamp(2.5rem, 6vw, 5rem); }
.piliers h3 { display: flex; gap: .8rem; align-items: baseline; }
@media (max-width: 700px) { .piliers { grid-template-columns: 1fr; } }

/* ---------- deux colonnes texte + rail ---------- */

.colonnes {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 20rem);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.colonnes > * { min-width: 0; }
@media (max-width: 900px) { .colonnes { grid-template-columns: minmax(0, 1fr); } }

/* grille d'introduction : titre à gauche, mise en bouche à droite */
.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.intro > * { min-width: 0; }
.intro > div:last-child { max-width: 30rem; }
@media (max-width: 880px) { .intro { grid-template-columns: minmax(0, 1fr); align-items: start; } }

.rail {
  border-top: 2px solid var(--vert-fonce);
  padding-top: 1.2rem;
  font-size: .95rem;
  position: sticky;
  top: 108px;
}
.rail h3 { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--or); margin-bottom: 1rem; }
.rail dl { margin: 0 0 1.6rem; }
.rail dt { font-weight: 600; font-size: .82rem; color: var(--encre-doux); margin-top: 1rem; }
.rail dd { margin: .15rem 0 0; }
.rail ul { margin: 0; padding-left: 1.1rem; }
.rail li { margin-bottom: .45rem; }
@media (max-width: 900px) { .rail { position: static; } }

.texte-long { max-width: var(--texte); }
.texte-long h2 { margin-top: 2.6rem; }
.texte-long h2:first-child { margin-top: 0; }
.texte-long h3 { margin-top: 2rem; }
.texte-long ul, .texte-long ol { padding-left: 1.25rem; margin: 0 0 1.3em; }
.texte-long li { margin-bottom: .5rem; }

/* ---------- tableau de seuils ---------- */

.tableau { width: 100%; border-collapse: collapse; margin: 1.8rem 0; font-size: .95rem; }
.tableau caption {
  text-align: left; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--or); font-weight: 600; padding-bottom: .8rem;
}
.tableau th, .tableau td { text-align: left; padding: .75rem .9rem .75rem 0; border-bottom: 1px solid var(--trait); vertical-align: top; }
.tableau thead th { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--encre-doux); font-weight: 600; border-bottom-color: var(--trait-fort); }
.tableau td:last-child, .tableau th:last-child { padding-right: 0; }
.tableau .chiffre { font-family: var(--serif); font-size: 1.05rem; white-space: nowrap; }
.table-scroll { overflow-x: auto; max-width: 100%; }
.texte-long, .article-corps { min-width: 0; }

/* ---------- questions / réponses ---------- */

.qa { border-top: 1px solid var(--trait-fort); }
.qa details { border-bottom: 1px solid var(--trait); }
.qa summary {
  cursor: pointer;
  list-style: none;
  padding: 1.35rem 2.5rem 1.35rem 0;
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.35;
  color: var(--vert-fonce);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+";
  position: absolute; right: .2rem; top: 50%; transform: translateY(-50%);
  font-size: 1.3rem; color: var(--or); font-family: var(--sans); font-weight: 300;
}
.qa details[open] summary::after { content: "\2013"; }
.qa summary:hover { color: var(--or); }
.qa__rep { padding: 0 3rem 1.6rem 0; max-width: 60ch; color: var(--encre-doux); }
.qa__rep p { margin-bottom: .9em; }
.qa__rep a { color: var(--vert); }

/* ---------- équipe ---------- */

.equipe { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: clamp(2rem, 4vw, 3.2rem); }
.profil { border-top: 1px solid var(--trait-fort); padding-top: 1.5rem; }
.profil__av {
  width: 74px; height: 74px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.55rem; letter-spacing: .02em;
  margin-bottom: 1.1rem;
  border: 1px solid var(--trait-fort);
}
.profil h3 { margin-bottom: .15rem; font-size: 1.3rem; }
.profil__role { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--or); font-weight: 600; margin-bottom: 1rem; }
.profil p { font-size: .95rem; color: var(--encre-doux); }
.profil__soccupe { margin-top: 1rem; font-size: .88rem; padding-top: .9rem; border-top: 1px solid var(--trait); }
.profil__soccupe strong { color: var(--vert-fonce); font-weight: 600; }

.av-1 { background: #e4e9e0; color: var(--vert-fonce); }
.av-2 { background: #efe3d3; color: #8a5f2c; }
.av-3 { background: var(--vert-fonce); color: var(--papier); }
.av-4 { background: #e3e6ec; color: #3c4a5c; }
.av-5 { background: #eee6e2; color: #7d5545; }

/* ---------- blog ---------- */

.articles { border-top: 1px solid var(--trait-fort); }
.article-ligne {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: 2.1rem 0;
  border-bottom: 1px solid var(--trait);
}
.article-ligne__meta { font-size: .78rem; color: var(--encre-doux); letter-spacing: .04em; padding-top: .35rem; }
.article-ligne h2 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); margin-bottom: .5rem; }
.article-ligne h2 a { text-decoration: none; }
.article-ligne p { font-size: .98rem; color: var(--encre-doux); max-width: 58ch; margin-bottom: .9rem; }
@media (max-width: 640px) {
  .article-ligne { grid-template-columns: 1fr; gap: .6rem; }
}

.article-entete { border-bottom: 1px solid var(--trait); padding-bottom: 2.2rem; margin-bottom: 2.8rem; }
.article-entete h1 { max-width: 20ch; }
.article-meta { font-size: .82rem; color: var(--encre-doux); display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; }

.article-corps { max-width: var(--texte); font-size: 1.09rem; }
.article-corps > p:first-of-type { font-size: 1.2rem; line-height: 1.55; color: var(--vert-fonce); }
.article-corps h2 { margin-top: 2.8rem; font-size: clamp(1.5rem, 2.6vw, 1.95rem); }
.article-corps h3 { margin-top: 2.1rem; }
.article-corps ul, .article-corps ol { padding-left: 1.3rem; }
.article-corps li { margin-bottom: .55rem; }
.article-corps blockquote {
  margin: 2rem 0; padding: 0 0 0 1.4rem;
  border-left: 2px solid var(--or);
  font-family: var(--serif); font-size: 1.25rem; line-height: 1.45; color: var(--vert-fonce);
}

.encadre {
  background: var(--papier-2);
  border-left: 2px solid var(--or);
  padding: 1.4rem 1.6rem;
  margin: 2.2rem 0;
  font-size: .98rem;
}
.encadre h3 { font-family: var(--sans); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--or); margin: 0 0 .7rem; }
.encadre p:last-child { margin-bottom: 0; }

/* ---------- formulaire ---------- */

.form { display: grid; gap: 1.2rem; }
.champ { display: grid; gap: .4rem; }
.champ label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--encre-doux); }
.champ input, .champ select, .champ textarea {
  font: inherit; font-size: 1rem;
  padding: .8rem .9rem;
  border: 1px solid var(--trait-fort);
  border-radius: 2px;
  background: #fff;
  color: var(--encre);
  width: 100%;
}
.champ textarea { min-height: 150px; resize: vertical; }
.champ input:focus, .champ select:focus, .champ textarea:focus { border-color: var(--vert); outline: 2px solid rgba(169,121,63,.35); outline-offset: 0; }
.champ--duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 560px) { .champ--duo { grid-template-columns: 1fr; } }
.form__note { font-size: .82rem; color: var(--encre-doux); }

.avis-demo {
  border: 1px dashed var(--or);
  background: rgba(169, 121, 63, .07);
  padding: .95rem 1.1rem;
  font-size: .88rem;
  color: #7a5527;
  border-radius: 2px;
}
.avis-demo strong { color: #62431d; }

/* ---------- fil d'ariane ---------- */

.ariane { font-size: .8rem; color: var(--encre-doux); padding-top: 1.6rem; }
.ariane ol { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; }
.ariane li::after { content: "/"; margin-left: .5rem; color: var(--trait-fort); }
.ariane li:last-child::after { display: none; }
.ariane a { text-decoration: none; }

/* ---------- liens connexes ---------- */

.connexes { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.connexes a {
  display: block; text-decoration: none;
  border-top: 1px solid var(--trait-fort); padding-top: 1rem;
  font-family: var(--serif); font-size: 1.15rem; line-height: 1.25; color: var(--vert-fonce);
}
.connexes a:hover { color: var(--or); }
.connexes span { display: block; font-family: var(--sans); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--or); margin-bottom: .5rem; font-weight: 600; }

/* ---------- pied de page ---------- */

.pied { background: var(--vert-fonce); color: rgba(246,244,239,.72); font-size: .92rem; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.pied__grille {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: 2.8rem;
}
.pied h2, .pied h3 { color: var(--papier); }
.pied h3 { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--or-clair); margin-bottom: 1.1rem; }
.pied ul { list-style: none; margin: 0; padding: 0; }
.pied li { margin-bottom: .55rem; }
.pied a { color: rgba(246,244,239,.85); text-decoration: none; }
.pied a:hover { color: var(--or-clair); text-decoration: underline; text-underline-offset: .2em; }
.pied__logo { font-family: var(--serif); font-size: 1.4rem; color: var(--papier); line-height: 1.15; margin-bottom: .9rem; display: block; }
.pied__logo em { font-style: italic; color: var(--or-clair); }
.pied__bas {
  border-top: 1px solid rgba(246,244,239,.18);
  padding-top: 1.6rem;
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
  font-size: .82rem;
}
.pied__demo { max-width: 62ch; color: rgba(246,244,239,.55); }
@media (max-width: 860px) { .pied__grille { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .pied__grille { grid-template-columns: 1fr; } }

/* ---------- bandeau CTA ---------- */

.cta-bande { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 2.5rem; align-items: end; }
.cta-bande h2 { max-width: 16ch; margin-bottom: .6rem; }
@media (max-width: 760px) { .cta-bande { grid-template-columns: 1fr; align-items: start; } }

/* ---------- divers ---------- */

.deux-tiers { max-width: 46rem; }
.mt-0 { margin-top: 0; }
.liste-nue { list-style: none; padding: 0; margin: 0; }

.doc { max-width: var(--texte); }
.doc h2 { font-size: 1.35rem; margin-top: 2.8rem; }
.doc h2 .num { margin-right: .6rem; font-size: 1.1rem; }
