/* ============================================================
   KENOVA — Spacing, radii, shadows, layout
   ============================================================ */
:root {
  /* --- Spacing scale (4px base) --- */
  --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, boutique, never sharp --- */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* --- Borders --- */
  --border-width: 1px;
  --border-width-strong: 1.5px;

  /* --- Shadows — warm-tinted, soft, low spread --- */
  --shadow-xs: 0 1px 2px rgba(12, 74, 82, 0.06);
  --shadow-sm: 0 2px 8px rgba(12, 74, 82, 0.07);
  --shadow-md: 0 8px 24px rgba(12, 74, 82, 0.09);
  --shadow-lg: 0 18px 48px rgba(12, 74, 82, 0.13);
  --shadow-cta: 0 6px 18px rgba(194, 96, 60, 0.28);

  /* --- Layout --- */
  --container-max: 1140px;
  --container-prose: 680px;
  --phone-max: 420px;

  /* --- Motion --- */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.45, 0, 0.2, 1); /* @kind other */
  --duration-fast: 140ms; /* @kind other */
  --duration-base: 220ms; /* @kind other */
  --duration-slow: 360ms; /* @kind other */
}
