:root {
  /* Palette — „Creme & Altrosa" */
  --color-bg: #f7f2ea;
  --color-bg-soft: #ebe2d4;
  --color-bg-warm: #c8b8a3;
  --color-accent: #c79b9b;
  --color-accent-dark: #a87878;
  --color-ink: #3a2f2c;
  --color-ink-soft: #5a4f4c;
  --color-border: #ebe2d4;

  /* Typography */
  --font-display: Georgia, serif;
  --font-body: system-ui, -apple-system, sans-serif;

  --fs-xs: 0.78rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.35rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.4rem;
  --fs-3xl: 3.2rem;
  --fs-4xl: 4rem;

  /* Spacing — 8px 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;

  /* Containers */
  --container-narrow: 38rem;
  --container-default: 56rem;
  --container-wide: 72rem;

  /* Radii, shadows, transitions */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(58, 47, 44, 0.06);
  --shadow-md: 0 4px 16px rgba(58, 47, 44, 0.08);

  --transition-fast: 150ms ease-out;
  --transition-base: 250ms ease-out;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0ms;
    --transition-base: 0ms;
  }
}
