/* Masters Design System — Elevation, borders, motion
   Elevation is quiet and low-contrast: soft, cool-tinted shadows.
   Motion is composed and confident — no bounce, no spring. */
:root {
  /* ---- Shadows (navy-tinted, low spread) ---- */
  --shadow-xs: 0 1px 2px rgba(0,70,83,0.06);
  --shadow-sm: 0 2px 6px rgba(0,70,83,0.07);
  --shadow-md: 0 8px 24px rgba(0,70,83,0.09);
  --shadow-lg: 0 20px 48px rgba(0,70,83,0.12);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,0.6);

  /* Gray focus/accent glow (very sparing) */
  --shadow-focus: 0 0 0 3px rgba(100,99,99,0.35);

  /* ---- Border widths ---- */
  --bw-hairline: 1px; /* @kind spacing */
  --bw-emphasis: 2px; /* @kind spacing */
  --bw-rule: 3px;     /* @kind spacing */ /* gray section rule */

  /* ---- Motion ---- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);  /* @kind other */
  --ease-entrance: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --ease-exit: cubic-bezier(0.4, 0, 1, 1);        /* @kind other */
  --dur-fast: 140ms;      /* @kind other */
  --dur-base: 240ms;      /* @kind other */
  --dur-slow: 420ms;      /* @kind other */
  --dur-editorial: 640ms; /* @kind other */
}
