/* Kieran Osborne — Spacing, radii, shadow, layout tokens */

:root {
  /* Spacing scale (8pt-ish, with a 4px minor step) */
  --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;

  /* Section rhythm */
  --section-y: clamp(64px, 9vw, 128px); /* @kind spacing */
  --container-max: 1160px;
  --container-pad: clamp(20px, 5vw, 64px);

  /* Radii — soft, friendly, matches the rounded logotype */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Borders */
  --border-width: 1px;         /* @kind other */
  --border-width-strong: 2px;  /* @kind other */

  /* Shadows — soft, low-contrast, warm */
  --shadow-xs: 0 1px 2px rgba(29, 29, 27, 0.06);
  --shadow-sm: 0 2px 8px rgba(29, 29, 27, 0.07);
  --shadow-md: 0 10px 30px rgba(29, 29, 27, 0.09);
  --shadow-lg: 0 24px 60px rgba(29, 29, 27, 0.12);
  --shadow-accent: 0 12px 28px rgba(255, 0, 0, 0.22);

  /* Motion — gentle, no bounce */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --dur-fast: 140ms; /* @kind other */
  --dur: 220ms;      /* @kind other */
  --dur-slow: 420ms; /* @kind other */
}
