/* Story Built Homes — spacing, radii, shadows, motion */
:root {
  /* Spacing (8px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Radii — the website is square-cornered: 2px on buttons, 0 on cards */
  --radius-sm: 2px;
  --radius-md: 2px;
  --radius-lg: 4px;
  --radius-full: 999px;

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

  /* Shadows — cards sit flat on a 1px cream border; big soft navy shadows for raised elements */
  --shadow-card: none;
  --shadow-hover: 0 24px 54px rgba(30, 50, 100, 0.18);
  --shadow-raised: 0 30px 60px rgba(13, 22, 46, 0.25);
  --shadow-focus: 0 0 0 3px var(--focus-ring);

  /* Motion — calm fades, no bounce */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-base: 200ms; /* @kind other */
}
