/* Van Trotter — Spacing, radius, elevation & motion tokens */

:root {
  /* ---- Spacing scale (4px base) ---- */
  --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;

  /* ---- Radii — soft, rounded, never sharp (matches capsule buttons + rounded photo crops) ---- */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* ---- Elevation — soft, warm-tinted, diffuse (no hard black shadows; mirrors the brand's diffuse photographic light) ---- */
  --shadow-sm: 0 1px 3px oklch(26% 0.01 185 / 0.08), 0 1px 2px oklch(26% 0.01 185 / 0.06);
  --shadow-md: 0 4px 12px oklch(26% 0.02 185 / 0.10), 0 2px 4px oklch(26% 0.02 185 / 0.06);
  --shadow-lg: 0 16px 40px oklch(26% 0.02 185 / 0.14), 0 4px 10px oklch(26% 0.02 185 / 0.08);
  --shadow-inset: inset 0 1px 2px oklch(20% 0.01 185 / 0.08);

  /* ---- Motion — gentle, unhurried, matches an "à la fois coloré et rassurant" tone ---- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-standard: 220ms; /* @kind other */
  --duration-slow: 400ms; /* @kind other */

  /* ---- Layout ---- */
  --container-max: 1200px;
  --border-width: 1px;
}
