body {
  margin: 0;
  background: #f2f2ed;
  color: #20231f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.seo-nav, .seo-footer {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px;
}
.seo-nav {
  border-bottom: 1px solid #cccec7;
}
.seo-brand {
  margin-right: auto;
  font-weight: 800;
  text-decoration: none;
}
.seo-nav a:not(.seo-brand), .seo-footer a {
  color: #4f554f;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 76px 24px 92px;
}
.eyebrow {
  margin: 0 0 16px;
  color: #176b4a;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Songti SC", STSong, serif;
  font-size: clamp(42px, 8vw, 82px);
  font-weight: 420;
  line-height: 1;
}
.lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: #4f554f;
  font-size: 20px;
  line-height: 1.7;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}
.card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid #c7cbc4;
  border-radius: 7px;
  background: rgba(255,255,255,.56);
}
.card h2 {
  margin: 0 0 12px;
  font-size: 18px;
}
.card p, li {
  color: #565c55;
  font-size: 14px;
  line-height: 1.7;
}
.wide {
  grid-column: span 2;
}
.cta {
  display: inline-flex;
  margin-top: 34px;
  padding: 12px 16px;
  border-radius: 5px;
  background: #20231f;
  color: #fff;
  font-weight: 760;
  text-decoration: none;
}
.seo-footer {
  border-top: 1px solid #cccec7;
  color: #6d726b;
}
@media (max-width: 860px) {
  .seo-nav { flex-wrap: wrap; }
  .seo-brand { width: 100%; }
  .grid { grid-template-columns: 1fr; }
  .wide { grid-column: auto; }
}
