@theme {
  --color-brand-navy: #203C51;
  --color-brand-light: #DFEAF0;
  --color-brand-gold: #B28D43;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  color: var(--color-brand-navy);
  background-color: white;
}
*:focus-visible {
  outline: 2px solid var(--color-brand-gold);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}