/* South Carolina Forum — color tokens.
   Primary palette values come from SCForum-BrandGuidelines.pdf (p.18).
   NOTE: the guideline sheet lists Forum Blue as #004AAD (Pantone 300-C spec),
   but every piece of supplied artwork (logos, stickers, palette swatches in the
   PDF itself) renders Forum Blue as #0564B8. The artwork value is used as the
   working token; the spec value is kept as --sc-forum-blue-spec for print. */
:root{
  /* Primary brand palette */
  --sc-palmetto-blue:#003366;
  --sc-forum-blue:#0564B8;
  --sc-forum-blue-spec:#004AAD;
  --sc-sky:#36A0E0;
  --sc-water:#C2DFED;
  --sc-khaki:#E4E0D4;
  --sc-coast:#F4F4F2;
  --sc-white:#FFFFFF;
  --sc-black:#111111;

  /* Primary tints/shades — derived, for hover/press and layering only */
  --sc-palmetto-blue-900:#00203F;
  --sc-palmetto-blue-700:#002A54;
  --sc-forum-blue-700:#04529A;
  --sc-forum-blue-600:#0559A6;
  --sc-forum-blue-100:#E4EFFA;
  --sc-sky-600:#2A8CC7;
  --sc-water-300:#DCEDF5;
  --sc-khaki-300:#EFEDE5;

  /* Secondary digital "State Inspired" palette — charts, data viz, highlights.
     Never a replacement for the primary palette. Three families of three. */
  --sc-pine:#186657;        /* deep green */
  --sc-pine-mid:#46AA85;    /* mid green */
  --sc-pine-light:#D9E7CD;  /* pale green */
  --sc-clay:#7F263A;        /* deep wine */
  --sc-clay-mid:#F19759;    /* mid orange */
  --sc-clay-light:#FBD7B5;  /* pale peach */
  --sc-harvest:#CE8B3D;     /* deep gold */
  --sc-harvest-mid:#E7B96B; /* mid gold */
  --sc-harvest-light:#FEE4C1; /* pale cream */

  /* Neutrals — built from Coast/Khaki so greys stay warm, never blue-grey */
  --sc-ink:#1A1A1A;
  --sc-ink-70:#4A4A48;
  --sc-ink-50:#767672;
  --sc-line:#D8D6CE;
  --sc-line-soft:#E8E6DF;

  /* Semantic aliases — prefer these in product UI */
  --text-strong:var(--sc-palmetto-blue);
  --text-body:var(--sc-ink);
  --text-muted:var(--sc-ink-70);
  --text-subtle:var(--sc-ink-50);
  --text-on-dark:var(--sc-white);
  --text-on-dark-muted:#B9CBDD;
  --text-link:var(--sc-forum-blue);
  --text-link-hover:var(--sc-palmetto-blue);

  --surface-page:var(--sc-coast);
  --surface-card:var(--sc-white);
  --surface-sunken:var(--sc-khaki-300);
  --surface-accent:var(--sc-water);
  --surface-inverse:var(--sc-palmetto-blue);
  --surface-inverse-deep:var(--sc-palmetto-blue-900);

  --border-default:var(--sc-line);
  --border-soft:var(--sc-line-soft);
  --border-strong:var(--sc-palmetto-blue);
  --border-focus:var(--sc-sky);

  --action-primary:var(--sc-forum-blue);
  --action-primary-hover:var(--sc-forum-blue-700);
  --action-primary-press:var(--sc-palmetto-blue);
  --action-secondary:var(--sc-palmetto-blue);
  --action-disabled:var(--sc-line);

  /* Consensus / data-viz scale: agreement is blue, disagreement is warm */
  --data-agree-strong:var(--sc-palmetto-blue);
  --data-agree:var(--sc-forum-blue);
  --data-agree-soft:var(--sc-sky);
  --data-neutral:var(--sc-khaki);
  --data-disagree-soft:var(--sc-harvest-mid);
  --data-disagree:var(--sc-clay-mid);
  --data-disagree-strong:var(--sc-clay);
}
