@font-face {
  font-family: Newsreader;
  src: url('/fonts/newsreader.woff2') format('woff2');
  font-weight: 400 600;
  font-display: swap;
}
@font-face {
  font-family: 'Funnel Sans';
  src: url('/fonts/funnel-sans.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: Newsreader;
  src: url('/fonts/newsreader-ext.woff2') format('woff2');
  font-weight: 400 600;
  font-display: swap;
  unicode-range: U+0100-02FF, U+1E00-1EFF;
}
@font-face {
  font-family: 'Funnel Sans';
  src: url('/fonts/funnel-sans-ext.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0100-02FF, U+1E00-1EFF;
}
:root {
  color-scheme: light;
  --paper: #f6f5f0;
  --surface: #fffefa;
  --ink: #193d32;
  --muted: #5d6d63;
  --line: #d9dfd6;
  --soft: #eaf0e4;
  --accent: #dcefad;
  --inverse: #f8faef;
  --danger: #8b431b;
  --warn: #fff0d8;
  --radius: 12px;
  font-family: 'Funnel Sans', 'Helvetica Neue', sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
:root[data-theme='dark'] {
  color-scheme: dark;
  --paper: #14221c;
  --surface: #1c2d24;
  --ink: #ebf0e4;
  --muted: #b1bfb0;
  --line: #3a4e40;
  --soft: #263a2d;
  --accent: #dcefad;
  --inverse: #16241b;
  --danger: #ffce9f;
  --warn: #433324;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    color-scheme: dark;
    --paper: #14221c;
    --surface: #1c2d24;
    --ink: #ebf0e4;
    --muted: #b1bfb0;
    --line: #3a4e40;
    --soft: #263a2d;
    --accent: #dcefad;
    --inverse: #16241b;
    --danger: #ffce9f;
    --warn: #433324;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button,
a,
summary,
select,
input[type='checkbox'] {
  touch-action: manipulation;
}
button,
a,
summary,
select {
  cursor: pointer;
}
button {
  color: inherit;
}
button:disabled {
  cursor: wait;
  opacity: 0.6;
}
button,
input,
select {
  border-radius: 8px;
}
button {
  border: 0;
}
input,
select {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 12px;
  min-height: 46px;
  max-width: 100%;
}
input {
  min-width: 0;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #9e6818;
  outline-offset: 4px;
}
p {
  line-height: 1.65;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 450;
}
h1 {
  font-size: clamp(2.7rem, 4.6vw, 4.5rem);
  line-height: 1.07;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  max-width: 840px;
}
h2 {
  font-size: clamp(1.75rem, 2.2vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
h3 {
  font-size: 1rem;
}
.icon {
  width: 20px;
  height: 20px;
  flex: none;
  vertical-align: middle;
}
.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;
}
[hidden] {
  display: none !important;
}
.skip {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 10;
  padding: 14px;
  background: var(--ink);
  color: var(--inverse);
}
.skip:focus {
  top: 12px;
}
