@charset "UTF-8";

/* Feuille du site public.
   Les couleurs viennent des globales « Marque », injectées par le gabarit :
   une ville change de couleur sans qu'une ligne de CSS bouge. */

:root {
    /* Valeurs de repli, relevées dans le logo de Lévis. Les vraies viennent
       des globales « Marque » : le cercle du logo est noir, l'accent change
       d'une ville à l'autre — bleu à Lévis, cyan à Québec. */
    --primaire: #008eff;
    --secondaire: #000000;
    --encre: #14161c;
    --gris: #5b6270;
    --trait: #e4e7ec;
    --fond-doux: #f2f8ff;
    --rayon: 10px;
    --largeur: 1180px;
    /* Hauteur de l'en-tête collant. Trois éléments s'y accrochent — la barre
       de filtres, la colonne latérale et le panneau du menu mobile — donc une
       seule valeur, jamais recopiée. */
    --entete-h: 88px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
    color: var(--encre);
    background: #fff;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.contenant { width: min(100% - 40px, var(--largeur)); margin-inline: auto; }

/* ── Navigation ─────────────────────────────────────────────── */
.entete {
    position: sticky; top: 0; z-index: 50;
    background: #fff; border-bottom: 1px solid var(--trait);
}
.entete .contenant { display: flex; align-items: center; gap: 28px; height: var(--entete-h); }
.entete .logo { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.entete .logo img { width: 64px; height: 64px; }
.entete .logo span { font-weight: 800; font-size: 20px; color: var(--secondaire); letter-spacing: -.02em; }
.entete nav { display: flex; align-items: center; gap: 24px; margin-left: 12px; align-self: stretch; }
.entete nav a { text-decoration: none; font-weight: 600; font-size: 15px; color: var(--encre); }
.entete nav a:hover { color: var(--primaire); }
.entete .pousse { margin-left: auto; }
.entete .dans-menu { display: none; }

/* Sous-menu : « Ce weekend » vit sous « Quoi faire ». Le groupe occupe toute
   la hauteur de l'en-tête pour qu'il n'y ait aucun trou à traverser à la
   souris entre le parent et le panneau. */
.entete .groupe { position: relative; display: flex; align-items: center; align-self: stretch; }
.entete .groupe .tete { display: inline-flex; align-items: center; gap: 7px; }
.entete .groupe .tete::after {
    content: ''; border: 4px solid transparent; border-top-color: currentColor;
    margin-top: 4px; transition: transform .15s ease;
}
.entete .sous-menu {
    position: absolute; top: 100%; left: -14px; min-width: 200px;
    display: none; flex-direction: column; gap: 2px;
    background: #fff; border: 1px solid var(--trait); border-radius: 12px;
    padding: 8px; box-shadow: 0 20px 40px -26px rgba(20,22,28,.5);
}
.entete .groupe:hover .sous-menu,
.entete .groupe:focus-within .sous-menu { display: flex; }
.entete .sous-menu a {
    padding: 9px 12px; border-radius: 8px; font-weight: 600; font-size: 14.5px;
}
.entete .sous-menu a:hover { background: var(--fond-doux); color: var(--primaire); }

/* Bouton de bascule. Caché tant que le script ne l'a pas révélé. */
.bascule {
    display: none; margin-left: auto; align-items: center; gap: 10px;
    background: none; border: 1.5px solid var(--trait); border-radius: 999px;
    padding: 9px 16px; font: inherit; font-size: 14px; font-weight: 700;
    color: var(--encre); cursor: pointer;
}
.bascule .barres {
    position: relative; width: 16px; height: 2px; background: currentColor;
    transition: background .15s ease;
}
.bascule .barres::before,
.bascule .barres::after {
    content: ''; position: absolute; left: 0; width: 16px; height: 2px;
    background: currentColor; transition: transform .15s ease;
}
.bascule .barres::before { top: -5px; }
.bascule .barres::after { top: 5px; }
.bascule[aria-expanded=true] .barres { background: transparent; }
.bascule[aria-expanded=true] .barres::before { transform: translateY(5px) rotate(45deg); }
.bascule[aria-expanded=true] .barres::after { transform: translateY(-5px) rotate(-45deg); }

.bouton {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--primaire); color: #fff; text-decoration: none;
    font-weight: 700; font-size: 15px;
    padding: 13px 24px; border-radius: 999px; border: 0; cursor: pointer;
    transition: filter .15s ease;
}
.bouton:hover { filter: brightness(.92); }

/* ── Héros ──────────────────────────────────────────────────── */
.heros {
    background: linear-gradient(180deg, var(--fond-doux), #fff);
    padding: 84px 0 72px;
}
.heros .sur-titre {
    display: flex; align-items: center; gap: 12px;
    color: var(--primaire); font-weight: 700; font-size: 13px;
    letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px;
}
.heros .sur-titre::before { content: ''; width: 34px; height: 3px; background: var(--primaire); }
.heros h1 {
    font-size: clamp(38px, 5.6vw, 62px); line-height: 1.05;
    font-weight: 800; letter-spacing: -.03em; color: var(--secondaire);
    max-width: 16ch;
}
.heros .promesse {
    margin-top: 22px; font-size: 19px; color: var(--gris); max-width: 52ch;
}
.heros .colonnes { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: start; }

/* ── Formulaire d'inscription ───────────────────────────────── */
.inscription { margin-top: 34px; max-width: 560px; }
.inscription .rangee { display: flex; gap: 12px; flex-wrap: wrap; }
.inscription input[type=email] {
    flex: 1 1 260px; padding: 15px 20px; font: inherit; font-size: 16px;
    border: 1.5px solid var(--trait); border-radius: 999px; background: #fff;
}
.inscription input[type=email]:focus { outline: 2px solid var(--primaire); outline-offset: 1px; }

/* Case décochée par défaut : la LCAP exige un consentement exprès, donc un
   geste volontaire. Une case pré-cochée invaliderait le consentement. */
.inscription .consentement {
    display: flex; gap: 11px; margin-top: 16px;
    font-size: 13.5px; color: var(--gris); line-height: 1.45;
}
.inscription .consentement input { margin-top: 3px; width: 17px; height: 17px; flex: none; }
.inscription .mentions { margin-top: 14px; font-size: 13px; color: var(--gris); }
.inscription .preuve { margin-top: 18px; font-size: 14.5px; font-weight: 600; }
.inscription .preuve strong { color: var(--secondaire); }

/* ── Annonce après inscription ──────────────────────────────── */
/* En position fixe : le formulaire vit tantôt dans le héros, tantôt dans une
   colonne, tantôt dans la bande du bas. Un message ancré au formulaire serait
   hors écran une fois sur deux. z-index au-dessus de l'en-tête collant. */
.annonce {
    position: fixed; z-index: 90;
    left: 50%; transform: translateX(-50%);
    bottom: 24px; width: min(100% - 32px, 520px);
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 18px; border-radius: 14px;
    font-size: 15.5px; line-height: 1.5;
    box-shadow: 0 22px 44px -20px rgba(20, 22, 28, .45);
    animation: annonce-entree .28s ease-out both;
}
@keyframes annonce-entree {
    from { opacity: 0; transform: translate(-50%, 14px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}
/* Respecte le réglage système : une animation d'entrée n'est pas essentielle. */
@media (prefers-reduced-motion: reduce) {
    .annonce { animation: none; }
}

.annonce p { flex: 1; }
.annonce.succes { background: #e8f7ee; color: #14653a; border: 1px solid #bfe6cf; }
.annonce.erreur { background: #fdecec; color: #8d1d1d; border: 1px solid #f3c9c9; }

/* Coche ou croix dessinée en CSS — pas de fichier pour deux traits. */
.annonce .pictogramme {
    flex: none; width: 22px; height: 22px; border-radius: 50%;
    position: relative; margin-top: 1px;
}
.annonce.succes .pictogramme { background: #14653a; }
.annonce.erreur .pictogramme { background: #8d1d1d; }
.annonce .pictogramme::after {
    content: ''; position: absolute; left: 8px; top: 5px;
    width: 5px; height: 9px; border: solid #fff;
    border-width: 0 2px 2px 0; transform: rotate(42deg);
}
.annonce.erreur .pictogramme::after {
    left: 10px; top: 5px; width: 2px; height: 11px;
    background: #fff; border: 0; transform: none;
    box-shadow: 0 0 0 0 transparent;
}

.annonce .fermer {
    flex: none; background: none; border: 0; cursor: pointer;
    font-size: 22px; line-height: 1; padding: 0 2px;
    color: inherit; opacity: .55;
}
.annonce .fermer:hover { opacity: 1; }

/* ── Carte de voix ──────────────────────────────────────────── */
.carte-amie {
    background: #fff; border: 1px solid var(--trait); border-radius: 18px;
    padding: 32px; box-shadow: 0 18px 40px -28px rgba(20,22,28,.35);
}
/* Portrait : `cover` évite l'écrasement dans le cercle, et le point de mire
   remonte pour garder le visage centré plutôt que le milieu du cadrage. */
.carte-amie .portrait {
    width: 76px; height: 76px; border-radius: 50%;
    object-fit: cover; object-position: center 22%;
}
.carte-amie .voix {
    margin-top: 20px; font-size: 24px; line-height: 1.28; font-weight: 800;
    letter-spacing: -.02em; color: var(--secondaire);
}
.carte-amie .preuves { list-style: none; margin-top: 22px; }
.carte-amie .preuves li {
    position: relative; padding-left: 26px; font-size: 15.5px; color: var(--gris);
}
.carte-amie .preuves li + li { margin-top: 11px; }
/* Coche dessinée en CSS : deux traits, pas de fichier à charger. */
.carte-amie .preuves li::before {
    content: ''; position: absolute; left: 2px; top: 6px;
    width: 6px; height: 11px; border: solid var(--primaire);
    border-width: 0 2.5px 2.5px 0; transform: rotate(42deg);
}
.carte-amie .rythme {
    margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--trait);
    font-size: 14px; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; color: var(--primaire);
}

/* ── Signature d'auteur ─────────────────────────────────────── */
.signature-auteur {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--trait);
}
/* Un portrait, pas un logo : `cover` évite l'écrasement, et le point de mire
   remonte pour garder le visage centré dans le cercle. */
.signature-auteur img {
    width: 56px; height: 56px; border-radius: 50%; flex: none;
    object-fit: cover; object-position: center 22%;
}
.signature-auteur .nom { font-weight: 800; color: var(--secondaire); font-size: 16px; }
.signature-auteur .role { font-size: 14px; color: var(--gris); }
.signature-auteur .source {
    margin-left: auto; font-size: 14px; font-weight: 700;
    color: var(--primaire); text-decoration: none;
}
.signature-auteur .source:hover { text-decoration: underline; }

/* ── Sections ───────────────────────────────────────────────── */
.section { padding: 72px 0; }
.section + .section { border-top: 1px solid var(--trait); }
.section .chapeau { display: flex; align-items: baseline; gap: 18px; margin-bottom: 34px; }
.section h2 { font-size: 32px; font-weight: 800; letter-spacing: -.02em; color: var(--secondaire); }
.section .chapeau .quand { color: var(--gris); font-size: 16px; }
.section .chapeau h2 a { text-decoration: none; }
.section .chapeau h2 a:hover { color: var(--primaire); }
.section .chapeau .chapeau-suite {
    margin-left: auto; white-space: nowrap;
    font-size: 15px; font-weight: 700; color: var(--primaire); text-decoration: none;
}
.section .chapeau .chapeau-suite:hover { text-decoration: underline; }

.suite {
    margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--trait);
    font-size: 16px; color: var(--gris);
}
.suite a { color: var(--primaire); font-weight: 700; text-decoration: none; }
.suite a:hover { text-decoration: underline; }

.grille { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 26px; }

.carte {
    border: 1px solid var(--trait); border-radius: 16px; overflow: hidden;
    display: flex; flex-direction: column; background: #fff;
}
.carte .visuel { aspect-ratio: 4 / 3; background: var(--fond-doux) center/cover no-repeat; }
.carte .visuel.manque {
    display: flex; align-items: center; justify-content: center;
    color: var(--gris); font-size: 14px;
}
.carte .corps { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.carte .quand { color: var(--primaire); font-weight: 700; font-size: 14px; }
.carte h3 { font-size: 19px; font-weight: 800; line-height: 1.25; color: var(--secondaire); }
.carte .ou { font-size: 14.5px; color: var(--gris); }
.carte .etiquette {
    align-self: flex-start; margin-top: auto; padding: 5px 12px; border-radius: 999px;
    background: var(--fond-doux); color: var(--secondaire);
    font-size: 12.5px; font-weight: 700;
}

.vide-doux { color: var(--gris); font-size: 16px; }

/* Lu par les lecteurs d'écran, invisible à l'œil. Sert à annoncer ce qu'une
   icône seule ne dit pas — l'ouverture dans un nouvel onglet, par exemple. */
.hors-ecran {
    position: absolute; width: 1px; height: 1px; overflow: hidden;
    clip-path: inset(50%); white-space: nowrap;
}

/* ── En-tête de page intérieure ─────────────────────────────── */
.page-entete {
    background: linear-gradient(180deg, var(--fond-doux), #fff);
    padding: 60px 0 44px;
}
.page-entete .sur-titre {
    display: flex; align-items: center; gap: 12px;
    color: var(--primaire); font-weight: 700; font-size: 13px;
    letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px;
}
.page-entete .sur-titre::before { content: ''; width: 34px; height: 3px; background: var(--primaire); }
.page-entete h1 {
    font-size: clamp(34px, 4.8vw, 52px); line-height: 1.06;
    font-weight: 800; letter-spacing: -.03em; color: var(--secondaire);
}
.page-entete .promesse { margin-top: 18px; font-size: 18px; color: var(--gris); max-width: 58ch; }

.fil-ariane {
    display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
    margin-bottom: 18px; font-size: 14px; color: var(--gris);
}
.fil-ariane a { color: var(--primaire); font-weight: 700; text-decoration: none; }
.fil-ariane a:hover { text-decoration: underline; }
.fil-ariane span[aria-hidden] { color: var(--trait); }

/* ── Barre de filtres ───────────────────────────────────────── */
.barre-filtres {
    position: sticky; top: var(--entete-h); z-index: 40;
    background: #fff; border-bottom: 1px solid var(--trait);
}
.barre-filtres .contenant {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 0; overflow-x: auto; scrollbar-width: thin;
}
.filtre {
    flex: none; display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 15px; border-radius: 999px; border: 1.5px solid var(--trait);
    text-decoration: none; font-size: 14px; font-weight: 600; color: var(--encre);
    white-space: nowrap; transition: border-color .15s ease, background .15s ease;
}
.filtre span { color: var(--gris); font-weight: 700; font-size: 12.5px; }
.filtre:hover { border-color: var(--primaire); }
.filtre.actif { background: var(--primaire); border-color: var(--primaire); color: #fff; }
.filtre.actif span { color: rgba(255,255,255,.75); }
.barre-filtres .separateur { flex: none; width: 1px; height: 24px; background: var(--trait); }

/* ── Agenda ─────────────────────────────────────────────────── */
.agenda .jour {
    display: flex; align-items: baseline; gap: 14px;
    font-size: 21px; font-weight: 800; letter-spacing: -.02em;
    color: var(--secondaire); text-transform: capitalize;
    margin: 42px 0 4px; padding-bottom: 12px; border-bottom: 2px solid var(--secondaire);
}
.agenda .jour:first-child { margin-top: 0; }
.agenda .jour .auj {
    font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--primaire);
}
.agenda .continu-titre { margin-top: 56px; }

.rangee {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 22px 0; border-bottom: 1px solid var(--trait);
}
.rangee.vedette {
    background: var(--fond-doux); border-radius: 12px;
    padding: 22px 20px; margin: 8px 0; border-bottom: 0;
}
.rangee .colonne-quand {
    flex: 0 0 94px; display: flex; flex-direction: column; gap: 3px; padding-top: 2px;
}
.rangee .heure { font-size: 19px; font-weight: 800; color: var(--primaire); letter-spacing: -.02em; }
.rangee .heure.douce { font-size: 13.5px; font-weight: 700; color: var(--gris); }
.rangee .continu {
    font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    color: var(--primaire);
}
.rangee .continu.bientot { color: var(--secondaire); text-transform: none; letter-spacing: 0; font-size: 13.5px; }
.rangee .jusqua { font-size: 12.5px; color: var(--gris); }
.rangee .vignette {
    flex: 0 0 92px; height: 92px; border-radius: 10px;
    background: var(--fond-doux) center/cover no-repeat;
}
.rangee .infos { flex: 1; min-width: 0; }
.rangee .infos h3 {
    font-size: 18px; font-weight: 800; line-height: 1.3;
    color: var(--secondaire); letter-spacing: -.01em;
}
.rangee .fanion {
    display: inline-block; margin-left: 8px; vertical-align: 2px;
    padding: 3px 9px; border-radius: 999px; background: var(--primaire); color: #fff;
    font-size: 11px; font-weight: 800; letter-spacing: .04em;
}
.rangee .meta { margin-top: 5px; font-size: 14.5px; color: var(--gris); }
.rangee .resume { margin-top: 8px; font-size: 15px; color: var(--encre); max-width: 72ch; }
.rangee .liens { margin-top: 10px; display: flex; gap: 18px; flex-wrap: wrap; }
.rangee .liens a { font-size: 14px; font-weight: 700; color: var(--primaire); text-decoration: none; }
.rangee .liens a:hover { text-decoration: underline; }
.rangee .colonne-prix { flex: 0 0 auto; padding-top: 2px; }
.rangee .etiquette {
    display: inline-block; padding: 5px 12px; border-radius: 999px;
    background: var(--fond-doux); color: var(--secondaire);
    font-size: 12.5px; font-weight: 700; white-space: nowrap;
}
.rangee .etiquette.gratuit { background: #e8f7ee; color: #14653a; }

/* ── Pagination ─────────────────────────────────────────────── */
.pagination {
    display: flex; align-items: center; justify-content: center; gap: 24px;
    margin-top: 46px; padding-top: 26px; border-top: 1px solid var(--trait);
}
.pagination a { font-weight: 700; font-size: 15px; color: var(--primaire); text-decoration: none; }
.pagination a:hover { text-decoration: underline; }
.pagination .rang { font-size: 14px; color: var(--gris); }

/* ── Brèves ─────────────────────────────────────────────────── */
.breves .breve { padding: 34px 0; border-bottom: 1px solid var(--trait); max-width: 76ch; }
.breves .breve:first-child { padding-top: 0; }
.breves .breve.vedette { border-left: 3px solid var(--primaire); padding-left: 22px; }
.breve .surlignes { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.breve .rubrique {
    padding: 5px 12px; border-radius: 999px; background: var(--fond-doux);
    color: var(--secondaire); font-size: 12px; font-weight: 800;
    letter-spacing: .04em; text-transform: uppercase;
}
.breve .quand { font-size: 13.5px; color: var(--gris); }
.breve h2 { font-size: 27px; font-weight: 800; line-height: 1.2; letter-spacing: -.02em; color: var(--secondaire); }
.breve .ou { margin-top: 7px; font-size: 15px; color: var(--gris); }
.breve .visuel { margin-top: 20px; border-radius: 14px; width: 100%; }
.breve .corps-riche { margin-top: 16px; font-size: 17px; line-height: 1.65; }
.breve .corps-riche p + p { margin-top: 14px; }
.breve .corps-riche a { color: var(--primaire); }
/* Le reset met `padding: 0` partout : sans ça, les puces sortent du cadre. */
.breve .corps-riche ul,
.breve .corps-riche ol { margin: 14px 0; padding-left: 24px; }
.breve .corps-riche li + li { margin-top: 8px; }
.breve .corps-riche h3 { margin-top: 22px; font-size: 19px; font-weight: 800; color: var(--secondaire); }
.breve .corps-riche blockquote {
    margin: 18px 0; padding-left: 18px; border-left: 3px solid var(--primaire);
    color: var(--gris); font-style: italic;
}
.breve .liens { margin-top: 16px; }
.breve .liens a { font-size: 15px; font-weight: 700; color: var(--primaire); text-decoration: none; }

/* ── Page de pré-lancement d'une ville ──────────────────────── */
.bientot {
    background: linear-gradient(180deg, var(--fond-doux), #fff);
    padding: clamp(60px, 12vh, 120px) 0 90px;
    text-align: center;
}
.bientot .contenant { max-width: 640px; }
.bientot .marque { width: 96px; height: 96px; margin: 0 auto; }
.bientot .sur-titre {
    margin-top: 30px; color: var(--primaire); font-weight: 800; font-size: 12.5px;
    letter-spacing: .14em; text-transform: uppercase;
}
.bientot h1 {
    margin-top: 16px; font-size: clamp(32px, 5.4vw, 50px); line-height: 1.1;
    font-weight: 800; letter-spacing: -.03em; color: var(--secondaire);
}
.bientot .promesse {
    margin-top: 20px; font-size: 18px; color: var(--gris);
    max-width: 46ch; margin-inline: auto;
}
/* Le formulaire est bâti pour une colonne de gauche : ici il est centré et
   c'est le seul geste possible de la page. */
.bientot .formulaire { margin-top: 34px; }
.bientot .inscription { margin: 0 auto; max-width: 480px; text-align: left; }
.bientot .avance {
    margin-top: 26px; font-size: 15px; color: var(--gris);
    max-width: 44ch; margin-inline: auto;
}
.bientot .reseaux { justify-content: center; margin-top: 30px; }

/* ── Deux colonnes : contenu + inscription ──────────────────── */
.avec-colonne {
    display: grid; grid-template-columns: minmax(0, 1fr) 340px;
    gap: 60px; align-items: start;
}
.colonne-laterale { position: sticky; top: calc(var(--entete-h) + 28px); }

.carte-abonnement {
    border: 1px solid var(--trait); border-radius: 18px; padding: 28px;
    background: var(--fond-doux);
}
.carte-abonnement .sur-titre {
    color: var(--primaire); font-weight: 800; font-size: 12px;
    letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px;
}
.carte-abonnement h2 {
    font-size: 21px; font-weight: 800; line-height: 1.25;
    letter-spacing: -.02em; color: var(--secondaire);
}
.carte-abonnement .argument { margin-top: 12px; font-size: 14.5px; color: var(--gris); }

/* Sur 340 px, le champ et le bouton ne tiennent pas côte à côte. */
.carte-abonnement .inscription { margin-top: 20px; max-width: none; }
.carte-abonnement .inscription .rangee { flex-direction: column; gap: 10px; }
.carte-abonnement .inscription input[type=email] { flex: none; width: 100%; }
.carte-abonnement .inscription .bouton { width: 100%; justify-content: center; }
.carte-abonnement .inscription .consentement { font-size: 12.5px; }
.carte-abonnement .inscription .mentions { font-size: 12px; }

/* ── Page d'une brève ───────────────────────────────────────── */
.article { max-width: 72ch; }
.article .fil { margin-bottom: 26px; font-size: 14.5px; }
.article .fil a { color: var(--primaire); font-weight: 700; text-decoration: none; }
.article h1 {
    font-size: clamp(30px, 4vw, 44px); line-height: 1.12;
    font-weight: 800; letter-spacing: -.03em; color: var(--secondaire);
}
.article .ou { margin-top: 12px; font-size: 16px; color: var(--gris); }
.article .visuel { margin-top: 26px; border-radius: 16px; width: 100%; }
.article .corps-riche { margin-top: 24px; font-size: 18px; line-height: 1.7; }
.article .corps-riche p + p { margin-top: 16px; }
.article .corps-riche a { color: var(--primaire); }
.article .corps-riche ul,
.article .corps-riche ol { margin: 16px 0; padding-left: 26px; }
.article .corps-riche li + li { margin-top: 9px; }
.article .liens { margin-top: 28px; }
.article .signature {
    margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--trait);
    font-size: 14.5px; color: var(--gris);
}
.article .signature strong { color: var(--encre); }
.article .signature a { color: var(--primaire); font-weight: 700; }

.breve h2 a { text-decoration: none; }
.breve h2 a:hover { color: var(--primaire); }
.breve .extrait { margin-top: 14px; font-size: 16.5px; line-height: 1.6; color: var(--encre); }
.breve .visuel { max-height: 320px; object-fit: cover; }

/* ── Liste classée d'entreprises ────────────────────────────── */
.corps-riche.intro { font-size: 18.5px; line-height: 1.7; color: var(--encre); }
.corps-riche.intro p + p { margin-top: 16px; }
.corps-riche.conclusion {
    margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--trait);
    font-size: 16.5px; color: var(--gris);
}

.liste-classee { list-style: none; margin-top: 40px; }
.liste-classee .element { display: flex; gap: 22px; align-items: flex-start; }
.liste-classee .element + .element {
    margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--trait);
}
.liste-classee .rang {
    flex: 0 0 46px; height: 46px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--primaire); color: #fff;
    font-size: 19px; font-weight: 800; letter-spacing: -.02em;
}
.liste-classee .fiche { flex: 1; min-width: 0; }
.liste-classee .entete-fiche {
    display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
}
.liste-classee h2 {
    font-size: 25px; font-weight: 800; letter-spacing: -.02em;
    line-height: 1.2; color: var(--secondaire);
}
.liste-classee .mention {
    padding: 5px 12px; border-radius: 999px; background: var(--fond-doux);
    color: var(--secondaire); font-size: 12px; font-weight: 800;
    letter-spacing: .04em; text-transform: uppercase; white-space: nowrap;
}
.liste-classee .faits { margin-top: 8px; font-size: 14.5px; color: var(--gris); }
.liste-classee .visuel { margin-top: 18px; border-radius: 14px; width: 100%; }
.liste-classee .commentaire { margin-top: 16px; font-size: 17px; line-height: 1.65; }
.liste-classee .commentaire p + p { margin-top: 14px; }
.liste-classee .commentaire a { color: var(--primaire); }

.liste-classee .details {
    margin-top: 20px; padding: 18px 20px;
    background: var(--fond-doux); border-radius: 12px;
    display: grid; grid-template-columns: auto 1fr; gap: 8px 20px;
    font-size: 14.5px;
}
.liste-classee .details dt { font-weight: 700; color: var(--secondaire); }
.liste-classee .details dd { color: var(--gris); }
.liste-classee .details a { color: var(--primaire); font-weight: 600; }

.liste-classee .liens { margin-top: 16px; display: flex; gap: 20px; flex-wrap: wrap; }
.liste-classee .liens a { font-size: 14.5px; font-weight: 700; color: var(--primaire); text-decoration: none; }
.liste-classee .liens a:hover { text-decoration: underline; }

/* Divulgation d'une mention payée. Discrète mais jamais masquée. */
.liste-classee .divulgation {
    margin-top: 16px; padding: 11px 14px; border-radius: 10px;
    border: 1px solid var(--trait); background: #fff;
    font-size: 13px; color: var(--gris); line-height: 1.5;
}

/* ── Pages légales ──────────────────────────────────────────── */
.page-legale { max-width: 72ch; font-size: 17px; line-height: 1.7; }
.page-legale .chapo {
    font-size: 19px; line-height: 1.6; color: var(--secondaire);
    padding-bottom: 26px; border-bottom: 1px solid var(--trait);
}
.page-legale h2 {
    margin-top: 42px; font-size: 22px; font-weight: 800;
    letter-spacing: -.02em; color: var(--secondaire);
}
.page-legale p { margin-top: 14px; }
.page-legale ul { margin: 14px 0 0; padding-left: 24px; }
.page-legale li + li { margin-top: 9px; }
.page-legale a { color: var(--primaire); }
.page-legale .adresse-bloc {
    margin-top: 16px; padding: 16px 20px; border-radius: 12px;
    background: var(--fond-doux); font-size: 15.5px; line-height: 1.6;
}

.avis-manquant {
    margin-bottom: 30px; padding: 16px 20px; border-radius: 12px;
    background: #fdecec; border: 1px solid #f3c9c9; color: #8d1d1d;
    font-size: 15px; line-height: 1.55;
}
.avis-manquant strong { display: block; margin-bottom: 3px; }

.vide-cadre {
    border: 1.5px dashed var(--trait); border-radius: 16px;
    padding: 52px 40px; text-align: center; background: var(--fond-doux);
}
.vide-cadre h2 { font-size: 25px; font-weight: 800; color: var(--secondaire); letter-spacing: -.02em; }
.vide-cadre p { margin-top: 12px; color: var(--gris); font-size: 16.5px; }
.vide-cadre .boutons { margin-top: 26px; }

/* ── Bandeau de rappel ──────────────────────────────────────── */
.rappel { background: var(--secondaire); color: #fff; padding: 64px 0; }
.rappel h2 { color: #fff; font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.rappel p { color: rgba(255,255,255,.78); margin-top: 12px; max-width: 46ch; }
.rappel .inscription input[type=email] { border-color: transparent; }
.rappel .inscription .consentement,
.rappel .inscription .mentions { color: rgba(255,255,255,.7); }

/* ── Pied ───────────────────────────────────────────────────── */
.pied { padding: 54px 0 40px; border-top: 1px solid var(--trait); font-size: 14px; color: var(--gris); }
.pied .colonnes { display: flex; gap: 40px; flex-wrap: wrap; justify-content: space-between; }
.pied a { color: var(--gris); }
.pied .legal { margin-top: 26px; font-size: 13px; line-height: 1.6; }
.pied .legal strong { color: var(--encre); }

.reseaux { display: flex; gap: 10px; margin-top: 16px; }
.reseaux a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--trait); color: var(--gris);
    transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.reseaux a:hover {
    color: #fff; background: var(--primaire); border-color: var(--primaire);
}
.reseaux svg { display: block; }

@media (max-width: 900px) {
    /* 88 px d'en-tête mangent trop d'un écran de téléphone, et le logo doit
       laisser la place au bouton de bascule. Les offsets collants suivent
       tout seuls. */
    :root { --entete-h: 74px; }
    .entete .logo img { width: 50px; height: 50px; }
    .entete .logo span { font-size: 17px; }

    .heros .colonnes { grid-template-columns: 1fr; gap: 36px; }
    .heros { padding: 56px 0 48px; }

    /* ── Menu mobile ─────────────────────────────────────────
       Le panneau se pose sous l'en-tête plutôt que de le pousser :
       l'en-tête est collant, une hauteur variable le ferait sauter. */
    .bascule { display: inline-flex; }
    .entete .pousse { display: none; }
    .entete .dans-menu { display: inline-flex; }

    .entete nav {
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        margin: 0; padding: 10px 20px 22px;
        background: #fff; border-bottom: 1px solid var(--trait);
        box-shadow: 0 22px 34px -28px rgba(20,22,28,.55);
        max-height: calc(100vh - var(--entete-h)); overflow-y: auto;
    }
    /* `.js` n'est posé que si le script tourne : sans lui, le menu reste
       déplié et atteignable. */
    .js .entete nav { display: none; }
    .js .entete nav.ouvert { display: flex; }

    .entete nav > a,
    .entete .groupe .tete {
        padding: 14px 0; border-bottom: 1px solid var(--trait); font-size: 16px;
    }
    .entete .groupe { display: block; align-self: auto; }
    .entete .groupe .tete { display: flex; justify-content: space-between; }
    .entete .groupe .tete::after { display: none; }

    /* Déplié en permanence : un accordéon dans un menu déjà replié ajoute
       un geste pour rien sur quatre liens. */
    .entete .sous-menu {
        position: static; display: flex; min-width: 0;
        border: 0; border-radius: 0; padding: 0 0 0 18px;
        box-shadow: none; background: none;
        border-left: 2px solid var(--trait); margin: 10px 0 4px;
    }
    .entete .sous-menu a { padding: 9px 0; font-size: 15px; color: var(--gris); }

    .entete .dans-menu { margin-top: 20px; justify-content: center; }

    /* La barre de filtres reste collante mais la navigation a disparu du
       gabarit mobile : elle remonte sous l'en-tête. */
    .barre-filtres .contenant { width: 100%; padding-inline: 20px; }

    /* L'heure passe au-dessus du titre : sur 320 px, une colonne de 94 px
       laisse dix caractères au titre. */
    .rangee { flex-wrap: wrap; gap: 12px 16px; }
    .rangee .colonne-quand { flex-basis: auto; flex-direction: row; align-items: baseline; gap: 8px; }
    .rangee .colonne-prix { order: -1; margin-left: auto; }
    .rangee .infos { flex-basis: 100%; }
    .rangee .vignette { flex: 0 0 68px; height: 68px; }

    .agenda .jour { font-size: 19px; margin-top: 34px; }
    .breve h2 { font-size: 23px; }
    .vide-cadre { padding: 40px 24px; }
}

@media (max-width: 980px) {
    /* La colonne d'inscription passe sous le contenu — collante, elle
       occuperait tout l'écran sur mobile. */
    .avec-colonne { grid-template-columns: 1fr; gap: 44px; }
    .colonne-laterale { position: static; }
    .article { max-width: none; }
}
