/* KIWI Group — Spacing, radii, shadows, motion, layout
   Warm & gentle motion to match Fraunces' softness. Ease-out, restrained fade+rise. */

: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 */
  --space-10: 8rem;     /* 128 */

  /* Section vertical rhythm */
  --section-y: clamp(4rem, 2.5rem + 7vw, 8rem); /* @kind spacing */

  /* ---- Layout ---- */
  --container-max: 1200px; /* @kind spacing */
  --container-pad: clamp(1.25rem, 0.5rem + 3vw, 3rem); /* @kind spacing */

  /* ---- Radii (soft, echoing Fraunces terminals) ---- */
  --radius-sm:   8px;
  --radius-md:   14px;   /* cards */
  --radius-lg:   24px;
  --radius-pill: 999px;  /* buttons, tags, tiles */

  /* ---- Shadows (warm, olive-tinted — never cold black) ---- */
  --shadow-sm: 0 1px 2px rgba(23, 23, 15, 0.05);
  --shadow-md: 0 4px 16px rgba(23, 23, 15, 0.06), 0 1px 3px rgba(23, 23, 15, 0.05);
  --shadow-lg: 0 12px 40px rgba(23, 23, 15, 0.10), 0 2px 8px rgba(23, 23, 15, 0.05);
  --shadow-lift: 0 10px 28px rgba(23, 23, 15, 0.12); /* hover lift */

  /* ---- Motion ---- */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-soft: cubic-bezier(0.33, 0, 0.2, 1); /* @kind other */
  --dur-fast:  150ms; /* @kind other */
  --dur-base:  260ms; /* @kind other */
  --dur-slow:  520ms; /* @kind other */
  --reveal-rise: 18px; /* @kind other */
}
