:root {
  color-scheme: light;
  --bg: #f6f8f5;
  --surface: #ffffff;
  --surface-muted: #edf3ef;
  --text: #14211f;
  --muted: #576561;
  --line: #cfd9d5;
  --primary: #135e4b;
  --primary-strong: #0b4738;
  --accent: #b6422d;
  --warning: #9a6a00;
  --ok: #246b45;
  --focus: #1d5fd1;
  --shadow: 0 10px 30px rgba(20, 33, 31, 0.10);
  --radius: 8px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  left: 1rem;
  position: absolute;
  top: -4rem;
}

.skip-link:focus {
  top: 1rem;
}
