/* LUCHE — VAN TO GO · Spacing, radii, borders, shadows, motion */
:root {
  /* 4px base scale */
  --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;

  /* Radii — squared-off, utilitarian; pills only for badges */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;

  /* Livery bands (the van's stripe system, reused as a UI motif) */
  --band-blue-h: 10px;
  --band-gold-h: 8px;
  --band-red-h: 3px;

  /* Shadows — navy-tinted, soft, used sparingly */
  --shadow-sm: 0 1px 3px rgba(26, 43, 82, 0.10);
  --shadow-md: 0 4px 14px rgba(26, 43, 82, 0.14);
  --shadow-lg: 0 12px 32px rgba(26, 43, 82, 0.20);

  /* Borders */
  --border-w: 1px;
  --border-w-highlight: 3px;  /* gold highlight frames */

  /* Motion — quick, no bounce */
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1); /* @kind other */
  --dur-fast: 120ms; /* @kind other */
  --dur-med: 220ms; /* @kind other */
}
