/* Mosquet — effects: shadows, transitions, motion. Sober & flat-leaning.
   Shadows are low, cool, and used sparingly (lifted cards, dialogs). */
:root {
  /* Shadows — tuned to the ink hue, never black-heavy */
  --shadow-none:  none;
  --shadow-sm:    0 1px 2px rgba(22, 24, 29, 0.06);
  --shadow-md:    0 2px 8px rgba(22, 24, 29, 0.08), 0 1px 2px rgba(22, 24, 29, 0.06);
  --shadow-lg:    0 12px 32px rgba(22, 24, 29, 0.12), 0 2px 8px rgba(22, 24, 29, 0.06);
  --shadow-focus: 0 0 0 3px rgba(184, 67, 43, 0.35);

  /* Motion — quick, restrained, no bounce */
  --ease-standard: cubic-bezier(0.2, 0, 0.2, 1); /* @kind other */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --dur-fast:   120ms; /* @kind other */
  --dur-base:   180ms; /* @kind other */
  --dur-slow:   320ms; /* @kind other */

  --transition-base: all var(--dur-base) var(--ease-standard);
}
