/* This portfolio has one authored palette, independent of the OS theme.
   Preserve artwork presentation even in Windows forced-colors mode. */
:root {
  color-scheme: only dark;
  forced-color-adjust: none;
  --bg: #000;
  --text: #eeeae0;
  --muted: #a4a59c;
  --gold: #b8aa86;
  --line: #33352e;
  --gallery-surface: #000;
  background-color: #000;
  color: var(--text);
}
html, body, body.home, .site-header, main, footer,
.home-tools, .statement-tools, .reading-index, .home-caption,
.home-film, .home-film iframe {
  background-color: #000;
  color: var(--text);
}
.site-header .wordmark { color: var(--text); }
.site-header nav a:any-link { color: var(--muted); }
.site-header nav a[aria-current], .site-header nav a:hover { color: var(--text); }
/* Explicit keyboard focus remains visible when the system palette is disabled. */
a:focus-visible, button:focus-visible {
  outline: 2px solid #eeeae0;
  outline-offset: 5px;
}
body .device-toolbar, body .phone-preview,
body .phone-preview iframe { background-color: #000; }
