* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(231,215,196,.58), transparent 28%),
    radial-gradient(circle at 88% 4%, rgba(219,231,231,.72), transparent 30%),
    var(--bg);
}
button, input, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; }
:focus-visible { outline: 3px solid rgba(85,114,99,.30); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
