/* ============================================================
   Pillar Clinic — Radius, Border, Shadow & Motion Tokens
   Restrained: soft radii, hairline borders, whisper-soft
   shadows. Nothing heavy or glossy.
   ============================================================ */
:root {
  /* ---- Corner radii ------------------------------------- */
  --radius-none: 0;
  --radius-xs:   2px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --radius-xl:   22px;
  --radius-pill: 999px;

  /* ---- Border widths ------------------------------------ */
  --border-thin:   1px;
  --border-medium: 1.5px;
  --hairline:      1px solid var(--border-hairline);

  /* ---- Shadows — soft, warm, low-opacity ---------------- */
  --shadow-xs:  0 1px 2px rgba(40, 30, 20, 0.05);
  --shadow-sm:  0 2px 8px rgba(40, 30, 20, 0.06);
  --shadow-md:  0 10px 30px -12px rgba(40, 30, 20, 0.16);
  --shadow-lg:  0 24px 60px -22px rgba(40, 30, 20, 0.22);
  --shadow-gold: 0 8px 28px -14px rgba(154, 126, 78, 0.35);

  /* ---- Motion ----------------------------------- @kind other */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);   /* @kind other */
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);   /* @kind other */
  --dur-fast:   140ms; /* @kind other */
  --dur-base:   240ms; /* @kind other */
  --dur-slow:   480ms; /* @kind other */

  /* ---- Focus ring --------------------------------------- */
  --ring: 0 0 0 3px rgba(194, 168, 120, 0.4);
}
