/* ============================================================
   RADIUS, SHADOWS, BORDERS, MOTION — La Clinique Des Femmes
   Soft rounded corners (14px default), feather-light shadows in
   a blue-tinted ink, and calm, eased motion. No harsh edges,
   no heavy drop shadows — everything floats gently.
   ============================================================ */
:root {
  /* ---- Radius ---- */
  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius-md:  14px;   /* default — cards, buttons, inputs */
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-2xl: 40px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  /* ---- Shadows (soft, blue-ink tinted) ---- */
  --shadow-xs:  0 1px 2px rgba(19, 29, 56, 0.05);
  --shadow-sm:  0 2px 8px rgba(19, 29, 56, 0.06);
  --shadow-md:  0 10px 28px rgba(19, 29, 56, 0.08);
  --shadow-lg:  0 22px 50px rgba(19, 29, 56, 0.10);
  --shadow-xl:  0 36px 80px rgba(15, 52, 139, 0.14);
  --shadow-focus: 0 0 0 4px rgba(116, 210, 238, 0.35);
  --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.6);

  /* ---- Borders ---- */
  --border-hairline: 1px solid var(--ink-200);
  --border-soft:     1px solid var(--ink-100);
  --border-strong:   1px solid var(--ink-300);

  /* ---- Motion ---- */
  --ease-out:   cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-soft:  cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --dur-fast:   140ms; /* @kind other */
  --dur-base:   220ms; /* @kind other */
  --dur-slow:   420ms; /* @kind other */

  /* ---- Blur / glass ---- */
  --blur-glass: blur(16px) saturate(1.4); /* @kind other */
}
