/* ============================================================
   TAMGA — Spacing, radii, layout, motion
   ============================================================ */
: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 */

  /* ---- Radii — the brand is angular; corners are restrained ---- */
  --radius-none: 0;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;     /* default control radius */
  --radius-lg: 10px;
  --radius-pill: 999px;

  /* ---- Borders ---- */
  --border-hair: 1px;
  --border-frame: 1px;   /* ornamental gold frames are thin */
  --border-thick: 2px;

  /* ---- Layout ---- */
  --container: 1200px;        /* @kind spacing */
  --container-narrow: 720px;  /* @kind spacing */
  --container-wide: 1440px;   /* @kind spacing */
  --gutter: clamp(1.25rem, 4vw, 4rem); /* @kind spacing */

  /* ---- Motion — slow, ceremonial; long fades, no bounce ---- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);      /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);  /* @kind other */
  --dur-fast: 160ms;    /* @kind other */
  --dur-base: 280ms;    /* @kind other */
  --dur-slow: 520ms;    /* @kind other */
  --dur-glow: 900ms; /* @kind other */

  /* ---- Z ---- */
  --z-base: 1;        /* @kind other */
  --z-sticky: 100;    /* @kind other */
  --z-overlay: 500;   /* @kind other */
  --z-modal: 1000;    /* @kind other */
}
