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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.page {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero {
  min-height: 58vh;
  display: grid;
  align-content: center;
  gap: 18px;
}

.eyebrow {
  margin: 0;
  color: #3d6b57;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 6vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  color: #4d5b66;
  font-size: 1.1rem;
  line-height: 1.7;
}

.button {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: #fff;
  background: #17202a;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid #d9e0dc;
  border-bottom: 1px solid #d9e0dc;
}

article,
.contact {
  padding: 22px 0;
}

h2 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

article p,
.contact p {
  color: #52616b;
  line-height: 1.65;
}

.contact {
  max-width: 680px;
}

@media (max-width: 760px) {
  .page {
    padding: 34px 0;
  }

  .hero {
    min-height: 52vh;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
