/* HRV — Spacing, radius, shadow & motion tokens */

:root {
  /* Spacing scale (4px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;
  --space-40: 160px;

  /* Radii — reference site favors big soft rounding and full pill buttons */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;
  /* Organic "blob" radius for photo crops, matching the reference site's
     hand-cut circular/blob photo masks */
  --radius-blob: 42% 58% 61% 39% / 45% 41% 59% 55%;

  /* Shadows — soft, warm, low-contrast (no harsh drop shadows in the reference) */
  --shadow-sm: 0 2px 8px color-mix(in oklch, var(--color-ink-900) 8%, transparent);
  --shadow-md: 0 8px 24px color-mix(in oklch, var(--color-ink-900) 10%, transparent);
  --shadow-lg: 0 16px 48px color-mix(in oklch, var(--color-ink-900) 14%, transparent);
  --shadow-inset: inset 0 1px 2px color-mix(in oklch, var(--color-ink-900) 6%, transparent);

  /* Motion — gentle, no bounce; the reference site is calm/settled, not springy */
  --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: 150ms; /* @kind other */
  --duration-base: 240ms; /* @kind other */
  --duration-slow: 420ms; /* @kind other */

  /* Container widths */
  --container-max: 1180px;
  --container-narrow: 760px;
}
