/* ELEVATION & MOTION
   Shadows are almost absent — the brand reads on hairlines and value contrast, not depth.
   When a shadow is used it is long, soft and low-opacity: paper lifting a millimetre,
   never a floating card. Motion is quiet: short, eased, no bounce. */
:root {
  /* Shadows — use sparingly */
  --shadow-none: none;
  --shadow-hairline: 0 0 0 1px var(--cream-line);
  --shadow-raise: 0 1px 2px rgba(27, 42, 78, 0.05), 0 8px 24px -12px rgba(27, 42, 78, 0.12);
  --shadow-float: 0 2px 6px rgba(27, 42, 78, 0.07), 0 18px 48px -20px rgba(27, 42, 78, 0.20);
  --shadow-inset-line: inset 0 -1px 0 var(--cream-line);

  /* Motion */
  --ease-standard: cubic-bezier(0.32, 0.08, 0.24, 1);  /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --dur-fast: 120ms; /* @kind other */
  --dur-base: 200ms; /* @kind other */
  --dur-slow: 360ms; /* @kind other */
}
