/* Batch & Culture — Radii & shadow tokens
   Friendly rounded corners; soft, warm, low-contrast shadows (never harsh/cool). */
:root {
  /* Radii — generous & rounded */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-2xl: 40px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  /* Shadows — warm-tinted, soft, diffuse (shadow color is a brown, not black) */
  --shadow-xs: 0 1px 2px rgba(75, 60, 40, 0.06);
  --shadow-sm: 0 2px 6px rgba(75, 60, 40, 0.07);
  --shadow-md: 0 6px 18px rgba(75, 60, 40, 0.09);
  --shadow-lg: 0 14px 36px rgba(75, 60, 40, 0.12);
  --shadow-xl: 0 24px 60px rgba(75, 60, 40, 0.15);

  /* Focus ring */
  --ring: 0 0 0 3px rgba(124, 139, 107, 0.35);

  /* Hairline border shorthand */
  --border: 1px solid var(--border-hairline);

  /* Motion — gentle, organic (no bounce; soft ease) */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.45, 0, 0.2, 1); /* @kind other */
  --dur-fast: 120ms; /* @kind other */
  --dur-base: 200ms; /* @kind other */
  --dur-slow: 360ms; /* @kind other */
}
