/* BienFest 2026 — Spacing, radius, shadow, motion
   Wellness brand: generous whitespace, soft rounded geometry (echoing the
   circular Venn mark), gentle shadows, calm easing. */
:root{
  /* ---- Spacing scale (4px base) ---- */
  --space-0: 0;
  --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;

  /* ---- Radii — soft, circular-friendly ---- */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  /* ---- Shadows — soft, warm-tinted, low contrast ---- */
  --shadow-xs: 0 1px 2px rgba(42,39,36,0.06);
  --shadow-sm: 0 2px 8px rgba(42,39,36,0.07);
  --shadow-md: 0 8px 24px rgba(42,39,36,0.09);
  --shadow-lg: 0 18px 48px rgba(42,39,36,0.12);
  --shadow-focus: 0 0 0 3px rgba(75,160,242,0.4);

  /* ---- Layout ---- */
  --container: 1200px;         /* @kind spacing */
  --container-narrow: 720px;   /* @kind spacing */
  --gutter: 24px;              /* @kind spacing */

  /* ---- Motion — calm, no bounce ---- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);  /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);      /* @kind other */
  --dur-fast: 140ms;   /* @kind other */
  --dur-base: 240ms;   /* @kind other */
  --dur-slow: 420ms;   /* @kind other */
}
