/*
  Brand system — colours sampled directly from the real Home Care Utility
  van signage and polo-shirt wordmark (see source-photos/). Deep forest
  green + olive-lime accent, matching the business's actual livery.
*/

:root {
  /* Colour */
  --color-forest-950: #071a0c;
  --color-forest-900: #0c2412;
  --color-forest-800: #123319;
  --color-forest-700: #1c4726;

  --color-paper: #f7f5ef;
  --color-cream-200: #efece1;
  --color-cream-300: #e3ddc9;

  --color-accent-400: #7ba318;
  --color-accent-500: #64890e;
  --color-accent-600: #547310;
  --color-accent-700: #455e11;
  --color-accent-800: #374b10;

  --color-ink: #14201a;
  --color-ink-soft: #3c4a41;

  --color-success: #3f7d3f;
  --color-error: #b3452c;

  /* Typography */
  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --fs-100: 0.8125rem;
  --fs-200: 0.9375rem;
  --fs-300: 1rem;
  --fs-400: 1.125rem;
  --fs-500: 1.375rem;
  --fs-600: 1.75rem;
  --fs-700: 2.25rem;
  --fs-800: 3rem;
  --fs-900: 3.5rem;

  --lh-tight: 1.12;
  --lh-snug: 1.3;
  --lh-normal: 1.6;

  /* Spacing scale (8px base) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;

  --container-max: 1240px;
  --container-narrow: 760px;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(7, 26, 12, 0.10);
  --shadow-md: 0 8px 24px rgba(7, 26, 12, 0.14);
  --shadow-lg: 0 20px 48px rgba(7, 26, 12, 0.20);

  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;
}
