/* ============================================================
   Angels of Snow Hill Cemetery
   tokens.css  |  Shared design tokens (v37)
   ------------------------------------------------------------
   This file is the single authority for brand values.
   It is linked LAST in the <head> of index.html, news.html,
   and veterans.html so these values always win over any older
   inline definitions. Change a color here, it changes site-wide.
   ============================================================ */

:root {
  /* Brand gold family (canonical) */
  --gold: #c58c28;
  --gold-light: #f3dba3;
  --gold-dark: #86611a;

  /* Supporting neutrals */
  --ink: #1f2937;
  --ink-soft: #4b5563;
  --muted: #6b7280;
  --paper: #fdfaf3;
  --paper-warm: #fff8e8;
  --line-gold: #f1d79a;
  --night: #0d0e0f;
}

/* ------------------------------------------------------------
   Accessibility: visible keyboard focus, site-wide
   ------------------------------------------------------------ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ------------------------------------------------------------
   Accessibility: respect reduced motion, site-wide
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
