/**
 * Brand-scale link colors — mirrors site.css --link-marketing / --link-marketing-hover.
 * Import on austere standalone pages (foundation, cubed, coming-soon) and stacks.
 */
:root {
  /* Gem-toned green — higher chroma than the calm --link-marketing so links
     read clearly against grey/cream surfaces on austere pages. */
  --brand-link: oklch(48% 0.11 178);
  --brand-link-hover: oklch(40% 0.12 178);
}

a {
  color: var(--brand-link);
  text-decoration: none;
}

a:hover {
  color: var(--brand-link-hover);
  text-decoration: underline;
}
