:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #f7f4ec;
  color: #17372a;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  background:
    radial-gradient(circle at 80% 15%, rgb(216 174 91 / 24%), transparent 28rem),
    radial-gradient(circle at 10% 85%, rgb(58 105 75 / 15%), transparent 24rem),
    #f7f4ec;
}

main {
  width: min(760px, calc(100% - 48px));
  margin: auto;
  padding: 80px 0;
}

.eyebrow {
  margin: 0 0 24px;
  color: #a96722;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.22em;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.intro {
  max-width: 570px;
  margin: 32px 0 0;
  color: #496356;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  line-height: 1.65;
}

.actions {
  margin-top: 36px;
}

.primary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: #20543d;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background 150ms ease, transform 150ms ease;
}

.primary:hover {
  background: #173f2e;
  transform: translateY(-1px);
}

.primary:focus-visible {
  outline: 3px solid #d9a653;
  outline-offset: 4px;
}

footer {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 32px;
  color: #667c70;
  font-size: 0.85rem;
}

@media (max-width: 520px) {
  main {
    width: min(100% - 32px, 760px);
    padding: 56px 0;
  }

  footer {
    width: min(100% - 32px, 760px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .primary {
    transition: none;
  }
}
