*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--color-ink);
  background:
    radial-gradient(ellipse 70% 45% at 12% -5%, rgba(168, 198, 134, 0.35), transparent 55%),
    radial-gradient(ellipse 55% 40% at 92% 8%, rgba(232, 185, 63, 0.22), transparent 50%),
    radial-gradient(ellipse 50% 35% at 50% 100%, rgba(143, 183, 219, 0.18), transparent 55%),
    linear-gradient(180deg, var(--color-canvas) 0%, #efe6de 55%, #ebe2d9 100%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--color-ink);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-3);
  color: var(--color-ink);
}

p {
  margin: 0 0 var(--space-4);
  color: var(--color-ink-soft);
}

p:last-child {
  margin-bottom: 0;
}

.muted {
  color: var(--color-muted);
}

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

ul {
  margin: 0;
  padding: 0;
}

button,
input,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
