/* Dantoon — Spacing, radius, elevation & motion tokens
 * The identity is calm, generous, and gridded: lots of air, restrained rounding,
 * flat surfaces with only whisper-soft shadows.
 */
:root {
  /* ---- Spacing scale (4px base) ---- */
  --space-0:  0;
  --space-1:  0.25rem;  /* 4 */
  --space-2:  0.5rem;   /* 8 */
  --space-3:  0.75rem;  /* 12 */
  --space-4:  1rem;     /* 16 */
  --space-5:  1.5rem;   /* 24 */
  --space-6:  2rem;     /* 32 */
  --space-7:  3rem;     /* 48 */
  --space-8:  4rem;     /* 64 */
  --space-9:  6rem;     /* 96 */
  --space-10: 8rem;     /* 128 */

  /* ---- Container widths ---- */
  --container-sm: 40rem;
  --container-md: 60rem;
  --container-lg: 75rem;
  --container-xl: 82.5rem;
  --page-gutter:  clamp(1.25rem, 5vw, 4rem); /* @kind spacing */

  /* ---- Radius ----
   * Restrained. Cards & inputs use a soft 6–10px; the brand's signature
   * shape is the perfect CIRCLE (monogram) and the full PILL (capsules). */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --radius-circle: 50%;

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

  /* ---- Elevation ----
   * Soft, warm, low-contrast. Shadows tint toward the forest, never neutral gray. */
  --shadow-xs: 0 1px 2px rgba(20, 37, 28, 0.05);
  --shadow-sm: 0 2px 8px rgba(20, 37, 28, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 37, 28, 0.08);
  --shadow-lg: 0 18px 48px rgba(20, 37, 28, 0.12);
  --shadow-inset-hairline: inset 0 0 0 1px var(--border-hairline);

  /* ---- Motion ----
   * Gentle, confident, no bounce. Ease-out for entrances, calm durations. */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0.05, 0.36, 1); /* @kind other */
  --dur-fast: 120ms; /* @kind other */
  --dur-base: 200ms; /* @kind other */
  --dur-slow: 360ms; /* @kind other */
}
