/* ============================================================
   Metro Weddings — Effects Tokens
   Radius, shadow, motion.
   ============================================================ */

:root {
  /* Radius — soft but not pill-happy; cards read as photographs/
     paper, not app chrome, so radii stay modest. */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --radius-pill: 999px;

  /* Shadow — soft, warm-tinted (not pure black) and low-contrast;
     depth is used sparingly (menus, dialogs, floating actions),
     never on every card. */
  --shadow-sm: 0 1px 2px oklch(21% 0.014 50 / 6%);
  --shadow-md: 0 4px 16px oklch(21% 0.014 50 / 10%);
  --shadow-lg: 0 16px 40px oklch(21% 0.014 50 / 16%);
  --shadow-inset: inset 0 1px 2px oklch(21% 0.014 50 / 8%);

  /* Motion */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-base: 200ms; /* @kind other */
  --duration-slow: 360ms; /* @kind other */
}
