:root {
  color-scheme: light;
  --forest: #173b29;
  --moss: #4a734a;
  --sage: #acc29c;
  --fern: #6f9966;
  --cream: #f5f2e4;
  --parchment: #fffdf5;
  --clay: #b85c3d;
  --gold: #db9e3d;
  --ink-muted: #526252;
  --border: rgba(74, 115, 74, 0.24);
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--forest);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 100% 0%, rgba(172, 194, 156, 0.58), transparent 30rem),
    radial-gradient(circle at 0% 76%, rgba(111, 153, 102, 0.14), transparent 24rem),
    var(--cream);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--moss);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(172, 194, 156, 0.42);
  font-size: 1.05rem;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 650px;
  margin: 22px 0 12px;
  font-size: clamp(2.25rem, 7vw, 4.25rem);
  line-height: 0.98;
}

.lede {
  max-width: 610px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.card {
  margin-top: 30px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 253, 245, 0.94);
  box-shadow: 0 20px 56px rgba(23, 59, 41, 0.09);
}

section + section {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

p,
li {
  color: var(--ink-muted);
  line-height: 1.7;
}

ul {
  padding-left: 1.2rem;
}

a {
  color: var(--moss);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 10px;
  padding: 0 20px;
  border-radius: 15px;
  background: var(--forest);
  color: white;
  text-decoration: none;
}

.meta,
footer {
  color: var(--ink-muted);
  font-size: 0.82rem;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 24px;
  padding: 0 4px;
}

footer a {
  font-weight: 600;
}

@media (max-width: 520px) {
  main {
    padding-top: 34px;
  }

  .card {
    border-radius: 22px;
  }
}
