:root {
  /* Brand colours - exact names/values, do not rename or recalculate these */
  --btn-green: rgb(8, 37, 27);
  --btn-highlight: rgb(243, 146, 0);
  --btn-sage-dk: rgb(104, 137, 102);
  --btn-sage-md: rgb(149, 175, 146);
  --btn-sage-lt: rgb(209, 222, 206);

  /* Surfaces & text - derived from the brand palette above, never a bare hex */
  --color-bg: #ffffff;
  --color-bg-soft: color-mix(in srgb, var(--btn-sage-lt) 35%, white);
  --color-bg-card: #ffffff;
  --color-text: color-mix(in srgb, var(--btn-green) 94%, black);
  --color-text-muted: color-mix(in srgb, var(--btn-green) 58%, white);
  --color-text-on-dark: color-mix(in srgb, var(--btn-sage-lt) 60%, white);
  --color-border: color-mix(in srgb, var(--btn-green) 12%, white);

  /* Type */
  --font-display: 'Bricolage Grotesque', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: 2.75rem;

  /* Space */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(8, 37, 27, 0.35);
  --shadow-md: 0 8px 24px rgba(8, 37, 27, 0.10);
  --shadow-lg: 0 20px 48px rgba(8, 37, 27, 0.16);

  --max-width: 1180px;
}
