/* Base typographique globale - SEUL fichier autorise a cibler des elements nus. */
html { scroll-behavior: smooth; }

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

body {
  background: var(--noir);
  color: var(--creme);
  font-family: var(--font-corps);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-titre);
  font-weight: 600;
  line-height: 1.1;
}

a { text-decoration: none; }

button {
  font-family: inherit;
  color: inherit;
}

strong { font-weight: 600; }

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

:focus-visible {
  outline: 2px solid var(--or);
  outline-offset: 3px;
}
