:root {
  font-family: Georgia, "Times New Roman", serif;
  color: #142b25;
  background: #f4f0e8;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 88% 12%, #e9c76d 0, #e9c76d 8%, transparent 8.2%),
    radial-gradient(circle at 9% 88%, #b8d5c3 0, #b8d5c3 11%, transparent 11.2%),
    #f4f0e8;
}

.splash {
  width: min(800px, 100%);
  margin: auto;
}

.kicker {
  margin: 0 0 2rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  max-width: 7ch;
  margin: 0;
  font-size: clamp(4rem, 12vw, 8.5rem);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.07em;
}

h1 em { color: #d05d38; }

.intro {
  max-width: 34rem;
  margin: 2.5rem 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.button {
  display: inline-flex;
  gap: 2rem;
  align-items: center;
  padding: .9rem 1.1rem;
  color: #f4f0e8;
  background: #142b25;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .8rem;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover, .button:focus-visible {
  background: #d05d38;
  transform: translateY(-3px);
}

footer {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .7rem;
}

@media (max-width: 480px) {
  .intro { margin: 2rem 0; }
}
