/* Fal — Radius, borders, shadows, motion.
   The brand leans on soft-but-grounded corners (tent seams, majlis cushions),
   warm brown-tinted shadows rather than neutral gray, and calm, unhurried motion. */
:root {
  /* ---- Radius ---- */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-2xl: 36px;
  --radius-pill: 999px;
  --radius-card: var(--radius-lg);

  /* ---- Border widths ---- */
  --border-hair: 1px;
  --border-thick: 2px;

  /* ---- Shadows (warm, brown-tinted) ---- */
  --shadow-xs: 0 1px 2px rgba(78, 36, 27, 0.06);
  --shadow-sm: 0 2px 6px rgba(78, 36, 27, 0.08);
  --shadow-md: 0 6px 18px rgba(78, 36, 27, 0.10);
  --shadow-lg: 0 16px 40px rgba(78, 36, 27, 0.14);
  --shadow-xl: 0 28px 64px rgba(78, 36, 27, 0.18);
  --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  --shadow-focus: 0 0 0 3px rgba(240, 180, 120, 0.45);

  /* ---- Motion ---- */
  --ease-standard: cubic-bezier(0.4, 0.0, 0.2, 1); /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --ease-in: cubic-bezier(0.4, 0.0, 1, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-base: 200ms; /* @kind other */
  --duration-slow: 340ms; /* @kind other */

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