/* ===== Elise Romero — Radii, shadows, motion =====
   Soft, rounded, friendly. Pills for actions; generously rounded cards.
   Shadows are warm-tinted and gentle — never harsh grey. */

:root {
  /* Corner radii */
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;   /* default brand card radius */
  --radius-xl:   32px;
  --radius-pill: 999px;  /* buttons, badges, chips */

  /* Shadows — warm, soft, low-contrast */
  --shadow-xs:  0 1px 2px rgba(74, 53, 40, 0.06);
  --shadow-sm:  0 2px 8px rgba(74, 53, 40, 0.08);
  --shadow-md:  0 8px 24px rgba(74, 53, 40, 0.12);
  --shadow-lg:  0 18px 48px rgba(74, 53, 40, 0.16);
  --shadow-action: 0 8px 22px rgba(216, 98, 58, 0.34); /* terracotta glow under CTA */
  --shadow-brand:  0 10px 28px rgba(216, 98, 58, 0.26); /* terracotta brand glow */

  /* Focus ring */
  --ring-width: 3px;
  --ring-offset: 2px;

  /* Motion — calm, no harsh bounce; one gentle springy ease for delight */
  --ease-out:    cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.45, 0, 0.2, 1); /* @kind other */
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1); /* @kind other */
  --dur-fast:   140ms; /* @kind other */
  --dur-normal: 240ms; /* @kind other */
  --dur-slow:   420ms; /* @kind other */

  /* Motion intents (named) — consumed by the GSAP layer & CSS transitions */
  --ease-exit:    cubic-bezier(0.4, 0, 1, 1); /* @kind other */
  --dur-reveal:   600ms; /* @kind other */
  --reveal-rise:  28px; /* @kind spacing */
  --stagger-step: 80ms; /* @kind other */
}
