:root {
  color-scheme: light dark;
  --ink-950: #051322;
  --navy-900: #071a2e;
  --navy-800: #0b2742;
  --navy-700: #123654;
  --gold-500: #c7a15a;
  --gold-300: #e0c893;
  --bronze-700: #4b3824;
  --bronze-500: #8a7350;
  --brand-espresso: #2e2312;
  --brand-crest-bronze: #584a35;
  --brand-laurel-bronze: #6d6252;
  --brand-laurel-taupe: #857865;
  --brand-atlantic: #071b30;
  --brand-brass: #b48643;
  --paper-50: #fbf9f4;
  --paper-100: #f3efe6;
  --slate-900: #14202b;
  --slate-700: #3d4954;
  --slate-600: #5d6872;
  --slate-400: #89939c;
  --line-light: #ded8cc;
  --line-dark: #243a50;
  --success: #26745a;
  --success-soft: #e2f1eb;
  --warning: #a36a18;
  --warning-soft: #f8ecd3;
  --risk: #b54747;
  --risk-soft: #f7e4e2;
  --info: #356c9b;
  --info-soft: #e3edf5;
  --white: #ffffff;
  --font-ui: "Avenir Next", Aptos, "Segoe UI", sans-serif;
  --font-display: "Iowan Old Style", Baskerville, Georgia, serif;
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-device: 28px;
  --shadow-paper: 0 16px 42px rgba(4, 20, 35, 0.11), 0 2px 8px rgba(4, 20, 35, 0.07);
  --shadow-dark: 0 18px 55px rgba(0, 0, 0, 0.27);
  --focus: 0 0 0 2px var(--paper-50), 0 0 0 4px var(--gold-500);
  --ease-out: cubic-bezier(0.2, 0.78, 0.2, 1);
  --duration-fast: 160ms;
  --duration-ui: 220ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: var(--font-ui);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

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