:root {
  /* Primary */
  --color-primary: #000000;
  --color-primary-light: #222222;
  --color-white: #FFFFFF;

  /* Green accents */
  --color-sand: #d9ebd8;
  --color-sand-medium: #e6f2e5;
  --color-sand-light: #eff7ee;
  --color-sand-lightest: #f5faf5;

  /* Secondary */
  --color-gray: #62717F;
  --color-teal: #2a4a2a;

  /* Neutral */
  --color-bg: #FFFFFF;
  --color-bg-alt: #f5faf5;
  --color-text: #1a1a1a;
  --color-text-light: #555555;
  --color-border: #E5E5E5;

  /* CTA */
  --color-cta: #d9ebd8;
  --color-cta-hover: #b8d9b6;
  --color-cta-text: #000000;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-weight-regular: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --border-radius: 4px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
}
