/* ============================================================
   HORYOND AGENCY · Direction C « Papier »
   Site stylesheet · globals + components.
   Colours come exclusively from tokens (tokens.css + the
   :root supplement below). Radius 0, no shadow, no gradient
   (the only gradient lives inside the dither canvas maths).
   ============================================================ */

/* --- Token supplements (values used by the site that are not
       in the drop-in tokens.css · kept here as variables so no
       raw colour is ever hard-coded in a rule). ---------------- */
:root {
  --ho-body:               rgba(6, 8, 10, 0.72);  /* body copy floor, meets the .72 grey floor */
  --ho-card-body:          rgba(6, 8, 10, 0.72);  /* service / method card copy */
  --ho-on-voltage-border:  rgba(239, 237, 230, 0.42); /* chip outline on blue */
  --ho-on-voltage-rule:    rgba(239, 237, 230, 0.30); /* divider on blue */
  --ho-scrim:              rgba(6, 8, 10, 0.06);  /* nav scrim on scroll */
}

/* ============================================================
   RESET / GLOBALS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ho-paper);
  color: var(--ho-ink);
  font-family: var(--ho-font-display);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, canvas { max-width: 100%; }

a { color: var(--ho-voltage); text-decoration: none; }
a:hover { color: var(--ho-signal-hover); }

::selection { background: var(--ho-voltage); color: var(--ho-paper); }

:focus-visible {
  outline: 2px solid var(--ho-voltage);
  outline-offset: 2px;
}

h1, h2, h3 { margin: 0; text-wrap: balance; overflow-wrap: break-word; hyphens: manual; }
p { margin: 0; }

@keyframes hoBlink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
@keyframes hoMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Kill EVERYTHING that moves under reduced-motion. */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Tighter page margin on small screens (36 → 20). */
@media (max-width: 720px) { :root { --ho-margin: 20px; } }

/* ============================================================
   PRIMITIVES
   ============================================================ */
.ho-wrap  { max-width: var(--ho-container); margin: 0 auto; }
.ho-wrap--wide   { max-width: 1340px; }
.ho-wrap--narrow { max-width: 1180px; }

.ho-section {
  padding: var(--ho-section-y) var(--ho-margin);
  border-bottom: 1px solid var(--ho-rule-major);
}
.ho-section--flush { padding-bottom: 0; }

/* Blue eyebrow plaque label */
.ho-eyebrow {
  display: block;
  font: 700 var(--ho-mono-label) / 1 var(--ho-font-mono);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ho-voltage);
}
.ho-eyebrow--onblue { color: var(--ho-on-voltage-soft); }

/* Micro / meta labels (grey floor) */
.ho-meta {
  font: 500 var(--ho-mono-label) / 1.5 var(--ho-font-mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ho-label);
}

/* Headings · phrase case, Archivo condensed display */
.ho-h1 {
  font-family: var(--ho-font-display);
  font-variation-settings: 'wdth' 104;
  font-weight: 900;
  font-size: var(--ho-fs-h1);
  line-height: .86;
  letter-spacing: -.032em;
}
.ho-h2 {
  font-family: var(--ho-font-display);
  font-variation-settings: 'wdth' 104;
  font-weight: 900;
  font-size: var(--ho-fs-h2);
  line-height: .94;
  letter-spacing: -.028em;
}
.ho-h2--onblue { color: var(--ho-on-voltage); }
.ho-h3 {
  font-family: var(--ho-font-display);
  font-variation-settings: 'wdth' 104;
  font-weight: 900;
  font-size: var(--ho-fs-h3);
  line-height: 1;
  letter-spacing: -.024em;
}

.ho-lead {
  font: 400 var(--ho-fs-lead)/1.5 var(--ho-font-display);
  color: var(--ho-body);
  max-width: 66ch;
  text-wrap: pretty;
}

/* Buttons · plaques (mono, uppercase, inversion on hover in 100ms) */
.ho-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 26px;
  font: 700 12px/1 var(--ho-font-mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  transition: background var(--ho-dur-1) linear, color var(--ho-dur-1) linear;
}
.ho-btn--solid  { background: var(--ho-voltage); color: var(--ho-on-voltage); }
.ho-btn--solid:hover  { background: var(--ho-ink); color: var(--ho-on-voltage); }
.ho-btn--ghost  { background: transparent; color: var(--ho-ink); border: 1px solid var(--ho-ink); }
.ho-btn--ghost:hover  { background: var(--ho-ink); color: var(--ho-on-voltage); }
.ho-btn--paper  { background: var(--ho-paper); color: var(--ho-voltage); }
.ho-btn--paper:hover  { background: var(--ho-ink); color: var(--ho-on-voltage); }
.ho-btn--sm { padding: 11px 18px; font-size: 11px; }

/* Text link with mono arrow */
.ho-link {
  font: 700 var(--ho-mono-label) / 1 var(--ho-font-mono);
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* Image well + dither canvas */
.ho-well {
  position: relative;
  background: var(--ho-paper-shade);
  overflow: hidden;
}
.ho-well canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.ho-well--deep { background: var(--ho-voltage-deep); }
.ho-fig {
  position: absolute;
  font: 500 9px/1 var(--ho-font-mono);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ho-label);
}
.ho-fig--tl { top: 14px; left: 14px; }
.ho-fig--br { bottom: 14px; right: 16px; color: var(--ho-on-voltage-soft); }
.ho-corner {
  position: absolute;
  width: 14px;
  height: 14px;
}
.ho-corner--tr { top: 12px; right: 12px; border-top: 1px solid var(--ho-voltage); border-right: 1px solid var(--ho-voltage); }
.ho-corner--bl { bottom: 12px; left: 12px; border-bottom: 1px solid var(--ho-voltage); border-left: 1px solid var(--ho-voltage); }
/* Libelle du produit courant dans le hero cyclique (bas-droite, encre voltage,
   vert automatique sur le theme Non Profit). Decoratif. */
.ho-hero__prod {
  position: absolute; right: 16px; bottom: 14px; z-index: 2; text-align: right;
  font: 700 clamp(13px, 2.2vw, 16px)/1 var(--ho-font-mono);
  letter-spacing: .14em; text-transform: uppercase; color: var(--ho-voltage);
}

/* ============================================================
   STATUS BAR
   ============================================================ */
.ho-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 28px;
  padding: 0 var(--ho-margin);
  background: var(--ho-voltage);
  color: var(--ho-on-voltage-soft);
  font: 500 9px/1 var(--ho-font-mono);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.ho-status__grp { display: flex; align-items: center; gap: 14px; min-width: 0; }
.ho-status strong { color: var(--ho-on-voltage); font-weight: 500; }
.ho-status__sep { opacity: .6; }
.ho-status__tag { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ho-status__clock { color: var(--ho-on-voltage); font-variant-numeric: tabular-nums; }
.ho-status__blink {
  width: 5px; height: 5px;
  background: var(--ho-on-voltage);
  animation: hoBlink 2.2s steps(1) infinite;
}

/* ============================================================
   NAV
   ============================================================ */
.ho-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 26px;
  height: 60px;
  padding: 0 var(--ho-margin);
  background: var(--ho-paper);
  border-bottom: 1px solid var(--ho-rule-major);
}
.ho-lockup { display: flex; align-items: center; flex: none; color: var(--ho-ink); }
/* Official Horyond Agency lockup (SVG). Never retype the wordmark in HTML. */
.ho-logo { display: block; height: 26px; width: auto; }
.ho-nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  font: 500 var(--ho-mono-label) / 1 var(--ho-font-mono);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.ho-nav__links a { color: var(--ho-label); transition: color var(--ho-dur-1) linear; }
.ho-nav__links a:hover { color: var(--ho-ink); }

/* Services dropdown */
.ho-drop { position: relative; }
.ho-drop__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: -14px;
  min-width: 244px;
  background: var(--ho-paper);
  border: 1px solid var(--ho-rule-major);
  padding: 6px;
  display: none;
  flex-direction: column;
}
.ho-drop:hover .ho-drop__panel,
.ho-drop:focus-within .ho-drop__panel { display: flex; }
.ho-drop__panel a {
  padding: 11px 12px;
  color: var(--ho-label);
  border-left: 2px solid transparent;
  transition: color var(--ho-dur-1) linear, background var(--ho-dur-1) linear, border-color var(--ho-dur-1) linear;
}
.ho-drop__panel a:hover {
  color: var(--ho-ink);
  background: var(--ho-paper-shade);
  border-left-color: var(--ho-voltage);
}
.ho-drop__caret { color: var(--ho-voltage); }

/* Language switch */
.ho-lang { display: flex; align-items: center; gap: 8px; flex: none; }
.ho-lang__btn {
  font: 700 var(--ho-mono-label) / 1 var(--ho-font-mono);
  letter-spacing: .12em;
  color: var(--ho-label);
  cursor: pointer;
  background: none;
  border: 0;
  padding: 4px 2px;
  transition: color var(--ho-dur-1) linear;
}
.ho-lang__btn:hover { color: var(--ho-ink); }
.ho-lang__btn.is-active { color: var(--ho-voltage); }
.ho-lang__sep { width: 1px; height: 11px; background: var(--ho-rule-minor); }

/* Mobile menu toggle */
.ho-burger {
  display: none;
  flex: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--ho-rule-minor); cursor: pointer;
  color: var(--ho-ink);
}

/* ============================================================
   CHROME TACTILE (mobile + tablette, <= 1024px)
   Haut = logo + langue ; bas fixe = burger + CTA (zone pouce) ;
   la feuille de navigation remonte du bas, avec voile.
   Desktop (> 1024px) : inchange (nav du haut + survol).
   ============================================================ */
.ho-mobilebar { display: none; }
.ho-scrim { display: none; }
.ho-sheet__grip { display: none; }

@media (max-width: 1024px) {
  :root { --ho-btmbar-h: 69px; }

  /* Barre du haut : logo a gauche, langue a droite (le reste part en bas).
     .ho-nav repasse en flux normal (position/z-index auto) : sinon son contexte
     d'empilement (sticky z-index:100) piegerait la feuille #nav-links sous le voile. */
  .ho-status { display: none; }
  .ho-nav { position: static; z-index: auto; gap: 16px; justify-content: space-between; }
  .ho-nav__cta { display: none; }
  .ho-burger { display: none; }
  /* Cibles tactiles >= 44px sur les controles restant en haut. */
  .ho-lockup { min-height: 44px; }
  .ho-lang__link { display: inline-flex; align-items: center; min-height: 44px; }

  /* Feuille de navigation : remonte au-dessus de la barre du bas. */
  .ho-nav__links {
    position: fixed; left: 0; right: 0;
    bottom: calc(var(--ho-btmbar-h) + env(safe-area-inset-bottom));
    z-index: 250;
    flex-direction: column; align-items: stretch; gap: 0; flex: none;
    background: var(--ho-paper);
    border-top: 1px solid var(--ho-rule-major);
    padding: 6px var(--ho-margin) 14px;
    max-height: 68vh; overflow-y: auto;
    transform: translateY(115%); visibility: hidden;
    transition: transform var(--ho-dur-3) var(--ho-ease-snap), visibility 0s linear var(--ho-dur-3);
  }
  .ho-nav__links.is-open {
    transform: translateY(0); visibility: visible;
    transition: transform var(--ho-dur-3) var(--ho-ease-snap);
  }
  .ho-nav__links > *:not(.ho-sheet__grip) {
    width: 100%;
    border-bottom: 1px solid var(--ho-rule-minor);
  }
  .ho-nav__links > *:last-child { border-bottom: 0; }
  /* Cibles tactiles >= 44px : le padding est sur l'ANCRE (toute la ligne cliquable),
     pas sur le conteneur .ho-drop. */
  .ho-nav__links > a,
  .ho-nav__links .ho-drop > a {
    display: flex; align-items: center; min-height: 44px; padding: 11px 2px;
  }
  .ho-sheet__grip {
    display: block; width: 42px; height: 4px; flex: none;
    margin: 2px auto 8px; background: var(--ho-rule-minor);
  }
  .ho-drop__panel {
    position: static; display: flex; flex-direction: column;
    border: 0; padding: 6px 0 0 12px; min-width: 0;
  }

  /* Voile derriere la feuille. */
  .ho-scrim {
    display: block; position: fixed; inset: 0; z-index: 240;
    background: rgba(6, 8, 10, .44); border: 0;
    opacity: 0; visibility: hidden;
    transition: opacity var(--ho-dur-3) linear, visibility 0s linear var(--ho-dur-3);
  }
  .ho-scrim.is-open {
    opacity: 1; visibility: visible;
    transition: opacity var(--ho-dur-3) linear;
  }

  /* Barre d'action du bas : burger + CTA appel decouverte (zone pouce). */
  .ho-mobilebar {
    display: flex; align-items: center; gap: 12px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 260;
    padding: 10px var(--ho-margin);
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    background: var(--ho-paper);
    border-top: 1px solid var(--ho-rule-major);
  }
  .ho-mobilebar__menu {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    height: 48px; padding: 0 18px; flex: none;
    background: none; border: 1px solid var(--ho-rule-minor); color: var(--ho-ink);
    font: 700 11px/1 var(--ho-font-mono); letter-spacing: .18em; text-transform: uppercase;
    cursor: pointer;
  }
  .ho-mobilebar__cta { flex: 1; justify-content: center; height: 48px; padding: 0 18px; }

  /* Verrou de defilement quand la feuille est ouverte. position:fixed (avec top =
     -scrollY pose par ho.js) verrouille reellement le fond, y compris iOS Safari. */
  body.ho-navlock { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; }

  /* Le contenu ne passe jamais sous la barre du bas. */
  body { padding-bottom: calc(var(--ho-btmbar-h) + env(safe-area-inset-bottom)); }
}

/* ============================================================
   HERO
   ============================================================ */
.ho-hero { position: relative; border-bottom: 1px solid var(--ho-rule-major); }
.ho-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  align-items: stretch;
}
.ho-hero__text {
  padding: 64px var(--ho-margin) 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
  border-right: 1px solid var(--ho-rule-minor);
}
.ho-hero__plaque {
  align-self: flex-start;
  font: 700 var(--ho-mono-label) / 1 var(--ho-font-mono);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ho-label);
}
.ho-hero__plaque .sq { color: var(--ho-voltage); }
.ho-hero h1 { max-width: 12ch; }
.ho-hero__lead { max-width: 44ch; }
.ho-hero__btns { display: flex; flex-wrap: wrap; gap: 12px; }
.ho-ascii {
  font: 500 12px/1 var(--ho-font-mono);
  letter-spacing: .34em;
  color: var(--ho-voltage);
  overflow: hidden;
  white-space: nowrap;
  min-height: 12px;
}
.ho-hero__well { position: relative; min-height: 420px; }

@media (max-width: 880px) {
  .ho-hero__grid { grid-template-columns: 1fr; }
  /* Sous 880px la grille passe en 1 colonne : le visuel/animation du hero se
     retrouverait SOUS le texte. On le masque partout (accueil, services, blog).
     Le canvas cache ne consomme rien : hero-cycle.js abandonne son boot quand le
     well fait 0x0 (idem au resize), donc aucun rAF ni timer en mobile/tablette. */
  .ho-hero__well { display: none; }
  .ho-hero__text { border-right: 0; padding-top: 48px; }
}

/* ============================================================
   STAT BAND
   ============================================================ */
.ho-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  border-bottom: 1px solid var(--ho-rule-major);
}
.ho-stat { padding: 22px 24px; border-right: 1px solid var(--ho-rule-minor); }
.ho-stat:last-child { border-right: 0; }
.ho-stat__n {
  display: block;
  font-family: var(--ho-font-display);
  font-variation-settings: 'wdth' 112;
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.03em;
}
.ho-stat__n em { font-style: normal; color: var(--ho-voltage); }
.ho-stat__lbl {
  display: block;
  margin-top: 7px;
  font: 500 var(--ho-mono-label) / 1.4 var(--ho-font-mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ho-label);
}

/* ============================================================
   TRUST MARQUEE
   ============================================================ */
.ho-band {
  overflow: hidden;
  border-bottom: 1px solid var(--ho-rule-major);
  background: var(--ho-paper);
}
.ho-band__track {
  display: flex;
  width: max-content;
  animation: hoMarquee 34s linear infinite;
}
.ho-band__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  font: 500 var(--ho-mono-label) / 1 var(--ho-font-mono);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ho-label);
  white-space: nowrap;
}
.ho-band__item::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--ho-voltage);
  flex: none;
}

/* ============================================================
   INTRO STATEMENT
   ============================================================ */
.ho-intro__quote {
  font-family: var(--ho-font-display);
  font-variation-settings: 'wdth' 104;
  font-weight: 900;
  font-size: var(--ho-fs-intro);
  line-height: 1.02;
  letter-spacing: -.026em;
  max-width: 20ch;
}
.ho-intro__quote em { font-style: normal; color: var(--ho-voltage); }
.ho-intro__sub { margin-top: 26px; max-width: 60ch; font: 400 16px/1.65 var(--ho-font-display); color: var(--ho-body); }

/* ============================================================
   SECTION HEADER (shared)
   ============================================================ */
.ho-shead {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.ho-shead h2 { margin-top: 14px; }

/* ============================================================
   SERVICES (card grid, border-left rule)
   ============================================================ */
.ho-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin: 40px 0 0 -1px;         /* clip the leftmost card border */
  overflow: hidden;
  background: var(--ho-paper);
}
.ho-card {
  background: var(--ho-paper);
  padding: 0 0 26px;
  border-left: 1px solid var(--ho-rule-minor);  /* rule per card, never on wrapper */
  display: flex;
  flex-direction: column;
}
.ho-card__well { position: relative; aspect-ratio: 4 / 3; background: var(--ho-paper-shade); overflow: hidden; }
.ho-card__body { padding: 22px 22px 0; display: flex; flex-direction: column; flex: 1; }
.ho-card__kicker {
  font: 700 9px/1 var(--ho-font-mono);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ho-label);
}
.ho-card h3 { margin-top: 12px; }
.ho-card__desc { margin: 11px 0 16px; font: 400 12.5px/1.7 var(--ho-font-mono); color: var(--ho-card-body); }
.ho-card__foot { margin-top: auto; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.ho-card__price { font: 700 11px/1 var(--ho-font-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--ho-ink); }
.ho-card__price span { color: var(--ho-label); font-weight: 500; }

/* ============================================================
   METHOD (glued cells, 1px gap on minor rule)
   ============================================================ */
/* 6 items: only 3 / 2 / 1 columns divide cleanly, so no empty grey cells appear. */
.ho-method {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 40px;
  background: var(--ho-rule-minor);
  border: 1px solid var(--ho-rule-minor);
}
@media (max-width: 900px) { .ho-method { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ho-method { grid-template-columns: 1fr; } }
.ho-step { background: var(--ho-paper); padding: 24px; display: flex; flex-direction: column; }
.ho-step__hd { display: flex; align-items: baseline; gap: 10px; }
.ho-step__no { font: 700 11px/1 var(--ho-font-mono); letter-spacing: .14em; color: var(--ho-voltage); }
.ho-step__verb {
  font: 700 var(--ho-mono-label) / 1 var(--ho-font-mono);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ho-label);
}
.ho-step h3 {
  margin-top: 14px;
  font-family: var(--ho-font-display);
  font-variation-settings: 'wdth' 104;
  font-weight: 900;
  font-size: clamp(19px, 15px + 1.25vw, 23px);
  line-height: 1.02;
  letter-spacing: -.025em;
}
.ho-step__desc { margin: 10px 0 20px; font: 400 12.5px/1.7 var(--ho-font-mono); color: var(--ho-card-body); }
/* margin-top:auto colle le cadre en bas de chaque carte => les icones dither
   s'alignent sur une meme ligne, quelle que soit la longueur du texte. */
.ho-step__well { position: relative; aspect-ratio: 16 / 7; background: var(--ho-paper-shade); overflow: hidden; margin-top: auto; }

/* ============================================================
   WHY (arguments + KPI stack)
   ============================================================ */
.ho-why__grid {
  display: grid;
  grid-template-columns: minmax(0, 320px) 1fr;
  gap: 40px;
  margin-top: 40px;
}
.ho-kpi { display: flex; flex-direction: column; gap: 1px; background: var(--ho-rule-minor); border: 1px solid var(--ho-rule-minor); }
/* Les cellules grandissent pour remplir la hauteur de la colonne (alignee sur
   la colonne "arguments" a droite) : plus de cadre beige vide sous le dernier KPI. */
.ho-kpi__cell { flex: 1 1 0; display: flex; flex-direction: column; justify-content: center; background: var(--ho-paper); padding: 22px 24px; }
.ho-kpi__lbl { font: 500 var(--ho-mono-label)/1 var(--ho-font-mono); letter-spacing: .2em; text-transform: uppercase; color: var(--ho-label); }
.ho-kpi__val { margin-top: 10px; font-family: var(--ho-font-display); font-variation-settings: 'wdth' 112; font-weight: 900; font-size: 34px; line-height: 1; letter-spacing: -.03em; }
.ho-kpi__sub { margin-top: 6px; font: 400 12px/1.5 var(--ho-font-mono); color: var(--ho-card-body); }
/* 4 items: 2 (or 1) columns divide cleanly, so no empty grey cells appear. */
.ho-args { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--ho-rule-minor); border: 1px solid var(--ho-rule-minor); }
.ho-arg { background: var(--ho-paper); padding: 24px; }
.ho-arg__no { font: 700 11px/1 var(--ho-font-mono); letter-spacing: .14em; color: var(--ho-voltage); }
.ho-arg h4 { margin: 12px 0 8px; font-family: var(--ho-font-display); font-variation-settings: 'wdth' 104; font-weight: 900; font-size: 18px; line-height: 1.1; letter-spacing: -.02em; }
.ho-arg p { font: 400 12.5px/1.7 var(--ho-font-mono); color: var(--ho-card-body); }

/* Variante sans colonne KPI (KPI masques tant que non valides dans facts.md). */
.ho-why__grid--solo { grid-template-columns: 1fr; }
@media (max-width: 880px) { .ho-why__grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .ho-args { grid-template-columns: 1fr; } }

/* ============================================================
   FORFAITS / OFFERS · the single full-width voltage plate
   ============================================================ */
.ho-plans {
  position: relative;
  background: var(--ho-voltage);
  color: var(--ho-on-voltage);
  border-bottom: 1px solid var(--ho-rule-major);
}
.ho-plans__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); align-items: stretch; }
.ho-plans__text { padding: 72px var(--ho-margin); display: flex; flex-direction: column; gap: 26px; justify-content: center; }
.ho-plans__lead { max-width: 48ch; font: 400 16px/1.65 var(--ho-font-display); color: var(--ho-on-voltage-soft); text-wrap: pretty; }
.ho-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.ho-chip {
  padding: 9px 14px;
  border: 1px solid var(--ho-on-voltage-border);
  font: 700 var(--ho-mono-label) / 1 var(--ho-font-mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ho-on-voltage);
}
.ho-chip--fill { background: var(--ho-paper); border-color: var(--ho-paper); color: var(--ho-voltage); }
.ho-plans__well { position: relative; min-height: 380px; background: var(--ho-voltage-deep); overflow: hidden; border-left: 1px solid var(--ho-on-voltage-rule); }

@media (max-width: 880px) { .ho-plans__well { min-height: 260px; border-left: 0; border-top: 1px solid var(--ho-on-voltage-rule); } }

/* ============================================================
   BRIEF BLOCK (tabs + ink panel + copy)
   ============================================================ */
.ho-brief { margin-top: 34px; border: 1px solid var(--ho-rule-major); }
.ho-brief__tabs { display: flex; flex-wrap: wrap; border-bottom: 1px solid var(--ho-rule-major); }
.ho-brief__tab {
  position: relative;
  flex: 1 1 160px;
  padding: 15px 18px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--ho-rule-minor);
  font: 700 var(--ho-mono-label) / 1 var(--ho-font-mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ho-ink);
  cursor: pointer;
  text-align: left;
}
.ho-brief__tab:last-child { border-right: 0; }
.ho-brief__tab[aria-selected="true"]::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 3px; background: var(--ho-voltage);
}
.ho-brief__panel { position: relative; background: var(--ho-brief-bg); color: var(--ho-rule-minor); }
.ho-brief__grid {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 10px 18px;
  padding: 28px 24px;
  font: 400 13px/1.5 var(--ho-font-mono);
}
.ho-brief__grid dt { color: var(--ho-brief-label); }
.ho-brief__grid dd { margin: 0; color: var(--ho-brief-value); }
.ho-brief__grid dd.is-link { color: var(--ho-brief-link); }
.ho-brief__copy {
  position: absolute;
  top: 14px; right: 14px;
  padding: 10px 14px;
  background: var(--ho-paper);
  border: 0;
  font: 700 9px/1 var(--ho-font-mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ho-ink);
  cursor: pointer;
  transition: background var(--ho-dur-1) linear, color var(--ho-dur-1) linear;
}
.ho-brief__copy:hover { background: var(--ho-voltage); color: var(--ho-on-voltage); }
.ho-brief__panel[hidden] { display: none; }

@media (max-width: 520px) {
  .ho-brief__grid { grid-template-columns: 1fr; gap: 2px 0; }
  .ho-brief__grid dd { margin-bottom: 8px; }
  .ho-brief__copy { position: static; display: block; width: 100%; margin: 0; }
}

/* ============================================================
   TEAM
   ============================================================ */
.ho-team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
  margin-top: 40px;
}
.ho-member { display: flex; flex-direction: column; }
.ho-member__well { position: relative; aspect-ratio: 3 / 4; background: var(--ho-paper-shade); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.ho-member__tag {
  position: relative;
  padding: 9px 13px;
  background: var(--ho-paper);
  font: 700 var(--ho-mono-label) / 1 var(--ho-font-mono);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.ho-member__foot { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--ho-rule-major); }
.ho-member__name { font-family: var(--ho-font-display); font-variation-settings: 'wdth' 112; font-weight: 900; font-size: 17px; letter-spacing: -.02em; }
.ho-member__role { font: 500 9px/1 var(--ho-font-mono); letter-spacing: .18em; text-transform: uppercase; color: var(--ho-label); }

/* ============================================================
   CONTACT / BOOKING
   ============================================================ */
.ho-contact__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; align-items: start; margin-top: 34px; }
.ho-contact__lead { max-width: 46ch; font: 400 16px/1.65 var(--ho-font-display); color: var(--ho-body); }
.ho-cal {
  border: 1px solid var(--ho-rule-major);
  background: var(--ho-paper);
}
.ho-cal__hd {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--ho-rule-minor);
  font: 500 var(--ho-mono-label) / 1 var(--ho-font-mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ho-label);
}
.ho-cal__dot { width: 6px; height: 6px; background: var(--ho-voltage); animation: hoBlink 2.2s steps(1) infinite; }
.ho-cal iframe { border: 0; display: block; width: 100%; }
.ho-contact__aside { display: flex; flex-direction: column; gap: 16px; }
.ho-contact__row { display: flex; flex-direction: column; gap: 4px; padding: 16px 0; border-bottom: 1px solid var(--ho-rule-minor); }
.ho-contact__row .k { font: 500 9px/1 var(--ho-font-mono); letter-spacing: .2em; text-transform: uppercase; color: var(--ho-label); }
.ho-contact__row .v { font: 500 14px/1.4 var(--ho-font-mono); color: var(--ho-ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.ho-footer { padding: 40px var(--ho-margin) 34px; }
.ho-footer__inner { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 28px; }
.ho-footer__lockup { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.ho-logo--footer { height: 36px; }
.ho-footer__base { display: block; font: 500 9px/1.4 var(--ho-font-mono); letter-spacing: .2em; text-transform: uppercase; color: var(--ho-label); }
.ho-footer__legalnav { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--ho-rule-minor); font: 500 var(--ho-mono-label)/1 var(--ho-font-mono); letter-spacing: .14em; text-transform: uppercase; }
.ho-footer__legalnav a, .ho-footer__cookiebtn { color: var(--ho-label); transition: color var(--ho-dur-1) linear; }
.ho-footer__legalnav a:hover, .ho-footer__cookiebtn:hover { color: var(--ho-ink); }
.ho-footer__cookiebtn { background: none; border: 0; padding: 0; font: inherit; letter-spacing: inherit; text-transform: inherit; cursor: pointer; }
.ho-footer__legal { margin-top: 14px; font: 500 9px/1.7 var(--ho-font-mono); letter-spacing: .04em; color: var(--ho-label); }
.ho-footer__legal a { color: var(--ho-label); transition: color var(--ho-dur-1) linear; }
.ho-footer__legal a:hover { color: var(--ho-ink); }
.ho-footer__links { display: flex; flex-wrap: wrap; gap: 22px; font: 500 var(--ho-mono-label) / 1 var(--ho-font-mono); letter-spacing: .18em; text-transform: uppercase; }
.ho-footer__links a { color: var(--ho-label); transition: color var(--ho-dur-1) linear; }
.ho-footer__links a:hover { color: var(--ho-ink); }
.ho-badge { padding: 8px 12px; border: 1px solid var(--ho-rule-minor); font: 500 9px/1 var(--ho-font-mono); letter-spacing: .2em; text-transform: uppercase; color: var(--ho-label); }

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

/* ============================================================
   BLOG (index cards + article prose)
   ============================================================ */
.ho-bloglist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin: 40px 0 0 -1px;               /* clip leftmost card border */
  overflow: hidden;
  background: var(--ho-paper);
  border-top: 1px solid var(--ho-rule-minor);
}
.ho-blogcard__meta {
  display: flex; align-items: center; gap: 8px;
  font: 700 var(--ho-mono-label) / 1 var(--ho-font-mono);
  letter-spacing: .16em; text-transform: uppercase; color: var(--ho-label);
}
.ho-blogcard__cat { color: var(--ho-voltage); }
.ho-blogcard h3 { margin-top: 12px; }
.ho-blogcard__read {
  font: 700 11px/1 var(--ho-font-mono); letter-spacing: .1em;
  text-transform: uppercase; color: var(--ho-label);
}

/* Article : header dedie + corps en colonne etroite lisible */
.ho-article__head { padding: 76px var(--ho-margin) 0; }
.ho-article__wrap { max-width: 44rem; margin: 0 auto; }
.ho-article__back {
  display: inline-flex; align-items: center; gap: 8px;
  font: 700 var(--ho-mono-label) / 1 var(--ho-font-mono);
  letter-spacing: .18em; text-transform: uppercase; color: var(--ho-voltage);
  text-decoration: none;
}
.ho-article__back:hover { text-decoration: underline; }
.ho-article__meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin: 26px 0 20px;
  font: 700 var(--ho-mono-label) / 1 var(--ho-font-mono);
  letter-spacing: .16em; text-transform: uppercase; color: var(--ho-label);
}
.ho-article__cat { color: var(--ho-voltage); text-decoration: none; }
.ho-article__cat:hover { text-decoration: underline; }
.ho-article__sep { color: var(--ho-rule-minor); }
.ho-article__excerpt { margin-top: 18px; font-size: 20px; color: var(--ho-body); }
.ho-article__body { padding: 44px var(--ho-margin) 24px; border-bottom: 1px solid var(--ho-rule-major); }

.ho-prose { max-width: 44rem; margin: 0 auto; }
.ho-prose h2 {
  font-family: var(--ho-font-display); font-variation-settings: 'wdth' 104;
  font-weight: 900; font-size: clamp(24px, 3vw, 34px); line-height: 1;
  letter-spacing: -.02em; margin: 46px 0 14px; text-wrap: balance;
}
.ho-prose h2:first-child { margin-top: 0; }
.ho-prose p { font: 400 var(--ho-fs-body)/1.75 var(--ho-font-display); color: var(--ho-body); margin: 0 0 18px; }
.ho-prose__list { margin: 0 0 22px; padding-left: 22px; }
.ho-prose__list li { font: 400 16px/1.7 var(--ho-font-display); color: var(--ho-body); margin: 0 0 8px; }
.ho-prose__quote { margin: 34px 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--ho-voltage); }
.ho-prose__quote p { font: 500 21px/1.5 var(--ho-font-display); color: var(--ho-ink); margin: 0 0 8px; }
.ho-prose__quote cite {
  font: 700 var(--ho-mono-label) / 1 var(--ho-font-mono); letter-spacing: .16em;
  text-transform: uppercase; color: var(--ho-label); font-style: normal;
}
.ho-prose__faq { margin-top: 10px; }

@media (max-width: 720px) {
  .ho-article__head { padding-top: 48px; }
  .ho-article__excerpt { font-size: 18px; }
}

/* ============================================================
   DENSITE MOBILE + GRILLES TABLETTE + AUTO-ANIMATION DES CARTES
   ============================================================ */

/* Tablette (601-1024) : cartes services et blog en 2 colonnes nettes. */
@media (min-width: 601px) and (max-width: 1024px) {
  .ho-cards, .ho-bloglist { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile (<= 600) : 1 colonne, densite reduite et coherente avec l'ecran. */
@media (max-width: 600px) {
  .ho-cards, .ho-bloglist { grid-template-columns: 1fr; }
  /* Grilles a min-track large : forcer 1 colonne evite tout rognage a 320/360px. */
  .ho-plans__grid, .ho-contact__grid { grid-template-columns: 1fr; }
  /* Padding de section : gere par le token fluide --ho-section-y (48 -> 76). */
  .ho-hero__text { padding: 40px var(--ho-margin) 30px; gap: 24px; }
  .ho-card__well { aspect-ratio: 16 / 10; }
  .ho-article__body { padding: 32px var(--ho-margin) 20px; }
}

/* ============================================================
   TYPO PETITS ECRANS : interlignes, cesure FR, micro-labels
   ============================================================ */

/* Interlignes display desserres en mobile (verdict panel typographes) :
   a 38px, .92 degage 0.29em de clairance vers la descendante (0.21em) et
   supprime le chevauchement accents/jambages sur les titres FR de 3 lignes.
   On reste tres sous 1.0 : signature serree preservee. Desktop inchange. */
@media (max-width: 720px) {
  .ho-h1, .ho-h1--page { line-height: .92; }
  .ho-h2 { line-height: .92; }
  .ho-h3 { line-height: .98; }
  .ho-hero h1 { max-width: 15ch; }        /* absorbe le francais plus long */
}

/* Cesure douce sur la prose FR UNIQUEMENT (evite les debordements du francais).
   lang est pose sur <html> par le template. Titres en hyphens:manual (voir reset). */
html[lang="fr"] .ho-lead,
html[lang="fr"] .ho-faq__a,
html[lang="fr"] .ho-prose p {
  hyphens: auto;
  -webkit-hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
}

/* Micro-labels : plancher 11px et tracking detendu sous 480px (10px trop dense). */
@media (max-width: 480px) {
  :root { --ho-mono-label: 11px; }
  .ho-eyebrow { letter-spacing: .18em; }
  .ho-meta { letter-spacing: .14em; }
}

/* Tres petits ecrans : marge reduite (gain de largeur de ligne) et corps au
   plancher de lisibilite 16px, sans toucher aux bascules de colonnes. */
@media (max-width: 360px) {
  :root { --ho-margin: 16px; --ho-fs-body: 1rem; }
}

/* Auto-animation des cartes (tactile <= 1024) : micro-lift discret pendant le
   reflow dither pilote par auto-fx.js. Scope <= 1024 pour ne pas alourdir le
   survol desktop. Fige sous prefers-reduced-motion. */
@media (max-width: 1024px) {
  .ho-card { transition: transform var(--ho-dur-3) var(--ho-ease); }
  .ho-card.is-fx { transform: translateY(-6px); }
}
@media (max-width: 1024px) and (prefers-reduced-motion: reduce) {
  .ho-card, .ho-card.is-fx { transition: none; transform: none; }
}
