/* ==========================================================================
   Binomya, feuille de style unique
   Regroupement des transports iteratifs et preuve du taux de partage
   Vocabulaire des classes : releve, tournee, filet, jeton, course, binome,
   branchement, feuille, appui, rail.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Jetons de couleur, de texte et de rythme
   -------------------------------------------------------------------------- */

:root {
  --fond: #F5F7F2;
  --fond-alt: #E8F1EB;
  --surface: #FFFFFF;
  --texte: #15251A;
  --texte-doux: #4A5B4E;
  --accent: #1E6732;
  --accent-sombre: #164E26;
  --accent-texte: #FFFFFF;
  --accent-2: #5E9B6F;
  --bordure: #C9DACD;

  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --courant: "Manrope", "Segoe UI", Helvetica, Arial, sans-serif;
  --tampon: "Old Standard TT", Georgia, "Times New Roman", serif;

  --largeur: 1180px;
  --gouttiere: 28px;
  --rayon: 6px;
  --rayon-marque: 16px;

  --balayage: repeating-linear-gradient(
    to bottom,
    rgba(30, 103, 50, 0.07) 0,
    rgba(30, 103, 50, 0.07) 1px,
    transparent 1px,
    transparent 6px
  );
  --balayage-serre: repeating-linear-gradient(
    to bottom,
    rgba(30, 103, 50, 0.07) 0,
    rgba(30, 103, 50, 0.07) 1px,
    transparent 1px,
    transparent 4px
  );
  --balayage-dense: repeating-linear-gradient(
    to bottom,
    rgba(30, 103, 50, 0.10) 0,
    rgba(30, 103, 50, 0.10) 1px,
    transparent 1px,
    transparent 4px
  );

  --courbe: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. Remise a plat
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--fond);
  color: var(--texte);
  font-family: var(--courant);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-sombre); }

h1, h2, h3, h4 { margin: 0 0 .6em; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.12;
}

h1 { font-size: 3.4rem; }
h2 { font-size: 2.4rem; }

h3 {
  font-family: var(--courant);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.35;
}

h4 {
  font-family: var(--courant);
  font-size: 1.0625rem;
  font-weight: 700;
}

p { margin: 0 0 1.1em; max-width: 68ch; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .45em; }

strong, .fort { font-weight: 600; }

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

::selection { background: var(--accent-2); color: #FFFFFF; }

.evitement {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--accent-texte);
  padding: 14px 20px;
  z-index: 999;
  font-weight: 600;
}
.evitement:focus { left: 12px; top: 12px; }

.lecture-seule {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. Elements de langage graphique : surtitre, filet double, jeton, montant
   -------------------------------------------------------------------------- */

.surtitre {
  font-family: var(--tampon);
  font-size: .8125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin: 0 0 14px;
  display: block;
}

/* Le filet double avec jeton d etape, accroche de chaque bloc au chemin */
.filet {
  position: relative;
  height: 9px;
  margin: 0 0 22px;
  width: 100%;
  max-width: 260px;
}
.filet::before,
.filet::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  display: block;
}
.filet::before {
  top: 0;
  height: 2px;
  background: var(--accent);
}
.filet::after {
  top: 5px;
  height: 1px;
  background: var(--accent-2);
  opacity: .55;
}
.filet .jeton {
  position: absolute;
  left: 24px;
  top: -3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  z-index: 2;
}
.filet--large { max-width: 100%; }
.filet--court { max-width: 148px; }

.montant {
  font-family: var(--tampon);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  display: inline-block;
}
.unite {
  font-family: var(--courant);
  font-size: 1rem;
  font-weight: 600;
  color: var(--texte-doux);
}

.etiquette {
  font-family: var(--tampon);
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--texte-doux);
}

/* --------------------------------------------------------------------------
   4. Conteneurs et grille en chemin sinueux
   -------------------------------------------------------------------------- */

.releve {
  width: 100%;
  max-width: var(--largeur);
  margin: 0 auto;
  padding: 0 24px;
}

.releve--douze {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gouttiere);
}

/* Ancrages alternes le long du chemin */
.cale-gauche { grid-column: 1 / span 7; }
.cale-droite { grid-column: 5 / span 8; }
.cale-centre { grid-column: 2 / span 10; }
.cale-pleine { grid-column: 1 / span 12; }

.tournee {
  position: relative;
  padding: 96px 0;
}
.tournee--serree { padding: 72px 0; }
.tournee--bande {
  background: var(--fond-alt);
  background-image: var(--balayage);
}
.tournee--bande::before,
.tournee--bande::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--bordure);
}
.tournee--bande::before { top: 0; }
.tournee--bande::after { bottom: 0; }

/* Le rail, trace unique qui descend le long de la page */
.rail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.rail svg { width: 100%; height: 100%; display: block; }
.rail .trace {
  fill: none;
  stroke: var(--accent-2);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  opacity: .5;
}
.rail .trace--tirete {
  stroke-dasharray: 14 10;
  opacity: .45;
}
.rail .borne {
  fill: var(--surface);
  stroke: var(--accent);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.rail .borne--pleine { fill: var(--accent); }

.tournee > .releve,
.tournee > .releve--douze { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   5. Boutons d appui, dimensionnes pour un pouce sur tablette
   -------------------------------------------------------------------------- */

.appui {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 16px 30px;
  font-family: var(--courant);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: var(--rayon) var(--rayon-marque) var(--rayon) var(--rayon);
  transition: background-color .2s var(--courbe), transform .12s var(--courbe), color .2s var(--courbe);
}
.appui::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 2px solid transparent;
  border-radius: calc(var(--rayon) + 5px) calc(var(--rayon-marque) + 5px) calc(var(--rayon) + 5px) calc(var(--rayon) + 5px);
  transition: border-color .22s var(--courbe);
  pointer-events: none;
}
.appui--plein {
  background: var(--accent);
  color: var(--accent-texte);
}
.appui--plein:hover,
.appui--plein:focus-visible {
  background: var(--accent-sombre);
  color: var(--accent-texte);
}
.appui--plein:hover::after,
.appui--plein:focus-visible::after { border-color: var(--accent-2); }
.appui--contour {
  background: transparent;
  color: var(--texte);
  box-shadow: inset 0 0 0 1.5px var(--bordure);
}
.appui--contour:hover,
.appui--contour:focus-visible {
  background: var(--fond-alt);
  color: var(--texte);
  box-shadow: inset 0 0 0 1.5px var(--accent);
}
.appui:active { transform: translateY(1px); }
.appui--pleine-largeur { width: 100%; }

.groupe-appuis {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 0;
}

/* --------------------------------------------------------------------------
   6. Bordure qui se trace autour des cartes au survol
   -------------------------------------------------------------------------- */

.trace-bord {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
}
.trace-bord::before,
.trace-bord::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 3;
}
/* premier pseudo element : bord superieur puis bord droit */
.trace-bord::before {
  top: -1px;
  left: 24px;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  box-shadow: 1.5px 0 0 0 var(--accent);
  transition: width .22s var(--courbe);
}
/* second pseudo element : bord inferieur puis bord gauche */
.trace-bord::after {
  bottom: -1px;
  right: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width .24s var(--courbe) .2s;
}
.trace-bord > .cote-droit,
.trace-bord > .cote-gauche {
  position: absolute;
  width: 1.5px;
  height: 0;
  background: var(--accent);
  pointer-events: none;
  z-index: 3;
}
.trace-bord > .cote-droit {
  top: 0; right: -1px;
  transition: height .24s var(--courbe) .2s;
}
.trace-bord > .cote-gauche {
  bottom: 0; left: -1px;
  transition: height .24s var(--courbe) .2s;
}
.trace-bord:hover::before,
.trace-bord:focus-within::before { width: calc(100% - 24px); }
.trace-bord:hover::after,
.trace-bord:focus-within::after { width: 100%; }
.trace-bord:hover > .cote-droit,
.trace-bord:focus-within > .cote-droit,
.trace-bord:hover > .cote-gauche,
.trace-bord:focus-within > .cote-gauche { height: 100%; }

/* --------------------------------------------------------------------------
   7. En tete fixe et panneau mobile
   -------------------------------------------------------------------------- */

.bandeau-tete {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  z-index: 60;
  background: transparent;
  transition: background-color .25s var(--courbe), box-shadow .25s var(--courbe);
}
.bandeau-tete.pose {
  background: rgba(245, 247, 242, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bordure);
}
.bandeau-tete .releve {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.avancement {
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--accent);
  opacity: 0;
  transition: opacity .25s var(--courbe);
}
.bandeau-tete.pose .avancement { opacity: 1; }

.logo-binomya {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--texte);
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: -0.015em;
  line-height: 1;
}
.logo-binomya svg { width: 34px; height: 34px; flex: none; }
.logo-binomya:hover { color: var(--accent-sombre); }

.nav-ancres { display: flex; align-items: center; gap: 26px; }
.nav-ancres a {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--texte);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}
.nav-ancres a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .2s var(--courbe);
}
.nav-ancres a:hover::after,
.nav-ancres a:focus-visible::after { width: 100%; }

.tete-droite { display: flex; align-items: center; gap: 14px; }
.tete-droite .appui { min-height: 44px; padding: 11px 20px; font-size: .9375rem; }

.trois-barres {
  display: none;
  width: 50px; height: 44px;
  background: transparent;
  border: 1.5px solid var(--bordure);
  border-radius: var(--rayon);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.trois-barres span {
  display: block;
  width: 22px; height: 2px;
  background: var(--texte);
  position: relative;
}
.trois-barres span::before,
.trois-barres span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px; height: 2px;
  background: var(--texte);
}
.trois-barres span::before { top: -7px; }
.trois-barres span::after { top: 7px; }
.trois-barres[aria-expanded="true"] span { background: transparent; }
.trois-barres[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.trois-barres[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.panneau-tournee {
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--fond-alt);
  background-image: var(--balayage);
  z-index: 55;
  padding: 24px;
  overflow-y: auto;
  display: none;
}
.panneau-tournee[data-ouvert="oui"] { display: block; }
.panneau-tournee ul { list-style: none; margin: 0 0 24px; padding: 0; }
.panneau-tournee li { margin: 0; border-bottom: 2px solid var(--accent); position: relative; }
.panneau-tournee li::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -5px;
  height: 1px;
  background: var(--accent-2);
  opacity: .5;
}
.panneau-tournee a {
  display: flex;
  align-items: center;
  min-height: 56px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--texte);
  text-decoration: none;
}
.panneau-tournee a:hover { color: var(--accent); }

/* --------------------------------------------------------------------------
   8. Hero, premier ecran
   -------------------------------------------------------------------------- */

.branchement {
  position: relative;
  padding: 148px 0 84px;
  background-image: var(--balayage);
  overflow: hidden;
}
.branchement::after {
  content: "";
  position: absolute;
  right: -120px; top: 40px;
  width: 460px; height: 460px;
  background: var(--fond-alt);
  border-radius: 50% 12% 50% 12%;
  opacity: .8;
  z-index: 0;
}
.branchement .releve--douze { align-items: start; }
.branchement-texte { grid-column: 1 / span 7; }
.branchement-vignette { grid-column: 8 / span 5; }

.branchement h1 { margin-bottom: 20px; }
.accroche {
  font-size: 1.1875rem;
  color: var(--texte-doux);
  max-width: 56ch;
}

.reassurance {
  margin-top: 34px;
  background: var(--surface);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon) var(--rayon-marque) var(--rayon) var(--rayon);
  padding: 22px 26px;
  max-width: 560px;
}
.reassurance .montant { font-size: 2.4rem; }
.reassurance p { margin: 6px 0 0; font-size: .9375rem; color: var(--texte-doux); }

/* --------------------------------------------------------------------------
   9. Vignettes photographiques
   -------------------------------------------------------------------------- */

.vignette {
  position: relative;
  background: var(--surface);
  border-radius: 28px 0 28px 0;
  overflow: hidden;
  border: 1px solid var(--bordure);
}
.vignette img {
  width: 100%;
  height: auto;
  filter: saturate(0.92) contrast(1.06);
  border-radius: 28px 0 28px 0;
}
.vignette::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(94, 155, 111, 0.12);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}
.vignette::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 34%;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(21, 37, 26, 0.07) 0,
    rgba(21, 37, 26, 0.07) 1px,
    transparent 1px,
    transparent 6px
  );
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

.cadre-photo { position: relative; }
.cadre-photo .filet { max-width: 100%; margin: 10px 0 0; }

.legende-photo {
  position: absolute;
  left: 0; bottom: 9px;
  z-index: 4;
  background: var(--fond);
  color: var(--texte-doux);
  font-family: var(--tampon);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 10px 16px 10px 0;
  max-width: 78%;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   10. Probleme
   -------------------------------------------------------------------------- */

.constat {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
  padding: 0;
  list-style: none;
}
.constat li {
  background: var(--surface);
  border: 1px solid var(--bordure);
  border-left: 3px solid var(--accent);
  padding: 20px 22px;
  margin: 0;
  font-size: 1rem;
}
.constat li b {
  display: block;
  font-family: var(--tampon);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 6px;
}

.encart-terrain {
  grid-column: 8 / span 5;
  align-self: end;
}

/* --------------------------------------------------------------------------
   11. Solution, quatre temps
   -------------------------------------------------------------------------- */

.quatre-temps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gouttiere);
  margin-top: 44px;
}
.temps {
  position: relative;
  padding: 26px 22px 24px;
  background: var(--surface);
}
.temps .rang {
  font-family: var(--tampon);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.temps h3 { margin-bottom: 8px; }
.temps p { font-size: .9688rem; color: var(--texte-doux); margin: 0; }

/* --------------------------------------------------------------------------
   12. Fonctionnalites
   -------------------------------------------------------------------------- */

.parc-fonctions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gouttiere);
  margin-top: 44px;
}
.course {
  padding: 28px 24px 26px;
}
.course h3 { margin-bottom: 10px; }
.course p { font-size: .9688rem; color: var(--texte-doux); margin: 0 0 .8em; }
.course p:last-child { margin-bottom: 0; }
.course .marque-course {
  width: 40px; height: 40px;
  margin-bottom: 16px;
  display: block;
}

/* --------------------------------------------------------------------------
   13. Avantages, deux colonnes decalees
   -------------------------------------------------------------------------- */

.gains {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 44px;
}
.gains > .gain:nth-child(even) { margin-top: 46px; }
.gain {
  padding: 30px 28px;
  background: var(--surface);
}
.gain .montant { font-size: 2.4rem; }
.gain h3 { margin: 14px 0 8px; }
.gain p { margin: 0; color: var(--texte-doux); font-size: .9688rem; }

/* --------------------------------------------------------------------------
   14. Preuve sociale
   -------------------------------------------------------------------------- */

.confreres {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gouttiere);
  margin-top: 44px;
}
.confrere {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.confrere blockquote {
  margin: 0 0 18px;
  font-size: 1.0625rem;
  line-height: 1.65;
}
.confrere blockquote p:last-child { margin-bottom: 0; }
.confrere figcaption {
  margin-top: auto;
  border-top: 1px solid var(--bordure);
  padding-top: 14px;
  font-size: .875rem;
  color: var(--texte-doux);
  line-height: 1.5;
}
.confrere figcaption b { display: block; color: var(--texte); font-weight: 700; }

.compteur {
  margin-top: 56px;
  background: var(--accent);
  background-image: var(--balayage-serre);
  border-radius: var(--rayon) 28px var(--rayon) 28px;
  padding: 40px 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
}
.compteur div .montant { color: var(--accent-texte); font-size: 2.6rem; }
.compteur div .etiquette {
  color: rgba(255, 255, 255, 0.88);
  display: block;
  margin-top: 10px;
  font-size: .75rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   15. Tarifs
   -------------------------------------------------------------------------- */

.grille-tarifs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gouttiere);
  margin-top: 48px;
  align-items: stretch;
}
.tarif {
  padding: 32px 28px 34px;
  display: flex;
  flex-direction: column;
}
.tarif--avant {
  margin: -24px 0;
  padding: 56px 28px 58px;
  background-image: var(--balayage-dense);
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(21, 37, 26, 0.08);
}
.fanion {
  display: inline-block;
  font-family: var(--tampon);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: var(--accent);
  color: var(--accent-texte);
  padding: 5px 12px;
  margin-bottom: 14px;
}
.tarif h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.tarif .prix { margin: 8px 0 4px; }
.tarif .cible {
  font-size: .9375rem;
  color: var(--texte-doux);
  margin: 12px 0 20px;
}
.tarif ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  font-size: .9375rem;
}
.tarif ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 11px;
  line-height: 1.55;
}
.tarif ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
}
.tarif .appui { margin-top: auto; }
.mention-tva {
  margin-top: 28px;
  font-size: .875rem;
  color: var(--texte-doux);
}

/* --------------------------------------------------------------------------
   16. FAQ
   -------------------------------------------------------------------------- */

.questions { margin-top: 40px; }
.question {
  background: var(--surface);
  margin-bottom: 16px;
  padding: 0;
}
.question summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 24px;
  font-weight: 700;
  font-size: 1.0625rem;
  position: relative;
}
.question summary::-webkit-details-marker { display: none; }
.question summary::after {
  content: "";
  position: absolute;
  right: 24px; top: 50%;
  width: 12px; height: 12px;
  margin-top: -8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .22s var(--courbe);
}
.question[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.question .reponse { padding: 0 24px 24px; }
.question .reponse p { color: var(--texte-doux); font-size: 1rem; margin-bottom: .8em; }
.question .reponse p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   17. Formulaire de contact
   -------------------------------------------------------------------------- */

.feuille-contact {
  background: var(--surface);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon) 28px var(--rayon) 28px;
  padding: 40px;
  margin-top: 40px;
}
.champs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.champ { display: flex; flex-direction: column; }
.champ--large { grid-column: 1 / -1; }
.champ label {
  font-size: .9375rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.champ input,
.champ select,
.champ textarea {
  font-family: var(--courant);
  font-size: 1.0625rem;
  color: var(--texte);
  background: var(--fond);
  border: 1.5px solid var(--bordure);
  border-radius: var(--rayon);
  padding: 14px 16px;
  min-height: 54px;
  width: 100%;
}
.champ textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.champ input:hover,
.champ select:hover,
.champ textarea:hover { border-color: var(--accent-2); }
.champ .aide { font-size: .8125rem; color: var(--texte-doux); margin: 8px 0 0; }

.consentement {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9375rem;
  line-height: 1.6;
}
.consentement input {
  width: 22px; height: 22px;
  min-height: 22px;
  margin-top: 3px;
  flex: none;
  accent-color: var(--accent);
}
.voie-directe {
  margin-top: 22px;
  font-size: .9375rem;
  color: var(--texte-doux);
}

/* --------------------------------------------------------------------------
   18. Pied de page
   -------------------------------------------------------------------------- */

.pied-tournee {
  background: var(--texte);
  color: #DCE6DE;
  padding: 64px 0 0;
  margin-top: 0;
}
.pied-tournee a { color: #DCE6DE; text-decoration: none; }
.pied-tournee a:hover { color: #FFFFFF; text-decoration: underline; }
.colonnes-pied {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.colonnes-pied h2,
.colonnes-pied h3 {
  font-family: var(--tampon);
  font-size: .8125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9BB6A3;
  margin-bottom: 18px;
}
.colonnes-pied ul { list-style: none; padding: 0; margin: 0; }
.colonnes-pied li { margin-bottom: 10px; font-size: .9375rem; }
.colonnes-pied p { font-size: .9375rem; color: #B7C8BB; }
.logo-pied {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-bottom: 14px;
  text-decoration: none;
}
.logo-pied svg { width: 34px; height: 34px; }
.reseaux { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 18px; font-size: .875rem; }
.reseaux a { border-bottom: 1px solid rgba(220, 230, 222, .35); }
.barre-bas {
  margin-top: 52px;
  border-top: 1px solid rgba(220, 230, 222, .2);
  padding: 22px 0 28px;
  font-size: .8125rem;
  color: #9BB6A3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
}

/* --------------------------------------------------------------------------
   19. Pages internes, texte long
   -------------------------------------------------------------------------- */

.page-interne { padding: 132px 0 80px; }
.page-interne .releve { max-width: 860px; }
.page-interne h1 { font-size: 2.9rem; margin-bottom: 18px; }
.page-interne h2 { font-size: 1.85rem; margin-top: 48px; }
.page-interne h3 { margin-top: 30px; }
.chapeau {
  font-size: 1.1875rem;
  color: var(--texte-doux);
  max-width: 62ch;
}
.fil { font-size: .875rem; color: var(--texte-doux); margin-bottom: 22px; }
.fil a { color: var(--texte-doux); }
.bloc-encadre {
  background: var(--fond-alt);
  background-image: var(--balayage);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon) 28px var(--rayon) 28px;
  padding: 28px 30px;
  margin: 34px 0;
}
.bloc-encadre p:last-child, .bloc-encadre ul:last-child { margin-bottom: 0; }
.portrait-auteur {
  border-radius: 28px 0 28px 0;
  border: 1px solid var(--bordure);
  margin: 0 0 12px;
}
.duo-auteur {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
  margin: 36px 0 10px;
}
.liste-plan { list-style: none; padding: 0; }
.liste-plan > li {
  padding: 20px 0 20px 24px;
  border-bottom: 1px solid var(--bordure);
  position: relative;
}
.liste-plan > li::before {
  content: "";
  position: absolute;
  left: 0; top: 30px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
}
.liste-plan a { font-weight: 600; }
.liste-plan span { display: block; color: var(--texte-doux); font-size: .9375rem; }

.centre-page { text-align: center; }
.centre-page .filet { margin-left: auto; margin-right: auto; }
.centre-page p { margin-left: auto; margin-right: auto; }
.centre-page .groupe-appuis { justify-content: center; }

/* --------------------------------------------------------------------------
   20. Apparition au defilement
   -------------------------------------------------------------------------- */

.au-defilement {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--courbe), transform .6s var(--courbe);
}
.au-defilement.pose-au-sol {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   21. Adaptations
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  h1 { font-size: 2.9rem; }
  .parc-fonctions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quatre-temps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compteur { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .colonnes-pied { grid-template-columns: repeat(2, 1fr); }
  .grille-tarifs { grid-template-columns: 1fr; }
  .tarif--avant { margin: 0; padding: 32px 28px 34px; }
  .branchement-texte, .branchement-vignette,
  .cale-gauche, .cale-droite, .cale-centre, .encart-terrain { grid-column: 1 / span 12; }
  .branchement-vignette { margin-top: 40px; }
  .confreres { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-ancres { display: none; }
  .tete-droite .appui { display: none; }
  .trois-barres { display: inline-flex; }
  .tournee { padding: 66px 0; }
  .branchement { padding: 116px 0 60px; }
  .rail { left: 20px; width: 2px; right: auto; }
  .rail svg { display: none; }
  .rail::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--accent-2);
    opacity: .35;
  }
  .duo-auteur { grid-template-columns: 1fr; gap: 20px; }
  .duo-auteur .portrait-auteur { max-width: 240px; }
}

@media (max-width: 700px) {
  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.8rem; }
  .page-interne h1 { font-size: 2.1rem; }
  .montant { font-size: 2.3rem; }
  .parc-fonctions, .quatre-temps, .gains, .constat, .champs { grid-template-columns: 1fr; }
  .gains > .gain:nth-child(even) { margin-top: 0; }
  .compteur { grid-template-columns: 1fr; text-align: left; }
  .feuille-contact { padding: 26px 20px; }
  .colonnes-pied { grid-template-columns: 1fr; gap: 34px; }
  .branchement::after { display: none; }
}

@media (max-width: 480px) {
  body { background-image: none; }
  .branchement, .tournee--bande, .panneau-tournee { background-image: none; }
  .vignette::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .au-defilement { opacity: 1; transform: none; }
  .trace-bord:hover::before, .trace-bord:focus-within::before { width: calc(100% - 24px); }
  .trace-bord:hover::after, .trace-bord:focus-within::after { width: 100%; }
}

@media print {
  .bandeau-tete, .panneau-tournee, .rail, .groupe-appuis { display: none; }
  body { background: #FFFFFF; color: #000000; }
}

/* --------------------------------------------------------------------------
   22. Conteneur du chemin sinueux au niveau du contenu principal
   -------------------------------------------------------------------------- */

.parcours { position: relative; }

/* --------------------------------------------------------------------------
   23. Corrections d empilement, le decor reste sous le texte
   -------------------------------------------------------------------------- */

.rail { z-index: -1; }
.branchement > .releve--douze { position: relative; z-index: 1; }
.page-interne > .releve { position: relative; z-index: 1; }

/* ==========================================================================
   24. Le Carnet de Regulation, section magazine
   Meme palette, meme filet double a jeton, meme trame de lignes de balayage
   et meme bordure qui se trace au survol que le reste du site.
   Vocabulaire des classes : carnet, feuillet, entete-article, corps-article,
   encart-auteur, lire-aussi.
   Aucune regle ci dessous ne modifie les sections precedentes.
   ========================================================================== */

/* --------------------------------------------------------------------------
   24.1 Intitule de colonne de pied de page sans balise de titre
   Les pages d article reservent h2 et h3 au corps redactionnel : les intitules
   de colonnes du pied de page y passent donc par un paragraphe mis en forme.
   -------------------------------------------------------------------------- */

.colonnes-pied .titre-colonne {
  font-family: var(--tampon);
  font-size: .8125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9BB6A3;
  margin: 0 0 18px;
}

/* --------------------------------------------------------------------------
   24.2 Enveloppe commune aux pages du magazine
   -------------------------------------------------------------------------- */

.carnet {
  position: relative;
  padding: 132px 0 84px;
}
.carnet > .releve { position: relative; z-index: 1; }
.carnet--article > .releve { max-width: 900px; }

.carnet-tete { max-width: 780px; }
.carnet-tete h1 { font-size: 3rem; margin-bottom: 18px; }
.carnet-tete .chapeau { max-width: 66ch; }

.carnet-compte {
  font-family: var(--tampon);
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--texte-doux);
  margin: 22px 0 0;
}

/* --------------------------------------------------------------------------
   24.3 Grille de cartes d article et carte d article
   -------------------------------------------------------------------------- */

.carnet-grille {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px var(--gouttiere);
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}
.carnet-grille > li { margin: 0; display: flex; }

.feuillet {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
}
.feuillet-vignette {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px 0 0 0;
  border-bottom: 1px solid var(--bordure);
}
.feuillet-vignette img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}
.feuillet-vignette::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(94, 155, 111, 0.12);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}
.feuillet-vignette::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 34%;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(21, 37, 26, 0.07) 0,
    rgba(21, 37, 26, 0.07) 1px,
    transparent 1px,
    transparent 6px
  );
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

.feuillet-corps {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 22px 24px 24px;
}
.feuillet-corps .filet { max-width: 176px; margin: 0 0 16px; }
.feuillet-angle {
  font-family: var(--tampon);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.feuillet-titre {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.16;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.feuillet-titre a {
  color: var(--texte);
  text-decoration: none;
}
.feuillet-titre a:hover,
.feuillet-titre a:focus-visible { color: var(--accent); }
.feuillet-extrait {
  font-size: .9688rem;
  color: var(--texte-doux);
  margin: 0 0 20px;
  max-width: none;
}
.feuillet-pied {
  margin-top: auto;
  border-top: 1px solid var(--bordure);
  padding-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  font-family: var(--tampon);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--texte-doux);
}

/* --------------------------------------------------------------------------
   24.4 Entete d article : fil d Ariane, angle, dates, temps de lecture
   -------------------------------------------------------------------------- */

.entete-article { margin-bottom: 34px; }
.entete-article h1 {
  font-size: 3rem;
  margin: 0 0 22px;
}
.reperes-article {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  margin: 0 0 18px;
  font-family: var(--tampon);
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--texte-doux);
}
.reperes-article .angle-article {
  color: var(--accent);
  border: 1px solid var(--bordure);
  background: var(--surface);
  padding: 5px 12px;
}

.chapo-article {
  font-family: var(--courant);
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--texte);
  max-width: 64ch;
  margin: 0 0 30px;
  padding: 22px 26px;
  background: var(--fond-alt);
  background-image: var(--balayage);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--rayon-marque) 0 0;
}

.photo-une { margin: 0 0 40px; }
.photo-une .vignette { border-radius: 28px 0 28px 0; }
.photo-une img { width: 100%; height: auto; }

/* --------------------------------------------------------------------------
   24.5 Corps d article, balises nues, mesure de lecture confortable
   Le corps redactionnel ne porte aucune classe : tout se joue ici.
   -------------------------------------------------------------------------- */

.corps-article {
  max-width: 68ch;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.corps-article > p,
.corps-article > ul,
.corps-article > ol { max-width: 68ch; }

.corps-article h2 {
  position: relative;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 2.1em 0 .55em;
  padding-top: 26px;
}
.corps-article h2:first-child { margin-top: 0; }
.corps-article h2::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 6px;
  background-image:
    linear-gradient(var(--accent), var(--accent)),
    linear-gradient(var(--accent-2), var(--accent-2));
  background-size: 100% 2px, 100% 1px;
  background-position: 0 0, 0 5px;
  background-repeat: no-repeat;
}
.corps-article h2::after {
  content: "";
  position: absolute;
  left: 24px;
  top: -3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fond);
  border: 2px solid var(--accent);
}

.corps-article h3 {
  position: relative;
  font-family: var(--courant);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.35;
  margin: 1.9em 0 .5em;
  padding-left: 24px;
}
.corps-article h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
}

.corps-article p { margin: 0 0 1.15em; }

.corps-article ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.4em;
}
.corps-article ul > li {
  position: relative;
  padding-left: 26px;
  margin-bottom: .6em;
}
.corps-article ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
}

.corps-article ol {
  list-style: none;
  counter-reset: point-carnet;
  padding-left: 0;
  margin: 0 0 1.4em;
}
.corps-article ol > li {
  counter-increment: point-carnet;
  position: relative;
  padding-left: 46px;
  margin-bottom: .7em;
}
.corps-article ol > li::before {
  content: counter(point-carnet, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--tampon);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--accent);
}

.corps-article li > ul,
.corps-article li > ol { margin: .5em 0 .2em; }

.corps-article strong { font-weight: 700; color: var(--texte); }
.corps-article em { font-style: italic; }

.corps-article a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--accent-2);
  text-underline-offset: 3px;
}
.corps-article a:hover,
.corps-article a:focus-visible {
  color: var(--accent-sombre);
  text-decoration-color: var(--accent);
}

.corps-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0 36px;
  font-size: .9688rem;
  background: var(--surface);
  border: 1px solid var(--bordure);
}
.corps-article th,
.corps-article td {
  text-align: left;
  vertical-align: top;
  padding: 13px 16px;
  border-bottom: 1px solid var(--bordure);
  line-height: 1.55;
}
.corps-article thead th {
  background: var(--fond-alt);
  background-image: var(--balayage-serre);
  font-family: var(--tampon);
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--texte);
  border-bottom: 2px solid var(--accent);
}
.corps-article tbody th { font-weight: 700; color: var(--texte); }
.corps-article tbody tr:last-child th,
.corps-article tbody tr:last-child td { border-bottom: 0; }
.corps-article tbody tr:nth-child(even) { background: rgba(232, 241, 235, 0.45); }

.corps-article blockquote {
  margin: 32px 0;
  padding: 6px 0 6px 26px;
  border-left: 3px solid var(--accent);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--texte);
}
.corps-article blockquote p { margin: 0 0 .5em; max-width: none; }
.corps-article blockquote p:last-child { margin-bottom: 0; }

.corps-article aside {
  position: relative;
  margin: 36px 0;
  padding: 26px 28px 22px;
  background: var(--fond-alt);
  background-image: var(--balayage);
  border: 1px solid var(--bordure);
  border-top: 2px solid var(--accent);
  border-radius: 0 28px 0 var(--rayon);
}
.corps-article aside::before {
  content: "";
  position: absolute;
  left: 24px;
  top: -6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
}
.corps-article aside p:last-child,
.corps-article aside ul:last-child,
.corps-article aside ol:last-child { margin-bottom: 0; }

.corps-article figure { margin: 32px 0; }
.corps-article figure img {
  border: 1px solid var(--bordure);
  border-radius: 28px 0 28px 0;
}
.corps-article figcaption {
  margin-top: 10px;
  font-family: var(--tampon);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--texte-doux);
}

/* --------------------------------------------------------------------------
   24.6 Appel a l action de fin d article
   -------------------------------------------------------------------------- */

.appel-carnet {
  margin: 48px 0 0;
  padding: 32px 34px;
  background: var(--surface);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon) 28px var(--rayon) 28px;
}
.appel-carnet .filet { max-width: 200px; }
.appel-carnet .titre-appel {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.85rem;
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.appel-carnet p { color: var(--texte-doux); margin-bottom: 0; }
.appel-carnet .groupe-appuis { margin-top: 24px; }

/* --------------------------------------------------------------------------
   24.7 Encart auteur
   -------------------------------------------------------------------------- */

.encart-auteur {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: start;
  margin: 44px 0 0;
  padding: 28px 30px;
  background: var(--fond-alt);
  background-image: var(--balayage);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon) 28px var(--rayon) 28px;
}
.encart-auteur img {
  width: 96px;
  height: 96px;
  border-radius: 24px 0 24px 0;
  border: 1px solid var(--bordure);
  object-fit: cover;
}
.encart-auteur .nom-auteur {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 4px;
}
.encart-auteur .role-auteur {
  font-family: var(--tampon);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin: 0 0 12px;
}
.encart-auteur p { font-size: .9688rem; color: var(--texte-doux); margin: 0 0 .7em; }
.encart-auteur p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   24.8 Bloc A lire aussi
   -------------------------------------------------------------------------- */

.lire-aussi { margin: 60px 0 0; }
.lire-aussi .surtitre { margin-bottom: 10px; }
.lire-aussi .titre-lire-aussi {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.trio-lire {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gouttiere);
  margin-top: 28px;
}
.carte-lire {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.carte-lire .feuillet-vignette { border-radius: 20px 0 0 0; }
.carte-lire-corps {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.carte-lire .titre-lire {
  font-family: var(--courant);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.4;
  margin: 0 0 8px;
}
.carte-lire .titre-lire a { color: var(--texte); text-decoration: none; }
.carte-lire .titre-lire a:hover,
.carte-lire .titre-lire a:focus-visible { color: var(--accent); }
.carte-lire .accroche-lire {
  font-size: .9063rem;
  color: var(--texte-doux);
  margin: 0;
  max-width: none;
}

/* --------------------------------------------------------------------------
   24.9 Section Derniers articles de la page d accueil
   -------------------------------------------------------------------------- */

.derniers-articles .carnet-grille { margin-top: 44px; }
.derniers-articles .lien-magazine {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  font-family: var(--courant);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 2px solid var(--accent-2);
  padding-bottom: 3px;
}
.derniers-articles .lien-magazine:hover,
.derniers-articles .lien-magazine:focus-visible {
  color: var(--accent-sombre);
  border-bottom-color: var(--accent);
}

/* --------------------------------------------------------------------------
   24.10 Liste datee des articles, pages auteur et plan du site
   -------------------------------------------------------------------------- */

.liste-carnet { list-style: none; padding: 0; margin: 0; }
.liste-carnet > li {
  position: relative;
  padding: 18px 0 18px 24px;
  border-bottom: 1px solid var(--bordure);
}
.liste-carnet > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 27px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
}
.liste-carnet a { font-weight: 600; }
.liste-carnet .repere-carnet {
  display: block;
  margin-top: 4px;
  font-family: var(--tampon);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--texte-doux);
}

/* --------------------------------------------------------------------------
   24.11 Adaptations du magazine
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .carnet-grille { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trio-lire { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .carnet-tete h1,
  .entete-article h1 { font-size: 2.6rem; }
}

@media (max-width: 900px) {
  .carnet { padding: 116px 0 68px; }
  .corps-article h2 { font-size: 1.9rem; }
}

@media (max-width: 700px) {
  .carnet-grille { grid-template-columns: 1fr; }
  .trio-lire { grid-template-columns: 1fr; }
  .carnet-tete h1,
  .entete-article h1 { font-size: 2.1rem; }
  .corps-article h2 { font-size: 1.7rem; }
  .chapo-article { font-size: 1.0625rem; padding: 18px 20px; }
  .encart-auteur { grid-template-columns: 1fr; gap: 16px; padding: 22px 20px; }
  .appel-carnet { padding: 24px 20px; }
  .corps-article table { display: block; overflow-x: auto; }
}

@media (max-width: 480px) {
  .feuillet-vignette::after { display: none; }
  .chapo-article,
  .corps-article aside,
  .encart-auteur { background-image: none; }
}
