/* Design tokens — Ublo
   Source du orange : logo officiel (#FF8200), extrait par analyse colorimétrique. */

:root {
  /* Couleurs de marque */
  --color-orange-50:  #FFF3E6;
  --color-orange-100: #FFE0C2;
  --color-orange-300: #FFB066;
  --color-orange-500: #FF8200; /* couleur signature Ublo */
  --color-orange-600: #E67400;
  --color-orange-700: #CC6600;

  /* Accent secondaire — bleu "eau propre" */
  --color-blue-50:  #EAF6FB;
  --color-blue-100: #D2ECF6;
  --color-blue-300: #8FCBE3;
  --color-blue-500: #2C9DC4;
  --color-blue-700: #1E7391;

  /* Neutres */
  --color-ink-900: #14181B;   /* texte principal */
  --color-ink-700: #3A4249;
  --color-ink-500: #6B747B;
  --color-stone-100: #F4F1EC; /* fond secondaire */
  --color-stone-200: #E9E4DB;
  --color-white: #FFFFFF;

  /* États sémantiques */
  --color-success: #2E8B57;
  --color-error: #D64545;

  /* Typographie */
  --font-display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --fs-100: 0.8125rem;  /* 13px — petites mentions */
  --fs-200: 0.9375rem;  /* 15px — texte secondaire */
  --fs-300: 1rem;       /* 16px — corps de texte */
  --fs-400: 1.125rem;   /* 18px — intro / lead */
  --fs-500: 1.5rem;     /* 24px — h3 */
  --fs-600: 2rem;       /* 32px — h2 */
  --fs-700: 2.75rem;    /* 44px — h1 */
  --fs-800: 3.5rem;     /* 56px — h1 hero desktop */

  --lh-tight: 1.15;
  --lh-normal: 1.5;
  --lh-relaxed: 1.7;

  /* Espacements (échelle 4px) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Rayons */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  /* Ombres */
  --shadow-sm: 0 1px 3px rgba(20, 24, 27, 0.06), 0 1px 2px rgba(20, 24, 27, 0.04);
  --shadow-md: 0 8px 24px rgba(20, 24, 27, 0.08);
  --shadow-lg: 0 20px 48px rgba(20, 24, 27, 0.12);

  /* Conteneur */
  --container-max: 1160px;
  --container-pad: var(--space-5);

  /* Transitions */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 450ms;
}

@media (max-width: 640px) {
  :root {
    --fs-700: 2.25rem;
    --fs-800: 2.5rem;
    --fs-600: 1.625rem;
  }
}
