/* ============================================================
   SPACING, RADII, SHADOWS — Daniela Beutlhauser
   Soft, warm, never hard black. Generous breathing room.
   ============================================================ */

:root {
  /* --- Spacing scale (4px base) --- */
  --space-0: 0;
  --space-1: 0.25rem;   /* 4 */
  --space-2: 0.5rem;    /* 8 */
  --space-3: 0.75rem;   /* 12 */
  --space-4: 1rem;      /* 16 */
  --space-5: 1.5rem;    /* 24 */
  --space-6: 2rem;      /* 32 */
  --space-7: 3rem;      /* 48 */
  --space-8: 4rem;      /* 64 */
  --space-9: 6rem;      /* 96 */

  /* --- Radii — soft, organic --- */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* --- Shadows — warm-tinted, soft, never harsh black --- */
  --shadow-sm: 0 1px 3px rgba(46, 33, 28, 0.08);
  --shadow-md: 0 6px 20px rgba(46, 33, 28, 0.10);
  --shadow-lg: 0 16px 40px rgba(46, 33, 28, 0.14);
  --shadow-inset: inset 0 1px 2px rgba(46, 33, 28, 0.06);

  /* --- Border widths --- */
  --border-hair: 1px;
  --border-thin: 1.5px;

  /* --- Layout --- */
  --container-narrow: 640px;
  --container-content: 880px;
  --container-wide: 1120px;

  /* --- Motion — calm, no bounce. Gentle ease. --- */
  --ease-calm: cubic-bezier(0.33, 0, 0.2, 1); /* @kind other */
  --duration-fast: 140ms; /* @kind other */
  --duration-base: 240ms; /* @kind other */
  --duration-slow: 420ms; /* @kind other */
}
