:root {
  --bg: #E4E9E1;
  --ink: #1D2A22;
  --muted: #56695C;
  --stem: #3F5A49;
  --bud: #C9952A;
  --link: #1D2A22;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121A15;
    --ink: #E3EAE4;
    --muted: #93A89A;
    --stem: #7F9F89;
    --bud: #E8B94A;
    --link: #E3EAE4;
  }
}

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

html,
body {
  margin: 0;
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

#garden {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: crosshair;
}

.intro {
  position: relative;
  max-width: 34rem;
  padding: clamp(1.5rem, 6vw, 5rem) clamp(1rem, 6vw, 5rem) 0;
  pointer-events: none;
  text-shadow: 0 0 6px var(--bg), 0 0 18px var(--bg);
}

.wordmark {
  margin: 0 0 0 -0.04em;
  font-size: clamp(4.5rem, 16vw, 11rem);
  font-weight: 800;
  font-variation-settings: "opsz" 96;
  line-height: 0.85;
  letter-spacing: -0.055em;
}

.lede {
  margin: 1.5rem 0 0;
  max-width: 32ch;
  color: var(--ink);
}

.contact {
  margin: 1rem 0 0;
  pointer-events: auto;
}

.contact a {
  color: var(--link);
  font-weight: 500;
  text-decoration-color: var(--bud);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.contact a:hover {
  text-decoration-thickness: 3px;
}

.contact a:focus-visible {
  outline: 2px solid var(--bud);
  outline-offset: 4px;
  border-radius: 2px;
}

.hint {
  position: fixed;
  right: clamp(1rem, 4vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2rem);
  left: 1rem;
  margin: 0;
  text-align: right;
  font-size: 0.875rem;
  color: var(--muted);
  pointer-events: none;
  text-shadow: 0 0 6px var(--bg), 0 0 12px var(--bg);
}

@media (prefers-reduced-motion: reduce) {
  .hint {
    display: none;
  }
}
