:root {
  color-scheme: light;
  --bg: #f3f6f2;
  --surface: #ffffff;
  --surface-muted: #eef2ef;
  --text: #18231f;
  --muted: #5b6863;
  --line: #d5ddd8;
  --primary: #17624d;
  --primary-strong: #0e4939;
  --primary-soft: #e3f0ea;
  --accent: #cb6548;
  --accent-soft: #f8e8e1;
  --warm: #f5ead9;
  --warning: #9b681c;
  --ok: #25704b;
  --focus: #155fc2;
  --shadow: 0 12px 32px rgba(24, 35, 31, 0.09);
  --radius: 8px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

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 {
  background: var(--surface);
  left: 1rem;
  padding: 10px;
  position: absolute;
  top: -5rem;
  z-index: 10;
}

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