:root {
  --mist: #EEF2F1;
  --paper: #FFFFFF;
  --ochil: #22403A;
  --loch: #3E6B7A;
  --heather: #8B5E83;
  --heather-soft: #C9A2C0;
  --line: #CCD8D5;
  --text: #22403A;
  --muted: #4E6661;
  --display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --body: "Atkinson Hyperlegible", "Segoe UI", system-ui, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --mist: #152623;
    --paper: #1D322E;
    --ochil: #DCE8E4;
    --loch: #8FB9C6;
    --heather: #D5B0CC;
    --line: #2F4A45;
    --text: #DCE8E4;
    --muted: #A6BDB7;
  }
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--mist);
  color: var(--text);
  font: 1.0625rem/1.6 var(--body);
}
img, svg { max-width: 100%; }
a { color: var(--loch); text-underline-offset: 3px; }
a:focus-visible, .button:focus-visible { outline: 3px solid var(--heather); outline-offset: 3px; }
h1, h2, h3 { font-family: var(--display); line-height: 1.1; margin: 0; color: var(--ochil); }
.wrap { width: min(1080px, 100% - 2.5rem); margin-inline: auto; }

.site-header { padding: 1.5rem 0; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--display); font-weight: 700; font-size: 1.2rem; color: var(--ochil); text-decoration: none; }
.brand svg { width: 2rem; height: 2rem; }

.button {
  display: inline-block;
  background: var(--ochil);
  color: var(--mist);
  font-weight: 700;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
}
.button:hover { background: var(--loch); }

.site-footer { border-top: 1px solid var(--line); padding: 2rem 0 3rem; color: var(--muted); font-size: .95rem; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
