/* ============================================================
   KANTA — ELEVATION, SHADOW, MOTION
   Soft, warm-tinted shadows. Restrained, tactile motion.
   ============================================================ */
:root {
  /* Shadows — warm-tinted, low spread */
  --shadow-xs:  0 1px 2px rgba(20, 20, 19, 0.06);
  --shadow-sm:  0 2px 8px rgba(20, 20, 19, 0.07);
  --shadow-md:  0 6px 20px rgba(20, 20, 19, 0.09);
  --shadow-lg:  0 16px 40px rgba(20, 20, 19, 0.12);
  --shadow-amber: 0 8px 24px rgba(230, 158, 59, 0.28);

  /* Motion */
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);   /* @kind other */
  --ease-out:      cubic-bezier(0.05, 0.7, 0.1, 1); /* @kind other */
  --ease-spring:   cubic-bezier(0.34, 1.4, 0.5, 1); /* @kind other */
  --dur-fast:   120ms; /* @kind other */
  --dur-base:   220ms; /* @kind other */
  --dur-slow:   360ms; /* @kind other */

  /* Interaction */
  --press-scale: 0.97; /* @kind other */
}
