/* ==========================================================================
   ELEVATION / SHADOW TOKENS — Grow Bridge Partners
   No shadow system is defined in the brand manual (it is a flat, print-style
   deck). This is an INTENTIONAL ADDITION sized for on-screen UI: soft,
   low-contrast, cool-tinted shadows (never pure black) to stay consistent
   with the brand's calm, institutional register.
   ========================================================================== */
:root {
  --shadow-xs: 0 1px 2px oklch(20% 0.02 220 / 0.06);
  --shadow-sm: 0 2px 6px oklch(20% 0.02 220 / 0.07);
  --shadow-md: 0 8px 24px oklch(20% 0.02 220 / 0.09);
  --shadow-lg: 0 18px 48px oklch(20% 0.02 220 / 0.12);
  --shadow-focus: 0 0 0 3px color-mix(in oklab, var(--color-mint-500) 45%, transparent);

  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --duration-fast: 150ms; /* @kind other */
  --duration-base: 240ms; /* @kind other */
  --duration-slow: 400ms; /* @kind other */
}
