/* Within Yoga Wellness — Spacing, radius, shadow & motion tokens
   ------------------------------------------------------------------
   Soft, generous, breathing space. Rounded — never sharp. Shadows
   are low, warm-tinted and diffuse (light, never heavy/UI-grey).
*/
: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 */
  --space-10: 8rem;     /* 128 */

  /* List-item rhythm — brand guide: ≥10pt after each bullet */
  --list-gap: 0.75rem;

  /* —— Radius — soft & organic —— */
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-pill: 999px;   /* CTAs & tags are fully rounded */
  --radius-round:50%;

  /* —— Shadows — warm, low, diffuse —— */
  --shadow-xs: 0 1px 2px rgba(91, 81, 80, 0.06);
  --shadow-sm: 0 2px 8px rgba(91, 81, 80, 0.08);
  --shadow-md: 0 8px 24px rgba(91, 81, 80, 0.10);
  --shadow-lg: 0 18px 48px rgba(91, 81, 80, 0.14);
  --shadow-brand: 0 12px 32px rgba(58, 136, 163, 0.22); /* teal lift on CTAs */

  /* —— Borders —— */
  --border-width: 1px; /* @kind spacing */
  --border-width-strong: 1.5px; /* @kind spacing */

  /* —— Layout —— */
  --container-sm: 640px;
  --container-md: 880px;
  --container-lg: 1120px;
  --container-xl: 1280px;

  /* —— Motion — gentle, calm, no bounce —— */
  --ease-soft:  cubic-bezier(0.33, 0, 0.2, 1); /* @kind other */
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast:   140ms; /* @kind other */
  --dur-base:   240ms; /* @kind other */
  --dur-slow:   420ms; /* @kind other */
}
