/* ============================================================
   Panterra Health — Spacing, radius, shadow, layout tokens
   4px base rhythm.
   ============================================================ */
:root {
  /* Spacing scale */
  --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:  2.5rem;   /* 40 */
  --space-8:  3rem;     /* 48 */
  --space-9:  4rem;     /* 64 */
  --space-10: 6rem;     /* 96 */
  --space-11: 8rem;     /* 128 */

  /* Section rhythm */
  --section-y:   clamp(4rem, 9vw, 8rem);  /* @kind spacing */
  --gutter:      clamp(1.25rem, 5vw, 4rem); /* @kind spacing */
  --maxw:        1240px;   /* content max width */
  --maxw-prose:  68ch;     /* readable measure */

  /* Radius — soft, optimistic */
  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius-md:  12px;   /* default card */
  --radius-lg:  20px;   /* large media / panels */
  --radius-xl:  28px;
  --radius-pill: 999px; /* buttons, chips */

  /* Borders */
  --border-w: 1px;

  /* Shadows — restrained, warm-tinted, single soft layer */
  --shadow-xs: 0 1px 2px rgba(23, 21, 15, 0.05);
  --shadow-sm: 0 2px 8px rgba(23, 21, 15, 0.06);
  --shadow-md: 0 8px 28px rgba(23, 21, 15, 0.08);
  --shadow-lg: 0 20px 60px rgba(23, 21, 15, 0.10);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast: 140ms; /* @kind other */
  --dur:      240ms; /* @kind other */
  --dur-slow: 420ms; /* @kind other */
}
