/* ============================================================
   JIHOLABO · SPACING, RADII, SHADOWS, LAYOUT
   8px base grid. Rounded, soft forms echo the brand's
   "accessibilité & bienveillance" (rounded icon language).
   ============================================================ */
:root {
  /* ---- Spacing scale (8px base) ---- */
  --space-0:  0;
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;

  /* ---- Border radius (soft, rounded brand language) ---- */
  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 32px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  /* ---- Border widths ---- */
  --border-width: 1px; /* @kind spacing */
  --border-width-strong: 2px; /* @kind spacing */

  /* ---- Shadows (soft, cool-blue tinted — never harsh black) ---- */
  --shadow-xs: 0 1px 2px rgba(5, 7, 13, 0.06);
  --shadow-sm: 0 2px 6px rgba(5, 7, 13, 0.07);
  --shadow-md: 0 6px 18px rgba(14, 27, 62, 0.10);
  --shadow-lg: 0 16px 40px rgba(14, 27, 62, 0.14);
  --shadow-glow: 0 0 0 1px rgba(46, 91, 214, 0.15), 0 8px 28px rgba(46, 91, 214, 0.25); /* electric-blue glow */

  /* ---- Layout ---- */
  --container-sm: 640px; /* @kind spacing */
  --container-md: 880px; /* @kind spacing */
  --container-lg: 1120px; /* @kind spacing */
  --container-xl: 1280px; /* @kind spacing */
  --header-height: 72px; /* @kind spacing */

  /* ---- Motion (calm, reassuring — no bounce) ---- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out: cubic-bezier(0.0, 0, 0.2, 1); /* @kind other */
  --duration-fast: 140ms; /* @kind other */
  --duration-base: 220ms; /* @kind other */
  --duration-slow: 360ms; /* @kind other */
}
