/* NOLAVISION — spacing, radius, shadow, motion tokens */

:root {
  /* Spacing — 4px base unit */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Radius — soft but not pill-happy; a services brand, not a toy app */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --radius-full: 999px;

  /* Shadows — soft, warm-tinted, low-contrast (paper/plaster feel, no harsh cool grey) */
  --shadow-sm: 0 1px 2px oklch(20% 0.02 55 / 0.06), 0 1px 1px oklch(20% 0.02 55 / 0.04);
  --shadow-md: 0 4px 12px oklch(20% 0.02 55 / 0.08), 0 1px 2px oklch(20% 0.02 55 / 0.05);
  --shadow-lg: 0 12px 32px oklch(20% 0.02 55 / 0.12), 0 2px 6px oklch(20% 0.02 55 / 0.06);
  --shadow-inset: inset 0 1px 2px oklch(20% 0.02 55 / 0.08);

  /* Motion — measured, no bounce; premium/trade brand = confident and calm */
  --ease-standard: cubic-bezier(0.2, 0.7, 0.2, 1); /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-base: 200ms; /* @kind other */
  --duration-slow: 360ms; /* @kind other */

  /* Border widths */
  --border-width-hairline: 1px;
  --border-width-default: 1.5px;
  --border-width-thick: 2px;

  /* Container */
  --container-max: 1180px;
  --container-padding: var(--space-6);
}
