:root {
  color-scheme: light;
  --ink: #19231e;
  --ink-soft: #435048;
  --linen: #f3f0e8;
  --linen-light: #faf8f2;
  --paper: #fffdf8;
  --moss: #3f6d58;
  --moss-deep: #2f5745;
  --sage: #dfe7dc;
  --clay: #8f593e;
  --muted: #4f5a52;
  --line: rgba(25, 35, 30, 0.16);
  --line-strong: rgba(25, 35, 30, 0.3);
  --shadow: 0 28px 70px rgba(39, 55, 46, 0.1);
  --max-width: 1240px;
  --font-meta: 0.8125rem;
  --font-display: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  --font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--linen);
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--linen);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  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(--clay);
  outline-offset: 4px;
}

::selection {
  color: var(--paper);
  background: var(--moss);
}

.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;
}
