/*
  Design tokens du site.
  Palette "Blueprint" : fond pierre froide, encre, accent gris foncé (monochrome).
  Toute couleur/typo/espacement utilisée ailleurs doit passer par une variable d'ici.
*/
:root {
    /* Couleurs */
    --color-bg: #f2f3f5;
    --color-surface: #ffffff;
    --color-surface-muted: #e8eaed;
    --color-text: #15181c;
    --color-text-secondary: #5b6470;
    --color-text-muted: #8a93a0;
    --color-accent: #15181c;
    --color-accent-hover: #15181c;
    --color-accent-soft: #e8eaed;
    --color-alert: #b91c1c;
    --color-border: #d7dbdf;
    --color-border-strong: #b9c0c7;

    /* Typographie */
    --font-sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.375rem;
    --fs-xl: 1.75rem;
    --fs-2xl: 2.25rem;
    --fs-hero: clamp(2.5rem, 6vw, 4.5rem);

    --lh-tight: 1.15;
    --lh-base: 1.6;

    /* Espacements */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-24: 6rem;

    /* Layout */
    --container-max: 1180px;
    --container-pad: clamp(1.25rem, 4vw, 2.5rem);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-pill: 999px;
    --nav-height: 72px;
    --announcement-height: 60px;

    /* Mouvement */
    --transition-fast: 150ms ease;
    --transition-base: 220ms ease;
}
