/* ============================================================
   RKVIST — Spacing, radius, elevation, motion, layout
   Editorial & breathable — favor the larger end of the scale.
   ============================================================ */
:root {
  /* ---- Spacing scale ---- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;

  /* ---- Radius — softly rounded, never sharp ---- */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* ---- Elevation — soft, warm-grey, never harsh ---- */
  --elevation-1: 0 1px 2px rgba(20, 19, 15, 0.06), 0 1px 3px rgba(20, 19, 15, 0.05);
  --elevation-2: 0 4px 12px rgba(20, 19, 15, 0.07), 0 2px 4px rgba(20, 19, 15, 0.05);
  --elevation-3: 0 12px 28px rgba(20, 19, 15, 0.10), 0 4px 10px rgba(20, 19, 15, 0.05);
  --elevation-4: 0 28px 60px rgba(20, 19, 15, 0.14), 0 8px 18px rgba(20, 19, 15, 0.06);

  /* ---- Motion — smooth, unhurried, concierge ---- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);    /* @kind other */
  --ease-entrance: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --ease-exit: cubic-bezier(0.4, 0, 1, 1);          /* @kind other */
  --duration-hover: 180ms;   /* @kind other */
  --duration-modal: 320ms;   /* @kind other */
  --duration-toast: 260ms;   /* @kind other */
  --duration-page: 420ms;    /* @kind other */

  /* ---- Layout ---- */
  --container-max: 1200px;
  --container-wide: 1440px;
  --tap-min: 44px;   /* minimum interactive target */
}
