/* ==========================================================================
   LUCY COLSON — SPACING, RADIUS, SHADOW, MOTION TOKENS
   Quiet luxury reads through restraint: generous negative space, near-flat
   surfaces, minimal radii, no bounce.
   ========================================================================== */

:root {
  /* ---- Spacing (4px base) --------------------------------------------- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* ---- Radius — quiet luxury keeps corners nearly square -------------- */
  --radius-sm: 2px;   /* inputs, tags */
  --radius-md: 3px;   /* buttons, cards */
  --radius-pill: 999px; /* only for pill badges/status chips */

  /* ---- Shadow — barely-there, warm-tinted, never black ---------------- */
  --shadow-sm: 0 1px 2px rgba(74, 74, 46, 0.08);
  --shadow-md: 0 4px 16px rgba(74, 74, 46, 0.10);
  --shadow-lg: 0 12px 32px rgba(74, 74, 46, 0.14);

  /* ---- Motion — slow, gentle, never bouncy ----------------------------- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --duration-fast: 150ms; /* @kind other */
  --duration-standard: 240ms; /* @kind other */
  --duration-slow: 420ms; /* @kind other */

  /* ---- Layout ----------------------------------------------------------- */
  --content-max-width: 1120px;
  --content-max-width-narrow: 720px;
}
