:root {
  --color-bg: #f4f1eb;
  --color-surface: #ffffff;
  --color-surface-muted: #e8edef;
  --color-ink: #10252f;
  --color-ink-muted: #52656e;
  --color-dark: #070b0d;
  --color-dark-surface: #10232c;
  --color-dark-text: #f8f7f3;
  --color-dark-muted: #b8c4c9;
  --color-brand: #b7784d;
  --color-brand-strong: #8a4f2c;
  --color-accent: #285f79;
  --color-success: #24613b;
  --color-success-bg: #e7f5eb;
  --color-error: #8a332c;
  --color-error-bg: #fff0ee;
  --color-line: #c9d3d7;
  --color-dark-line: #2a373d;
  --color-focus: #f0b76a;
  --color-text: var(--color-ink);

  --font-display: "Manrope", "Arial", sans-serif;
  --font-body: "DM Sans", "Arial", sans-serif;
  --font-heading: var(--font-display);

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: clamp(1.35rem, 2vw, 1.75rem);
  --text-2xl: clamp(2.25rem, 6vw, 5.5rem);

  --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: 4.5rem;
  --space-9: 7rem;
  --space-section: var(--space-9);

  --container: 76rem;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --shadow-soft: 0 1.5rem 4rem rgb(16 37 47 / 10%);
  --shadow-sm: 0 0.5rem 1.5rem rgb(16 37 47 / 8%);

  --target-min: 2.75rem;
  --transition-fast: 160ms ease;
  --transition-base: 260ms cubic-bezier(0.22, 1, 0.36, 1);
  --duration-normal: 260ms;
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --z-header: 1000;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 1ms linear;
    --transition-base: 1ms linear;
    --duration-normal: 1ms;
  }
}
