:root {
  color-scheme: dark;
  --ink: #07130d;
  --ink-soft: #0b1d15;
  --forest: #10281c;
  --moss: #315e43;
  --moss-light: #7fa476;
  --teal: #4fbbb0;
  --teal-bright: #9be4d8;
  --brass: #d8be75;
  --brass-strong: #f1d989;
  --cream: #f2ecd7;
  --mist: #b9c9bf;
  --blue-mist: #8fb1bf;
  --muted: #718277;
  --line: rgba(242, 236, 215, 0.16);
  --panel: rgba(14, 34, 24, 0.76);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --max-width: 1180px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--brass-strong);
  outline-offset: 4px;
}

::selection {
  color: var(--ink);
  background: var(--brass-strong);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
