/* Right Click Partners — design tokens
   Single source of truth for colour, type and spacing.
   Referenced by the site stylesheet; update values here, not in individual pages. */

:root {
  /* Colour */
  --rcp-green: #679900;       /* brand green — logo, large headings, decorative accents only */
  --rcp-green-deep: #4A6E00;  /* accessible green — links, buttons, small text on/with green */
  --rcp-grey: #B2B2B2;        /* secondary text, borders, captions (also the logo grey) */
  --rcp-ink: #1A1A1A;         /* primary body text */
  --rcp-white: #FFFFFF;

  /* Grey scale — shared with the presentation template, so both keep to the
     same defined greys rather than similar-but-different ad hoc values. */
  --rcp-grey-dark: #595959;
  --rcp-grey-mid: #8C8C8C;
  --rcp-grey-light: #D9D9D9;
  --rcp-grey-hairline: #F2F2F2; /* borders, dividers, hairlines */

  /* Green tints — shared with the presentation template's "RCP view" callout.
     Pending final sign-off there; update here too if that changes. */
  --rcp-tint-dark: #A4C266;
  --rcp-tint-mid: #D1E0B3;
  --rcp-tint-light: #F0F5E6;  /* callout backgrounds */

  /* Type */
  --font-heading: "Source Serif 4", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing scale (rem) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;

  /* Layout */
  --max-width: 1120px;
  --radius: 4px;
}
