/* DecoHaus — Spacing, radius, shadow & motion tokens */
:root {
  /* Spacing scale (8px base, Swiss modular grid) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Radius — the system is almost entirely square-cornered (architectural, drafting-table feel).
     Radius is used sparingly, only for small interactive chips/pills. */
  --radius-none: 0;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-pill: 999px;

  /* Borders */
  --border-width-hairline: 1px;
  --border-width-heavy: 2px;

  /* Shadow — the system favors flat color and line work over soft shadow.
     Use sparingly, only to lift cards/photography off the paper. */
  --shadow-sm: 0 1px 2px rgba(23, 22, 26, 0.08);
  --shadow-md: 0 4px 16px rgba(23, 22, 26, 0.10);
  --shadow-lg: 0 12px 32px rgba(23, 22, 26, 0.14);

  /* Motion — restrained, confident. No bounce/spring; short linear/ease-out fades and reveals. */
  --ease-standard: cubic-bezier(0.2, 0.6, 0.2, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-standard: 220ms; /* @kind other */
  --duration-slow: 420ms; /* @kind other */

  /* Grid */
  --container-max: 1280px;
  --grid-gutter: var(--space-6);
}
