/* ==========================================================================
   Discretio — feuille de style unique
   --------------------------------------------------------------------------
   Fond clair, encre ardoise, accent sauge. L'identite n'est pas abandonnee :
   elle est inversee. Le repere vise est le cabinet specialise, pas le produit
   tech — d'ou les filets plutot que les cartes, l'absence d'ombre portee et
   la largeur de texte bornee.

   Aucune couleur en dur hors de ce bloc de variables.
   ========================================================================== */

/* --- Polices auto-hebergees -------------------------------------------- */
/* Servies depuis /static : aucun appel a un tiers, par coherence avec le
   discours sur la confidentialite (et pour la performance).                */
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('/static/fonts/inter-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('/static/fonts/inter-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Spectral'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('/static/fonts/spectral-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Spectral'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('/static/fonts/spectral-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Spectral'; font-style: italic; font-weight: 400; font-display: swap;
  src: url('/static/fonts/spectral-latin-400-italic.woff2') format('woff2');
}

:root {
  --fond:       #f7f6f2;   /* blanc casse chaud, jamais de blanc pur */
  --surface:    #ffffff;
  --surface-2:  #f2f1ec;
  --filet:      rgba(26,34,40,.11);
  --filet-fort: rgba(26,34,40,.22);
  --texte:      #1a2228;
  --texte-2:    #4d5a5f;
  /* Assombri par rapport a la valeur d'origine (#7d8a8c) : celle-ci plafonne
     a 3,3:1 sur --fond et echoue au AA en texte courant. #656f71 atteint
     4,7:1 et satisfait l'exigence d'accessibilite demandee.                */
  --texte-3:    #656f71;
  --sauge:      #4a6b55;   /* 5,4:1 sur --fond — AA */
  --sauge-fonce:#3b5644;
  --alerte:     #9e3b28;   /* compteur d'actes UNIQUEMENT */

  --serif: 'Spectral', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --r-ctrl: 8px;
  --r-carte: 12px;
  --lisible: 720px;
}

/* --- Base --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--fond);
  color: var(--texte);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--sauge); text-decoration: none; }
a:hover { color: var(--sauge-fonce); text-decoration: underline; }
:focus-visible { outline: 2px solid var(--sauge); outline-offset: 2px; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(1.9rem, 4.2vw, 2.85rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.35rem, 2.6vw, 1.75rem); }
h3 { font-size: 1.12rem; }
h4 { font-family: var(--sans); font-weight: 500; font-size: 1rem; }

p, li { color: var(--texte-2); }
strong, b { font-weight: 500; color: var(--texte); }

/* --- Mise en page ------------------------------------------------------- */
.enveloppe { flex: 1; display: flex; flex-direction: column; }

/* Une seule gouttiere pour toute la page. Deux conteneurs de largeurs
   differentes, tous deux centres, produisent des bords gauches decales d'une
   section a l'autre — defaut immediatement lisible comme de l'amateurisme.
   La largeur de LECTURE est bornee separement, sans toucher a l'alignement. */
.contenu, .contenu-large {
  width: 100%; max-width: 800px; margin-inline: auto; padding-inline: 1.25rem;
}
/* Mesure de lecture : les blocs de texte ne depassent jamais 680px, mais
   restent alignes sur le bord gauche du conteneur.                          */
.contenu > h1, .contenu > h2, .contenu > h3, .contenu > p,
.contenu > ul, .contenu > ol, .contenu > .reglement, .contenu > .faq,
.contenu > .limites, .contenu > .comparatif, .contenu > .bloc-sobre {
  max-width: var(--lisible);
}
.contenu.centre > h1, .contenu.centre > h2, .contenu.centre > p,
.contenu.centre > .sous-section {
  margin-inline: auto;
}
/* Le titre d'accroche n'est pas un paragraphe : il occupe toute la largeur
   du conteneur. Le brider a la mesure de lecture laissait un vide marque a
   droite sur grand ecran.                                                   */
.contenu > h1 { max-width: none; }

section { padding-block: clamp(2.5rem, 6vw, 4rem); }
/* Les sections se separent par des filets et du blanc, jamais par un
   changement de fond : c'est ce qui distingue un site de cabinet d'un
   empilement de bandeaux colores.                                          */
section + section { border-top: 1px solid var(--filet); }

/* --- En-tete ------------------------------------------------------------ */
.entete {
  border-bottom: 1px solid var(--filet);
  background: var(--fond);
}
.entete-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  padding-block: 1.1rem;
}
.marque {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 500;
  color: var(--texte); letter-spacing: -.01em;
}
.marque:hover { color: var(--texte); text-decoration: none; }
.marque .pt { color: var(--sauge); }

.nav-principale { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.nav-principale a {
  font-size: .875rem; color: var(--texte-2);
  padding-block: .2rem; border-bottom: 1px solid transparent;
}
.nav-principale a:hover,
.nav-principale a[aria-current="page"] {
  color: var(--texte); border-bottom-color: var(--sauge); text-decoration: none;
}

/* --- Surtitre ----------------------------------------------------------- */
.surtitre {
  font-size: .75rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--sauge); font-weight: 500;
  display: flex; align-items: center; gap: .9rem; margin-bottom: 1.1rem;
}
.surtitre::after { content: ""; flex: 1; height: 1px; background: var(--filet); }
.surtitre.centre { justify-content: center; }
.surtitre.centre::before { content: ""; width: 34px; height: 1px; background: var(--filet); flex: none; }
.surtitre.centre::after { flex: none; width: 34px; }

.chapo { font-size: 1.05rem; line-height: 1.7; color: var(--texte-2);
         max-width: 58ch; }
.sous-section { color: var(--texte-2); max-width: 62ch; margin-bottom: 2rem; }

/* --- Boutons ------------------------------------------------------------ */
.bouton, button.bouton {
  display: inline-block; font-family: var(--sans); font-size: .95rem;
  font-weight: 500; line-height: 1.2; cursor: pointer;
  padding: .85rem 1.6rem; border-radius: var(--r-ctrl);
  background: var(--sauge); color: var(--surface); border: 1px solid var(--sauge);
  transition: background .15s, border-color .15s;
}
.bouton:hover { background: var(--sauge-fonce); border-color: var(--sauge-fonce);
                color: var(--surface); text-decoration: none; }
.bouton-secondaire {
  background: transparent; color: var(--texte); border: 1px solid var(--filet-fort);
}
.bouton-secondaire:hover { background: var(--surface); color: var(--texte);
                           border-color: var(--texte-3); }

/* --- Champ SIREN -------------------------------------------------------- */
.recherche { max-width: 30rem; }
.recherche .etiquette {
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--texte-3); margin-bottom: .6rem; font-weight: 500;
}
.champ-groupe {
  display: flex; border: 1px solid var(--filet-fort); border-radius: var(--r-ctrl);
  background: var(--surface); overflow: hidden;
  transition: border-color .2s;
}
.champ-groupe:focus-within { border-color: var(--sauge); }
.champ-groupe input {
  flex: 1; min-width: 0; border: none; background: transparent;
  font-family: var(--sans); font-size: 1.05rem; letter-spacing: .1em;
  color: var(--texte); padding: .9rem 1rem; outline: none;
}
.champ-groupe input::placeholder { color: var(--texte-3); letter-spacing: .06em; }
.champ-groupe button {
  border: none; background: var(--sauge); color: var(--surface);
  font-family: var(--sans); font-size: .9rem; font-weight: 500;
  padding-inline: 1.3rem; cursor: pointer; white-space: nowrap;
  transition: background .15s;
}
.champ-groupe button:hover { background: var(--sauge-fonce); }
.mention-champ { font-size: .85rem; color: var(--texte-3); margin-top: .7rem; }

/* --- Citation reglementaire --------------------------------------------- */
/* Filet vertical et serif : le texte de loi est presente comme une citation
   de source officielle, pas comme un argument commercial.                   */
.reglement {
  font-family: var(--serif); font-size: 1rem; line-height: 1.7;
  color: var(--texte-2); border-left: 2px solid var(--sauge);
  padding: .2rem 0 .2rem 1.1rem; margin-block: 1.4rem;
}
.reglement cite { font-style: normal; color: var(--texte); font-weight: 500; }
.reglement .source { display: block; margin-top: .5rem; font-family: var(--sans);
                     font-size: .82rem; color: var(--texte-3); }

/* --- Cartes et blocs ---------------------------------------------------- */
.bloc {
  background: var(--surface); border: 1px solid var(--filet);
  border-radius: var(--r-carte); padding: 1.6rem;
}
.bloc-sobre { background: var(--surface-2); border: 1px solid var(--filet);
              border-radius: var(--r-carte); padding: 1.5rem; }
.bloc-accent { border-color: var(--sauge); }

.grille-2 { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grille-3 { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.grille-4 { display: grid; gap: 1.3rem; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }

.etiquette-bloc {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--texte-3); font-weight: 500; margin-bottom: .6rem;
}
.bloc-accent .etiquette-bloc { color: var(--sauge); }

.liste-filets { list-style: none; }
.liste-filets li {
  position: relative; padding-left: 1.15rem; margin-bottom: .5rem;
  font-size: .95rem; line-height: 1.6;
}
.liste-filets li::before {
  content: ""; position: absolute; left: 0; top: .72em;
  width: 7px; height: 1px; background: var(--sauge);
}

/* --- Etapes numerotees -------------------------------------------------- */
.etape { border-top: 1px solid var(--filet); padding-top: 1.1rem; }
.etape .pastille {
  width: 1.85rem; height: 1.85rem; border-radius: 50%;
  border: 1px solid var(--filet-fort); color: var(--texte-3);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 500; margin-bottom: .7rem;
}
.etape h4 { margin-bottom: .35rem; }
.etape p { font-size: .92rem; }

/* --- Devis ventile ------------------------------------------------------ */
/* Element de reassurance central : traite comme un objet graphique soigne,
   total en serif separe par un filet renforce.                              */
.devis { background: var(--surface); border: 1px solid var(--filet);
         border-radius: var(--r-carte); padding: 1.4rem 1.5rem; }
.devis-ligne {
  display: flex; justify-content: space-between; gap: 1.2rem;
  padding-block: .55rem; font-size: .95rem; color: var(--texte-2);
  border-bottom: 1px solid var(--filet);
}
.devis-ligne:last-of-type { border-bottom: none; }
.devis-ligne .libelle { display: block; }
.devis-ligne .detail { display: block; font-size: .82rem; color: var(--texte-3);
                       margin-top: .1rem; }
.devis-ligne .montant { white-space: nowrap; color: var(--texte); font-variant-numeric: tabular-nums; }
.devis-total {
  display: flex; justify-content: space-between; gap: 1.2rem; align-items: baseline;
  margin-top: .8rem; padding-top: .9rem; border-top: 2px solid var(--filet-fort);
  font-family: var(--serif); font-size: 1.3rem; color: var(--texte);
}
.devis-total .montant { font-variant-numeric: tabular-nums; }
.devis-note { font-size: .85rem; color: var(--texte-3); margin-top: .9rem;
              line-height: 1.6; }


/* Devis cote a cote (page tarifs) : les libelles de lignes sont longs
   (« Occultation des actes · 10 × 7,63 € »). En dessous d'environ 260 px de
   colonne ils se brisent sur trois lignes et le tableau devient illisible.
   On empile alors les exemples plutot que de les comprimer.                 */
.exemples-devis { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
/* Trois colonnes egales des que la largeur le permet : en `auto-fit`, deux
   exemples se placaient sur la premiere ligne et le troisieme restait seul
   en dessous, ce qui casse la comparaison.                                  */
@media (min-width: 840px) {
  .exemples-devis { grid-template-columns: repeat(3, 1fr); gap: .9rem; }
}
/* Les cartes s'etirent a la meme hauteur et le total est pousse en bas :
   sans cela, les trois totaux se retrouvent a des hauteurs differentes et la
   comparaison visuelle ne fonctionne plus.                                  */
.exemples-devis .devis { display: flex; flex-direction: column; }
.exemples-devis .devis .devis-total { margin-top: auto; }
.exemples-devis .devis-ligne { font-size: .88rem; }
.exemples-devis .devis-ligne .libelle { padding-right: .4rem; }

/* --- Compteur d'actes : SEUL usage du rouge sur tout le site ------------- */
.compteur { text-align: center; }
.compteur .nombre {
  font-family: var(--serif); font-size: clamp(3.5rem, 12vw, 6rem);
  line-height: 1; color: var(--alerte); font-weight: 400;
  font-variant-numeric: tabular-nums;
}
.compteur .libelle {
  font-size: 1.05rem; color: var(--texte-2); margin-top: .6rem;
}
.compteur.neutre .nombre { color: var(--texte); }

/* --- Acte et extrait masque --------------------------------------------- */
.acte {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: 1.1rem 0; border-bottom: 1px solid var(--filet);
}
.acte:last-child { border-bottom: none; }
.acte input[type="checkbox"] { margin-top: .35rem; width: 1rem; height: 1rem;
                               accent-color: var(--sauge); flex: none; cursor: pointer; }
/* Les elements internes sont des <span> — un <div> serait invalide dans le
   <label> qui rend toute la ligne cliquable. Ils doivent donc etre passes en
   bloc explicitement, sinon titre, meta et extrait se suivent en ligne.     */
.acte .corps { flex: 1; min-width: 0; display: block; }
.acte .titre, .acte .meta, .acte .extrait { display: block; }
.acte .titre { font-weight: 500; color: var(--texte); line-height: 1.4; }
.acte .situe { color: var(--texte-3); font-weight: 400; font-size: .9em; }
.acte .meta { font-size: .88rem; color: var(--texte-3); margin-top: .15rem; }
/* L'extrait doit ressembler a une citation de document officiel, pas a une
   donnee d'interface : serif, italique, sur surface secondaire.            */
.extrait {
  font-family: var(--serif); font-style: italic; font-size: .95rem;
  line-height: 1.6; color: var(--texte); background: var(--surface-2);
  border-left: 2px solid var(--alerte); border-radius: 0 var(--r-ctrl) var(--r-ctrl) 0;
  padding: .7rem .9rem; margin-top: .7rem; word-break: break-word;
}
.verification { font-size: .92rem; color: var(--texte-2); margin-top: 1rem; }
.verification a { border-bottom: 1px solid var(--filet-fort); }

/* --- Limites ------------------------------------------------------------ */
/* Meme soin typographique que les arguments de vente : distinguee par la
   surface, jamais devalorisee par la taille.                                */
.limites { background: var(--surface-2); border-radius: var(--r-carte);
           padding: 1.6rem 1.7rem; }
.limites h2, .limites h3 { margin-bottom: .8rem; }
.limites li { font-size: .95rem; }

/* --- Tableau / comparatif ----------------------------------------------- */
.comparatif { display: grid; gap: 1rem; }
.comparatif-item {
  border: 1px solid var(--filet); border-radius: var(--r-carte);
  padding: 1.3rem 1.4rem; background: var(--surface);
}
.comparatif-item.retenu { border-color: var(--sauge); }
.comparatif-item .entete-item {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; flex-wrap: wrap; margin-bottom: .5rem;
}
.comparatif-item .nom { font-weight: 500; color: var(--texte); font-size: 1.02rem; }
.comparatif-item .cout { font-family: var(--serif); font-size: 1.15rem;
                         color: var(--texte); white-space: nowrap; }
.comparatif-item .reste { font-size: .92rem; color: var(--texte-2); }
.comparatif-item .cout small { font-family: var(--sans); font-size: .78rem;
                               color: var(--texte-3); }

/* --- FAQ ---------------------------------------------------------------- */
.faq details { border-top: 1px solid var(--filet); padding-block: 1.1rem; }
.faq details:last-child { border-bottom: 1px solid var(--filet); }
.faq summary {
  cursor: pointer; font-weight: 500; color: var(--texte); font-size: 1rem;
  list-style: none; display: flex; justify-content: space-between;
  gap: 1rem; align-items: flex-start;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--sauge); font-size: 1.25rem;
                      line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin-top: .75rem; font-size: .96rem; }

/* --- Etapes de formulaire ----------------------------------------------- */
.progression { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.progression .pas {
  flex: 1; min-width: 5rem; font-size: .8rem; color: var(--texte-3);
  padding-top: .55rem; border-top: 2px solid var(--filet);
}
.progression .pas.actif { color: var(--sauge); border-top-color: var(--sauge); font-weight: 500; }
.progression .pas.fait { color: var(--texte-2); border-top-color: var(--filet-fort); }

.pourquoi { font-size: .87rem; color: var(--texte-3); line-height: 1.6;
            margin-top: .4rem; }

/* --- Pied de page ------------------------------------------------------- */
.pied { border-top: 1px solid var(--filet); margin-top: auto;
        padding-block: 2.2rem; background: var(--surface-2); }
.pied-grille { display: grid; gap: 1.6rem;
               grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.pied h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .1em;
           text-transform: uppercase; color: var(--texte-3); margin-bottom: .7rem; }
.pied ul { list-style: none; }
.pied li { margin-bottom: .4rem; font-size: .9rem; }
.pied a { color: var(--texte-2); }
.pied a:hover { color: var(--texte); }
/* L'identification complete de l'editeur (denomination, SIREN, adresse) vit
   dans les mentions legales et les CGV, pas dans le pied de chaque page :
   l'article 6-III de la LCEN exige qu'elle soit ACCESSIBLE, non repetee
   partout. Le lien vers les mentions legales suffit a l'obligation.        */
.pied-bas { border-top: 1px solid var(--filet); margin-top: 1.7rem;
            padding-top: 1.2rem; font-size: .82rem; color: var(--texte-3);
            display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }


/* --- Pages legales -------------------------------------------------------
   Structure commune aux CGV, mentions legales et politique de
   confidentialite. Le TEXTE de ces pages n'est jamais reecrit : seule leur
   presentation change, le contenu juridique restant celui qui a ete redige
   et sur lequel le client s'engage.                                         */
.doc { max-width: var(--lisible); }
.doc .eyebrow { font-size: .75rem; letter-spacing: .16em; text-transform: uppercase;
                color: var(--sauge); font-weight: 500; margin-bottom: 1rem; }
.doc .maj { font-size: .9rem; color: var(--texte-3); line-height: 1.7; }
.doc section { padding-block: 0; padding-top: 2.4rem; border-top: none; }
.doc section h2 {
  font-size: 1.25rem; margin-bottom: .9rem; padding-top: 1.6rem;
  border-top: 1px solid var(--filet);
  display: flex; gap: .8rem; align-items: baseline;
}
.doc section h2 .n { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em;
                     color: var(--sauge); font-variant-numeric: tabular-nums;
                     white-space: nowrap; font-weight: 500; }
.doc p, .doc li, .doc dd { font-size: .94rem; line-height: 1.75; color: var(--texte-2); }
.doc p { margin-bottom: .9rem; }
.doc ul { list-style: none; margin: .7rem 0 1.1rem; }
.doc li { position: relative; padding-left: 1.2rem; margin-bottom: .5rem; }
.doc li::before { content: ""; position: absolute; left: 0; top: .82em;
                  width: 7px; height: 1px; background: var(--sauge); }
.doc dl { margin: .9rem 0 1.1rem; }
.doc dt { color: var(--texte); font-weight: 500; font-size: .9rem; margin-top: .95rem; }
.doc dd { margin-top: .15rem; }
.doc a { border-bottom: 1px solid var(--filet-fort); }
.doc .encadre { background: var(--surface-2); border-left: 2px solid var(--sauge);
                border-radius: 0 var(--r-carte) var(--r-carte) 0;
                padding: 1.1rem 1.3rem; margin: 1.2rem 0; }
.doc .encadre p:last-child { margin-bottom: 0; }
.doc table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .9rem; }
.doc th, .doc td { text-align: left; padding: .7rem .6rem;
                   border-bottom: 1px solid var(--filet); vertical-align: top; }
.doc th { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
          color: var(--sauge); font-weight: 500; }
.doc td { color: var(--texte-2); }
@media (max-width: 540px) { .doc section h2 { flex-direction: column; gap: .3rem; } }


/* CGV : structure propre (sommaire ancre + <article> numerotes) */
.doc .sommaire { background: var(--surface-2); border-radius: var(--r-carte);
                 padding: 1.3rem 1.5rem; margin: 1.6rem 0 .5rem; }
.doc .sommaire .t { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
                    color: var(--texte-3); font-weight: 500; margin-bottom: .8rem; }
.doc .sommaire ol { list-style: none; counter-reset: none; margin: 0;
                    columns: 2; column-gap: 2rem; }
.doc .sommaire li { padding-left: 0; margin-bottom: .42rem;
                    break-inside: avoid; font-size: .89rem; }
.doc .sommaire li::before { display: none; }
.doc .sommaire a { color: var(--texte-2); border-bottom: none;
                   display: flex; gap: .6rem; }
.doc .sommaire a:hover { color: var(--sauge); text-decoration: none; }
.doc .sommaire .n { color: var(--sauge); font-variant-numeric: tabular-nums;
                    font-size: .82rem; white-space: nowrap; }

.doc article { padding-top: 2.4rem; scroll-margin-top: 1.5rem; }
.doc article h2 {
  font-size: 1.25rem; margin-bottom: .9rem; padding-top: 1.6rem;
  border-top: 1px solid var(--filet);
  display: flex; gap: .85rem; align-items: baseline;
}
.doc article h2 .n { font-family: var(--sans); font-size: .72rem; letter-spacing: .12em;
                     color: var(--sauge); font-weight: 500; white-space: nowrap;
                     font-variant-numeric: tabular-nums; }
@media (max-width: 620px) {
  .doc .sommaire ol { columns: 1; }
  .doc article h2 { flex-direction: column; gap: .3rem; }
}

/* --- Utilitaires -------------------------------------------------------- */
.centre { text-align: center; }
.pile > * + * { margin-top: 1rem; }
.tabulaire { font-variant-numeric: tabular-nums; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (max-width: 560px) {
  .champ-groupe { flex-direction: column; }
  .champ-groupe button { padding-block: .85rem; }
  .entete-in { padding-block: .9rem; }
  .nav-principale { gap: 1.1rem; width: 100%; }
  .nav-principale a { font-size: .82rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

@media print {
  body { background: #fff; }
  .entete, .pied, .bouton, .champ-groupe { display: none; }
}
