/* Design tokens (colors, fonts).

   Values are read off the live WordPress site at www.brightechome.com, which
   is light-only. The template's prefers-color-scheme / data-theme dark blocks
   were removed with them: Brightec Home has no dark design to port, and
   keeping Production's dark palette would have shipped its maroon accent.
   Re-add the two blocks if a dark theme is ever designed.

   Note on --font-display / --font-body: Ubuntu is not self-hosted yet.
   public/fonts/ and src/styles/fonts.css still carry the template's Big
   Shoulders and IBM Plex faces, so until Ubuntu .woff2 files are added these
   two tokens fall through to the generic sans-serif fallback. */

:root{
  /* Page and surfaces. The site alternates plain white sections with a barely
     off-white band; --surface-2 is the pale sage used behind pull quotes. */
  --bg:#ffffff;
  --surface:#fcfcfc;
  --surface-2:#b7cdc2;

  /* Text. --ink-muted is the grey used for secondary body copy and captions. */
  --ink:#212121;
  --ink-muted:#97999b;

  /* Hairlines: #dedfe0 for card and divider borders, the lighter #f4f4f4 is
     only the sticky header's bottom border. */
  --line:#dedfe0;

  /* Brand accent: the crimson of the Brightec wordmark's degree mark and the
     full-bleed "Allt samlat" band. Not to be confused with the green that the
     cookie-consent plugin injects - that is the plugin's own colour, not the
     brand's. */
  --accent:#a6093d;
  --accent-ink:#fcfcfc;

  /* Ubuntu carries the whole site; only 400, 500 and 700 are actually
     rendered. The theme also loads Inter, but nothing uses it. No monospace
     appears anywhere, so --font-mono stays a system stack. */
  --font-display:'Ubuntu', -apple-system, Segoe UI, sans-serif;
  --font-body:'Ubuntu', -apple-system, Segoe UI, sans-serif;
  --font-mono:ui-monospace, SFMono-Regular, Menlo, monospace;
}
