:root {
  /* CLIENT BRAND COLORS */
  --color-brand-primary: #2056d8;
  --color-brand-secondary: #ff584d;
  --color-accent: #f2d14f;
  --color-background: #f3f0e8;
  --color-surface: #fffdf8;
  --color-surface-strong: #ffffff;
  --color-text: #171717;
  --color-muted: #6d6a64;
  --color-border: #cbc6bb;
  --color-success: #1c7050;
  --color-danger: #a22e2e;

  /* CLIENT TYPOGRAPHY */
  --font-display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-editorial: Iowan Old Style, Baskerville, "Times New Roman", serif;

  --radius-sm: 0.25rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.5rem;
  --radius-pill: 999px;

  --space-xs: 0.4rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --space-2xl: 6rem;

  --container-width: 90rem;
  --header-height: 4.75rem;
  --shadow-sm: 0 2px 12px rgb(23 23 23 / 8%);
  --shadow-md: 0 24px 65px rgb(23 23 23 / 14%);
  --transition-fast: 150ms ease;
  --transition-normal: 320ms cubic-bezier(.2,.8,.2,1);
}

