/* ==========================================================================
   IÉNA Capital — Design System
   02 · Base
   --------------------------------------------------------------------------
   Remise à zéro minimale et réglages d'éléments. Aucun composant ici.
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-surface);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  font-variant-numeric: tabular-nums;  /* chiffres alignés : index, montants */
  text-wrap: pretty;
}

/* Les marges verticales sont portées par les primitives de flux (.stack),
   jamais par les éléments eux-mêmes. */
h1, h2, h3, h4, p,
ul, ol, li,
dl, dt, dd,
figure, blockquote {
  margin: 0;
  padding: 0;
}

ul, ol { list-style: none; }

/* Les titres héritent de la graisse medium ; le corps exact est appliqué par
   les classes de rôle (.heading-1 … .heading-4). */
h1, h2, h3, h4 { font-weight: var(--weight-medium); }

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

/* --------------------------------------------------------------------------
   Liens — soulignement au filet, jamais text-decoration : l'épaisseur et la
   distance à la ligne de base restent constantes d'un corps à l'autre.
   -------------------------------------------------------------------------- */

a {
  color: var(--color-ink);
  text-decoration: none;
  border-bottom: var(--rule-width) solid var(--color-rule-link);
}

a:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

a:focus-visible {
  outline: var(--focus-ring-width) solid var(--color-focus);
  outline-offset: var(--focus-ring-offset);
}

::selection { background: var(--color-selection); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
