/* =====================================================================
   GUIDE ENGINE — TOKENS / CONTRAT DE VARIABLES
   ---------------------------------------------------------------------
   Tout est piloté par des custom properties posées sur la racine du
   site (.vl-site[style=...]) par configToVars(). Aucun composant n'a de
   couleur/typo/forme en dur : tout lit var(--xxx).

   Familles : .vl-site--dark / .vl-site--light
   Squelettes : .vl-site--A / .vl-site--B (ordre + variantes de layout)

   Contraintes dures respectées : aucun gradient, aucun glow coloré,
   aucun glassmorphism, pas d'emoji (SVG inline), accent UNIQUE en aplat.
   ===================================================================== */

/* ---- Valeurs par défaut (surchargées par configToVars) ------------- */
.vl-site {
  /* couleur */
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f3f1ec;
  --ink: #16130f;
  --ink-soft: #6b635c;
  --ink-faint: #9b938c;
  --line: #e4ded4;
  --line-strong: #cbc4b8;
  --accent: #c4402b;
  --accent-strong: #a8331f;   /* variante AA pour petit texte */
  --accent-ink: #ffffff;       /* texte sur aplat accent */
  --accent2: #1f5d57;
  --accent2-ink: #ffffff;
  --accent2-strong: #1a4f4a;   /* variante AA de --accent2 pour petit TEXTE (clampée par config_to_vars) */
  /* panneau « spotlight » des héros inversés : TOUJOURS sombre/clair contrastés,
     family-agnostique (config_to_vars les recalcule par palette). Défaut = clair. */
  --spot-bg: #16130f;
  --spot-ink: #ffffff;
  --ok: #16a34a;               /* « en ligne » : vert stable, indépendant du thème */
  --ok-ink: #ffffff;

  /* typo */
  --font-head: "Libre Franklin", system-ui, sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --case-head: none;
  --tracking-head: -0.01em;
  --tracking-eyebrow: 0.16em;
  --weight-head: 800;
  --weight-h: 700;
  --leading-body: 1.62;
  --measure: 66ch;

  /* type scale (fluide, capée) — MOBILE-FIRST : planchers de clamp calibrés pour
     360px (pas de débordement / d'orphelin sur un titre long, cf. UX_MOBILE §5).
     Hero plancher ≤ 2.4rem (titre long sans casse), corps ≥ 16px (1rem). */
  --fs-hero: clamp(2.3rem, 1.5rem + 3.6vw, 5.4rem);
  --fs-h1: clamp(1.95rem, 1.45rem + 2.4vw, 3.4rem);
  --fs-h2: clamp(1.45rem, 1.2rem + 1.1vw, 2.1rem);
  --fs-h3: clamp(1.15rem, 1.05rem + 0.4vw, 1.4rem);
  --fs-lead: clamp(1.08rem, 1rem + 0.5vw, 1.35rem);
  --fs-body: 1.0625rem;        /* 17px ≥ 16 (UX_MOBILE §5) */
  --fs-sm: 0.9375rem;          /* 15px : méta/secondaire encore confortable au doigt */
  --fs-xs: 0.8125rem;          /* 13px : plancher des légendes (≥ 12, viser 13-14) */

  /* forme */
  --radius: 6px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --border-w: 1px;
  --shadow: 0 1px 2px rgba(20,16,12,.05), 0 10px 28px rgba(20,16,12,.05);
  --shadow-hard: 4px 4px 0 var(--line-strong);

  /* rythme — MOBILE-FIRST : la gouttière est l'UNIQUE bord de page (cf. UX_MOBILE
     §2, défaut client n°1). Plancher ≥ 16px à 360px (jamais coller le texte au bord),
     plafond raisonnable mobile ≤ 24px, puis on enrichit vers le desktop. */
  --space: 1rem;
  --gutter: clamp(1rem, 0.5rem + 2.2vw, 2.4rem);
  --section-y: clamp(2.6rem, 1.8rem + 4vw, 5.5rem);
  --maxw: 1180px;
  /* hauteur de cible tactile (UX_MOBILE §1) : seuil 44px, idéal 48px pour les CTA */
  --tap: 44px;
  --tap-cta: 48px;

  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---- Reset doux scoped ---------------------------------------------- */
/* RESET UA n°1 (mobile-first) : le navigateur pose body{margin:8px} → un bord
   gauche fantôme de 8px QUI S'AJOUTE à la gouttière (défaut client n°1 : marge
   incohérente). Le bundle design est la SEULE feuille de style de la page → on
   annule la marge UA du document hôte pour que `--gutter` soit l'UNIQUE source du
   bord de page. Ciblé sur le body porteur de .vl-site (pas un reset global agressif). */
body:has(> .vl-site), body > .vl-site:first-child { margin: 0; }
html:has(> body > .vl-site) { margin: 0; padding: 0; }
.vl-site *, .vl-site *::before, .vl-site *::after { box-sizing: border-box; }
/* Garde-fou : aucun élément ne doit produire de scroll horizontal (mobile).
   `clip` n'introduit pas de scroll-container et n'affecte pas le sticky. */
.vl-site { overflow-x: clip; }
.vl-site h1, .vl-site h2, .vl-site h3, .vl-site h4, .vl-site p, .vl-site figure,
.vl-site ul, .vl-site ol, .vl-site blockquote { margin: 0; }
.vl-site ul, .vl-site ol { padding: 0; list-style: none; }
.vl-site img, .vl-site svg { display: block; max-width: 100%; }
.vl-site a { color: inherit; text-decoration: none; }
.vl-site button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }

/* ---- Titres -------------------------------------------------------- */
.vl-site h1, .vl-site h2, .vl-site h3, .vl-site .vl-display {
  font-family: var(--font-head);
  font-weight: var(--weight-h);
  letter-spacing: var(--tracking-head);
  text-transform: var(--case-head);
  line-height: 1.04;
  text-wrap: balance;
  color: var(--ink);
}
.vl-site .vl-display { font-weight: var(--weight-head); font-size: var(--fs-hero); }
.vl-site h1 { font-size: var(--fs-h1); }
.vl-site h2 { font-size: var(--fs-h2); }
.vl-site h3 { font-size: var(--fs-h3); line-height: 1.12; }

/* ---- Eyebrow / kicker ---------------------------------------------- */
.vl-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .5em;
}
.vl-eyebrow svg { width: 1em; height: 1em; flex: none; }
.vl-eyebrow--muted { color: var(--ink-soft); }

/* ---- Layout helpers ------------------------------------------------ */
.vl-wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); width: 100%; }
.vl-wrap--narrow { max-width: 820px; }
.vl-section { padding-block: var(--section-y); }
.vl-prose { max-width: var(--measure); }
.vl-prose p + p { margin-top: 1.15em; }

/* MOBILE-FIRST : la grille générique est en UNE colonne par défaut (le cas à 99%
   du trafic), enrichie en multi-colonnes à partir des breakpoints des composants
   eux-mêmes. On ne « répare » plus une grille desktop à max-width (cf. UX_MOBILE §0). */
.vl-grid { display: grid; gap: var(--gutter); grid-template-columns: 1fr; }
.vl-flex { display: flex; gap: .6rem; align-items: center; }
.vl-flex-wrap { display: flex; flex-wrap: wrap; gap: .5rem; }
.vl-stack { display: grid; gap: 1rem; }
.vl-divider { height: var(--border-w); background: var(--line); border: 0; width: 100%; }

/* ---- Section heading shared --------------------------------------- */
.vl-sec-head { display: grid; gap: .55rem; margin-bottom: clamp(1.4rem, 1rem + 1.5vw, 2.4rem); }
.vl-sec-head__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.vl-sec-head p { color: var(--ink-soft); max-width: 62ch; font-size: var(--fs-lead); line-height: 1.5; }

/* ---- Focus visible (a11y) ------------------------------------------ */
.vl-site a:focus-visible,
.vl-site button:focus-visible,
.vl-site [tabindex]:focus-visible,
.vl-site summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---- Sélection ----------------------------------------------------- */
.vl-site ::selection { background: var(--accent); color: var(--accent-ink); }

/* ---- Cibles tactiles (UX_MOBILE §1) -------------------------------- */
.vl-tap { min-height: var(--tap); display: inline-flex; align-items: center; }

/* =====================================================================
   GUIDE ENGINE — COMPOSANTS (tous pilotés par var(--xxx))
   Variantes de squelette via .vl-site--A / .vl-site--B et classes layout.
   ===================================================================== */

/* ---------- Boutons (UX_MOBILE §1+§3) ------------------------------- */
/* MOBILE-FIRST : tout bouton/CTA a une cible ≥ 44px (CTA principal ≥ 48px), un
   padding qui laisse respirer le libellé, et un état :active PERCEPTIBLE (le doigt
   n'a pas de :hover). Aucun glow : feedback = translateY plat + brightness. */
.vl-btn {
  --bh: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: var(--tap); padding: .7rem 1.2rem;
  font-family: var(--font-body); font-weight: 600; font-size: var(--fs-sm);
  letter-spacing: .01em; line-height: 1.2;
  border-radius: var(--radius);
  background: var(--accent); color: var(--accent-ink);
  border: var(--border-w) solid var(--accent);
  transition: transform .12s ease, filter .12s ease;
}
.vl-btn:hover { transform: translateY(-1px); filter: brightness(1.06); }
/* état pressé distinct du repos (perceptible au doigt) : enfoncement + assombri */
.vl-btn:active { transform: translateY(1px); filter: brightness(.94); }
.vl-btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.vl-btn--ghost:hover { border-color: var(--ink); filter: none; background: var(--surface-2); }
.vl-btn--ghost:active { background: var(--surface-2); filter: none; }
.vl-btn--ink { background: var(--ink); color: var(--bg); border-color: var(--ink); }
/* --sm : typo/padding resserrés MAIS cible ≥ 44px sur mobile (UX_MOBILE §1 : la
   hauteur ne descend jamais sous le seuil tactile, seul le rembourrage se réduit). */
.vl-btn--sm { min-height: var(--tap); padding: .5rem 1rem; }
/* CTA pleine largeur sur mobile : un CTA principal empilé occupe sa carte/colonne
   (UX_MOBILE §3). À partir de 600px ils peuvent reprendre leur largeur naturelle. */
.vl-btn--block { width: 100%; }
@media (min-width: 600px) { .vl-btn--block { width: auto; } }
.vl-site--A .vl-btn { text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }

/* ---------- Hatch placeholder (toutes les images) ------------------- */
.vl-hatch {
  position: relative; overflow: hidden;
  background-color: var(--surface-2);
  background-image: repeating-linear-gradient(
    45deg, transparent 0 9px, color-mix(in srgb, var(--ink) 9%, transparent) 9px 10px);
  border: var(--border-w) solid var(--line);
  border-radius: inherit;
  color: var(--ink-faint);
}
.vl-hatch__tag {
  position: absolute; left: 0; bottom: 0;
  font-family: var(--font-mono); font-size: var(--fs-xs);
  letter-spacing: .04em; text-transform: lowercase;
  padding: .3rem .5rem; color: var(--ink-soft);
  background: var(--surface); border-top: var(--border-w) solid var(--line);
  border-right: var(--border-w) solid var(--line);
}

/* ---------- Étoiles + note ----------------------------------------- */
.vl-stars { display: inline-flex; align-items: center; gap: 1px; color: var(--accent); }
.vl-stars svg { width: 1em; height: 1em; }
.vl-stars--muted { color: var(--ink-soft); }
.vl-rating { display: inline-flex; align-items: baseline; gap: .4rem; font-family: var(--font-mono); }
.vl-rating b { font-size: 1.05em; color: var(--ink); font-weight: 700; }
.vl-rating span { color: var(--ink-soft); font-size: var(--fs-xs); }

/* ---------- Anneau de score (affiliés) ----------------------------- */
.vl-ring { position: relative; width: 56px; height: 56px; flex: none; }
.vl-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.vl-ring__bg { stroke: var(--line); }
.vl-ring__fg { stroke: var(--accent); stroke-linecap: butt; }
.vl-ring__num {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 700; font-size: .95rem; color: var(--ink);
}

/* ---------- Chips / tags ------------------------------------------- */
.vl-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .02em;
  padding: .26rem .6rem; border-radius: var(--radius);
  background: var(--surface-2); color: var(--ink-soft);
  border: var(--border-w) solid var(--line);
}
.vl-chip--accent { background: color-mix(in srgb, var(--accent) 12%, var(--surface)); color: var(--accent-strong); border-color: color-mix(in srgb, var(--accent) 28%, var(--line)); }
.vl-chip--area { font-family: var(--font-mono); text-transform: none; }
.vl-site--A .vl-chip { text-transform: uppercase; border-radius: 2px; }

/* ---------- Busy meter --------------------------------------------- */
.vl-busy { display: inline-flex; align-items: center; gap: .45rem; font-size: var(--fs-xs); color: var(--ink-soft); }
.vl-busy__bars { display: inline-flex; gap: 3px; align-items: flex-end; }
.vl-busy__bars i { width: 5px; background: var(--line-strong); border-radius: 1px; display: block; }
.vl-busy__bars i:nth-child(1){ height: 7px; }
.vl-busy__bars i:nth-child(2){ height: 11px; }
.vl-busy__bars i:nth-child(3){ height: 15px; }
.vl-busy[data-lvl="1"] i:nth-child(-n+1),
.vl-busy[data-lvl="2"] i:nth-child(-n+2),
.vl-busy[data-lvl="3"] i:nth-child(-n+3) { background: var(--accent); }

/* ---------- Header (UX_MOBILE §4) ---------------------------------- */
/* MOBILE-FIRST : header compact ≤ 64px, logo ≤ 60% de la largeur, burger/sélecteur
   ≥ 44px, tout sur UNE ligne sans débordement. Sticky léger (< 12% du viewport). */
.vl-header { position: sticky; top: 0; z-index: 40; background: var(--bg); border-bottom: var(--border-w) solid var(--line); }
.vl-header__in { display: flex; flex-wrap: nowrap; align-items: center; gap: .8rem; min-height: 56px; min-width: 0; }
/* Le logo est le SEUL élément autorisé à se réduire ; sélecteur de ville,
   CTA et burger restent à taille fixe et insécables (cf. flex:none plus bas).
   Mobile : police plafonnée pour ne jamais pousser le burger hors écran. */
.vl-logo { display: inline-flex; align-items: center; gap: .12em; min-height: var(--tap); font-family: var(--font-head); font-weight: var(--weight-head); font-size: clamp(1.05rem, .92rem + .9vw, 1.32rem); letter-spacing: var(--tracking-head); text-transform: var(--case-head); color: var(--ink); min-width: 0; max-width: 60%; flex: 0 1 auto; line-height: 1.1; overflow: hidden; }
/* MOBILE : le logo NE DOIT PAS pousser la hauteur du header (≤ 64px, UX_MOBILE §4).
   On le force sur UNE ligne avec ellipsis — un nom de marque long (ex. « Les Rendez-vous
   de Juliette ») se tronque proprement au lieu de wrapper sur 2-3 lignes et faire enfler
   le header. Le mot accentué (<b>) reste insécable pour garder l'identité lisible. */
.vl-logo > span { min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* mot d'accent du logo = TEXTE → jeton AA (--accent-strong, clampé ≥4.5:1 par
   config_to_vars) et non --accent brut (vif, parfois 3.9:1 sur fond papier clair). */
.vl-logo b { color: var(--accent-strong); font-weight: inherit; white-space: nowrap; flex: none; }
.vl-logo__dot { width:.42em;height:.42em;background:var(--accent);display:inline-block; border-radius: var(--radius); transform: translateY(-.05em); }
.vl-site--A .vl-logo { letter-spacing: .04em; }
.vl-nav { display: flex; gap: 1.15rem; margin-left: auto; align-items: center; }
.vl-nav a { font-size: var(--fs-sm); font-weight: 600; color: var(--ink-soft); padding: .4rem 0; position: relative; }
.vl-nav a:hover { color: var(--ink); }
.vl-nav a[aria-current="page"] { color: var(--ink); }
.vl-nav a[aria-current="page"]::after { content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px; background: var(--accent); }
/* sélecteur de ville : cible ≥ 44px (UX_MOBILE §4), insécable, à droite */
.vl-city-select { display: inline-flex; align-items: center; gap: .4rem; flex: none; min-height: var(--tap); white-space: nowrap; font-size: var(--fs-sm); font-weight: 600; padding: .35rem .7rem; border: var(--border-w) solid var(--line-strong); border-radius: var(--radius); background: var(--surface); cursor: pointer; }
.vl-header__cta { margin-left: .2rem; flex: none; }
/* burger : cible carrée ≥ 44px (UX_MOBILE §4). Caché tant que la nav desktop tient. */
.vl-menu-btn { display: none; min-width: var(--tap); min-height: var(--tap); padding: 0; justify-content: center; }

/* ---- Sélecteur de ville = <details> natif (zéro JS) ---------------- */
.vl-citymenu { position: relative; flex: none; }
.vl-citymenu > summary { list-style: none; }
.vl-citymenu > summary::-webkit-details-marker { display: none; }
.vl-citymenu__cur { white-space: nowrap; }
.vl-menu__chev { transition: transform .15s ease; flex: none; color: var(--ink-soft); }
.vl-citymenu[open] > summary .vl-menu__chev { transform: rotate(-90deg); }
.vl-citymenu__panel,
.vl-menu__panel {
  position: absolute; top: calc(100% + .5rem); right: 0; z-index: 60;
  min-width: 14rem; max-width: min(20rem, calc(100vw - 1.5rem));
  background: var(--surface); border: var(--border-w) solid var(--line-strong);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: .5rem; max-height: min(70vh, 26rem); overflow-y: auto;
}
.vl-citymenu__list { list-style: none; margin: 0; padding: 0; }
.vl-citymenu__list a,
.vl-menu__cities a { display: flex; align-items: center; padding: .5rem .6rem; border-radius: var(--radius); font-size: var(--fs-sm); color: var(--ink); min-height: var(--tap); line-height: 1.4; }
.vl-citymenu__list a:hover,
.vl-menu__cities a:hover,
.vl-menu__nav a:hover { background: var(--surface-2); }
.vl-citymenu__all { display: inline-flex; align-items: center; gap: .4rem; margin: .35rem .2rem .15rem; padding: .55rem .4rem; min-height: var(--tap); font-size: var(--fs-sm); font-weight: 600; color: var(--accent-strong); border-top: var(--border-w) solid var(--line); width: calc(100% - .4rem); }

/* ---- Burger = <details> natif (zéro JS, déclencheur = summary) ----- */
.vl-menu { position: relative; }
.vl-menu > summary { list-style: none; }
.vl-menu > summary::-webkit-details-marker { display: none; }
.vl-menu__nav { display: flex; flex-direction: column; }
.vl-menu__nav a { padding: .55rem .6rem; border-radius: var(--radius); font-size: var(--fs-sm); font-weight: 600; color: var(--ink); min-height: var(--tap); display: flex; align-items: center; }
.vl-menu__nav a[aria-current="page"] { color: var(--accent-strong); }
.vl-menu__group { margin-top: .4rem; padding-top: .4rem; border-top: var(--border-w) solid var(--line); }
.vl-menu__head { display: block; padding: .15rem .6rem .3rem; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-faint); }
.vl-menu__cities { list-style: none; margin: 0; padding: 0; max-height: 16rem; overflow-y: auto; }
.vl-menu__cta { margin-top: .5rem; width: 100%; justify-content: center; }

/* MOBILE-FIRST : par défaut (mobile) on est en mode burger — la nav desktop et le
   CTA inline sont masqués, le burger est visible. On REVÈLE la nav desktop à partir
   de 861px (et on masque alors le burger). Inverse du pattern desktop-first. */
.vl-nav, .vl-header__cta { display: none; }
.vl-menu { margin-left: auto; }
.vl-menu-btn { display: inline-flex; flex: none; }
@media (min-width: 861px) {
  .vl-nav { display: flex; }
  .vl-header__cta { display: inline-flex; }
  .vl-menu { display: none; }
  .vl-header__in { gap: 1.4rem; min-height: 64px; }
  .vl-logo { max-width: none; }
}
/* Sélecteur de ville : le libellé courant ne doit pas, lui non plus, faire enfler le
   header sur un nom long (« Cherbourg-en-Cotentin ») — il se tronque en ellipsis sur
   UNE ligne. La cible reste ≥ 44px (min-height inchangé), on borne juste la LARGEUR. */
.vl-citymenu__cur { display: inline-block; max-width: 9.5rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; vertical-align: middle; }
/* Très petit écran (≤ 380px) : on resserre la gouttière interne du header et on
   plafonne plus durement logo + libellé ville pour tenir la ligne unique ≤ 64px à
   320/360px, SANS toucher aux cibles tactiles (min-height var(--tap) conservé). */
@media (max-width: 380px) {
  .vl-header__in { gap: .5rem; }
  .vl-logo { max-width: 50%; font-size: 1.02rem; }
  .vl-city-select { padding-inline: .55rem; gap: .3rem; }
  .vl-citymenu__cur { max-width: 6.5rem; }
  .vl-citymenu__panel, .vl-menu__panel { right: 0; max-width: calc(100vw - 1rem); }
}

/* ---------- Fil d'Ariane ------------------------------------------- */
.vl-crumb { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; font-size: var(--fs-sm); color: var(--ink-soft); padding-block: 1rem; }
.vl-crumb a:hover { color: var(--accent-strong); }
.vl-crumb svg { width: .8em; height: .8em; color: var(--ink-faint); }
.vl-crumb [aria-current] { color: var(--ink); font-weight: 600; }

/* ---------- Disclosure (transparence) ------------------------------ */
.vl-disclosure { display: flex; align-items: center; gap: .7rem; font-size: var(--fs-sm); color: var(--ink-soft); padding: .8rem 1rem; background: var(--surface-2); border: var(--border-w) solid var(--line); border-radius: var(--radius); }
.vl-disclosure svg { width: 1.2em; height: 1.2em; color: var(--ink-soft); flex: none; }
.vl-disclosure b { color: var(--ink); font-weight: 700; }

/* ---------- Liens DANS LE CONTENU (prose SEO / éditorial / FAQ) -----
   Retour client : les liens in-text (maillage interne `seo_intext` + affiliés
   `aff_intext`, rel="sponsored") héritaient du reset doux `.vl-site a {color:inherit;
   text-decoration:none}` → invisibles. On les rend distinctifs UNIQUEMENT dans les
   conteneurs de prose, sans toucher nav/footer/cartes/boutons/chips/auteur/ariane
   (stylés exprès ailleurs). Couleur = `--accent-strong` (variante AA pour petit
   texte, theme-aware : foncée sur fonds clairs, claire sur fonds sombres → AA 4.5:1
   garanti sur les 12 squelettes, y c. K sombre). Soulignement = invariant n°1 même
   si la couleur d'accent passe inaperçue. Aucun dégradé / glow. `:not(.vl-btn)` =
   garde-fou si un CTA atterrissait un jour dans la prose. */
.vl-prose a:not(.vl-btn),
.vl-editorial__body a:not(.vl-btn),
.vl-faq__a a:not(.vl-btn) {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
  text-decoration-color: color-mix(in srgb, var(--accent-strong) 55%, transparent);
  border-radius: 2px;
}
.vl-prose a:not(.vl-btn):hover,
.vl-editorial__body a:not(.vl-btn):hover,
.vl-faq__a a:not(.vl-btn):hover {
  color: var(--accent);
  text-decoration-thickness: 2px;
  text-decoration-color: currentColor;
}
.vl-prose a:not(.vl-btn):visited,
.vl-editorial__body a:not(.vl-btn):visited,
.vl-faq__a a:not(.vl-btn):visited { color: var(--accent-strong); }

/* ---------- Tableaux DANS LE CONTENU (markdown → <table class="vl-seo-table">)
   Les textes SEO/FAQ peuvent contenir de vrais tableaux convertis depuis le
   markdown (md_inline.blockify_escaped). Sans style ils débordent / sont moches.
   Règle SOBRE, tokens uniquement, theme-aware (clair ET sombre) : aucun dégradé,
   aucun glow, aucun glassmorphism. MOBILE-FIRST : un tableau plus large que le
   viewport scrolle DANS son `__wrap` (overflow-x), JAMAIS la page (invariant
   anti-overflow 360/320, gate _check_overflow). Le fond d'entête = `--ink` à 5 %
   sur `transparent` : `--ink` est toujours la couleur de PREMIER PLAN du thème
   (sombre sur clair / clair sur sombre) → tint léger mais lisible dans les deux
   familles. Préfixe CSS par site : vl- réécrit avec le reste du markup. */
.vl-seo-table__wrap { overflow-x: auto; max-width: 100%; margin: 1.2rem 0; -webkit-overflow-scrolling: touch; }
.vl-seo-table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); line-height: 1.5; }
.vl-seo-table th, .vl-seo-table td { padding: .55rem .7rem; border: var(--border-w) solid var(--line); text-align: left; vertical-align: top; }
.vl-seo-table thead th { background: color-mix(in srgb, var(--ink) 5%, transparent); color: var(--ink); font-weight: 600; }
/* zébrage très discret pour la lecture en diagonale, même teinte theme-aware */
.vl-seo-table tbody tr:nth-child(even) td { background: color-mix(in srgb, var(--ink) 2.5%, transparent); }
/* squelettes "A" (display capital) : entête en mono/maj pour rester cohérent */
.vl-site--A .vl-seo-table thead th { font-family: var(--font-mono); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); }

/* ---------- HERO ---------------------------------------------------- */
.vl-hero { position: relative; }
.vl-hero__eyebrow { margin-bottom: 1.1rem; }
.vl-hero__lead { font-family: var(--font-serif); font-size: var(--fs-lead); line-height: 1.5; color: var(--ink-soft); max-width: 54ch; }
.vl-hero__meta { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; align-items: center; margin-top: 1.6rem; }

/* hero A — sombre, split éditorial impact */
.vl-hero--impact { padding-top: clamp(2.4rem,1rem+5vw,5rem); padding-bottom: var(--section-y); }
.vl-hero--impact .vl-hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.5rem,1rem+3vw,3.2rem); align-items: end; }
.vl-hero--impact .vl-display { margin: .2rem 0 1.3rem; }
.vl-hero--impact .vl-hero__img { aspect-ratio: 4/5; border-radius: var(--radius-lg); }
.vl-hero--impact .vl-hero__statline { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: var(--border-w) solid var(--line); border-radius: var(--radius); margin-top: 2rem; overflow: hidden; }
.vl-hero--impact .vl-hero__statline div { padding: .8rem .7rem; border-right: var(--border-w) solid var(--line); min-width: 0; }
.vl-hero--impact .vl-hero__statline div:last-child { border-right: 0; }
.vl-hero--impact .vl-hero__statline b { display:block; font-family: var(--font-head); font-size: clamp(1.3rem, 1rem + 1.6vw, 1.7rem); line-height:1; color: var(--ink); }
.vl-hero--impact .vl-hero__statline span { font-size: var(--fs-xs); color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; }

/* hero B — clair, éditorial centré chapô + auteur */
.vl-hero--editorial { padding-top: clamp(2rem,1rem+3vw,3.6rem); padding-bottom: clamp(1.6rem,1rem+2vw,2.6rem); }
.vl-hero--editorial .vl-hero__head { max-width: 22ch; margin-bottom: 1.4rem; }
.vl-hero--editorial .vl-hero__lead { font-size: clamp(1.2rem,1.05rem+.7vw,1.55rem); color: var(--ink); max-width: 60ch; }
.vl-hero--editorial .vl-hero__img { aspect-ratio: 21/9; border-radius: var(--radius-lg); margin-top: clamp(1.6rem,1rem+2vw,2.6rem); }

@media (max-width: 980px) {
  .vl-hero--impact .vl-hero__grid { grid-template-columns: 1fr; }
  .vl-hero--impact .vl-hero__img { aspect-ratio: 16/10; }
}

/* ---------- Top 3 / Podium ----------------------------------------- */
.vl-top3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
.vl-podium { position: relative; display: grid; gap: .9rem; padding: 1.3rem; background: var(--surface); border: var(--border-w) solid var(--line); border-radius: var(--radius-lg); }
.vl-podium__rank { position: absolute; top: -.5rem; left: 1.2rem; font-family: var(--font-head); font-weight: var(--weight-head); font-size: 2.2rem; line-height: 1; color: var(--accent); background: var(--surface); padding: 0 .25rem; }
.vl-podium__img { aspect-ratio: 16/11; border-radius: var(--radius); margin-top: .8rem; }
.vl-podium h3 { font-size: 1.15rem; }
.vl-podium__meta { display: flex; flex-wrap: wrap; gap: .4rem .8rem; align-items: center; color: var(--ink-soft); font-size: var(--fs-sm); }
.vl-site--A .vl-podium { border-color: var(--line); box-shadow: var(--shadow-hard); }
.vl-site--A .vl-podium__rank { font-size: 2.8rem; top: -.7rem; }
@media (max-width: 860px){ .vl-top3 { grid-template-columns: 1fr; } }

/* ---------- Bandeau stats (aplat) ---------------------------------- */
.vl-stats { background: var(--ink); color: var(--bg); border-radius: var(--radius-lg); padding: clamp(1.6rem,1rem+2vw,2.6rem); display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.vl-stats--accent { background: var(--accent); color: var(--accent-ink); }
.vl-stats__item b { display: block; font-family: var(--font-head); font-weight: var(--weight-head); font-size: clamp(2rem,1.4rem+2vw,3rem); line-height: 1; }
.vl-stats__item span { font-size: var(--fs-sm); opacity: .82; }
.vl-stats--accent .vl-stats__item span { opacity: .92; }
@media (max-width: 760px){ .vl-stats { grid-template-columns: 1fr 1fr; } }

/* ---------- CLASSEMENT — variante RANGÉES (A) ---------------------- */
.vl-rank-rows { display: grid; gap: 0; border-top: var(--border-w) solid var(--line); }
.vl-rowplace { display: grid; grid-template-columns: auto 124px 1fr auto; gap: 1.3rem; align-items: center; padding: 1.4rem 0; border-bottom: var(--border-w) solid var(--line); }
.vl-rowplace__n { font-family: var(--font-head); font-weight: var(--weight-head); font-size: clamp(2rem,1.4rem+1.6vw,3.2rem); line-height: 1; color: var(--ink-faint); width: 2ch; }
.vl-rowplace:hover .vl-rowplace__n { color: var(--accent); }
.vl-rowplace__img { aspect-ratio: 5/4; border-radius: var(--radius); }
.vl-rowplace__body { display: grid; gap: .5rem; }
.vl-rowplace__title { display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap; }
.vl-rowplace__title h3 { font-size: 1.35rem; }
.vl-rowplace__desc { color: var(--ink-soft); font-size: var(--fs-sm); max-width: 60ch; }
.vl-rowplace__aside { display: grid; gap: .5rem; justify-items: end; text-align: right; min-width: 120px; }
@media (max-width: 860px){
  .vl-rowplace { grid-template-columns: auto 1fr; grid-template-areas: "n body" "img img" "aside aside"; gap: .8rem 1rem; }
  .vl-rowplace__n{grid-area:n;} .vl-rowplace__body{grid-area:body;} .vl-rowplace__img{grid-area:img; aspect-ratio:16/9;} .vl-rowplace__aside{grid-area:aside; justify-items:start; text-align:left;}
}

/* ---------- CLASSEMENT — variante CARTES (B) ----------------------- */
/* minmax(min(100%, NNNpx), 1fr) : la 1re piste ne force JAMAIS une largeur > viewport
   → 1 colonne propre à 320/360, multi-colonnes quand la place existe (UX_MOBILE §7,
   zéro scroll horizontal sans media query réparatrice). */
.vl-rank-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px),1fr)); gap: var(--gutter); }
.vl-cardplace { display: grid; grid-template-rows: auto 1fr; background: var(--surface); border: var(--border-w) solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .16s ease, border-color .16s ease; }
.vl-cardplace:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.vl-cardplace__img { aspect-ratio: 16/10; border-radius: 0; border-left: 0; border-right: 0; border-top: 0; }
.vl-cardplace__num { position: absolute; top: .7rem; left: .7rem; width: 30px; height: 30px; display: grid; place-items: center; background: var(--surface); color: var(--ink); border: var(--border-w) solid var(--line); border-radius: var(--radius); font-family: var(--font-mono); font-weight: 700; font-size: .9rem; }
.vl-cardplace__body { display: grid; gap: .7rem; padding: 1.1rem 1.15rem 1.25rem; align-content: start; }
.vl-cardplace__title { display: flex; justify-content: space-between; align-items: baseline; gap: .8rem; }
.vl-cardplace__title h3 { font-size: 1.18rem; }
.vl-cardplace__desc { color: var(--ink-soft); font-size: var(--fs-sm); }
.vl-cardplace__foot { display: flex; flex-wrap: wrap; gap: .5rem .9rem; align-items: center; justify-content: space-between; padding-top: .5rem; border-top: var(--border-w) solid var(--line); }

/* ---------- Affiliés (monétisation) -------------------------------- */
.vl-aff { display: grid; gap: 1rem; }
.vl-affrow { display: grid; grid-template-columns: auto auto 1fr auto; gap: 1.2rem; align-items: center; padding: 1.2rem 1.3rem; background: var(--surface); border: var(--border-w) solid var(--line); border-radius: var(--radius-lg); }
.vl-affrow--chosen { border-color: var(--accent); border-width: 2px; }
.vl-affrow__rank { font-family: var(--font-mono); font-weight: 700; color: var(--ink-soft); width: 2ch; }
.vl-afflogo { width: 52px; height: 52px; border-radius: var(--radius); display: grid; place-items: center; font-family: var(--font-mono); font-weight: 700; color: #fff; font-size: 1.05rem; border: var(--border-w) solid rgba(0,0,0,.12); }
.vl-affrow__main { display: grid; gap: .35rem; }
.vl-affrow__name { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.vl-affrow__name h3 { font-size: 1.15rem; }
.vl-affrow__tag { color: var(--ink-soft); font-size: var(--fs-sm); }
.vl-affrow__pc { display: flex; flex-wrap: wrap; gap: .35rem .9rem; margin-top: .2rem; }
.vl-pro, .vl-con { display: inline-flex; align-items: center; gap: .35rem; font-size: var(--fs-xs); color: var(--ink-soft); }
.vl-pro svg { color: var(--accent2); } .vl-con svg { color: var(--ink-faint); }
.vl-affrow__aside { display: grid; gap: .55rem; justify-items: end; }
.vl-badge-chosen { position: absolute; }
.vl-affrow { position: relative; }
.vl-affrow__flag { position: absolute; top: -.7rem; right: 1.2rem; background: var(--accent); color: var(--accent-ink); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: .2rem .55rem; border-radius: var(--radius); }
.vl-promo { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--accent-strong); border: 1px dashed color-mix(in srgb, var(--accent) 45%, var(--line)); padding: .2rem .45rem; border-radius: var(--radius); }
@media (max-width: 860px){
  .vl-affrow { grid-template-columns: auto auto 1fr; }
  .vl-affrow__aside { grid-column: 1/-1; justify-items: start; border-top: var(--border-w) solid var(--line); padding-top: .8rem; }
}

/* ---------- Témoignages -------------------------------------------- */
.vl-stories { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px),1fr)); gap: var(--gutter); }
.vl-story { display: grid; gap: .9rem; padding: 1.4rem; background: var(--surface); border: var(--border-w) solid var(--line); border-radius: var(--radius-lg); }
.vl-story blockquote { font-family: var(--font-serif); font-size: 1.12rem; line-height: 1.5; color: var(--ink); }
.vl-story__who { display: flex; align-items: center; gap: .7rem; }
.vl-story__av { width: 38px; height: 38px; border-radius: var(--radius-pill); flex: none; }
.vl-story__who b { font-size: var(--fs-sm); } .vl-story__who span { font-size: var(--fs-xs); color: var(--ink-soft); }
.vl-story__place { font-size: var(--fs-xs); font-family: var(--font-mono); color: var(--accent-strong); }
.vl-site--A .vl-story__av { border-radius: var(--radius); }

/* ---------- Méthodologie (E-E-A-T) --------------------------------- */
.vl-method { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px),1fr)); gap: var(--gutter); counter-reset: step; }
.vl-method__step { display: grid; gap: .6rem; padding-top: 1.2rem; border-top: 2px solid var(--ink); }
.vl-method__step::before { counter-increment: step; content: counter(step,decimal-leading-zero); font-family: var(--font-mono); font-weight: 700; color: var(--accent-strong); font-size: var(--fs-sm); }
.vl-method__step h3 { font-size: 1.05rem; }
.vl-method__step svg { width: 1em; height: 1em; }
.vl-method__step p { color: var(--ink-soft); font-size: var(--fs-sm); }

/* ---------- Bloc auteur (E-E-A-T) ---------------------------------- */
.vl-author { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start; padding: 1.4rem; background: var(--surface-2); border: var(--border-w) solid var(--line); border-radius: var(--radius-lg); }
.vl-author--inline { background: transparent; border: 0; padding: 0; align-items: center; }
.vl-author__photo { width: 76px; height: 76px; border-radius: var(--radius-pill); flex: none; }
.vl-site--A .vl-author__photo { border-radius: var(--radius); }
.vl-author__name { display: flex; align-items: center; flex-wrap: wrap; row-gap: .2rem; gap: .5rem; font-family: var(--font-head); font-weight: var(--weight-h); font-size: 1.15rem; }
.vl-author__role { font-size: var(--fs-xs); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; color: var(--accent-strong); margin-top: .25rem; }
.vl-author__bio { color: var(--ink-soft); font-size: var(--fs-sm); margin-top: .4rem; max-width: 60ch; }
.vl-author__stats { display: flex; flex-wrap: wrap; gap: .4rem .6rem; margin-top: .7rem; }
/* badge « Expert vérifié » = petit TEXTE → jeton AA (--accent-strong, clampé ≥4.5:1)
   et non --accent2 brut (qui est un jeton d'APLAT, sous AA comme texte sur fond clair). */
.vl-verify { display: inline-flex; align-items: center; gap: .3rem; white-space: nowrap; font-size: var(--fs-xs); color: var(--accent-strong); font-weight: 700; }
.vl-verify svg { width: 1em; height: 1em; }

/* ---------- Date MAJ ------------------------------------------------ */
.vl-updated { display: inline-flex; align-items: center; gap: .45rem; font-size: var(--fs-sm); color: var(--ink-soft); }
.vl-updated svg { width: 1em; height: 1em; }
.vl-updated time { color: var(--ink); font-weight: 600; }

/* ---------- Éditorial long-forme ----------------------------------- */
.vl-editorial { display: grid; gap: 1.4rem; }
.vl-editorial__body { font-family: var(--font-serif); font-size: var(--fs-lead); line-height: var(--leading-body); color: var(--ink); max-width: var(--measure); }
.vl-editorial__body p + p { margin-top: 1.2em; }
.vl-editorial__lead { font-family: var(--font-serif); font-size: clamp(1.25rem,1.1rem+.8vw,1.7rem); line-height: 1.42; color: var(--ink); max-width: 34ch; }
.vl-editorial__body p:first-of-type::first-letter {
  font-family: var(--font-head); font-weight: var(--weight-head);
  font-size: 3.2em; line-height: .78; float: left; padding: .04em .12em 0 0; color: var(--accent);
}
.vl-site--B .vl-editorial { grid-template-columns: minmax(0,30ch) minmax(0,1fr); gap: clamp(1.5rem,1rem+3vw,3.5rem); }
@media (max-width: 980px){ .vl-site--B .vl-editorial { grid-template-columns: 1fr; } }

/* ---------- Offre du mois ------------------------------------------ */
.vl-offer { display: grid; grid-template-columns: 1.3fr 1fr; gap: 0; border: 2px solid var(--ink); border-radius: var(--radius-lg); overflow: hidden; }
.vl-offer__body { padding: clamp(1.5rem,1rem+2vw,2.4rem); display: grid; gap: 1rem; align-content: center; }
.vl-offer__side { background: var(--ink); color: var(--bg); padding: clamp(1.5rem,1rem+2vw,2.4rem); display: grid; gap: .8rem; align-content: center; }
/* L'encart offre est un panneau SOMBRE (background:var(--ink)). Le badge promo y
   passait en color:var(--accent) → accent (souvent mi-ton) sur fond --ink = sous AA
   (ex. compare-bleu : bleu sur quasi-noir ≈ 2.8:1). On le rend en CHIP PLEIN accent
   (paire --accent/--accent-ink, contrastée par construction) → lisible sur le panneau
   sombre, quelle que soit la palette. */
.vl-offer__side .vl-promo { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); border-style: solid; }
.vl-offer h2 { font-size: var(--fs-h2); }
@media (max-width: 760px){ .vl-offer { grid-template-columns: 1fr; } }

/* ---------- Maillage interne --------------------------------------- */
.vl-mesh { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px),1fr)); gap: var(--gutter); }
.vl-mesh__col h3 { font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); font-family: var(--font-mono); font-weight: 600; margin-bottom: .8rem; }
.vl-mesh__col ul { display: grid; gap: .15rem; }
.vl-mesh__col a { display: inline-flex; align-items: center; gap: .4rem; min-height: var(--tap); padding: .55rem 0; font-size: var(--fs-sm); color: var(--ink); border-bottom: var(--border-w) solid transparent; }
.vl-mesh__col a:hover { color: var(--accent-strong); }
.vl-mesh__col a svg { width: .75em; height: .75em; color: var(--ink-faint); }
.vl-mesh__static { display: inline-flex; padding: .4rem 0; font-size: var(--fs-sm); color: var(--ink-soft); }

/* ---------- FAQ accordéon (a11y) ----------------------------------- */
.vl-faq { display: grid; gap: 0; border-top: var(--border-w) solid var(--line); max-width: 820px; }
.vl-faq details { border-bottom: var(--border-w) solid var(--line); }
.vl-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 0; font-family: var(--font-head); font-weight: var(--weight-h); font-size: 1.1rem; list-style: none; cursor: pointer; min-height: 44px; }
.vl-faq summary::-webkit-details-marker { display: none; }
.vl-faq summary .vl-faq__ico { flex: none; width: 1.1rem; height: 1.1rem; color: var(--accent); transition: transform .2s ease; }
.vl-faq details[open] summary .vl-faq__ico { transform: rotate(45deg); }
.vl-faq__a { padding: 0 0 1.3rem; color: var(--ink-soft); max-width: 68ch; line-height: 1.6; }

/* ---------- Footer -------------------------------------------------- */
.vl-footer { background: var(--surface-2); border-top: var(--border-w) solid var(--line); padding-block: clamp(2.5rem,2rem+2vw,4rem); margin-top: var(--section-y); }
/* base : 1 colonne (mobile). Le footer n'a que 2 blocs (marque + nav) → en desktop
   les familles posent leur propre grille (jamais 4 colonnes pour 2 blocs, qui laissait
   2 colonnes vides + une nav écrasée collée au bord droit). */
.vl-footer__grid { display: grid; grid-template-columns: 1fr; gap: var(--gutter); }
.vl-footer__brand { display: grid; gap: .9rem; align-content: start; }
.vl-footer__brand p { color: var(--ink-soft); font-size: var(--fs-sm); max-width: 40ch; }
.vl-footer h4 { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); font-family: var(--font-mono); font-weight: 600; margin-bottom: .9rem; }
.vl-footer ul { display: grid; gap: .5rem; }
.vl-footer a { font-size: var(--fs-sm); color: var(--ink); } .vl-footer a:hover { color: var(--accent-strong); }
.vl-footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; margin-top: clamp(2rem,1.5rem+2vw,3rem); padding-top: 1.4rem; border-top: var(--border-w) solid var(--line); font-size: var(--fs-xs); color: var(--ink-soft); }
/* mobile : marque puis nav, empilées (1 colonne propre) — base déjà 1fr, rien à forcer. */

/* ---------- Switcher de démo (hors site) --------------------------- */
.demo-bar { position: fixed; z-index: 100; left: 50%; bottom: 18px; transform: translateX(-50%); display: flex; align-items: center; gap: .4rem; background: #15120f; color: #f5f1ea; border: 1px solid #2c2722; border-radius: 999px; padding: .4rem .5rem; box-shadow: 0 8px 30px rgba(0,0,0,.28); font-family: ui-sans-serif, system-ui, sans-serif; }
.demo-bar button { font-size: 13px; font-weight: 600; color: #b8b0a6; padding: .5rem .95rem; border-radius: 999px; min-height: 40px; }
.demo-bar button[data-on="1"] { background: #f5f1ea; color: #15120f; }
.demo-bar .demo-bar__lbl { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #6f675e; padding-left: .6rem; white-space: nowrap; }
.demo-bar { max-width: 94vw; overflow-x: auto; scrollbar-width: thin; }
.demo-bar button { white-space: nowrap; flex: none; }

/* =====================================================================
   SQUELETTES 2 — heros & classements supplémentaires (C→G)
   ===================================================================== */

/* ---------- HERO C — POSTER (fun/pop) ------------------------------ */
.vl-hero--poster { padding-block: clamp(1.4rem,1rem+2vw,2.4rem) clamp(2rem,1.4rem+2.5vw,3.2rem); }
.vl-poster { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(1.2rem,.6rem+2vw,2rem); align-items: start; }
.vl-poster__block { background: var(--accent); color: var(--accent-ink); border: var(--border-w) solid var(--ink); border-radius: var(--radius-lg); padding: clamp(2rem,1.4rem+2.4vw,3.2rem); box-shadow: var(--shadow-hard); display: grid; align-content: start; gap: 1.1rem; }
.vl-poster__block .vl-eyebrow { color: var(--accent-ink); }
.vl-poster__block .vl-display { color: var(--accent-ink); }
.vl-poster__lead { font-size: var(--fs-lead); line-height: 1.45; color: var(--accent-ink); max-width: 42ch; }
.vl-poster__stats { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: .2rem; }
.vl-poster__stats b { display: block; font-family: var(--font-head); font-size: 1.9rem; line-height: 1; }
.vl-poster__stats span { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .08em; opacity: .9; }
.vl-poster__side { display: grid; grid-template-rows: 1fr auto; gap: 1rem; }
.vl-poster__img { border-radius: var(--radius-lg); border: var(--border-w) solid var(--ink); min-height: 200px; }
@media (min-width: 901px){ .vl-poster__side { align-self: stretch; } }
.vl-poster__by { display: grid; gap: .8rem; }
@media (max-width: 900px){ .vl-poster { grid-template-columns: 1fr; } .vl-poster__img { aspect-ratio: 16/10; min-height: 0; } }

/* ---------- HERO D — COMPACT (annuaire dense) ---------------------- */
.vl-hero--compact { padding-block: clamp(1.4rem,1rem+1.5vw,2.2rem) 0; }
.vl-compact { display: grid; grid-template-columns: 1.4fr auto; gap: 1.5rem 2rem; align-items: end; padding-bottom: 1.4rem; }
.vl-compact h1 { margin: .4rem 0 .7rem; }
.vl-compact__meta { display: grid; gap: .9rem; justify-items: end; }
.vl-compact__bar { display: flex; flex-wrap: wrap; gap: .8rem 1.2rem; align-items: center; justify-content: space-between; padding: .8rem 0; border-block: var(--border-w) solid var(--line); }
.vl-compact__search { display: inline-flex; align-items: center; gap: .6rem; flex: 1 1 320px; min-width: 240px; padding: .7rem 1rem; border: var(--border-w) solid var(--line-strong); border-radius: var(--radius); color: var(--ink-faint); font-size: var(--fs-sm); background: var(--surface); }
.vl-compact__search svg { width: 1.1em; height: 1.1em; color: var(--accent); }
@media (max-width: 860px){ .vl-compact { grid-template-columns: 1fr; } .vl-compact__meta { justify-items: start; } }

/* ---------- HERO E — QUIET (premium clair) ------------------------- */
.vl-hero--quiet { padding-block: clamp(2.4rem,1.5rem+4vw,5rem) 0; }
.vl-quiet__head { display: grid; justify-items: center; text-align: center; gap: 1.2rem; }
.vl-quiet__rule { width: 64px; height: 2px; background: var(--accent); border: 0; }
.vl-quiet__head .vl-hero__lead { max-width: 56ch; color: var(--ink-soft); }
.vl-quiet__meta { display: flex; flex-wrap: wrap; gap: 1.2rem 1.8rem; align-items: center; justify-content: center; margin-top: .6rem; }
.vl-quiet__img { aspect-ratio: 21/8; border-radius: var(--radius-lg); margin-top: clamp(2.4rem,1.5rem+3vw,4rem); }

/* ---------- HERO F — HOMEMADE (fait-maison) ------------------------ */
.vl-hero--homemade { padding-block: clamp(1.8rem,1rem+2vw,2.8rem) 0; }
.vl-hero--homemade h1 { margin: .5rem 0 .8rem; max-width: 18ch; }
.vl-hero--homemade .vl-hero__lead { color: var(--ink-soft); }
.vl-homemade__fig { margin: clamp(1.4rem,1rem+1.5vw,2rem) 0 1.2rem; }
.vl-homemade__img { aspect-ratio: 16/9; border-radius: var(--radius); }
.vl-homemade__cap { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--ink-soft); margin-top: .5rem; }
.vl-homemade__by { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; align-items: center; }

/* ---------- HERO G — MASTHEAD (sombre éditorial sérieux) ----------- */
.vl-hero--masthead { padding-block: clamp(1.4rem,1rem+1.5vw,2.2rem) 0; }
.vl-masthead__top { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-block: 2px solid var(--ink); font-family: var(--font-mono); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .12em; color: var(--ink-soft); }
.vl-masthead__top span:first-child { color: var(--ink); font-weight: 700; }
.vl-masthead__head { display: grid; justify-items: center; text-align: center; gap: 1rem; padding-block: clamp(1.8rem,1.2rem+2vw,3rem); }
.vl-masthead__head .vl-display { max-width: 18ch; }
.vl-masthead__head .vl-hero__lead { max-width: 60ch; color: var(--ink-soft); font-family: var(--font-serif); }
.vl-masthead__byline { display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; justify-content: space-between; align-items: center; padding: .8rem 0; border-block: var(--border-w) solid var(--line); font-size: var(--fs-sm); color: var(--ink-soft); }
.vl-masthead__byline b { color: var(--ink); }
.vl-masthead__img { aspect-ratio: 21/8; margin-top: 1.4rem; }

/* ---------- CLASSEMENT C — TILES (fun/pop) ------------------------- */
.vl-rank-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px),1fr)); gap: var(--gutter); }
.vl-tile { display: grid; gap: .8rem; padding: 1.2rem; background: var(--surface); border: 2px solid var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow-hard); }
.vl-tile__top { display: flex; align-items: center; justify-content: space-between; }
.vl-tile__n { font-family: var(--font-head); font-weight: var(--weight-head); font-size: 2.2rem; line-height: 1; color: var(--accent); }
.vl-tile__img { aspect-ratio: 16/10; border-radius: var(--radius); border: var(--border-w) solid var(--ink); }
.vl-tile__desc { color: var(--ink-soft); font-size: var(--fs-sm); }
.vl-tile__foot { display: flex; flex-wrap: wrap; gap: .6rem 1rem; align-items: center; justify-content: space-between; padding-top: .4rem; border-top: 2px solid var(--line); }

/* ---------- CLASSEMENT D — TABLE (annuaire dense) ------------------ */
.vl-rank-table-wrap { overflow-x: auto; border: var(--border-w) solid var(--line); border-radius: var(--radius); }
.vl-rank-table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); min-width: 640px; }
.vl-rank-table thead th { text-align: left; font-family: var(--font-mono); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); font-weight: 600; padding: .8rem 1rem; border-bottom: var(--border-w) solid var(--line-strong); background: var(--surface-2); position: sticky; top: 0; }
.vl-rank-table tbody td { padding: .85rem 1rem; border-bottom: var(--border-w) solid var(--line); vertical-align: middle; }
.vl-rank-table tbody tr:nth-child(even) { background: var(--surface-2); }
.vl-rank-table tbody tr:hover { background: color-mix(in srgb, var(--accent) 8%, var(--surface)); }
.vl-rank-table tbody tr:last-child td { border-bottom: 0; }
.vl-rank-table__n { font-family: var(--font-mono); font-weight: 700; color: var(--accent-strong); width: 2.5rem; }
.vl-rank-table__name b { font-family: var(--font-head); font-weight: var(--weight-h); font-size: 1.02rem; display: block; }
.vl-rank-table__name span { font-size: var(--fs-xs); color: var(--ink-faint); }
.vl-mono-cell { font-family: var(--font-mono); color: var(--ink-soft); }

/* ---------- CLASSEMENT E — FEATURE (premium clair) ---------------- */
.vl-rank-feature { display: grid; gap: clamp(2rem,1.5rem+2vw,3.4rem); }
.vl-feature { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.4rem,1rem+2vw,2.6rem); align-items: center; }
.vl-feature[data-flip="1"] .vl-feature__img { order: 2; }
.vl-feature__img { aspect-ratio: 4/3; border-radius: var(--radius-lg); }
.vl-feature__body { display: grid; gap: .8rem; align-content: center; }
.vl-feature__n { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--accent-strong); }
.vl-feature__body h3 { font-size: clamp(1.5rem,1.2rem+1vw,2.1rem); }
.vl-feature__meta { display: flex; flex-wrap: wrap; gap: .5rem .9rem; align-items: center; color: var(--ink-soft); font-size: var(--fs-sm); }
.vl-feature__desc { font-family: var(--font-serif); font-size: var(--fs-lead); line-height: 1.55; color: var(--ink); max-width: 52ch; }
.vl-feature__foot { display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; align-items: center; margin-top: .3rem; }
@media (max-width: 860px){ .vl-feature { grid-template-columns: 1fr; } .vl-feature[data-flip="1"] .vl-feature__img { order: 0; } }

/* ---------- CLASSEMENT F — LIST (fait-maison) --------------------- */
.vl-rank-list { display: grid; gap: 0; max-width: 760px; counter-reset: none; border-top: var(--border-w) solid var(--line); }
.vl-listitem { display: grid; grid-template-columns: auto 84px 1fr; gap: 1rem 1.1rem; align-items: start; padding: 1.3rem 0; border-bottom: var(--border-w) solid var(--line); }
.vl-listitem__n { font-family: var(--font-head); font-weight: var(--weight-head); font-size: 1.4rem; color: var(--ink-faint); }
.vl-listitem__img { width: 84px; aspect-ratio: 1/1; border-radius: var(--radius); }
.vl-listitem__body { display: grid; gap: .45rem; }
.vl-listitem__title { display: flex; align-items: baseline; gap: .8rem; justify-content: space-between; flex-wrap: wrap; }
.vl-listitem__title h3 { font-size: 1.2rem; }
.vl-listitem__meta { font-size: var(--fs-sm); color: var(--ink-soft); }
.vl-listitem__desc { font-size: var(--fs-sm); color: var(--ink); }
.vl-listitem__vibe { font-size: var(--fs-xs); color: var(--ink-soft); }
@media (max-width: 620px){ .vl-listitem { grid-template-columns: auto 1fr; } .vl-listitem__img { grid-column: 2; width: 100%; aspect-ratio: 16/9; } }

/* =====================================================================
   SQUELETTE H — LE MAGAZINE (clair éditorial print « mensuel de ville »)
   ===================================================================== */
/* ---------- HERO H — MAGAZINE (bandeau de une) --------------------- */
.vl-hero--magazine { padding-block: clamp(1.4rem,1rem+1.5vw,2.4rem) var(--section-y); }
.vl-mag__rail { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: .7rem 0; border-block: 2px solid var(--line-strong); }
.vl-mag__kicker { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.vl-mag__rail .vl-mag__kicker:first-child { color: var(--ink); font-weight: 500; }
/* MOBILE-FIRST : le bloc de tête occupe TOUTE la gouttière. La mesure éditoriale du
   titre est portée par le h1 lui-même (max-width en ch, résolu sur SA grande fonte),
   pas par un cap `ch` sur ce conteneur (qui se résoudrait sur la fonte de CORPS de 17px
   → ~165px, d'où le titre empilé mot par mot en desktop, régression 2026-06-07). */
.vl-mag__head { margin: clamp(1.6rem,1rem+2vw,2.6rem) 0 0; }
.vl-mag__h1 { max-width: 15ch; font-size: clamp(2.1rem,1.4rem+3.2vw,3.9rem); line-height: 1.02; margin: .8rem 0 1rem; }
.vl-mag__lead { max-width: 60ch; font-family: var(--font-serif); font-size: clamp(1.15rem,1.05rem+.6vw,1.45rem); line-height: 1.5; color: var(--ink); }
.vl-mag__byline { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; align-items: center; margin-top: 1.4rem; padding-top: 1rem; border-top: var(--border-w) solid var(--line); }
.vl-mag__figure { margin: clamp(1.8rem,1.2rem+2vw,3rem) 0 0; }
.vl-mag__img { aspect-ratio: 4/3; border-radius: var(--radius); border: var(--border-w) solid var(--line); }
.vl-mag__cap { font-family: var(--font-serif); font-style: italic; font-size: var(--fs-sm); color: var(--ink-soft); padding-top: .7rem; }
/* Desktop : la photo de une retrouve son bandeau panoramique (21/9) ; sur mobile elle
   reste en 4/3 (base ci-dessus) pour ne pas écraser le sujet sur écran étroit. */
@media (min-width: 861px){ .vl-mag__img { aspect-ratio: 21/9; } }

/* ---------- CLASSEMENT H — EDITORIAL (carnet d'adresses numéroté) -- */
.vl-rank-mag { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: var(--border-w) solid var(--line); }
.vl-magplace { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1rem,.6rem+2vw,2rem); align-items: start; padding: clamp(1.3rem,1rem+1.4vw,1.8rem) 0; border-bottom: var(--border-w) solid var(--line); }
.vl-magplace__n { font-family: var(--font-head); font-weight: var(--weight-head); font-size: clamp(1.9rem,1.3rem+2.4vw,2.9rem); line-height: 1; color: var(--line-strong); font-variant-numeric: lining-nums; min-width: 1.6ch; }
.vl-magplace:hover .vl-magplace__n { color: var(--accent-strong); }
.vl-magplace__body { min-width: 0; display: grid; gap: .55rem; }
.vl-magplace__head { display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap; }
.vl-magplace__name { font-family: var(--font-head); font-weight: var(--weight-h); font-size: clamp(1.3rem,1.1rem+1vw,1.7rem); line-height: 1.1; }
/* note accolée au nom (UX_MOBILE §6) — sur mobile l'aside (grand score) est masqué
   pour ne pas dupliquer ; il revient en colonne droite dès qu'il y a la place. */
.vl-magplace__note { font-family: var(--font-head); font-weight: var(--weight-head); font-size: 1.15rem; color: var(--accent-strong); white-space: nowrap; }
.vl-magplace__note span { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--ink-soft); font-weight: 500; }
@media (min-width: 721px) { .vl-magplace__note { display: none; } }
.vl-magplace__tags { display: flex; flex-wrap: wrap; gap: .3rem .5rem; font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.vl-magplace__sep { color: var(--line-strong); }
.vl-magplace__verdict { font-family: var(--font-serif); font-style: italic; font-size: 1.02rem; color: var(--ink); max-width: 56ch; }
.vl-magplace__aside { display: grid; gap: .8rem; justify-items: end; text-align: right; min-width: 124px; }
.vl-magscore { display: inline-flex; flex-direction: column; align-items: flex-end; line-height: 1; }
.vl-magscore b { font-family: var(--font-head); font-weight: var(--weight-head); font-size: clamp(1.7rem,1.3rem+1.4vw,2.4rem); color: var(--ink); }
.vl-magscore span { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .03em; text-transform: uppercase; color: var(--ink-soft); margin-top: .25rem; }
@media (max-width: 720px){
  .vl-magplace { grid-template-columns: auto 1fr; }
  .vl-magplace__aside { grid-column: 2; justify-items: start; text-align: left; padding-top: .4rem; border-top: var(--border-w) solid var(--line); }
  .vl-magscore { display: none; }   /* note déjà accolée au nom (vl-magplace__note) */
}

/* =====================================================================
   SQUELETTE I — REPÈRE (sombre fonctionnel « app utilitaire », mobile-first)
   Tout en aplat : aucune ombre teintée, aucun glow, aucun glassmorphism.
   --shadow-hard = liseré sombre net (offset noir) ; l'accent reste réservé
   à l'action (CTA, pastille de note : star seule en accent).
   ===================================================================== */
/* ---------- HERO I — APPBAR (bandeau d'app compact + chips de filtres) -- */
.vl-hero--appbar { padding-block: clamp(1.2rem,1rem+1vw,2rem) clamp(1.4rem,1rem+1.5vw,2.2rem); border-bottom: var(--border-w) solid var(--line); }
.vl-hero--appbar .vl-hero__eyebrow { margin-bottom: .7rem; }
.vl-app__h1 { font-family: var(--font-head); font-weight: var(--weight-head); font-size: clamp(1.9rem,1.4rem+2.4vw,2.9rem); line-height: 1.08; letter-spacing: var(--tracking-head); margin: 0 0 .55rem; max-width: 18ch; }
.vl-app__sub { color: var(--ink-soft); font-size: clamp(1rem,.96rem+.2vw,1.15rem); max-width: 48ch; margin: 0 0 1rem; }
.vl-app__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.4rem; }
.vl-app__meta .vl-hero__cta { margin-top: 0; }
/* rangée de chips de filtres (scroll horizontal au pouce, jamais wrap) */
.vl-appchips { display: flex; gap: .5rem; overflow-x: auto; margin: 1.1rem calc(var(--gutter) * -1) 0; padding: 0 var(--gutter) .3rem; scrollbar-width: none; }
.vl-appchips::-webkit-scrollbar { display: none; }
.vl-appchip { flex: none; display: inline-flex; align-items: center; min-height: 40px; padding: 0 .9rem; white-space: nowrap;
  background: var(--surface); color: var(--ink-soft); border: var(--border-w) solid var(--line); border-radius: var(--radius-pill);
  font-family: var(--font-mono); font-size: var(--fs-sm); }
.vl-appchip--on { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); font-weight: 700; }

/* ---------- CLASSEMENT I — APPROWS (cartes-rangées denses scannables) ---- */
.vl-rank-app { display: flex; flex-direction: column; gap: .7rem; }
.vl-arow { background: var(--surface); border: var(--border-w) solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-hard); }
.vl-arow--top { border-color: var(--line-strong); }
.vl-arow__main { display: grid; grid-template-columns: auto 56px 1fr auto; align-items: center; gap: .85rem; padding: var(--row-pad, .9rem); }
.vl-arow__rank { font-family: var(--font-mono); font-weight: 700; font-size: .95rem; color: var(--ink-faint); min-width: 1.8ch; text-align: center; }
.vl-arow--top .vl-arow__rank { color: var(--accent); }
.vl-arow__thumb { width: 56px; height: 56px; border-radius: var(--radius); aspect-ratio: 1/1; }
.vl-arow__body { min-width: 0; }
/* titre + note accolée (UX_MOBILE §6) : la pastille NOTE est poussée à droite du nom */
.vl-arow__title { display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.vl-arow__title h3 { font-family: var(--font-head); font-weight: var(--weight-h); font-size: 1.05rem; line-height: 1.15; letter-spacing: var(--tracking-head); min-width: 0; }
.vl-arow__title .vl-notepill { flex: none; }
.vl-arow__sub { display: flex; align-items: center; gap: .35rem; margin-top: .15rem; font-size: var(--fs-sm); color: var(--ink-faint); }
.vl-arow__sub svg { color: var(--ink-faint); flex: none; }
.vl-arow__dot { color: var(--line-strong); }
.vl-arow__line { margin-top: .35rem; font-size: var(--fs-sm); color: var(--ink-soft); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vl-arow__aside { display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; }
/* pastille NOTE : mono sur aplat surface-2, liseré net ; SEULE la star prend l'accent */
.vl-notepill { display: inline-flex; align-items: center; gap: .3rem; font-family: var(--font-mono); font-weight: 700; font-size: .9rem;
  padding: .25rem .5rem; border-radius: var(--radius); background: var(--surface-2); color: var(--ink); border: var(--border-w) solid var(--line-strong); }
.vl-notepill svg { width: .8em; height: .8em; color: var(--accent); }
.vl-arow__detail { padding: 0 var(--row-pad, .9rem) var(--row-pad, .9rem); border-top: var(--border-w) solid var(--line); display: grid; gap: .6rem; padding-top: .8rem; }
@media (max-width: 620px) {
  .vl-arow__main { grid-template-columns: auto 1fr auto; }
  .vl-arow__thumb { display: none; }
  .vl-arow__line { white-space: normal; }
}

/* =====================================================================
   SQUELETTE J — LE CARNET (clair « fait-maison crédible », carnet d'habitant·e)
   Le plus épuré : filets fins, ombres NEUTRES minimales, corps en serif (lecture
   carnet). Touche manuscrite = SVG (soulignement feutre + astérisque), jamais
   un emoji, jamais une police « comic ». Aucun dégradé / glow / glass.
   ===================================================================== */
/* ---------- HERO J — CARNET (intro personnelle + soulignement feutre) ---- */
.vl-hero--carnet { padding-block: clamp(1.6rem,1.1rem+1.6vw,2.6rem) clamp(1.4rem,1rem+1.5vw,2.2rem); }
.vl-carnet__ast { color: var(--accent-strong); font-weight: 700; }
.vl-carnet__h1 { font-size: clamp(2rem,1.4rem+2.8vw,3rem); line-height: 1.12; margin: .2rem 0 .9rem; max-width: 17ch; }
.vl-carnet__scribwrap { position: relative; display: inline; }
.vl-carnet__scribble { position: absolute; left: -1%; bottom: -.34em; width: 102%; height: .42em; color: var(--accent); overflow: visible; }
.vl-carnet__lead { font-family: var(--font-serif); font-size: 1.18rem; color: var(--ink-soft); max-width: 60ch; margin-bottom: 1.3rem; }
.vl-carnet__by { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.4rem; }
.vl-carnet__fig { margin: clamp(1.4rem,1rem+1.5vw,2rem) 0 0; }
.vl-carnet__img { aspect-ratio: 4/3; border-radius: var(--radius-lg); border: var(--border-w) solid var(--line-strong); }
.vl-carnet__cap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-family: var(--font-serif); font-style: italic; font-size: var(--fs-sm); color: var(--ink-faint); padding-top: .55rem; }
.vl-carnet__credit { font-style: normal; font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: -.02em; }

/* ---------- CLASSEMENT J — ANNOTATED (liste annotée, filets fins) -------- */
.vl-rank-carnet { display: flex; flex-direction: column; gap: 0; margin: 0; padding: 0; list-style: none; }
.vl-cplace { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; padding: clamp(1.2rem,1rem+1vw,1.5rem) 0; border-top: var(--border-w) solid var(--line); }
.vl-cplace:first-child { border-top: 0; }
.vl-cplace__num { font-family: var(--font-head); font-weight: var(--weight-head); font-size: 1.5rem; line-height: 1; color: var(--ink-faint); min-width: 1.4ch; text-align: right; }
.vl-cplace--top .vl-cplace__num { color: var(--accent); }
.vl-cplace__body { min-width: 0; display: grid; gap: .5rem; }
.vl-cplace__top { display: flex; flex-wrap: wrap; align-items: baseline; gap: .45rem .8rem; }
.vl-cplace__top h3 { font-size: clamp(1.2rem,1.05rem+.7vw,1.4rem); }
.vl-cplace__type { font-family: var(--font-head); font-size: var(--fs-xs); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--accent-strong); background: var(--surface); border: var(--border-w) solid var(--line); padding: .18em .6em; border-radius: var(--radius-pill); }
.vl-cplace__area { font-family: var(--font-serif); font-style: italic; color: var(--ink-faint); font-size: var(--fs-sm); }
.vl-cplace__rate { display: inline-flex; align-items: center; gap: .5rem; }
.vl-cplace__rate .vl-stars { color: var(--accent); }
.vl-cplace__val { font-family: var(--font-head); font-weight: 600; font-size: var(--fs-sm); color: var(--ink-soft); }
.vl-cplace__verdict { font-family: var(--font-serif); font-style: italic; font-size: 1.02rem; color: var(--ink-soft); border-left: 2px solid var(--line-strong); padding-left: .85rem; max-width: 58ch; }
.vl-cplace__vibe { margin-top: .1rem; }
.vl-cplace__facts { display: flex; flex-wrap: wrap; gap: .4rem 1rem; }
@media (max-width: 540px) { .vl-cplace { gap: .8rem; } }

/* =====================================================================
   SQUELETTE K — LE CLUB DE NUIT (sombre sensuel « after-dark », immersif)
   Noir profond + UN accent vif en aplat. Ombres DURES décalées (blur 0),
   jamais de glow. Le scrim hero est un APLAT opaque (jamais un dégradé).
   ===================================================================== */
/* ---------- HERO K — NIGHTCLUB (immersif : média + scrim + filet) ------- */
.vl-hero--nightclub { position: relative; overflow: hidden; border-bottom: var(--border-w) solid var(--line); }
.vl-night__media { position: absolute; inset: 0; z-index: 0; }
.vl-night__img { width: 100%; height: 100%; aspect-ratio: auto; border: 0; border-radius: 0; }
.vl-night__media .vl-hatch { height: 100%; }
.vl-night__scrim { position: absolute; inset: 0; z-index: 1; background: rgba(6,4,5,.66); }  /* aplat opaque, jamais un dégradé */
.vl-night__edge { position: absolute; left: 0; top: 0; bottom: 0; width: 6px; z-index: 2; background: var(--accent); }
.vl-night__in { position: relative; z-index: 3; padding-block: clamp(3.4rem,2rem+6vw,8rem); }
.vl-night__grid { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: clamp(1.6rem,1rem+3vw,3rem); }
.vl-night__h1 { font-size: clamp(2.8rem,1.8rem+6.6vw,8rem); line-height: 1.02; max-width: 14ch; margin: clamp(1rem,.6rem+1.4vw,1.8rem) 0 0; }
.vl-night__lead { margin-top: clamp(1.4rem,1rem+1.6vw,2.4rem); max-width: 52ch; }
.vl-night__sign { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.6rem; margin-top: clamp(1.4rem,1rem+1.4vw,2.2rem); }
.vl-night__facts { display: flex; flex-direction: column; gap: 1.1rem; border-left: var(--border-w) solid var(--line-strong); padding-left: 1.6rem; }
.vl-night__factn { font-family: var(--font-head); font-weight: var(--weight-head); text-transform: var(--case-head); font-size: clamp(2rem,1.4rem+2vw,3.2rem); line-height: .9; color: var(--ink); }
.vl-night__factl { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); margin-top: .35rem; }
.vl-hero--nightland { background: var(--surface); }
@media (max-width: 980px) {
  .vl-night__grid { grid-template-columns: 1fr; }
  .vl-night__facts { flex-direction: row; flex-wrap: wrap; border-left: 0; border-top: var(--border-w) solid var(--line-strong); padding-left: 0; padding-top: 1.5rem; gap: 1.8rem; margin-top: 1.6rem; }
}

/* ---------- CLASSEMENT K — NIGHTROWS (rangées after-dark) --------------- */
.vl-rank-night { display: flex; flex-direction: column; }
.vl-nrow { display: grid; grid-template-columns: 56px 92px minmax(0,1fr) auto; gap: clamp(1rem,.6rem+1.6vw,2rem); align-items: start; padding: clamp(1.6rem,1.1rem+1.6vw,2.4rem) 0; border-top: var(--border-w) solid var(--line); position: relative; }
.vl-nrow:last-child { border-bottom: var(--border-w) solid var(--line); }
.vl-nrow__rank { font-family: var(--font-head); font-weight: var(--weight-head); font-size: clamp(2.5rem,1.8rem+2.4vw,3.9rem); line-height: .8; color: var(--ink-faint); }
/* vignette after-dark : slot vertical compact, aplat bordé, aspect-ratio fixe (anti-CLS) */
.vl-nrow__thumb { width: 92px; aspect-ratio: 3 / 4; border: var(--border-w) solid var(--line-strong); border-radius: var(--radius); overflow: hidden; }
.vl-nrow--top .vl-nrow__thumb { border-color: var(--accent); }
.vl-nrow__thumb--mono { display: flex; align-items: center; justify-content: center; background: var(--surface-2); font-family: var(--font-head); font-weight: var(--weight-head); font-size: 2.4rem; color: var(--ink-faint); }
.vl-nrow--top .vl-nrow__thumb--mono { color: var(--accent); }
.vl-nrow--top .vl-nrow__rank { color: var(--accent); }
.vl-nrow--top::after { content: ""; display: var(--filet-n1, block); position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: var(--accent); }
.vl-nrow__head { display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap; }
.vl-nrow__name { font-family: var(--font-head); font-weight: var(--weight-h); text-transform: var(--case-head); letter-spacing: .02em; font-size: clamp(1.4rem,1.1rem+1.4vw,2rem); line-height: 1.04; }
/* note accolée au nom (UX_MOBILE §6) : visible sur mobile (où l'aside passe sous la
   rangée), masquée sur desktop où le grand badge NOTE de l'aside prend le relais. */
.vl-nrow__note { font-family: var(--font-head); font-weight: var(--weight-head); font-size: 1.3rem; color: var(--accent); line-height: 1; white-space: nowrap; }
.vl-nrow__note span { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--ink-soft); }
@media (min-width: 981px) { .vl-nrow__note { display: none; } }
.vl-nrow--top .vl-nrow__name { text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 7px; text-decoration-thickness: 2px; }
.vl-nrow__sub { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--accent2-strong); margin-top: .7rem; }
.vl-nrow__vibe { margin-top: .9rem; }
.vl-nrow__detail { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .6rem 1.8rem; margin-top: 1.1rem; max-width: 560px; }
.vl-nrow__kv { display: flex; flex-direction: column; gap: .2rem; }
.vl-nrow__kv dt { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.vl-nrow__kv dd { font-size: var(--fs-sm); color: var(--ink); }
.vl-nrow__kv dd a { color: var(--accent-strong); }
.vl-nrow__kv dd a:hover { color: var(--accent); }
.vl-nrow__aside { display: flex; flex-direction: column; align-items: flex-end; gap: .8rem; min-width: 140px; }
.vl-nnote { display: inline-flex; align-items: baseline; gap: .15rem; background: var(--accent); color: var(--accent-ink); padding: .5rem .9rem; border-radius: var(--radius); }
.vl-nnote b { font-family: var(--font-head); font-weight: var(--weight-head); font-size: 1.7rem; line-height: .85; }
.vl-nnote span { font-family: var(--font-mono); font-size: var(--fs-xs); }
.vl-nnote--soft { background: var(--surface-2); color: var(--ink); border: var(--border-w) solid var(--line-strong); }
.vl-nrow__aside .vl-stars { color: var(--accent); }
@media (max-width: 980px) {
  .vl-nrow { grid-template-columns: 44px 64px 1fr; gap: 1rem; }
  .vl-nrow__thumb { width: 64px; }
  .vl-nrow__thumb--mono { font-size: 1.7rem; }
  .vl-nrow__aside { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: flex-start; gap: 1.1rem; flex-wrap: wrap; margin-top: .4rem; }
  .vl-nrow__detail { grid-template-columns: 1fr; }
  /* UX_MOBILE §6 : sur mobile la note inline (accolée au nom) est la SEULE note.
     Le grand badge NOTE de l'aside ferait doublon (défaut client « note en bas pas
     naturelle ») → on le masque ; étoiles + jauge d'affluence de l'aside restent. */
  .vl-nnote { display: none; }
}

/* =====================================================================
   SQUELETTE L — LE COMPARATEUR (clair « data-first dense », Wirecutter)
   Aplats only, ombres NEUTRES discrètes, mono tabulaire pour les chiffres.
   Aucun dégradé / glow / glassmorphism. Accent = aplat unique.
   ===================================================================== */
/* ---------- HERO L — COMPARE (utilitaire + barre de repères) ----------- */
.vl-hero--compare { padding-block: clamp(1.4rem,1rem+1.5vw,2.2rem) clamp(1.6rem,1.2rem+2vw,2.6rem); }
.vl-cmp__h1 { font-size: clamp(1.9rem,1.4rem+2.6vw,3.1rem); line-height: 1.08; max-width: 19ch; margin: .8rem 0 0; }
.vl-cmp__lead { margin-top: .9rem; max-width: 60ch; }
.vl-cmp__byline { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem 1.2rem; margin-top: 1.1rem; }
.vl-cmp-reperes { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--border-w); margin-top: 1.6rem; background: var(--line); border: var(--border-w) solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.vl-cmp-rep { background: var(--surface); padding: 1rem 1.1rem; display: flex; flex-direction: column; gap: .25rem; }
.vl-cmp-rep__k { font-size: var(--fs-sm); color: var(--ink-soft); }
.vl-cmp-rep__v { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 1.35rem; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
@media (max-width: 980px) { .vl-cmp-reperes { grid-template-columns: 1fr 1fr; } }

/* ---------- CLASSEMENT L — RANKTABLE (tableau dense scannable) ---------- */
.vl-ranktable { border: var(--border-w) solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.vl-rt-head, .vl-rt-row { display: grid; grid-template-columns: 46px 64px minmax(0,1fr) 168px 124px 120px; align-items: center; gap: 14px; padding: var(--row-pad,14px) 16px; }
.vl-rt-head { background: var(--surface-2); border-bottom: var(--border-w) solid var(--line); }
.vl-rt-head span { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.vl-rt-row { border-bottom: var(--border-w) solid var(--line); position: relative; }
.vl-rt-row:last-child { border-bottom: 0; }
.vl-rt-row:hover { background: var(--surface-2); }
.vl-rt-row--top { box-shadow: inset 3px 0 0 var(--accent); }
.vl-rt-rank { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 1.35rem; font-weight: 700; color: var(--ink); }
.vl-rt-row--top .vl-rt-rank { color: var(--accent); }
.vl-rt-thumb { width: 56px; height: 56px; border-radius: var(--radius); overflow: hidden; border: var(--border-w) solid var(--line); aspect-ratio: 1/1; }
.vl-rt-thumb--mono { display: grid; place-items: center; background: var(--surface-2); color: var(--ink-soft); font-family: var(--font-head); font-weight: var(--weight-head); font-size: 1.35rem; }
.vl-rt-name { min-width: 0; }
.vl-rt-nm { font-family: var(--font-head); font-weight: var(--weight-h); font-size: 1.03rem; letter-spacing: -.01em; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.vl-rt-type { font-family: var(--font-body); font-weight: 700; font-size: var(--fs-xs); color: var(--ink-soft); background: var(--surface-2); border: var(--border-w) solid var(--line); padding: .12em .5em; border-radius: var(--badge-radius,999px); text-transform: none; letter-spacing: 0; }
.vl-rt-meta { font-size: .8rem; color: var(--ink-soft); margin-top: .35rem; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.vl-rt-mi { display: inline-flex; align-items: center; gap: .35rem; }
.vl-rt-mi svg { width: 1em; height: 1em; opacity: .7; }
.vl-rt-tel { color: var(--accent-strong); font-family: var(--font-mono); min-height: var(--tap); }
.vl-rt-tel:hover { color: var(--accent); }
@media (min-width: 600px) { .vl-rt-tel { min-height: 0; } }
.vl-rt-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--line-strong); }
.vl-rt-vibe { margin-top: .5rem; gap: .35rem; }
.vl-chip--ghost { background: transparent; color: var(--ink-soft); border-color: var(--line-strong); }
.vl-rt-note { display: flex; flex-direction: column; gap: .3rem; }
.vl-rt-score { display: inline-flex; align-items: center; gap: .5rem; }
.vl-pastille { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; padding: .25rem .5rem; background: var(--accent); color: var(--accent-ink); border-radius: var(--radius); font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-weight: 700; font-size: .95rem; }
.vl-rt-note .vl-stars { color: var(--accent); }
.vl-rt-gnote { font-size: var(--fs-xs); color: var(--ink-soft); }
.vl-rt-busy { display: flex; flex-direction: column; gap: .3rem; }
.vl-rt-action { display: flex; justify-content: flex-end; min-width: 0; }
.vl-rt-action .vl-revacc { margin-top: 0; border-top: 0; }
@media (max-width: 980px) {
  /* MOBILE : rang | vignette | nom sur LA MÊME rangée (row 1). Avant, rank+thumb
     étaient empilés dans la SEULE colonne 1 (44px) et le nom passait en row 2 pleine
     largeur → la colonne 2 de la row 1 (≈236px) restait VIDE = un gros bloc blanc à
     droite de la vignette (bug 06-09 baanbuaor « gros espace dans les lieux »). On pose
     3 colonnes (rang/vignette/nom) → plus de bande vide, rangée compacte. */
  .vl-rt-head { display: none; }
  .vl-rt-row { grid-template-columns: 30px 44px 1fr; align-items: start;
              grid-auto-rows: min-content; gap: .55rem 10px; padding: 14px 16px; }
  .vl-rt-rank { grid-row: 1; grid-column: 1; align-self: center; }
  .vl-rt-thumb { grid-row: 1; grid-column: 2; width: 44px; height: 44px; }
  .vl-rt-name { grid-row: 1; grid-column: 3; min-width: 0; }
  .vl-rt-note, .vl-rt-busy, .vl-rt-action { grid-column: 1 / -1; }
  .vl-rt-note { flex-direction: row; align-items: center; justify-content: space-between; padding-top: .6rem; border-top: var(--border-w) solid var(--line); }
  .vl-rt-busy { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ── COMPARATIF DATA AVIS v2 (E-E-A-T) — UNE LIGNE PAR LIEU AFFICHÉ ──
   Atout le plus loué + moment le plus cité + note/nb d'avis, lieu par lieu (de quoi
   choisir où aller). Grille compacte, LISIBLE MOBILE. Tokens only, AUCUN dégradé/glow. */
.vl-avissum {
  border: var(--border-w) solid var(--line);
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.1rem, .8rem + 1.5vw, 1.8rem);
}
.vl-avissum__lead { color: var(--ink-soft); max-width: 64ch; margin: .2rem 0 1.1rem; }
.vl-avissum__grid { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.vl-avissum__row {
  display: flex; flex-direction: column; gap: .5rem;
  padding: .85rem 0; border-top: var(--border-w) solid var(--line);
}
.vl-avissum__row:first-child { border-top: 0; }
.vl-avissum__rhead { display: flex; align-items: baseline; justify-content: space-between; gap: .8rem; flex-wrap: wrap; }
.vl-avissum__rnom { font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.vl-avissum__rnote { display: inline-flex; align-items: baseline; gap: .5rem; white-space: nowrap; }
.vl-avissum__note {
  font-family: var(--font-head); font-weight: 700;
  color: var(--accent-strong, var(--accent)); font-size: 1.05rem;
}
.vl-avissum__note small { font-size: .7em; color: var(--ink-soft); font-weight: 500; }
.vl-avissum__note--na { color: var(--ink-soft); }
.vl-avissum__navis { font-size: var(--fs-xs); color: var(--ink-soft); }
.vl-avissum__rtags { display: flex; flex-wrap: wrap; gap: .4rem; }
.vl-avissum__tag {
  font-size: var(--fs-xs); line-height: 1.3; padding: .22rem .6rem;
  border: var(--border-w) solid var(--line); border-radius: 999px;
  color: var(--ink); background: var(--surface-2, transparent);
}
.vl-avissum__tag--soft { color: var(--ink-soft); }
.vl-avissum__tag--na { color: var(--ink-soft); border-style: dashed; }
/* Desktop : alignement tabulaire (nom | note | atouts) pour la lecture comparative */
@media (min-width: 720px) {
  .vl-avissum__row {
    display: grid; grid-template-columns: minmax(8rem, 1.2fr) auto 2fr;
    align-items: center; gap: 1rem;
  }
  .vl-avissum__rhead { display: contents; }
  .vl-avissum__rnote { justify-self: end; }
  .vl-avissum__rtags { justify-content: flex-end; }
}

/* =====================================================================
   SQUELETTE M — LE BOUDOIR (clair « sensuel feutré ») — portrait intime,
   chapô italique, filet d'accent. Aplats only, ombres NEUTRES subtiles.
   Mobile-first : 1 colonne ; l'image passe à droite ≥ 900px.
   ===================================================================== */
/* ---------- HERO M — BOUDOIR (portrait + chapô italique) ---------------- */
.vl-hero--boudoir { padding-block: clamp(1.6rem,1.1rem+1.6vw,2.8rem); }
.vl-boudoir__grid { display: grid; gap: clamp(1.4rem,1rem+2vw,2.4rem); align-items: center; }
.vl-boudoir__body { min-width: 0; }
.vl-boudoir__rule { width: 46px; height: 2px; background: var(--accent); border: 0; margin: 1rem 0 1.1rem; }
.vl-boudoir__h1 { font-size: clamp(2.1rem,1.4rem+3.2vw,3.6rem); line-height: 1.04; max-width: 16ch; }
.vl-boudoir__chapo { font-family: var(--font-serif); font-style: var(--chapo, italic); font-size: clamp(1.12rem,1rem+.6vw,1.4rem); color: var(--ink-soft); max-width: 48ch; margin-top: 1rem; }
.vl-boudoir__sign { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.4rem; margin-top: 1.3rem; }
.vl-boudoir__fig { margin: 0; }
.vl-boudoir__img { aspect-ratio: var(--ratio-hero, 4/5); border-radius: var(--radius-lg); border: var(--border-w) solid var(--line-strong); }
.vl-boudoir__cap { font-family: var(--font-serif); font-style: italic; font-size: var(--fs-sm); color: var(--ink-faint); padding-top: .55rem; }
@media (min-width: 900px) {
  .vl-boudoir__grid { grid-template-columns: 1.1fr .9fr; }
  .vl-hero--boudoirland .vl-boudoir__body { max-width: 60ch; }
}
/* ---------- CLASSEMENT M — BOUDOIRROWS (rangées éditoriales feutrées) ---- */
.vl-rank-boudoir { display: flex; flex-direction: column; }
.vl-bplace { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: clamp(1.3rem,1rem+1.2vw,1.8rem) 0; border-top: var(--border-w) solid var(--line); align-items: start; }
.vl-bplace:first-child { border-top: 0; }
.vl-bplace__num { font-family: var(--font-head); font-weight: var(--weight-head); font-size: clamp(1.6rem,1.2rem+1.4vw,2.4rem); line-height: 1; color: var(--ink-faint); }
.vl-bplace--top .vl-bplace__num { color: var(--accent-strong); }
.vl-bplace__img { grid-row: span 2; width: 92px; aspect-ratio: var(--ratio-thumb, 1/1); border-radius: var(--radius); border: var(--border-w) solid var(--line); overflow: hidden; }
.vl-bplace__body { min-width: 0; display: grid; gap: .5rem; }
.vl-bplace__head { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; }
.vl-bplace__name { font-family: var(--font-head); font-size: clamp(1.2rem,1.05rem+.7vw,1.45rem); }
.vl-bplace__sub { font-size: var(--fs-sm); color: var(--ink-soft); display: flex; flex-wrap: wrap; gap: .4rem; }
.vl-bplace__sep { color: var(--ink-faint); }
.vl-bplace__area { font-family: var(--font-serif); font-style: italic; color: var(--ink-faint); }
.vl-bplace__verdict { font-family: var(--font-serif); font-style: italic; font-size: 1.02rem; color: var(--ink-soft); border-left: 2px solid var(--line-strong); padding-left: .85rem; max-width: 58ch; }
.vl-bplace__foot { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1.2rem; }
.vl-bplace__foot .vl-stars { color: var(--accent); }
@media (max-width: 560px) { .vl-bplace__img { width: 72px; } }

/* =====================================================================
   SQUELETTE N — AIMANT (sombre « magnétisme minimal chaud ») — vide tendu,
   titres géants, UN accent chaud rare. Ombres NEUTRES/nulles, aplats only,
   scrim hero = aplat OPAQUE (jamais un dégradé).
   ===================================================================== */
/* ---------- HERO N — AIMANT (titre géant, image optionnelle) ------------ */
.vl-hero--aimant { padding-block: clamp(3rem,1.6rem+6vw,7rem); }
.vl-hero--aimantimg { position: relative; overflow: hidden; }
.vl-aimant__media { position: absolute; inset: 0; z-index: 0; }
.vl-aimant__img { width: 100%; height: 100%; aspect-ratio: var(--ratio-hero, 21/9); border: 0; border-radius: 0; }
.vl-aimant__media .vl-hatch { height: 100%; }
.vl-aimant__scrim { position: absolute; inset: 0; background: rgba(10,7,5,.72); }  /* aplat opaque, jamais un dégradé */
.vl-aimant__in { position: relative; z-index: 1; }
.vl-aimant__h1 { font-size: clamp(2.8rem,1.6rem+7vw,8rem); line-height: .98; max-width: 13ch; margin: clamp(.9rem,.6rem+1.2vw,1.6rem) 0 0; }
.vl-aimant__lead { margin-top: clamp(1.2rem,1rem+1.4vw,2.2rem); max-width: 50ch; color: var(--ink-soft); }
.vl-aimant__sign { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.6rem; margin-top: clamp(1.4rem,1rem+1.4vw,2.2rem); }
.vl-aimant__facts { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; margin-top: clamp(1.6rem,1.2rem+1.6vw,2.6rem); padding-top: clamp(1.4rem,1rem+1.4vw,2rem); border-top: var(--border-w) solid var(--line-strong); }
.vl-aimant__factn { font-family: var(--font-head); font-weight: var(--weight-head); text-transform: var(--case-head); font-size: clamp(1.9rem,1.4rem+2vw,3rem); line-height: .9; color: var(--ink); }
.vl-aimant__factl { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); margin-top: .35rem; }
/* ---------- CLASSEMENT N — AIMANTROWS (rangées nues, vide tendu) --------- */
.vl-rank-aimant { display: flex; flex-direction: column; }
.vl-aplace { border-top: var(--border-w) solid var(--line); position: relative; }
.vl-aplace:last-child { border-bottom: var(--border-w) solid var(--line); }
.vl-aplace--top::after { content: ""; display: var(--filet-n1, block); position: absolute; left: 0; right: 0; top: -1px; height: 3px; background: var(--accent); }
.vl-aplace__main { display: grid; grid-template-columns: auto 1fr; gap: clamp(1rem,.6rem+1.6vw,2rem); align-items: start; padding: clamp(1.6rem,1.1rem+1.8vw,2.6rem) 0 1rem; }
.vl-aplace__num { font-family: var(--font-head); font-weight: var(--weight-head); font-size: clamp(2.4rem,1.6rem+2.6vw,4rem); line-height: .8; color: var(--ink-faint); }
.vl-aplace--top .vl-aplace__num { color: var(--accent); }
.vl-aplace__body { min-width: 0; display: grid; gap: .55rem; }
.vl-aplace__head { display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap; }
.vl-aplace__name { font-family: var(--font-head); font-weight: var(--weight-h); text-transform: var(--case-head); font-size: clamp(1.4rem,1.1rem+1.4vw,2.1rem); line-height: 1.04; }
.vl-aplace__note { font-family: var(--font-head); font-weight: var(--weight-head); font-size: 1.3rem; color: var(--accent); line-height: 1; white-space: nowrap; }
.vl-aplace__note span { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--ink-soft); }
.vl-aplace__sub { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--accent2-strong); }
.vl-aplace__verdict { color: var(--ink-soft); max-width: 60ch; }
.vl-aplace__detail { display: grid; gap: .7rem; padding: 0 0 clamp(1.4rem,1rem+1.4vw,2rem) calc(clamp(2.4rem,1.6rem+2.6vw,4rem) + clamp(1rem,.6rem+1.6vw,2rem)); }
.vl-aplace__foot { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1.2rem; }
@media (max-width: 560px) { .vl-aplace__detail { padding-left: 0; } }

/* =====================================================================
   SQUELETTE O — LETTRE D'AMOUR (clair « romance éditoriale chaude ») —
   couverture romanesque, deux serifs, chapô italique. Filets fins, aplats.
   ===================================================================== */
/* ---------- HERO O — LETTRE (masthead + chapô serif italique) ----------- */
.vl-hero--lettre { padding-block: clamp(1.4rem,1rem+1.4vw,2.4rem) clamp(1.6rem,1.1rem+1.8vw,2.8rem); }
.vl-lettre__rail { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .4rem 1rem; padding-bottom: .9rem; border-bottom: var(--border-w) solid var(--line-strong); }
.vl-lettre__kicker { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.vl-lettre__head { padding: clamp(1.4rem,1rem+1.6vw,2.4rem) 0 clamp(1.2rem,1rem+1vw,1.8rem); }
.vl-lettre__h1 { font-size: clamp(2.2rem,1.4rem+3.4vw,4rem); line-height: 1.04; max-width: 18ch; text-wrap: balance; }
.vl-lettre__chapo { font-family: var(--font-serif); font-style: var(--whisper, italic); font-size: clamp(1.12rem,1rem+.6vw,1.42rem); color: var(--ink-soft); max-width: 60ch; margin-top: 1rem; }
.vl-lettre__byline { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.4rem; margin-top: 1.2rem; }
.vl-lettre__fig { margin: 0; }
.vl-lettre__img { aspect-ratio: var(--ratio-hero, 3/2); border-radius: var(--radius-lg); border: var(--border-w) solid var(--line-strong); }
.vl-lettre__cap { font-family: var(--font-serif); font-style: italic; font-size: var(--fs-sm); color: var(--ink-faint); padding-top: .55rem; }
/* ---------- CLASSEMENT O — LETTRECARNET (carnet de rendez-vous) ---------- */
.vl-rank-lettre { display: flex; flex-direction: column; gap: 0; margin: 0; padding: 0; list-style: none; }
.vl-lplace { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; padding: clamp(1.3rem,1rem+1.2vw,1.9rem) 0; border-top: var(--border-w) solid var(--line); align-items: start; }
.vl-lplace:first-child { border-top: 0; }
.vl-lplace__num { font-family: var(--font-head); font-weight: var(--weight-head); font-size: clamp(1.6rem,1.2rem+1.4vw,2.3rem); line-height: 1; color: var(--ink-faint); min-width: 1.4ch; text-align: right; }
.vl-lplace--top .vl-lplace__num { color: var(--accent); }
.vl-lplace__body { min-width: 0; display: grid; gap: .5rem; }
.vl-lplace__head { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; }
.vl-lplace__name { font-family: var(--font-head); font-size: clamp(1.2rem,1.05rem+.7vw,1.5rem); }
.vl-notepill--serif { font-family: var(--font-head); background: var(--surface); color: var(--accent-strong); }
.vl-lplace__sub { font-size: var(--fs-sm); color: var(--ink-soft); display: flex; flex-wrap: wrap; gap: .4rem; }
.vl-lplace__sep { color: var(--ink-faint); }
.vl-lplace__area { font-family: var(--font-serif); font-style: italic; color: var(--ink-faint); }
.vl-lplace__verdict { font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; color: var(--ink-soft); max-width: 60ch; }
.vl-lplace__detail { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .5rem 1.6rem; margin-top: .2rem; max-width: 520px; }
.vl-lplace__kv { display: flex; flex-direction: column; gap: .15rem; }
.vl-lplace__kv dt { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.vl-lplace__kv dd { font-size: var(--fs-sm); color: var(--ink); }
.vl-lplace__kv dd a { color: var(--accent-strong); }
.vl-lplace__foot { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1.2rem; }
.vl-lplace__foot .vl-stars { color: var(--accent); }
@media (max-width: 560px) { .vl-lplace { gap: .8rem; } .vl-lplace__detail { grid-template-columns: 1fr; } }

/* =====================================================================
   SQUELETTE P — VELOURS (sombre « rétro-glamour sobre ») — bordeaux/or MAT,
   serif à contraste. Ombres DURES en aplat (blur 0), jamais de glow.
   Scrim hero = aplat OPAQUE (jamais un dégradé). Métal mat = aplats.
   ===================================================================== */
/* ---------- HERO P — VELOURS (média + scrim + filet or) ----------------- */
.vl-hero--velours { position: relative; overflow: hidden; border-bottom: var(--border-w) solid var(--line); }
.vl-velours__media { position: absolute; inset: 0; z-index: 0; }
.vl-velours__img { width: 100%; height: 100%; aspect-ratio: auto; border: 0; border-radius: 0; }
.vl-velours__media .vl-hatch { height: 100%; }
.vl-velours__scrim { position: absolute; inset: 0; z-index: 1; background: rgba(12,5,8,.74); }  /* aplat opaque, jamais un dégradé */
.vl-velours__edge { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; z-index: 2; background: var(--accent); }
.vl-velours__in { position: relative; z-index: 3; padding-block: clamp(3rem,1.8rem+5.4vw,7rem); }
.vl-velours__grid { display: grid; gap: clamp(1.6rem,1rem+3vw,3rem); align-items: end; }
.vl-velours__h1 { font-family: var(--font-head); font-size: clamp(2.6rem,1.7rem+5vw,6rem); line-height: 1.02; max-width: 15ch; margin: clamp(.9rem,.6rem+1.2vw,1.6rem) 0 0; }
.vl-velours__lead { margin-top: clamp(1.2rem,1rem+1.4vw,2rem); max-width: 52ch; color: var(--ink-soft); }
.vl-velours__sign { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.6rem; margin-top: clamp(1.4rem,1rem+1.4vw,2.2rem); }
.vl-velours__facts { display: flex; flex-direction: column; gap: 1.1rem; border-left: var(--border-w) solid var(--accent); padding-left: 1.6rem; }
.vl-velours__factn { font-family: var(--font-head); font-size: clamp(1.9rem,1.4rem+2vw,3rem); line-height: .9; color: var(--accent); }
.vl-velours__factl { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); margin-top: .35rem; }
.vl-hero--velourland { background: var(--surface); }
@media (min-width: 981px) {
  .vl-velours__grid { grid-template-columns: minmax(0,1fr) auto; }
}
@media (max-width: 980px) {
  .vl-velours__facts { flex-direction: row; flex-wrap: wrap; border-left: 0; border-top: var(--border-w) solid var(--accent); padding-left: 0; padding-top: 1.5rem; gap: 1.8rem; margin-top: 1.4rem; }
}
/* ---------- CLASSEMENT P — VELOURSLIST (rangées feutrées, filet or n°1) -- */
.vl-rank-velours { display: flex; flex-direction: column; }
.vl-vplace { display: grid; grid-template-columns: auto 84px 1fr; gap: 1rem clamp(1rem,.6rem+1.4vw,1.6rem); padding: clamp(1.4rem,1rem+1.4vw,2.2rem) 0; border-top: var(--border-w) solid var(--line); align-items: start; position: relative; }
.vl-vplace:first-child { border-top: 0; }
.vl-vplace--top::after { content: ""; display: var(--top-rule, block); position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--accent); }
.vl-vplace__num { font-family: var(--font-head); font-weight: var(--weight-head); font-size: clamp(1.7rem,1.2rem+1.6vw,2.6rem); line-height: 1; color: var(--ink-faint); }
.vl-vplace--top .vl-vplace__num { color: var(--accent); }
.vl-vplace__img { width: 84px; aspect-ratio: 3/4; border: var(--border-w) solid var(--line-strong); border-radius: var(--radius); overflow: hidden; }
.vl-vplace--top .vl-vplace__img { border-color: var(--accent); }
.vl-vplace__img--mono { display: flex; align-items: center; justify-content: center; background: var(--surface-2); font-family: var(--font-head); font-size: 2rem; color: var(--ink-faint); }
.vl-vplace--top .vl-vplace__img--mono { color: var(--accent); }
.vl-vplace__body { min-width: 0; display: grid; gap: .5rem; }
.vl-vplace__head { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; }
.vl-vplace__name { font-family: var(--font-head); font-size: clamp(1.25rem,1.05rem+.8vw,1.7rem); line-height: 1.06; }
.vl-vnote { font-family: var(--font-head); font-weight: var(--weight-head); font-size: 1.25rem; color: var(--accent); line-height: 1; white-space: nowrap; }
.vl-vnote span { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--ink-soft); }
.vl-vplace__sub { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--accent2-strong); }
.vl-vplace__verdict { font-family: var(--font-serif); font-style: italic; font-size: 1.04rem; color: var(--ink-soft); max-width: 58ch; }
.vl-vplace__foot { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1.2rem; }
.vl-vplace__foot .vl-stars { color: var(--accent); }
@media (max-width: 560px) {
  .vl-vplace { grid-template-columns: auto 1fr; }
  .vl-vplace__img { display: none; }
}

/* =====================================================================
   SQUELETTE Q — PEAU À PEAU (clair « intime tactile ») — chair chaud, grande
   image, profils tôt, rondeur MESURÉE (≤ 26px). Ombres NEUTRES douces, aplats.
   Grille de cartes auto-fill (toute cardinalité rend proprement).
   ===================================================================== */
/* ---------- HERO Q — PEAU (grande image + panneau aplat) ---------------- */
.vl-hero--peau { padding-block: clamp(1.4rem,1rem+1.4vw,2.4rem); }
.vl-peau__card { border: var(--border-w) solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); display: grid; }
.vl-peau__media { min-width: 0; }
.vl-peau__img { aspect-ratio: var(--ratio-hero, 3/2); border: 0; border-radius: 0; }
.vl-peau__panel { background: var(--surface); padding: clamp(1.4rem,1rem+2vw,2.6rem); display: grid; gap: 1rem; align-content: center; }
.vl-peau__panel--land { border: var(--border-w) solid var(--line); border-radius: var(--radius-lg); }
.vl-peau__h1 { font-family: var(--font-head); font-size: clamp(2rem,1.4rem+3vw,3.4rem); line-height: 1.06; max-width: 16ch; }
.vl-peau__lead { color: var(--ink-soft); max-width: 50ch; }
.vl-peau__sign { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.4rem; }
@media (min-width: 820px) {
  .vl-peau__card { grid-template-columns: 1.05fr .95fr; }
  .vl-peau__img { aspect-ratio: auto; height: 100%; }
}
/* ---------- CLASSEMENT Q — PEAUCARDS (cartes rondes tactiles) ----------- */
.vl-rank-peau { display: grid; gap: var(--gutter); grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.vl-pcard { border: var(--border-w) solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); box-shadow: var(--shadow); display: flex; flex-direction: column; }
.vl-pcard__media { position: relative; }
.vl-pcard__img { aspect-ratio: var(--ratio-thumb, 4/3); border: 0; border-radius: 0; }
.vl-pcard__num { position: absolute; top: .7rem; left: .7rem; display: inline-flex; align-items: center; justify-content: center; min-width: 2rem; height: 2rem; padding: 0 .5rem; background: var(--accent); color: var(--accent-ink); font-family: var(--font-head); font-weight: var(--weight-head); border-radius: var(--radius); }
.vl-pcard__body { padding: clamp(1rem,.8rem+1vw,1.4rem); display: grid; gap: .6rem; min-width: 0; }
.vl-pcard__head { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; justify-content: space-between; }
.vl-pcard__name { font-family: var(--font-head); font-size: clamp(1.15rem,1.05rem+.5vw,1.4rem); }
.vl-pcard__desc { color: var(--ink-soft); }
.vl-pcard__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .6rem 1rem; margin-top: auto; padding-top: .4rem; }
.vl-pcard__foot .vl-stars { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════════════════════
   OSSATURES DU TRONC COMMUN (anti-footprint réseau) — header / footer / méthode
   Variations STRUCTURELLES tirées + réservées par site (theme.chrome). MOBILE-FIRST :
   le header reste en mode burger ≤860px (header ≤64px, cibles ≥44px, 0 overflow) ;
   les ossatures ne divergent qu'à partir de 861px. Aucune couleur en dur, tokens
   uniquement, zéro interdit dur (pas de dégradé/glow/blur/glassmorphism).
   ═══════════════════════════════════════════════════════════════════════════ */

/* ---- MODIFICATEURS de header : traitement du filet (mobile + desktop) ------ */
.vl-hmod--a.vl-header { border-bottom-width: var(--border-w); }              /* filet fin (défaut) */
.vl-hmod--b.vl-header { border-bottom-width: 3px; border-bottom-color: var(--line-strong); } /* filet épais */
.vl-hmod--c.vl-header { border-bottom: 0; }                                  /* aplat sans filet */

/* ---- FAMILLES de header (desktop ≥861px ; mobile = burger commun) ---------- */
@media (min-width: 861px) {
  /* centered : logo centré sur sa propre rangée (rangée 1), puis nav + CTA sur rangée 2
     centrés côte à côte. Sélecteur de ville masqué sur desktop pour cette variante
     (évite l'orphelin row 3 si nav trop large). Spécificité `.vl-site` pour battre
     `margin-left:auto` de prod.css (0,2,1) → on monte à (0,3,1). */
  .vl-site .vl-header--centered .vl-header__in { flex-wrap: wrap; justify-content: center; row-gap: .4rem; column-gap: 1.4rem; }
  .vl-site .vl-header--centered .vl-logo { order: 1; flex: 1 0 100%; justify-content: center; text-align: center; max-width: none; }
  .vl-site .vl-header--centered .vl-nav { order: 2; margin: 0; }
  .vl-site .vl-header--centered .vl-citymenu,
  .vl-site .vl-header--centered .vl-city-select { display: none; }
  .vl-site .vl-header--centered .vl-header__cta { order: 3; margin: 0 0 0 1.2rem; flex: 0 0 auto; }

  /* split : nav à gauche, logo centré absolu, CTA à droite — sélecteur ville masqué
     (évite le 4e élément qui poussait le CTA à la ligne dans l'ancienne version). */
  .vl-site .vl-header--split .vl-header__in { display: flex; flex-wrap: nowrap; justify-content: space-between; align-items: center; position: relative; }
  .vl-site .vl-header--split .vl-logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); max-width: 220px; justify-content: center; text-align: center; margin: 0; }
  .vl-site .vl-header--split .vl-nav { order: 1; margin: 0; flex: 0 0 auto; }
  .vl-site .vl-header--split .vl-citymenu { display: none; }
  .vl-site .vl-header--split .vl-city-select { display: none; }
  .vl-site .vl-header--split .vl-header__cta { order: 2; margin: 0; flex: 0 0 auto; }

  /* stack : 2 rangées réelles via grid — rangée 1 : logo + ville ; rangée 2 : nav + CTA */
  .vl-header--stack .vl-header__in {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 1.2rem;
    row-gap: 0;
  }
  .vl-header--stack .vl-logo { grid-column: 1; grid-row: 1; order: unset; flex: unset; margin: 0; }
  .vl-header--stack .vl-citymenu,
  .vl-header--stack .vl-city-select { grid-column: 3; grid-row: 1; order: unset; margin: 0; }
  .vl-header--stack .vl-nav { grid-column: 1 / 3; grid-row: 2; border-top: var(--border-w) solid var(--line); padding: .3rem 0; margin: 0; order: unset; }
  .vl-header--stack .vl-header__cta { grid-column: 3; grid-row: 2; border-top: var(--border-w) solid var(--line); padding: .3rem 0; order: unset; }
  .vl-header--stack .vl-menu { display: none; }

  /* rule : barre colorée sous le header = marqueur visuel fort */
  .vl-header--rule { border-bottom: 3px solid var(--accent); }
  .vl-header--rule .vl-nav { margin-left: auto; }

  /* wide : fond distinct + nav pleine largeur sans contrainte max-width */
  .vl-header--wide { background: var(--surface-2); }
  .vl-header--wide .vl-wrap,
  .vl-header--wide .vl-header__in { max-width: none; width: 100%; }
  .vl-header--wide .vl-nav { gap: 2.4rem; margin-left: auto; }
  .vl-header--wide .vl-header__cta { flex: none; padding-inline: 1.3rem; }

  /* minimal : nav repliée dans le burger MÊME en desktop (logo + CTA seuls) */
  .vl-header--minimal .vl-nav { display: none; }
  .vl-header--minimal .vl-menu { display: inline-flex; margin-left: .4rem; }
  .vl-header--minimal .vl-header__cta { margin-left: auto; }
}

/* ---- MODIFICATEURS de footer : traitement du filet haut --------------------- */
.vl-fmod--a.vl-footer { border-top-width: var(--border-w); }
.vl-fmod--b.vl-footer { background: var(--surface-2); border-top: 3px solid var(--line-strong); }
.vl-fmod--c.vl-footer { border-top: 3px solid var(--accent); }

/* ---- FAMILLES de footer ---------------------------------------------------- */
/* base mobile commune : 1 colonne propre (hérité). Les familles divergent ≥761px. */
.vl-footer__nav { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; }
@media (min-width: 761px) {
  /* grid (défaut) : marque à gauche (largeur naturelle), nav alignée à droite en
     RANGÉE horizontale (les liens ne s'empilent plus dans une colonne étroite collée
     au bord). 2 blocs réels, aucune colonne vide. */
  .vl-footer--grid .vl-footer__grid { grid-template-columns: 1fr auto; align-items: start; }
  .vl-footer--grid .vl-footer__nav { justify-content: flex-end; align-content: flex-start; max-width: 32rem; }

  /* columns : nav en 2 sous-colonnes type annuaire, à droite de la marque (distinct
     de grid qui aligne les liens en une rangée). */
  .vl-footer--columns .vl-footer__grid { grid-template-columns: 1fr auto; align-items: start; }
  .vl-footer--columns .vl-footer__nav {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: .45rem 2rem; align-items: start; justify-items: start;
  }

  /* rail : footer ultra-compact UNE SEULE LIGNE — marque + nav inline + bas compact */
  .vl-footer--rail .vl-footer__grid {
    display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.4rem;
  }
  .vl-footer--rail .vl-footer__brand { display: flex; align-items: center; gap: .8rem; }
  .vl-footer--rail .vl-footer__brand p { display: none; }
  .vl-site .vl-footer--rail .vl-footer__nav {
    display: flex; flex-direction: row; flex-wrap: wrap;
    gap: .3rem 1rem; margin-left: auto;
  }
  .vl-footer--rail .vl-footer__nav a { font-size: var(--fs-xs); }
  .vl-footer--rail .vl-footer__bottom { font-size: var(--fs-xs); border-top: none; padding-top: .3rem; }

  /* split : 2 zones nettes — marque à gauche (filet accent à droite), nav à droite
     alignée à GAUCHE de sa zone (collée au filet, pas au bord de l'écran). */
  .vl-footer--split .vl-footer__grid { grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
  .vl-footer--split .vl-footer__brand { padding-right: 2.4rem; border-right: 2px solid var(--accent); }
  .vl-footer--split .vl-footer__nav {
    padding-left: 2.4rem; justify-content: flex-start; align-content: center;
    flex-wrap: wrap; gap: .5rem 1.6rem;
  }
}
/* stack : tout empilé centré, colonne unique aérée (à toutes largeurs) */
.vl-footer--stack .vl-footer__grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.vl-footer--stack .vl-footer__brand { justify-items: center; }
.vl-footer--stack .vl-footer__brand p { max-width: 52ch; }
.vl-footer--stack .vl-footer__nav { justify-content: center; }
.vl-footer--stack .vl-footer__bottom { justify-content: center; text-align: center; }
/* minimal : une seule rangée marque · liens · mentions (le plus sobre) */
.vl-footer--minimal { padding-block: clamp(1.6rem,1.2rem+1.5vw,2.6rem); }
.vl-footer--minimal .vl-footer__grid { grid-template-columns: 1fr; gap: .8rem; }
.vl-footer--minimal .vl-footer__brand p { display: none; }
@media (min-width: 761px) {
  .vl-footer--minimal .vl-footer__grid { grid-template-columns: auto 1fr; align-items: center; }
  .vl-footer--minimal .vl-footer__nav { justify-content: flex-end; }
}
/* band : bandeau marque pleine largeur en haut, liens en rangée dessous */
.vl-footer--band .vl-footer__grid { grid-template-columns: 1fr; gap: 1.2rem; }
.vl-footer--band .vl-footer__brand { padding-bottom: 1.2rem; border-bottom: var(--border-w) solid var(--line); }
.vl-footer--band .vl-footer__nav { justify-content: flex-start; }

/* ---- MÉTHODE : modificateurs de marqueur d'étape --------------------------- */
/* a = numéro mono (défaut, déjà porté par .vl-method__step::before) */
.vl-mmod--b .vl-method__step::before { content: ""; counter-increment: step; width: 1.1em; height: 1.1em; border: 2px solid var(--accent); border-radius: var(--radius); display: inline-block; }
.vl-mmod--c .vl-method__step::before { content: ""; counter-increment: step; }
.vl-mmod--c .vl-method__step { border-top-width: var(--border-w); }

/* ---- MÉTHODE : familles de disposition ------------------------------------- */
/* grid (défaut) = .vl-method de base. steps = pas-à-pas vertical numéroté. */
.vl-method--steps { display: grid; grid-template-columns: 1fr; gap: var(--gutter); counter-reset: step; }
.vl-method--steps .vl-method__step { grid-template-columns: auto 1fr; column-gap: 1rem; align-items: start; border-top: var(--border-w) solid var(--line); padding-top: 1rem; }
.vl-method--steps .vl-method__step h3 { grid-column: 2; }
.vl-method--steps .vl-method__step p { grid-column: 2; }
.vl-method--steps .vl-method__step::before { grid-row: 1 / span 2; align-self: start; font-size: 1.3rem; }
/* callout = encart unique encadré, critères en colonne */
.vl-method--callout { display: grid; grid-template-columns: 1fr; gap: 1rem; counter-reset: step; border: var(--border-w) solid var(--line-strong); border-radius: var(--radius-lg); padding: clamp(1.1rem,.9rem+1.5vw,1.8rem); background: var(--surface); }
.vl-method--callout .vl-method__step { border-top: 0; padding-top: 0; }
@media (min-width: 720px) { .vl-method--callout { grid-template-columns: 1fr 1fr; gap: 1.2rem 2rem; } }
/* inline = rangée horizontale de critères séparés par filets */
.vl-method--inline { display: grid; grid-template-columns: 1fr; gap: 0; counter-reset: step; }
.vl-method--inline .vl-method__step { border-top: var(--border-w) solid var(--line); padding: 1rem 0; }
@media (min-width: 860px) {
  .vl-method--inline { grid-auto-flow: column; grid-auto-columns: 1fr; }
  .vl-method--inline .vl-method__step { border-top: 0; border-left: var(--border-w) solid var(--line); padding: 0 1.2rem; }
  .vl-method--inline .vl-method__step:first-child { border-left: 0; padding-left: 0; }
}
/* ledger = tableau « critère → ce qu'on regarde » (<dl>) */
.vl-method--ledger { display: grid; grid-template-columns: 1fr; gap: 0; }
.vl-method__row { display: grid; grid-template-columns: 1fr; gap: .2rem; padding: .9rem 0; border-top: var(--border-w) solid var(--line); }
.vl-method__row dt { font-family: var(--font-head); font-weight: var(--weight-h); }
.vl-method__row dd { margin: 0; color: var(--ink-soft); font-size: var(--fs-sm); }
@media (min-width: 720px) {
  .vl-method__row { grid-template-columns: minmax(10rem, .8fr) 2fr; gap: 1.5rem; align-items: baseline; }
}
/* aside = filet latéral + critères empilés à droite (éditorial) */
.vl-method--aside { display: grid; grid-template-columns: 1fr; gap: var(--gutter); counter-reset: step; }
.vl-method--aside .vl-method__step { border-top: 0; border-left: 3px solid var(--accent); padding: .2rem 0 .2rem 1.1rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   VARIANTES STRUCTURELLES VISIBLES SUR MOBILE (chantier 06-09)
   Le client a constaté que header/footer/méthode ne divergeaient qu'en DESKTOP
   (≥761/861px) → identiques sur mobile (99 % du trafic). Et profils/affiliés
   n'avaient AUCUNE variante. Ici : des layouts RADICALEMENT différents qui
   divergent DÈS LE MOBILE (base, pas en media query desktop). Mobile-first,
   tap≥44px, 0 overflow, tokens uniquement, ZÉRO interdit dur.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ---- HEADER : divergences MOBILE (≤860px, là où ça compte) ----------------- */
/* centered : logo centré sur sa propre rangée, CTA+ville+burger en rangée dessous */
.vl-header--centered .vl-header__in { flex-wrap: wrap; row-gap: .35rem; }
.vl-header--centered .vl-logo { order: 0; flex: 1 0 100%; justify-content: center; text-align: center; max-width: 100%; }
.vl-header--centered .vl-city-select { order: 1; }
.vl-header--centered .vl-header__cta { order: 2; margin-left: auto; }
.vl-header--centered .vl-menu { order: 3; }
/* split : ville à gauche, logo centré, burger à droite (masthead réparti, dès mobile) */
.vl-header--split .vl-logo { position: absolute; left: 50%; transform: translateX(-50%); max-width: 50%; }
.vl-header--split .vl-header__in { position: relative; justify-content: space-between; }
.vl-header--split .vl-menu { margin-left: 0; }
/* wide : CTA en bouton plein qui prend la largeur restante (action mise en avant mobile) */
.vl-header--wide .vl-header__cta { flex: 1 1 auto; justify-content: center; max-width: 60%; }
/* minimal : logo + CTA seuls, tout le reste plié dans le burger même desktop */
.vl-header--minimal .vl-city-select { display: none; }
/* stack : header un peu plus haut, logo + baseline (rendu via min-height) */
.vl-header--stack .vl-header__in { min-height: 60px; }

@media (min-width: 861px) {
  /* wide : nav très espacée + CTA plein large (reset du flex mobile) */
  .vl-header--wide .vl-header__cta { flex: none; max-width: none; }
  /* split / centered : leur disposition desktop ÉQUILIBRÉE est définie dans le bloc
     desktop des familles plus haut (≥861px), préfixée `.vl-site` pour battre la règle
     `margin-left:auto` de prod.css (chargée après). Rien à reset ici. */
}

/* ---- FOOTER : divergences MOBILE ------------------------------------------- */
/* minimal : une seule rangée compacte dès le mobile (marque · liens · mentions) */
.vl-footer--minimal .vl-footer__brand p { display: none; }
.vl-footer--minimal .vl-footer__bottom { margin-top: 1rem; }
/* band : bandeau marque encadré en haut + liens en rangée dessous (mobile inclus) */
.vl-footer--band .vl-footer__brand { padding-bottom: 1rem; margin-bottom: .4rem; border-bottom: 2px solid var(--line-strong); }
.vl-footer--band .vl-footer__nav { justify-content: flex-start; }
/* columns : nav en 2 colonnes (annuaire) dès le mobile */
.vl-footer--columns .vl-footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem .8rem;
  align-items: start;
}
/* rail : padding réduit + nav flex-start sur mobile */
.vl-footer--rail { padding: .6rem 0; }
.vl-footer--rail .vl-footer__brand p { display: none; }
.vl-footer--rail .vl-footer__nav { justify-content: flex-start; }

/* ---- MÉTHODE : la famille `grid` (défaut) reste en cartes ; les autres déjà
   pilotées plus haut divergent toutes DÈS le mobile (steps/callout/ledger/aside =
   pas de media query desktop) ; inline passe en colonne <860px (déjà mobile-safe). */

/* ════════════════════ BLOC PROFILS — 6 familles structurelles ════════════════
   Toutes mobile-first. Le hook .vl-profils (grille auto-fill de prod.css) reste un
   nom de classe STABLE ; la famille est portée par la SECTION `.vl-prof--<base>` →
   le CSS scope `.vl-prof--<base> .vl-profils`. .vl-profil__id regroupe nom+loc. */
.vl-profil__id { display: flex; flex-direction: column; gap: .25rem; }

/* grid (défaut) : reprend la grille auto-fill de prod.css — rien à surcharger ici. */

/* list : grande photo À GAUCHE, infos+CTA à droite, 1 rangée par profil (DÈS mobile).
   Spécificité `.vl-site` (0,3,0) pour battre `.vl-site .vl-profils` de prod.css (0,2,0)
   qui imposait sinon la grille auto-fill → list se confondait avec grid. */
.vl-site .vl-prof--list .vl-profils { display: grid !important; grid-template-columns: 1fr !important; gap: var(--gutter); }
.vl-site .vl-prof--list .vl-profil { flex-direction: row; align-items: stretch; }
.vl-site .vl-prof--list .vl-profil__media { flex: 0 0 34%; max-width: 130px; }
.vl-site .vl-prof--list .vl-profil__img { aspect-ratio: 3/4; height: 100%; object-fit: cover; }
/* infos + CTA sur UNE rangée : id à gauche (prend la place), CTA à droite à largeur
   naturelle (plus de gros bouton pleine largeur avec un grand vide au milieu). */
.vl-site .vl-prof--list .vl-profil__b {
  flex: 1; flex-direction: row; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: .6rem 1rem; padding: .9rem 1rem;
}
.vl-site .vl-prof--list .vl-profil__id { flex: 1 1 12rem; min-width: 0; }
.vl-site .vl-prof--list .trk_profile_tel_container { flex: 0 0 auto; margin: 0; padding: 0; }
.vl-site .vl-prof--list .vl-profil__cta { width: auto; min-width: 10rem; }

/* mosaic : mosaïque compacte 2 colonnes (3 ≥520px, 4 ≥900px), nom+CTA en OVERLAY bas.
   `.vl-site` + `!important` pour battre la grille auto-fill de prod.css (sinon = grid). */
.vl-site .vl-prof--mosaic .vl-profils { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: .6rem; }
@media (min-width: 520px) { .vl-site .vl-prof--mosaic .vl-profils { grid-template-columns: repeat(3, 1fr) !important; } }
@media (min-width: 900px) { .vl-site .vl-prof--mosaic .vl-profils { grid-template-columns: repeat(4, 1fr) !important; } }
.vl-prof--mosaic .vl-profil { position: relative; }
.vl-prof--mosaic .vl-profil__img { aspect-ratio: 1/1; }
.vl-prof--mosaic .vl-profil__overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: .5rem; background: var(--surface); border-top: 2px solid var(--accent); display: flex; flex-direction: column; gap: .4rem; }
.vl-prof--mosaic .vl-profil__name { font-size: .92rem; }
.vl-prof--mosaic .vl-profil__loc { font-size: var(--fs-xs); }
.vl-prof--mosaic .vl-profil__cta { padding-block: .45rem; }

/* scroller : rangée HORIZONTALE scrollable (carrousel natif, scroll-snap) DÈS mobile.
   `.vl-site` (0,3,0) + `grid-template-columns:none !important` pour ANNULER la grille
   auto-fill de prod.css (.vl-site .vl-profils = 0,2,0, chargée APRÈS). Sans ce reset, les
   colonnes explicites 170px de prod gagnaient → les cartes du carrousel se rangeaient en
   grille 2 colonnes ÉTRANGLÉES (image ~168px au lieu de 78%) et le `grid-auto-flow:column`
   créait des cartes étirées avec un GROS VIDE interne sous les infos (bug 06-09 baanbuaor). */
.vl-site .vl-prof--scroller .vl-profils { display: grid !important; grid-template-columns: none !important; grid-auto-flow: column; grid-auto-columns: 78%; gap: .8rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: .6rem; align-items: start; }
@media (min-width: 560px) { .vl-site .vl-prof--scroller .vl-profils { grid-auto-columns: 42%; } }
@media (min-width: 900px) { .vl-site .vl-prof--scroller .vl-profils { grid-auto-columns: 26%; } }
.vl-prof--scroller .vl-profil { scroll-snap-align: start; }
.vl-prof--scroller .vl-profils::-webkit-scrollbar { height: 6px; }
.vl-prof--scroller .vl-profils::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: var(--radius); }

/* stack : colonne unique de cartes LARGES — bandeau horizontal robuste avec ou sans photo.
   Spécificité .vl-site + 2 = 3 classes → bat les règles prod.css (.vl-site .vl-profils = 2). */
.vl-site .vl-prof--stack .vl-profils { display: grid !important; grid-template-columns: 1fr !important; gap: .6rem; }
.vl-site .vl-prof--stack .vl-profil {
  display: flex !important; flex-direction: row !important; align-items: center;
  gap: .8rem; padding: .6rem; border-radius: var(--radius);
  border: var(--border-w) solid var(--line);
}
.vl-site .vl-prof--stack .vl-profil__media {
  flex: 0 0 56px; width: 56px; height: 56px;
  border-radius: 50%; overflow: hidden; background: var(--surface-2);
}
.vl-site .vl-prof--stack .vl-profil__img { width: 100%; height: 100%; object-fit: cover; }
.vl-site .vl-prof--stack .vl-profil__b {
  flex: 1; display: flex !important; flex-direction: row !important; align-items: center;
  justify-content: space-between; gap: .5rem; flex-wrap: wrap; padding: 0;
}
.vl-site .vl-prof--stack .vl-profil__id { flex: 1 1 auto; min-width: 0; }
.vl-site .vl-prof--stack .vl-profil .trk_profile_tel_container,
.vl-site .vl-prof--stack .vl-profil .vl-profil__cta-wrap { margin: 0; padding-top: 0; flex: 0 0 auto; }
.vl-site .vl-prof--stack .vl-profil__cta { width: auto; min-width: 8rem; }
/* badge « En ligne » : dans la rangée compacte (média = petit avatar rond 56px),
   la pastille absolue déborderait en blob sur l'avatar → on la masque (le CTA suffit
   à signaler la disponibilité). NB la classe réelle est `vl-profil__live`. */
.vl-site .vl-prof--stack .vl-profil .vl-profil__live { display: none; }

/* spotlight : 1 profil vedette en grand + le reste en mini-liste compacte.
   `.vl-site` + `!important` pour battre la grille auto-fill de prod.css. */
.vl-site .vl-prof--spotlight .vl-profils { display: grid !important; grid-template-columns: 1fr !important; gap: .9rem; }
.vl-prof--spotlight .vl-profil--star .vl-profil__img { aspect-ratio: 4/3; }
.vl-prof--spotlight .vl-profils__rest { display: grid; grid-template-columns: 1fr; gap: .6rem; }
/* mini-rangée : avatar rond À GAUCHE, infos au centre, CTA à droite — sur UNE ligne.
   `.vl-site` (0,3,0) pour battre la mise en colonne de la carte profil par prod.css. */
.vl-site .vl-prof--spotlight .vl-profil--mini {
  display: flex !important; flex-direction: row !important; align-items: center;
  gap: .8rem; padding: .6rem .8rem;
}
.vl-site .vl-prof--spotlight .vl-profil--mini .vl-profil__media {
  flex: 0 0 56px; width: 56px; height: 56px; border-radius: 50%; overflow: hidden;
  background: var(--surface-2);
}
.vl-site .vl-prof--spotlight .vl-profil--mini .vl-profil__img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }
.vl-site .vl-prof--spotlight .vl-profil--mini .vl-profil__b {
  flex: 1; display: flex !important; flex-direction: row !important; align-items: center;
  justify-content: space-between; gap: .6rem; flex-wrap: wrap; padding: 0;
}
.vl-site .vl-prof--spotlight .vl-profil--mini .vl-profil__id { flex: 1 1 auto; min-width: 0; }
.vl-site .vl-prof--spotlight .vl-profil--mini .trk_profile_tel_container { margin: 0; padding: 0; flex: 0 0 auto; }
.vl-site .vl-prof--spotlight .vl-profil--mini .vl-profil__cta { width: auto; min-width: 8rem; }
/* badge « En ligne » : masqué dans les MINI-rangées (avatar 56px → la pastille absolue
   déborderait en blob) ; la vedette (star) garde son badge sur sa grande image. */
.vl-site .vl-prof--spotlight .vl-profil--mini .vl-profil__live { display: none; }
@media (min-width: 760px) {
  .vl-site .vl-prof--spotlight .vl-profils { grid-template-columns: 1.1fr 1fr !important; align-items: start; }
}

/* ---- PROFILS : modificateurs (traitement CTA / photo) --------------------- */
/* module B : CTA d'appel en CAPSULE pleine largeur (forme distincte) — le fond reste
   l'aplat accent INCHANGÉ. Plus de variante « ghost »/transparente : sur une palette
   claire, color:var(--accent-ink) (#fff) sur fond transparent = texte BLANC invisible
   (bug 06-09). Le CTA d'appel Numtour reste TOUJOURS un bouton plein accent,
   intrinsèquement contrasté (paire --accent / --accent-ink), quelle que soit la palette. */
.vl-pmod--b .vl-profil__cta { border-radius: var(--radius-pill); }
.vl-pmod--c .vl-profil__img { aspect-ratio: 1/1; }

/* ════════════════════ AFFILIÉS — 6 familles structurelles ═══════════════════
   `.vl-aff` base = grid 1 col. Marqueur de score commun .vl-affscore (pastille mono). */
.vl-affscore { font-family: var(--font-mono); font-weight: 700; font-size: 1.15rem; color: var(--accent-strong); line-height: 1; white-space: nowrap; }
.vl-affscore small { font-size: .62em; color: var(--ink-soft); font-weight: 600; }
.vl-afflogo--big { width: 56px; height: 56px; font-size: 1.2rem; }
.vl-aff__cta { white-space: nowrap; }

/* rows (défaut) : déjà stylé plus haut (.vl-affrow). rien à ajouter. */

/* stacked : cartes empilées verticales, CTA pleine largeur (DÈS mobile) */
.vl-aff--stacked { gap: .9rem; }
.vl-affcard { position: relative; display: grid; gap: .55rem; padding: 1.1rem 1.2rem; background: var(--surface); border: var(--border-w) solid var(--line); border-radius: var(--radius-lg); }
.vl-affcard.vl-affrow--chosen { border-color: var(--accent); border-width: 2px; }
.vl-affcard__head { display: grid; grid-template-columns: auto 1fr auto; gap: .9rem; align-items: center; }
.vl-affcard__id { display: grid; gap: .25rem; }
.vl-affcard__id h3 { font-size: 1.15rem; }

/* banner : n°1 pleine largeur encadré + challengers en liste sobre */
.vl-aff--banner { gap: .9rem; }
.vl-affbanner { position: relative; display: grid; gap: .9rem; padding: 1.3rem; background: var(--surface); border: 2px solid var(--accent); border-radius: var(--radius-lg); }
.vl-affbanner__id { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: center; }
.vl-affbanner__id h3 { font-size: 1.3rem; }
.vl-affbanner__aside { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; }
.vl-affbanner__aside .vl-aff__cta { flex: 1 1 auto; justify-content: center; min-width: 9rem; }
.vl-aff__rest { display: grid; gap: .55rem; }
.vl-afflite { display: grid; grid-template-columns: auto 1fr auto auto; gap: .8rem; align-items: center; padding: .75rem .9rem; background: var(--surface); border: var(--border-w) solid var(--line); border-radius: var(--radius); }
.vl-afflite__main { display: grid; gap: .15rem; min-width: 0; }
.vl-afflite__main b { font-size: 1rem; }
.vl-afflite .vl-affrow__tag { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* podium : carte top-1 dominante + grille des suivants dessous */
.vl-aff--podium { gap: 1rem; }
.vl-affpod__top { position: relative; display: grid; justify-items: center; text-align: center; gap: .5rem; padding: 1.4rem 1.2rem; background: var(--surface); border: 2px solid var(--accent); border-radius: var(--radius-lg); }
.vl-affpod__top h3 { font-size: 1.4rem; }
.vl-affpod__top .vl-affrow__pc { justify-content: center; }
.vl-affpod__top .vl-aff__cta { width: 100%; max-width: 22rem; justify-content: center; }
.vl-affpod__grid { display: grid; grid-template-columns: 1fr; gap: .7rem; }
@media (min-width: 560px) { .vl-affpod__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .vl-affpod__grid { grid-template-columns: repeat(3, 1fr); } }
.vl-affpod__cell { display: grid; justify-items: center; text-align: center; gap: .4rem; padding: 1rem; background: var(--surface); border: var(--border-w) solid var(--line); border-radius: var(--radius); }
.vl-affpod__cell .vl-affrow__rank { font-family: var(--font-mono); color: var(--ink-soft); }
.vl-affpod__cell .vl-aff__cta { width: 100%; justify-content: center; }

/* table : mini-tableau comparatif (en-tête + rangées en grille) */
.vl-aff--table { display: grid; gap: 0; border: var(--border-w) solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.vl-afftable__head, .vl-afftable__row { display: grid; grid-template-columns: 2fr auto auto; gap: .7rem; align-items: center; padding: .8rem 1rem; }
.vl-afftable__head { background: var(--surface-2); font-family: var(--font-mono); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); }
.vl-afftable__h-atout { display: none; }
.vl-afftable__row { border-top: var(--border-w) solid var(--line); background: var(--surface); }
.vl-afftable__row.vl-affrow--chosen { border-left: 3px solid var(--accent); }
.vl-afftable__nom { display: flex; align-items: center; gap: .6rem; min-width: 0; }
.vl-afftable__nom b { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vl-afftable__atout { display: none; color: var(--ink-soft); font-size: var(--fs-sm); }
@media (min-width: 700px) {
  .vl-afftable__head, .vl-afftable__row { grid-template-columns: 1.6fr auto 2fr auto; }
  .vl-afftable__h-atout, .vl-afftable__atout { display: block; }
}

/* logos : annuaire aligné logo + nom + score + CTA, très scannable */
.vl-aff--logos { gap: .5rem; }
.vl-afflogos__row { display: grid; grid-template-columns: auto 1fr auto auto; gap: .8rem; align-items: center; padding: .8rem 1rem; background: var(--surface); border: var(--border-w) solid var(--line); border-radius: var(--radius); }
.vl-afflogos__row.vl-affrow--chosen { border-color: var(--accent); }
.vl-afflogos__id { display: grid; gap: .15rem; min-width: 0; }
.vl-afflogos__id b { font-size: 1.02rem; }
.vl-afflogos__id .vl-affrow__tag { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---- AFFILIÉS : modificateurs (marqueur de score) ------------------------- */
/* a = anneau (défaut, score_ring) · b/c = pastille mono (.vl-affscore, déjà émis par le rendu) */
.vl-afmod--c .vl-aff__cta { border-radius: 0; }

/* SÉCURITÉ MOBILE TRÈS ÉTROIT (≤380px) : les rangées denses (logos/afflite/banner)
   passent le CTA sous le nom pour garantir 0 overflow à 320/360px (UX_MOBILE). */
@media (max-width: 380px) {
  .vl-afflogos__row, .vl-afflite { grid-template-columns: auto 1fr auto; }
  .vl-afflogos__row .vl-aff__cta, .vl-afflite .vl-aff__cta { grid-column: 1 / -1; justify-content: center; }
  .vl-affbanner__aside .vl-aff__cta { min-width: 0; }
}

/* =====================================================================
   SQUELETTES R · S · T — heros & classements
   ===================================================================== */

/* ---------- HERO R — DIRECTORY / PREMIER VERRE (clair, sobre) ------- */
/* MOBILE-FIRST : texte full-width mobile, max-width editorial sur desktop. */
.vl-hero--directory { padding-top: clamp(2.4rem,1rem+4vw,4.5rem); padding-bottom: var(--section-y); }
.vl-hero--directory .vl-display { margin: .8rem 0 1.2rem; max-width: 22ch; }
.vl-hero--directory .vl-hero__lead { max-width: 52ch; }
.vl-hero--directory .vl-hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }

/* ---------- HERO S — LANDING (panneau spotlight sombre, H1 géant centré) ----
   ROBUSTESSE TOUTES PALETTES (incident 06-09 flozen) : le fond et TOUT le texte
   dérivent des jetons --spot-bg / --spot-ink (config_to_vars), qui valent toujours
   « la plus sombre » / « la plus claire » du couple bg/ink. Donc fond sombre +
   texte clair GARANTIS, qu'on soit sur une palette claire (paper-green) OU sombre
   (noir-rose). Plus jamais var(--ink)/var(--bg) qui s'inversent selon la famille
   → fini la bande crème sur site noir et les éléments couleur-sur-même-couleur.
   MOBILE-FIRST : min-height 100svh (svh = unités safe mobile), tout centré. */
.vl-hero--landing {
  background: var(--spot-bg); color: var(--spot-ink);
  min-height: 100svh; min-height: 100vh;        /* fallback : vh si svh absent */
  display: grid; align-items: center;
  padding-block: clamp(4rem,2rem+6vw,8rem);
}
.vl-hero--landing .vl-eyebrow { color: var(--accent); }
.vl-hero--landing .vl-wrap { display: grid; justify-items: center; text-align: center; gap: 1.4rem; }
.vl-lhero__h1 {
  font-family: var(--font-head); font-weight: var(--weight-head);
  font-size: clamp(3rem,1rem+9vw,8rem); line-height: .92;
  letter-spacing: var(--tracking-head); text-transform: var(--case-head);
  color: var(--spot-ink); max-width: 15ch;
}
/* H1 des héros VARIANT + landing (impact A / poster C sur la home) : leur H1 porte
   .vl-display dont la couleur par défaut = var(--ink) → ink-sur-spot-bg illisible.
   On force --spot-ink (clair) pour garantir le contraste sur toute palette. */
.vl-hero--landing .vl-display { color: var(--spot-ink); }
.vl-hero--landing .vl-hero__lead { color: color-mix(in srgb, var(--spot-ink) 70%, transparent); font-size: var(--fs-lead); max-width: 52ch; }
.vl-hero--landing .vl-hero__meta { color: color-mix(in srgb, var(--spot-ink) 62%, transparent); }
.vl-hero--landing .vl-hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.vl-hero--landing .vl-btn--ghost { background: transparent; border-color: color-mix(in srgb, var(--spot-ink) 35%, transparent); color: var(--spot-ink); }
.vl-hero--landing .vl-btn--ghost:hover { border-color: var(--spot-ink); background: color-mix(in srgb, var(--spot-ink) 12%, transparent); }
.vl-lhero__counters { display: flex; flex-wrap: wrap; gap: 1.2rem 2.4rem; justify-content: center; margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid color-mix(in srgb, var(--spot-ink) 20%, transparent); }
.vl-lhero__counter { text-align: center; }
.vl-lhero__counter b { display: block; font-family: var(--font-head); font-size: clamp(1.8rem,1.2rem+2vw,2.8rem); font-weight: var(--weight-head); color: var(--accent); line-height: 1; }
.vl-lhero__counter span { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .09em; color: color-mix(in srgb, var(--spot-ink) 58%, transparent); }

/* HÉROS VARIANT + landing (impact A / poster C, home) : contenu peu dense → le
   plein écran 100vh laissait ~115px de vide nav→eyebrow. On supprime le 100vh et
   on aligne en haut avec un padding mesuré. Le squelette S DÉDIÉ (`.vl-hero--landing`
   SEUL, sans classe variante) GARDE son plein écran rempli (H1 géant + compteurs).
   Sélecteur à 2 classes = spécificité > règle de base → override propre. */
.vl-hero--impact.vl-hero--landing,
.vl-hero--poster.vl-hero--landing {
  min-height: auto;
  align-items: start;
  padding-block: clamp(2.6rem,1.6rem+4vw,5rem);
}

/* ---------- HERO T — SIDEBAR (sombre étendu, H1 en bas) ------------- */
/* MOBILE-FIRST : bloc sombre pleine largeur, H1 aligné gauche mobile. */
/* Même robustesse que landing : panneau spotlight (sombre/clair garantis) au lieu
   de var(--ink)/var(--bg) qui s'inversent si T venait à être tiré sur une palette
   sombre. No-op visuel sur les palettes claires (--spot-bg == --ink). */
.vl-hero--sidebar { background: var(--spot-bg); color: var(--spot-ink); padding-block: clamp(2.4rem,1.5rem+4vw,5rem) clamp(1.8rem,1rem+2vw,3rem); }
/* PANNEAU SOMBRE sur palette CLAIRE (spot-bg == --ink) : TOUT le texte du hero doit
   passer en --spot-ink (clair), sinon les jetons de page (--ink, --ink-soft,
   --accent-strong, --accent), qui sont SOMBRES sur une palette claire, tombent en
   sombre-sur-sombre (incident 06-09 : H1 1:1, eyebrow/verify/maj invisibles). On
   SCOPE chaque texte sous `.vl-hero--sidebar X` (0,2,0) pour BATTRE le reset de base
   `.vl-site h1` (0,1,1) et les jetons propres des enfants (verify, updated, author). */
.vl-hero--sidebar .vl-eyebrow { color: var(--spot-ink); }
.vl-hero--sidebar .vl-sbar__h1 {
  font-family: var(--font-head); font-weight: var(--weight-head);
  font-size: clamp(2.2rem,1.2rem+4vw,4.2rem); line-height: 1.05;
  letter-spacing: var(--tracking-head); text-transform: var(--case-head);
  color: var(--spot-ink); margin: .8rem 0 1.2rem; max-width: 20ch;
}
.vl-hero--sidebar .vl-hero__lead { color: color-mix(in srgb, var(--spot-ink) 68%, transparent); max-width: 52ch; }
.vl-hero--sidebar .vl-hero__meta { color: color-mix(in srgb, var(--spot-ink) 55%, transparent); margin-top: 1rem; }
/* méta (auteur inline + date de MAJ) : leurs jetons propres sont sombres → on les
   force en --spot-ink (pleine ou atténuée) pour rester lisibles sur le panneau sombre. */
.vl-hero--sidebar .vl-author__name-link,
.vl-hero--sidebar .vl-verify,
.vl-hero--sidebar .vl-verify svg,
.vl-hero--sidebar .vl-updated time { color: var(--spot-ink); }
.vl-hero--sidebar .vl-updated,
.vl-hero--sidebar .vl-updated svg { color: color-mix(in srgb, var(--spot-ink) 70%, transparent); }
.vl-hero--sidebar .vl-hero__cta { margin-top: 1.4rem; }
.vl-hero--sidebar .vl-btn { background: var(--accent); color: var(--accent-ink); }

/* ---------- CLASSEMENT R — FIGUREGRID (grille photo figures + scrim) - */
/* MOBILE-FIRST : 1 colonne → 2 col → 3 col selon l'espace (auto-fill). */
.vl-rank-figuregrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px),1fr)); gap: var(--gutter); }
.vl-fig { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: var(--border-w) solid var(--line); }
.vl-fig__img { aspect-ratio: 4/5; display: block; width: 100%; object-fit: cover; border-radius: 0; border: 0; }
/* scrim : linear-gradient = autorisé par CDC (seul radial-gradient est interdit). */
.vl-fig__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 58%); pointer-events: none; }
.vl-fig__cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.1rem .9rem .8rem; color: #fff; display: grid; gap: .35rem; }
.vl-fig__n { font-family: var(--font-mono); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; opacity: .78; }
.vl-fig__name { font-family: var(--font-head); font-weight: var(--weight-h); font-size: 1.15rem; line-height: 1.2; }
.vl-fig__cap .vl-chip { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.24); font-size: .7rem; }
.vl-fig__cap .vl-rating b { color: #fff; }
.vl-fig__cap .vl-rating span { color: rgba(255,255,255,.65); }

/* ---------- CLASSEMENT S — TALLYTABLE (table simple landing) --------- */
/* MOBILE-FIRST : overflow-x sur le conteneur, min-width sur la table. */
.vl-rank-tally { overflow-x: auto; border: var(--border-w) solid var(--line); border-radius: var(--radius); -webkit-overflow-scrolling: touch; }
.vl-ttbl { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); min-width: 440px; }
.vl-ttbl thead th { text-align: left; font-family: var(--font-mono); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); font-weight: 600; padding: .75rem 1rem; border-bottom: var(--border-w) solid var(--line-strong); background: var(--surface-2); }
.vl-ttbl tbody td { padding: .8rem 1rem; border-bottom: var(--border-w) solid var(--line); vertical-align: middle; }
.vl-ttbl tbody tr:last-child td { border-bottom: 0; }
.vl-ttbl tbody tr:hover { background: color-mix(in srgb, var(--accent) 7%, var(--surface)); }
.vl-ttbl__n { font-family: var(--font-mono); font-weight: 700; color: var(--accent-strong); width: 2.5rem; }
.vl-ttbl__name b { font-family: var(--font-head); font-weight: var(--weight-h); font-size: 1rem; display: block; }
.vl-ttbl__name span { font-size: var(--fs-xs); color: var(--ink-faint); }
.vl-ttbl__score { font-family: var(--font-mono); font-weight: 700; color: var(--ink); width: 4rem; }

/* ---------- CLASSEMENT T — VCARD (fiches lieu avec jauge score) ------- */
/* MOBILE-FIRST : photo 72px mobile → 108px sur écrans larges. */
.vl-rank-vcard { display: grid; gap: 0; border-top: var(--border-w) solid var(--line); }
.vl-vcard {
  display: grid; grid-template-columns: 72px 1fr; gap: .8rem 1.2rem; align-items: start;
  padding: 1.1rem 0 1.1rem .6rem; border-bottom: var(--border-w) solid var(--line);
  border-left: 3px solid transparent; transition: border-color .14s ease;
}
.vl-vcard:hover { border-left-color: var(--accent); }
.vl-vcard__media { }
.vl-vcard__img { width: 72px; aspect-ratio: 1/1; border-radius: var(--radius); display: block; }
.vl-vcard__body { display: grid; gap: .45rem; }
.vl-vcard__top { display: flex; align-items: center; gap: .7rem; }
.vl-vcard__n { font-family: var(--font-mono); font-weight: 700; font-size: var(--fs-xs); color: var(--ink-faint); flex: none; width: 1.5rem; }
.vl-vcard__bar { flex: 1; height: 4px; background: var(--line); border-radius: 2px; overflow: hidden; min-width: 0; }
.vl-vcard__fill { height: 100%; background: var(--accent); border-radius: 2px; }
.vl-vcard__score { font-family: var(--font-mono); font-weight: 700; font-size: var(--fs-sm); color: var(--accent-strong); flex: none; }
.vl-vcard__name { font-family: var(--font-head); font-weight: var(--weight-h); font-size: 1.05rem; }
.vl-vcard__desc { color: var(--ink-soft); font-size: var(--fs-sm); max-width: 50ch; }
@media (min-width: 600px) { .vl-vcard { grid-template-columns: 108px 1fr; } .vl-vcard__img { width: 108px; } }

/* ---------- LAYOUT T — SIDEBAR 2 colonnes 65/35 -------------------- */
/* MOBILE-FIRST : 1 colonne (mobile) → grille 65/35 à partir de 960px.
   Le .vl-sidebar est sticky en desktop, remonte en dessous des sections
   principales sur mobile (ordre visuel CSS contrôlé par `order`). */
.vl-site--T .vl-sidebar { display: block; padding: var(--section-y) 0; }
@media (min-width: 960px) {
  .vl-site--T .vl-flow {
    display: grid;
    grid-template-columns: 65fr 35fr;
    align-items: start;
    gap: 0 clamp(1.5rem,1rem+2vw,2.6rem);
  }
  .vl-site--T .vl-flow .vl-flow__i { grid-column: 1; }
  .vl-site--T .vl-sidebar {
    grid-column: 2; grid-row: 1 / 100;
    position: sticky; top: 0; max-height: 100svh; max-height: 100vh;
    overflow-y: auto; padding: 0;
  }
}
@media (max-width: 959px) {
  .vl-site--T .vl-sidebar { border-top: var(--border-w) solid var(--line); padding-top: var(--section-y); }
}

/* Surcouche prod : branchement des VRAIES photos dans les slots du bundle.
   Le wrapper .vl-hatch garde le dimensionnement (aspect-ratio/width/radius) ;
   l'<img.vl-photo> le remplit en object-fit:cover. Aucun dégradé/glow ajouté. */
.vl-site .vl-hatch { position: relative; overflow: hidden; }
.vl-site .vl-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border-radius: inherit;
}

/* Contact d'un lieu : adresse + téléphone (local SEO + tracking ultérieur) */
.vl-site .vl-place-contact { display: flex; flex-wrap: wrap; gap: .35rem 1rem; margin: .55rem 0 .2rem; font-size: var(--fs-sm); }
.vl-site .vl-pc-addr, .vl-site .vl-pc-tel { display: inline-flex; align-items: center; gap: .4em; line-height: 1.3; }
.vl-site .vl-pc-addr { color: var(--ink-soft); }
.vl-site .vl-pc-addr svg, .vl-site .vl-pc-tel svg { width: 1em; height: 1em; flex: none; color: var(--accent-strong); }
/* tél = vraie cible tactile (appel) : hauteur ≥ 44px sur mobile (UX_MOBILE §1) */
.vl-site .vl-pc-tel { color: var(--accent-strong); font-weight: 600; font-family: var(--font-mono); min-height: var(--tap); }
.vl-site .vl-pc-tel:hover { color: var(--accent); }
@media (min-width: 600px) { .vl-site .vl-pc-tel { min-height: 0; } }
.vl-site .vl-rank-table__name .vl-tel-inline { display: inline-flex; margin-top: .2rem; font-size: var(--fs-xs); }

/* DOM ≠ visuel (STRUCTURE.pdf p.3/p.5) : le contenu SEO est tôt dans le DOM,
   l'ordre d'AFFICHAGE est piloté par `order` sur chaque bloc. */
.vl-site .vl-flow { display: flex; flex-direction: column; }

/* Plus d'air dans les encarts stats + offre */
.vl-site .vl-stats { padding: clamp(2.1rem, 1.4rem + 2.6vw, 3.2rem); gap: 1.6rem 2rem; }
.vl-site .vl-offer__body, .vl-site .vl-offer__side { padding: clamp(2rem, 1.4rem + 2.4vw, 3rem); }

/* FIX contraste CTA : le reset `.vl-site a{color:inherit}` (spécif. 0,1,1) écrasait
   `.vl-btn{color:var(--accent-ink)}` (0,1,0) → texte sombre sur fond accent. On rétablit
   la bonne couleur de contraste sur les liens-boutons (sauf ghost qui garde l'encre). */
.vl-site a.vl-btn:not(.vl-btn--ghost):not(.vl-btn--ink) { color: var(--accent-ink); }
.vl-site a.vl-btn--ghost { color: var(--ink); }
.vl-site a.vl-btn--ink { color: var(--bg); }
/* CTA d'appel d'un profil (Numtour) = bouton PLEIN accent. On RÉAFFIRME ici la paire
   contrastée bg+ink ENSEMBLE (jamais l'une sans l'autre) et on fait HÉRITER le libellé
   interne `.call_tel` de la couleur du bouton → la couleur du texte ne peut JAMAIS se
   désynchroniser du fond. Sans ça, une variante qui touchait le fond (ex. vl-pmod--b
   « ghost » transparent) laissait color:var(--accent-ink) = #fff → texte invisible sur
   les palettes claires (incident 06-09). Family-agnostique : --accent / --accent-ink
   sont une paire contrastée par construction sur TOUTE palette (claire comme sombre). */
.vl-site .vl-profil__cta { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.vl-site .vl-profil__cta .call_tel { color: inherit; }

/* Header MOBILE-FIRST (UX_MOBILE §4) : compact ≤ 64px sur mobile (cible du chantier).
   On garde la même spécificité que les media queries pour que le réglage gagne.
   `min-height` (pas padding-block) → la hauteur réelle reste prévisible et ≤ 64px. */
.vl-site .vl-header__in { padding-block: .35rem; gap: .8rem; align-items: center; min-width: 0; min-height: 56px; }
.vl-site .vl-header__cta { margin-left: auto; flex: none; }
@media (min-width: 861px) {
  /* desktop : on peut donner plus d'air, la contrainte ≤ 64px ne vise que le mobile */
  .vl-site .vl-header__in { padding-block: .8rem; gap: 1.4rem; min-height: 64px; }
  .vl-site .vl-nav { gap: 1.3rem; }
}

/* Hero unique propre (texte, gauche, CTA, auteur inline) */
.vl-site .vl-hero--main { padding-block: clamp(2.2rem, 1.4rem + 3vw, 4.2rem); border-bottom: var(--border-w) solid var(--line); }
.vl-site .vl-hero--main .vl-hero__col { max-width: 780px; display: grid; gap: 1.1rem; }
.vl-site .vl-hero--main .vl-display { margin: 0; }
/* CTA du hero : empilés et pleine largeur sur mobile (UX_MOBILE §3 : un CTA principal
   atteignable au pouce), côte à côte dès qu'il y a la place. */
.vl-site .vl-hero__cta { display: flex; flex-direction: column; gap: .6rem; margin-top: .4rem; align-items: stretch; }
.vl-site .vl-hero__cta .vl-btn { width: 100%; }
@media (min-width: 600px) {
  .vl-site .vl-hero__cta { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .vl-site .vl-hero__cta .vl-btn { width: auto; }
}
.vl-site .vl-hero--main .vl-hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; margin-top: .4rem; }

/* Hero LANDING (home/région) en variante impact/poster : pas de statline ni de
   photo de lieu — une colonne texte + CTA, calée sur l'identité de l'archétype. */
.vl-site .vl-hero--landing .vl-hero__col { max-width: 820px; display: grid; gap: 1.1rem; }
.vl-site .vl-hero--landing .vl-display { margin: 0; }
.vl-site .vl-hero--landing .vl-hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; margin-top: .4rem; }

/* Bloc TEXTE SEO : pleine largeur (pas une colonne étriquée) */
.vl-site .vl-seo.vl-prose { max-width: none; }
.vl-site .vl-seo h2 { margin: 1.6rem 0 .7rem; }
.vl-site .vl-seo h2:first-child { margin-top: 0; }
.vl-site .vl-seo p { color: var(--ink-soft); margin-top: 1rem; }
/* desktop : mise en colonnes type magazine, les H2 enjambent toute la largeur */
@media (min-width: 980px) {
  .vl-site .vl-seo { columns: 2; column-gap: 2.8rem; }
  .vl-site .vl-seo h2 { column-span: all; }
  .vl-site .vl-seo p { break-inside: avoid; margin-top: 0; margin-bottom: 1rem; }
}

/* Footer léger : nav de site (le maillage vit dans la section dédiée, pas ici).
   MOBILE (≤760px) : marque puis nav empilées, 1 colonne propre. Le DESKTOP est piloté
   PAR FAMILLE (components.css : grid/columns/rail/split/stack/minimal/band) → on ne
   force PLUS ici une disposition flex/colonne qui écrasait toutes les familles (la nav
   se retrouvait collée au bord droit, identique sur toutes les variantes). */
@media (max-width: 760px) {
  .vl-site .vl-footer__grid { display: flex; flex-direction: column; gap: 1.4rem; }
  .vl-site .vl-footer__nav { display: flex; flex-direction: column; gap: .45rem; align-items: flex-start; }
}
.vl-site .vl-footer__nav a { color: var(--ink-soft); font-size: var(--fs-sm); }
.vl-site .vl-footer__nav a:hover { color: var(--accent-strong); }

/* Grille de profils (cdlabonne + Numtour) */
/* Grille de profils : nombre VARIABLE par site (4 à 16+). minmax(min(100%,170px),1fr)
   → de 1 colonne (≤340px) à autant que la place permet, SANS jamais déborder ni
   laisser un trou ; toute cardinalité (5, 7, 13…) se range proprement (UX_MOBILE §7). */
.vl-site .vl-profils { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 170px), 1fr)); gap: var(--gutter); }
.vl-site .vl-profil { display: flex; flex-direction: column; border: var(--border-w) solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); box-shadow: var(--shadow); }
.vl-site .vl-profil__media { position: relative; }
.vl-site .vl-profil__img { aspect-ratio: 4/5; }
/* Badge « En ligne » : pastille aplat (AUCUN box-shadow coloré / glow — interdit dur
   du cahier des charges §4). Le point pulse en OPACITÉ (pas en halo box-shadow). */
.vl-site .vl-profil__live { position: absolute; top: .55rem; left: .55rem; display: inline-flex; align-items: center;
  gap: .4em; background: var(--ok); color: var(--ok-ink); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .02em;
  padding: .22rem .6rem; border-radius: var(--radius-pill); max-width: calc(100% - 1.1rem);
  white-space: nowrap; }   /* 1 ligne, pastille discrète : ne masque jamais la photo (06-09) */
.vl-site .vl-profil__live::before { content: ""; width: .5em; height: .5em; border-radius: 50%; background: #fff;
  flex: none; animation: vl-livepulse 1.8s ease-in-out infinite; }
@keyframes vl-livepulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) { .vl-site .vl-profil__live::before { animation: none; } }
/* Carte profil cliquable (home : dernières inscrites → page ville) */
.vl-site a.vl-profil { transition: transform .15s ease, box-shadow .15s ease; }
.vl-site a.vl-profil:hover { transform: translateY(-3px); box-shadow: var(--shadow-hard); }
.vl-site .vl-profil--link .vl-profil__cta { margin-top: auto; }
.vl-site .vl-profil__b { padding: .8rem .85rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.vl-site .vl-profil__name { font-family: var(--font-head); font-weight: var(--weight-h); font-size: 1.05rem; }
.vl-site .vl-profil__loc { display: inline-flex; align-items: center; gap: .35em; color: var(--ink-soft); font-size: var(--fs-sm); }
.vl-site .vl-profil__loc svg { width: 1em; height: 1em; flex: none; color: var(--accent-strong); }
.vl-site .vl-profil .trk_profile_tel_container { margin-top: auto; padding-top: .6rem; }
.vl-site .vl-profil__cta { width: 100%; justify-content: center; gap: .5em; white-space: nowrap; min-width: 0; }
.vl-site .vl-profil__cta svg { width: 1.1em; height: 1.1em; flex: none; }
/* le libellé peut être plus long que la carte étroite (320px) : on l'empêche de
   déborder (min-width:0 + troncature propre) plutôt que de pousser la mise en page. */
.vl-site .vl-profil__cta .call_tel { min-width: 0; overflow: hidden; text-overflow: ellipsis; }

/* Accordéon « Avis Google » par lieu */
.vl-site .vl-revacc { margin-top: .6rem; border-top: var(--border-w) solid var(--line); }
.vl-site .vl-revacc > summary { cursor: pointer; list-style: none; display: flex; align-items: center; gap: .45rem; min-height: var(--tap); padding: .55rem 0; font-size: var(--fs-sm); font-weight: 600; color: var(--accent-strong); }
.vl-site .vl-revacc > summary::-webkit-details-marker { display: none; }
.vl-site .vl-revacc > summary svg { width: 1em; height: 1em; }
.vl-site .vl-revacc__chev { margin-left: auto; transition: transform .2s; }
.vl-site .vl-revacc[open] .vl-revacc__chev { transform: rotate(90deg); }
.vl-site .vl-revacc__b { display: grid; gap: .65rem; padding-bottom: .7rem; }
.vl-site .vl-rev { margin: 0; padding-left: .8rem; border-left: 2px solid var(--line-strong); }
.vl-site .vl-rev p { font-size: var(--fs-sm); color: var(--ink); font-style: italic; margin: 0; }
.vl-site .vl-rev cite { display: flex; align-items: center; gap: .4rem; font-size: var(--fs-xs); color: var(--ink-soft); font-style: normal; margin-top: .3rem; }
.vl-site .vl-rev .vl-stars svg { width: .85em; height: .85em; }

/* POI : idées de rendez-vous / balade */
.vl-site .vl-rdv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr)); gap: var(--gutter); }
.vl-site .vl-rdv { border: var(--border-w) solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.vl-site .vl-rdv__img { aspect-ratio: 16/10; }
.vl-site .vl-rdv__b { padding: .9rem 1rem; display: grid; gap: .45rem; }
.vl-site .vl-rdv__desc { color: var(--ink-soft); font-size: var(--fs-sm); }
/* POI gratuit / plein air SANS photo : en-tête texte sobre (jamais le placeholder hachuré),
   accent en aplat, lisible sur les familles claires ET sombres (tokens uniquement). */
.vl-site .vl-rdv--txt { background: var(--surface); }
.vl-site .vl-rdv__noimg { display: flex; align-items: center; gap: .5rem; padding: .85rem 1rem;
  border-bottom: var(--border-w) solid var(--line); background: var(--surface-2);
  color: var(--ink-soft); font-size: var(--fs-sm); font-weight: 600; }
.vl-site .vl-rdv__noimg svg { width: 1.15em; height: 1.15em; flex: none; color: var(--accent); }
.vl-site .vl-rdv__free { display: inline-flex; align-items: center; padding: .14rem .55rem;
  border-radius: var(--radius); background: var(--accent); color: var(--accent-ink);
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .01em; }

/* Nom d'auteur cliquable (→ /auteur/) */
.vl-site .vl-author__name-link { color: inherit; }
.vl-site .vl-author__name-link:hover { color: var(--accent-strong); text-decoration: underline; }

/* Maillage « Continuer la visite » : liens en CHIPS horizontales (pas une liste verticale) */
.vl-site .vl-mesh__col ul { display: flex; flex-wrap: wrap; gap: .5rem; }
.vl-site .vl-mesh__col li { margin: 0; }
.vl-site .vl-mesh__col a { display: inline-flex; align-items: center; min-height: var(--tap);
  border: var(--border-w) solid var(--line); border-radius: var(--radius-pill);
  padding: .5rem .9rem; background: var(--surface); font-size: var(--fs-sm); }
.vl-site .vl-mesh__col a:hover { border-color: var(--accent); color: var(--accent-strong); }
.vl-site .vl-mesh__col a svg { display: none; }

/* Logo affilié en image (sinon tuile monogramme) */
.vl-site .vl-afflogo--img { background: #fff; padding: 0; overflow: hidden; }
.vl-site .vl-afflogo--img img { width: 100%; height: 100%; object-fit: contain; padding: 14%; }

/* Pages légales : image (CGU/CGV, confidentialité) */
.vl-site .vl-legal-img { display: block; width: 100%; max-width: 920px; height: auto;
  border: var(--border-w) solid var(--line); border-radius: var(--radius); }

/* Grilles de villes (pages home / région) */
.vl-site .vl-citygrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr)); gap: .6rem; }
.vl-site .vl-citylink { display: flex; align-items: center; gap: .6rem; border: var(--border-w) solid var(--line);
  border-radius: var(--radius); padding: .7rem .9rem; background: var(--surface); }
.vl-site .vl-citylink:hover { border-color: var(--accent); color: var(--accent-strong); }
.vl-site .vl-citylink b { flex: 1; font-weight: 600; }
.vl-site .vl-citylink span { color: var(--ink-faint); font-size: var(--fs-sm); }
.vl-site .vl-citylink svg { width: 1em; height: 1em; flex: none; color: var(--accent-strong); }

/* ── MULTI-NICHES (home generale aiguilleur + passerelle inter-niche) ──────── */
.vl-site .vl-nichecards { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .vl-site .vl-nichecards { grid-template-columns: 1fr 1fr; } }
.vl-site .vl-nichecard { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.1rem 1.2rem; background: var(--surface); display: flex; flex-direction: column; gap: .7rem; }
.vl-site .vl-nichecard__head { display: flex; align-items: center; justify-content: space-between; gap: .6rem; flex-wrap: wrap; }
.vl-site .vl-nichecard__head h2 { margin: 0; font-size: var(--fs-h3, 1.25rem); }
.vl-site .vl-nichecard__lead { margin: 0; color: var(--ink-soft); font-size: var(--fs-sm); }
.vl-site .vl-citygrid--compact { gap: .4rem; grid-template-columns: 1fr; }
.vl-site .vl-citylink--sm { padding: .55rem .7rem; }
.vl-site .vl-section--tight { padding-block: clamp(.8rem, .5rem + 1vw, 1.4rem); }
.vl-site .vl-crossniche { margin: 0; }
.vl-site .vl-crossniche a { display: inline-flex; align-items: center; gap: .4rem; color: var(--accent-strong); font-weight: 600; text-decoration: none; }
.vl-site .vl-crossniche a:hover { text-decoration: underline; }
