:root {
  color-scheme: light;
  --bg: #f7faf7;
  --text: #17211a;
  --muted: #5f6f65;
  --brand: #16a34a;
  --line: #dbe7df;
  --surface: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.narrow {
  width: min(760px, 100%);
}

.hero {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

.narrow h1 {
  font-size: clamp(36px, 6vw, 60px);
}

h2 {
  margin: 36px 0 8px;
  font-size: 22px;
}

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 21px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.actions a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-decoration: none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

article h2 {
  margin-top: 0;
}

.notice,
.muted {
  color: var(--muted);
}

.contact {
  font-size: 22px;
}

@media (max-width: 720px) {
  .page {
    padding: 38px 18px;
  }

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