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

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 3rem 1.25rem;
}

main { width: min(880px, 100%); }

.eyebrow {
  margin: 0 0 1rem;
  color: #3c6651;
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .22em;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 8vw, 5.8rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}

.lead {
  max-width: 650px;
  margin: 2rem 0 3rem;
  color: #4c5660;
  font-size: clamp(1rem, 2.3vw, 1.25rem);
  line-height: 1.65;
}

section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

article {
  min-height: 180px;
  padding: 1.3rem;
  border: 1px solid #d8d2c4;
  border-radius: 14px;
  background: rgba(255, 255, 255, .46);
}

h2 { margin: 0 0 .75rem; font-size: 1rem; }
article p { margin: 0; color: #626a70; line-height: 1.55; }

footer {
  margin-top: 2.5rem;
  color: #777d78;
  font-size: .85rem;
}

@media (max-width: 680px) {
  section { grid-template-columns: 1fr; }
  article { min-height: auto; }
}
