/* Passer le témoin — feuille de style commune */

@font-face{font-family:'Atkinson Hyperlegible';src:url('polices/atkinson-400.woff2') format('woff2');font-weight:400;font-display:swap}
@font-face{font-family:'Atkinson Hyperlegible';src:url('polices/atkinson-i400.woff2') format('woff2');font-weight:400;font-style:italic;font-display:swap}
@font-face{font-family:'Atkinson Hyperlegible';src:url('polices/atkinson-700.woff2') format('woff2');font-weight:700;font-display:swap}
@font-face{font-family:'Lora';src:url('polices/lora-600.woff2') format('woff2');font-weight:600;font-display:swap}
@font-face{font-family:'Lora';src:url('polices/lora-700.woff2') format('woff2');font-weight:700;font-display:swap}

:root{
  /* Palette « Passer le témoin » : pin/forêt + or bronze — un héritage qui se
     transmet, distincte du bleu-nuit des deux sites jumeaux (retraite-exacte
     = lin/nuit/cuivre, rdv-specialiste = bleu-vert/corail/menthe). */
  --lin:      #FAF6EF;
  --papier:   #FFFFFF;
  --encre:    #1F3B32;
  --encre-2:  #16281F;
  --or:       #C79A4B;
  --or-2:     #8A6428;
  --sable:    #E4D3A8;
  --brume:    #EFE8D8;
  --trait:    #DED2B8;
  --ok:       #3E7A54;

  --titres: 'Lora', Georgia, serif;
  --texte: 'Atkinson Hyperlegible', system-ui, Arial, sans-serif;

  --lecture: 44rem;
  --large: 66rem;

  --radius: 10px;
  --radius-lg: 18px;

  --erreur-texte:        #ffffff;
  --erreur-fond:         #7a2a12;
  --erreur-clair-texte:  #6e2609;
  --erreur-clair-fond:   #fbe3d8;
}

*, *::before, *::after{ box-sizing: border-box; }
[hidden]{ display: none !important; }
html{ -webkit-text-size-adjust: 100%; }

body{
  margin: 0;
  background: var(--lin);
  color: var(--encre);
  font-family: var(--texte);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}
@media (min-width: 641px){ body{ font-size: 19px; } }

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

a{ color: var(--or-2); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: .15em; }
a:hover{ color: var(--encre); }

h1, h2, h3{ font-family: var(--titres); font-weight: 700; line-height: 1.18; margin: 0 0 .6em; color: var(--encre); }
h1{ font-size: clamp(2rem, 5vw, 2.9rem); }
h2{ font-size: clamp(1.55rem, 3.4vw, 2.1rem); }
h3{ font-size: clamp(1.2rem, 1.1rem + .5vw, 1.4rem); }

p{ margin: 0 0 1em; }
p, li{ max-width: 65ch; }
strong{ font-weight: 700; }
button{ font-family: inherit; }

:focus-visible{ outline: 3px solid var(--or-2); outline-offset: 2px; border-radius: 4px; }
ul, ol{ padding-left: 1.2em; }

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

/* ===== Enveloppes ===== */
.enveloppe, .enveloppe--large{ width: 100%; margin-left: auto; margin-right: auto; padding-left: 1.25rem; padding-right: 1.25rem; }
.enveloppe{ max-width: var(--lecture); }
.enveloppe--large{ max-width: var(--large); }

/* ===== Sections ===== */
.section{ padding: clamp(2.5rem, 2rem + 2vw, 5rem) 0; }
.section--sombre{ background: var(--encre); color: var(--lin); }
.section--sombre h1, .section--sombre h2, .section--sombre h3{ color: var(--lin); }
.section--sombre a{ color: var(--sable); }
.section--sombre a:hover{ color: var(--sable); }
.section--claire{ background: var(--brume); }

/* ===== En-tête ===== */
.entete{ background: var(--encre); color: var(--lin); padding: .9rem 0; position: sticky; top: 0; z-index: 40; }
.entete__ligne{ display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo{ display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; line-height: 1; }
.logo svg{ height: 30px; width: 30px; flex: none; }
.logo__mot{ font-family: var(--titres); font-weight: 700; font-size: 1.12rem; white-space: nowrap; }
.entete .logo__mot{ color: var(--sable); }
.entete .logo__mot em{ font-style: normal; color: var(--lin); }
.pied .logo__mot{ color: var(--sable); }
.pied .logo__mot em{ font-style: normal; color: var(--lin); }
.entete__mention{ font-size: .92rem; color: var(--brume); opacity: .9; text-align: right; }
@media (max-width: 640px){ .entete__mention{ display: none; } }

/* ===== Boutons ===== */
.bouton{
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  background: var(--or-2); color: #fff; font-weight: 700; font-family: var(--texte);
  font-size: 1.12rem; border: none; border-radius: var(--radius); padding: .95em 1.4em;
  min-height: 52px; cursor: pointer; text-decoration: none;
  transition: background-color .15s ease, transform .05s ease; width: 100%;
}
.bouton:hover{ background: var(--encre); color: #fff; }
.bouton:active{ transform: translateY(1px); }
.bouton:disabled{ opacity: .65; cursor: wait; }
.bouton--fantome{ background: transparent; color: var(--encre); border: 2px solid var(--encre); }
.bouton--fantome:hover{ background: var(--brume); color: var(--encre); }
.carte--sombre .bouton--fantome{ color: var(--lin); border-color: var(--sable); }
.carte--sombre .bouton--fantome:hover{ background: rgba(228,211,168,.14); color: var(--lin); }
.bouton--large{ width: auto; }

/* ===== Cartes ===== */
.carte{ background: var(--papier); border: 1px solid var(--trait); border-radius: var(--radius-lg); padding: clamp(1.25rem, 1.1rem + .6vw, 2rem); }
.carte:not(.carte--sombre){ color: var(--encre); }
.carte--sombre{ background: var(--encre-2); border-color: rgba(228,211,168,.2); color: var(--lin); }
.carte--sombre h1, .carte--sombre h2, .carte--sombre h3{ color: var(--lin); }
.carte--sombre a{ color: var(--sable); }
.carte--sombre a:hover{ color: var(--sable); }

/* ===== Pilule / œil ===== */
.pilule{ display: inline-block; background: var(--brume); color: var(--encre); font-size: .93rem; font-weight: 700; letter-spacing: .02em; padding: .3em .85em; border-radius: 999px; margin-bottom: .8em; }
.section--sombre .pilule{ background: rgba(228,211,168,.16); color: var(--sable); }
.oeil{ display: block; font-family: var(--texte); font-weight: 700; font-size: .93rem; text-transform: uppercase; letter-spacing: .06em; color: var(--or-2); margin-bottom: .5em; }
.section--sombre .oeil{ color: var(--sable); }

/* ===== Points numérotés ===== */
.points{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.4rem; }
.points li{ display: flex; gap: 1rem; align-items: flex-start; }
.points__num{ flex: none; display: inline-flex; align-items: center; justify-content: center; width: 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--or-2); color: #fff; font-family: var(--titres); font-weight: 700; font-size: 1.02rem; }
.section--sombre .points__num{ background: var(--sable); color: var(--encre); }
.points h3{ margin: 0 0 .2em; font-size: 1.2rem; }
.points p{ margin: 0; }

/* ===== Coches ===== */
.coches{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .75rem; }
.coches li{ position: relative; padding-left: 1.8rem; }
.coches li::before{ content: '✓'; position: absolute; left: 0; top: 0; color: var(--ok); font-weight: 700; font-size: 1.1rem; line-height: 1.55; }
.section--sombre .coches li::before{ color: var(--sable); }
.carte--sombre .coches li::before{ color: var(--sable); }
.carte:not(.carte--sombre) .coches li::before{ color: var(--ok); }

/* ===== Croix (ce qu'il ne fait pas) ===== */
.croix{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .75rem; }
.croix li{ position: relative; padding-left: 1.8rem; }
.croix li::before{ content: '✕'; position: absolute; left: 0; top: 0; color: var(--or-2); font-weight: 700; font-size: 1rem; line-height: 1.6; }

/* ===== Formulaire ===== */
.formulaire{ display: flex; flex-direction: column; gap: .75rem; }
.champ{ display: flex; flex-direction: column; gap: .35rem; }
.champ label{ font-weight: 600; font-size: .95rem; }
.champ input[type="email"], .champ select{
  font-family: var(--texte); font-size: 1.1rem; min-height: 52px; padding: .8em .9em;
  border-radius: var(--radius); border: 1.5px solid var(--trait); background: var(--papier); color: var(--encre); width: 100%;
}
.champ input:focus, .champ select:focus{ border-color: var(--or-2); }
.champ--case{ flex-direction: row; align-items: flex-start; gap: .6rem; }
.champ--case input[type="checkbox"]{ margin-top: .25rem; width: 1.2rem; height: 1.2rem; flex: none; accent-color: var(--or-2); }
.champ--case label{ font-weight: 400; font-size: .95rem; }

.erreur{ color: var(--erreur-texte); background: var(--erreur-fond); border-radius: var(--radius); padding: .6em .9em; font-size: 1rem; font-weight: 600; }
.erreur:empty{ display: none; }
.section:not(.section--sombre) .erreur{ background: var(--erreur-clair-fond); color: var(--erreur-clair-texte); }

.confirmation{ color: var(--ok); background: var(--brume); border-radius: var(--radius); padding: .8em 1em; font-weight: 600; }
.carte--sombre .confirmation{ background: rgba(228,211,168,.16); color: var(--sable); }

/* ===== Rassurance / avertissement / bandeau info ===== */
.rassurance{ font-size: .95rem; color: inherit; opacity: .88; display: flex; flex-direction: column; gap: .35rem; }
.avertissement{ background: var(--brume); border-left: 4px solid var(--encre); border-radius: 0 var(--radius) var(--radius) 0; padding: 1rem 1.2rem; }
.avertissement strong{ color: var(--encre); }

.bandeau-info{
  background: var(--brume); border-left: 4px solid var(--or-2); border-radius: 0 var(--radius) var(--radius) 0;
  padding: .85rem 1.1rem; margin: 0 0 1.6rem; font-size: .96em; font-weight: 600;
}
.bandeau-info p{ margin: 0; font-weight: 600; }
.section--sombre .bandeau-info{ background: rgba(228,211,168,.14); color: var(--lin); }

/* ===== Pied ===== */
.pied{ background: var(--encre); color: var(--brume); padding: 2.5rem 0 2rem; font-size: .95rem; }
.pied .logo__mot{ font-size: 1.05rem; }
.pied__haut{ display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.5rem; }
.pied__nav{ display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; list-style: none; padding: 0; margin: 0; }
.pied__nav a{ color: var(--brume); }
.pied__nav a:hover{ color: var(--sable); }
.pied__bas{ border-top: 1px solid rgba(239,232,216,.18); padding-top: 1.2rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; opacity: .88; }
.pied__devise{ font-style: normal; font-family: var(--titres); }

/* ===== Barre collante mobile ===== */
.barre{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; background: var(--encre); color: var(--lin);
  padding: .55rem 1rem; display: none; align-items: center; justify-content: space-between; gap: 1rem;
  box-shadow: 0 -6px 20px rgba(0,0,0,.25);
}
.barre[hidden]{ display: none; }
.barre.est-visible{ display: flex; }
.barre p{ margin: 0; font-size: .95rem; line-height: 1.25; }
.barre strong{ color: var(--sable); }
.barre .bouton{ width: auto; white-space: nowrap; }
@media (min-width: 861px){ .barre{ display: none !important; } }
@media (max-width: 860px){ body:has(.barre){ padding-bottom: 4.5rem; } }

/* ===== FAQ ===== */
.faq{ display: flex; flex-direction: column; gap: .75rem; }
.faq details{ background: var(--papier); border: 1px solid var(--trait); border-radius: var(--radius); padding: 0; overflow: hidden; }
.faq summary{ cursor: pointer; list-style: none; padding: 1.1rem 1.3rem; font-weight: 700; font-family: var(--titres); font-size: 1.03rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker{ display: none; }
.faq summary::after{ content: '+'; flex: none; font-size: 1.4rem; line-height: 1; color: var(--or-2); transition: transform .15s ease; }
.faq details[open] summary::after{ transform: rotate(45deg); }
.faq__reponse{ padding: 0 1.3rem 1.2rem; margin: 0; color: var(--encre); }

/* ===== Hero (accueil / vente) ===== */
.hero{
  display: grid; grid-template-columns: 1.15fr .85fr; grid-template-areas: "intro achat" "extra achat";
  gap: clamp(1.5rem, 1rem + 2vw, 3rem); align-items: start;
}
.hero__intro{ grid-area: intro; }
.hero__achat{ grid-area: achat; }
.hero__extra{ grid-area: extra; }
@media (max-width: 960px){
  .hero{ grid-template-columns: 1fr; grid-template-areas: "intro" "achat" "extra"; }
}
/* Premier écran mobile compact : titre + chapô courts + carte de capture
   (jusqu'au bouton) visibles sans défiler (exigence explicite, vérifiée par
   capture 390×844 — voir _outils, rapport de livraison). */
@media (max-width: 640px){
  .entete{ padding: .55rem 0; }
  .info-generale .enveloppe--large{ padding-top: .5rem; padding-bottom: .5rem; font-size: 15px; }
  #haut.section{ padding-top: .9rem; padding-bottom: 1.2rem; }
  .hero__intro h1{ font-size: 1.4rem; margin-bottom: .3em; }
  .hero__intro .pilule{ margin-bottom: .4em; padding: .2em .7em; font-size: .85rem; }
  .hero__intro .chapo{ font-size: 16px; margin-bottom: 0; }
  /* Paragraphe qui suit le chapô : gardé pour le contenu/SEO, masqué
     seulement au tout premier écran mobile pour laisser voir le bouton
     d'achat/capture sans défiler — reste lisible en scrollant d'un cran.
     Sélecteur par sibling adjacent (pas nth-of-type : la pilule est aussi
     un <p>, ce qui décalerait le comptage). */
  .hero__intro .chapo + p{ display: none; }
  .hero__achat .carte{ padding: 1rem 1.1rem; }
  .hero__achat h2{ font-size: 1.3rem; margin-bottom: .3em; }
  .hero__achat > .carte > p:first-of-type{ margin-bottom: .6em; font-size: .92rem; }
  .formulaire{ gap: .55rem; }
  .champ input[type="email"]{ min-height: 46px; padding: .6em .8em; }
  .bouton{ min-height: 46px; padding: .75em 1.2em; }
}
.hero__achat{ position: sticky; top: 5.5rem; }
@media (max-width: 960px){ .hero__achat{ position: static; } }

.chapo{ font-family: var(--texte); font-weight: 400; font-style: normal; font-size: 21px; line-height: 1.55; color: var(--encre); }

.prix-fort{ display: inline-block; font-family: var(--titres); font-weight: 700; font-size: clamp(2rem, 1.6rem + 1.4vw, 2.6rem); color: var(--or-2); line-height: 1; }
.section--sombre .prix-fort, .carte--sombre .prix-fort{ color: var(--sable); }
.carte:not(.carte--sombre) .prix-fort{ color: var(--or-2); }

/* ===== Utilitaires ===== */
.pile{ display: flex; flex-direction: column; gap: 1rem; }
.centre{ text-align: center; }
.marge-haute{ margin-top: 2rem; }

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ===== Bandeau « information générale » ===== */
.info-generale{ background: var(--brume); border-left: 4px solid var(--or-2); }
.info-generale .enveloppe--large{ padding-top: .75rem; padding-bottom: .75rem; color: var(--encre); font-size: 17px; font-weight: 700; line-height: 1.5; }

/* ===== Pages légales ===== */
.page-maj{ font-size: .95rem; color: var(--encre); opacity: .72; margin: -.4em 0 2em; }
.table-legal{ width: 100%; border-collapse: collapse; margin: 0 0 1.5em; font-size: 1.0625rem; }
.table-legal th, .table-legal td{ text-align: left; padding: .6em .8em; border: 1px solid var(--trait); vertical-align: top; }
.table-legal th{ background: var(--brume); font-weight: 700; white-space: nowrap; }
@media (max-width: 640px){ .table-legal{ display: block; overflow-x: auto; } }

.bloquant-legal{
  background: #FBE3D8; border-left: 4px solid #B5432B; border-radius: 0 var(--radius) var(--radius) 0;
  padding: .9rem 1.1rem; font-weight: 700; color: #6E2609;
}

/* ===== Bloc de vente (classeur.html) ===== */
.bloc-contenu{ display: grid; gap: .9rem; }
.bloc-contenu > div{ background: var(--papier); border: 1px solid var(--trait); border-radius: var(--radius); padding: 1.1rem 1.3rem; }
.bloc-contenu h3{ margin: 0 0 .35em; font-size: 1.08rem; }
.bloc-contenu p{ margin: 0; }

.pour-qui{ display: grid; gap: 1.5rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 760px){ .pour-qui{ grid-template-columns: 1fr; } }

.comment{ list-style: none; margin: 0; padding: 0; counter-reset: etape; display: flex; flex-direction: column; gap: 1rem; }
.comment li{ display: flex; gap: 1rem; align-items: flex-start; counter-increment: etape; }
.comment li::before{
  content: counter(etape); flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 50%; background: var(--or-2); color: #fff; font-weight: 700;
}

/* Case de renonciation / consentement mise en valeur */
.champ--renonce{
  background: var(--brume); border: 1.5px solid var(--or); border-radius: var(--radius);
  padding: .9rem 1rem; flex-direction: row; align-items: flex-start; gap: .7rem;
}
.carte--sombre .champ--renonce{ background: rgba(228,211,168,.14); border-color: rgba(228,211,168,.4); }
.champ--renonce input[type="checkbox"]{ margin-top: .2rem; width: 1.25rem; height: 1.25rem; flex: none; accent-color: var(--or-2); }
.champ--renonce label{ font-size: .93rem; font-weight: 600; }

/* Table des tarifs / nombre de pages */
.chiffre-produit{ display: flex; gap: 1.4rem; flex-wrap: wrap; margin: 1rem 0 1.4rem; }
.chiffre-produit div{ background: var(--brume); border-radius: var(--radius); padding: .8rem 1.1rem; min-width: 9rem; }
.chiffre-produit strong{ display: block; font-family: var(--titres); font-size: 1.5rem; color: var(--or-2); }
.chiffre-produit span{ font-size: .88rem; opacity: .8; }

/* ============================================================
   V2 — Menu, maquettes, chaîne YouTube, sommaire illustré, pied
   ============================================================ */

/* ===== En-tête v2 : menu + CTA ===== */
.entete__ligne{ flex-wrap: wrap; row-gap: .4rem; }
.nav{ display: flex; align-items: center; gap: 1.5rem; margin-left: auto; }
.nav__liste{ display: flex; align-items: center; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav__liste a{ color: var(--lin); text-decoration: none; font-weight: 600; font-size: 1rem; padding: .3rem .05rem; border-bottom: 2px solid transparent; white-space: nowrap; }
.nav__liste a:hover, .nav__liste a:focus-visible{ border-color: var(--or); }
.nav .bouton{ width: auto; min-height: 44px; padding: .6em 1.15em; font-size: .98rem; white-space: nowrap; }
.nav__bascule{
  display: none; background: none; border: none; color: var(--lin); padding: .4rem; margin-left: .5rem;
  cursor: pointer; border-radius: 6px;
}
.nav__bascule:hover{ background: rgba(228,211,168,.14); }
.nav__bascule svg{ display: block; }
@media (max-width: 860px){
  .entete__mention{ display: none; }
  .nav{ order: 3; width: 100%; margin-left: 0; flex-direction: column; align-items: stretch; gap: 0;
        max-height: 0; overflow: hidden; transition: max-height .22s ease; }
  .nav[data-ouvert]{ max-height: 420px; }
  .nav__liste{ flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 0 .3rem; border-top: 1px solid rgba(228,211,168,.2); }
  .nav__liste a{ display: block; padding: .9rem .1rem; font-size: 1.1rem; border-bottom: 1px solid rgba(228,211,168,.12); }
  .nav .bouton{ width: 100%; margin: .8rem 0 1rem; }
  .nav__bascule{ display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; order: 2; }
}

/* ===== Maquette du Classeur (couverture 3D + pages ouvertes) ===== */
.maquette{ display: flex; align-items: center; justify-content: center; gap: 0; perspective: 1400px; }
.maquette__couverture{
  position: relative; flex: none; width: clamp(118px, 22vw, 172px); aspect-ratio: 3/4;
  background: linear-gradient(155deg, var(--encre) 0%, var(--encre-2) 100%);
  border-radius: 4px 10px 10px 4px; box-shadow: 0 22px 40px -14px rgba(22,40,31,.5), inset -7px 0 0 rgba(0,0,0,.2);
  transform: rotateY(20deg) rotateX(2deg); transform-style: preserve-3d;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 1.2rem .9rem; margin-right: -1.9rem; z-index: 2;
}
.maquette__couverture::before{
  content: ''; position: absolute; inset: 9px; border: 1.5px solid rgba(199,154,75,.55); border-radius: 2px 8px 8px 2px;
}
.maquette__emblème{ width: 26px; height: 26px; margin-bottom: .65em; color: var(--or); flex: none; }
.maquette__surtitre{ font-size: .6rem; text-transform: uppercase; letter-spacing: .14em; color: var(--sable); margin-bottom: .5em; }
.maquette__titre{ font-family: var(--titres); font-weight: 700; color: var(--lin); font-size: clamp(.82rem, 1.6vw, 1.02rem); line-height: 1.28; }
.maquette__pages{
  display: flex; flex: none; width: clamp(196px, 36vw, 272px); aspect-ratio: 4/3; background: var(--papier);
  border-radius: 3px 10px 10px 3px; box-shadow: 0 26px 46px -16px rgba(22,40,31,.42), 0 0 0 1px var(--trait);
  transform: rotateY(-11deg) rotateX(2deg); transform-style: preserve-3d; overflow: hidden; z-index: 1;
}
.maquette__page{ flex: 1; padding: .8rem .75rem; position: relative; min-width: 0; }
.maquette__page + .maquette__page{ border-left: 1px dashed var(--trait); }
.maquette__entete{ display: block; height: 6px; width: 62%; background: var(--brume); border-radius: 2px; margin-bottom: .55rem; }
.maquette__ligne{ display: block; height: 3px; background: var(--trait); border-radius: 2px; margin-bottom: .38rem; }
.maquette__ligne--courte{ width: 55%; }
.maquette__grille{ width: 100%; border-collapse: collapse; margin-top: .45rem; }
.maquette__grille td{ border: 1px solid var(--trait); height: 11px; }
.maquette__grille th{ border: 1px solid var(--trait); background: var(--brume); height: 8px; }
.maquette--petite{ transform: scale(.82); }
@media (max-width: 480px){ .maquette{ transform: scale(.86); } }

/* ===== Chaîne YouTube ===== */
.chaine{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin-top: 1.4rem; }
@media (max-width: 700px){ .chaine{ grid-template-columns: 1fr; } }
.chaine__carte{ display: block; text-decoration: none; color: inherit; background: var(--papier); border: 1px solid var(--trait); border-radius: var(--radius-lg); overflow: hidden; }
.chaine__carte:hover .chaine__miniature img{ transform: scale(1.04); }
.chaine__miniature{ position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--encre-2); }
.chaine__miniature img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease; }
.chaine__jouer{
  position: absolute; inset: 0; margin: auto; width: 56px; height: 56px; border-radius: 50%;
  background: rgba(31,59,50,.82); display: flex; align-items: center; justify-content: center; color: #fff;
}
.chaine__jouer svg{ width: 22px; height: 22px; margin-left: 3px; }
.chaine__corps{ padding: 1rem 1.15rem 1.2rem; }
.chaine__titre{ font-family: var(--titres); font-weight: 700; font-size: 1.05rem; color: var(--encre); margin: 0 0 .4em; line-height: 1.32; }
.chaine__stats{ font-size: .88rem; color: var(--or-2); font-weight: 700; margin: 0; }
.chaine__lien-chaine{ display: inline-flex; align-items: center; gap: .4em; margin-top: 1.2rem; font-weight: 700; }

/* ===== Sommaire illustré (classeur.html) ===== */
.sommaire-grille{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 1.4rem; }
@media (max-width: 900px){ .sommaire-grille{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .sommaire-grille{ grid-template-columns: 1fr; } }
.sommaire-carte{ background: var(--papier); border: 1px solid var(--trait); border-radius: var(--radius-lg); padding: 1.2rem 1.2rem 1.35rem; display: flex; flex-direction: column; gap: .7rem; }
.sommaire-carte__num{ font-family: var(--titres); font-weight: 700; font-size: .85rem; color: var(--or-2); letter-spacing: .04em; }
.sommaire-carte__apercu{ background: var(--brume); border-radius: 8px; padding: .65rem .7rem; display: flex; flex-direction: column; gap: .32rem; }
.sommaire-carte__apercu span{ display: block; height: 5px; background: var(--trait); border-radius: 2px; }
.sommaire-carte__apercu span:nth-child(1){ width: 70%; background: var(--sable); }
.sommaire-carte__apercu span:nth-child(3){ width: 45%; }
.sommaire-carte h3{ margin: 0; font-size: 1.08rem; }
.sommaire-carte p{ margin: 0; font-size: .95rem; }

/* ===== Aperçu visuel de la liste gratuite (index.html) ===== */
.apercu-liste{ display: grid; grid-template-columns: auto 1fr; gap: clamp(1.4rem, 1rem + 2vw, 3rem); align-items: center; }
@media (max-width: 760px){ .apercu-liste{ grid-template-columns: 1fr; justify-items: center; text-align: left; } }
.maquette-liste{ flex: none; width: clamp(180px, 30vw, 232px); background: var(--papier); border-radius: 8px; box-shadow: 0 20px 36px -16px rgba(22,40,31,.35), 0 0 0 1px var(--trait); transform: rotate(-3.5deg); padding: 1.1rem 1.2rem; }
.maquette-liste__entete{ height: 8px; width: 68%; background: var(--brume); border-radius: 2px; margin-bottom: .8rem; }
.maquette-liste__item{ display: flex; align-items: center; gap: .55rem; margin-bottom: .58rem; }
.maquette-liste__case{ width: 12px; height: 12px; border: 1.5px solid var(--encre); border-radius: 2px; flex: none; }
.maquette-liste__trait{ flex: 1; height: 3px; background: var(--trait); border-radius: 2px; }
.maquette-liste__trait--courte{ flex: none; width: 55%; }

/* ===== Pourquoi 6 mois — chronologie ===== */
.chrono{ display: flex; flex-direction: column; gap: 0; margin-top: 1.4rem; }
.chrono__etape{ display: flex; gap: 1.1rem; padding: 0 0 1.5rem; position: relative; }
.chrono__etape::before{ content: ''; position: absolute; left: 13px; top: 30px; bottom: 0; width: 2px; background: var(--trait); }
.chrono__etape:last-child::before{ display: none; }
.chrono__etape:last-child{ padding-bottom: 0; }
.chrono__point{ flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--or-2); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--titres); font-weight: 700; font-size: .82rem; z-index: 1; }
.chrono__etape--alerte .chrono__point{ background: #B5432B; }
.chrono h3{ margin: 0 0 .25em; font-size: 1.12rem; }
.chrono p{ margin: 0; }

/* ===== Pied v2 ===== */
.pied__marque{ max-width: 22rem; }
.pied__marque p{ margin: .8rem 0 0; font-size: .93rem; opacity: .82; line-height: 1.55; }
.pied__grille{ display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 2rem; margin-bottom: 2rem; }
@media (max-width: 860px){ .pied__grille{ grid-template-columns: 1fr 1fr; row-gap: 1.8rem; } }
@media (max-width: 560px){ .pied__grille{ grid-template-columns: 1fr; } }
.pied__col h3{ font-family: var(--titres); color: var(--sable); font-size: .92rem; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 .9rem; }
.pied__col ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.pied__col a{ color: var(--brume); text-decoration: none; }
.pied__col a:hover{ color: var(--sable); text-decoration: underline; }

/* ===== Grille de catégories (aperçu visuel de la liste gratuite) ===== */
.categories-grille{ display: grid; grid-template-columns: repeat(2, 1fr); gap: .95rem 1.6rem; margin: 1.4rem 0 0; }
@media (max-width: 640px){ .categories-grille{ grid-template-columns: 1fr; } }
.categorie{ display: flex; align-items: center; gap: .75rem; }
.categorie__num{ flex: none; display: inline-flex; align-items: center; justify-content: center; width: 1.9rem; height: 1.9rem; border-radius: 50%; background: var(--brume); color: var(--or-2); font-family: var(--titres); font-weight: 700; font-size: .92rem; }
.categorie span:last-child{ font-weight: 600; }
