:root {
  color-scheme: light;
  --bg: #f8f7f3;
  --surface: #ffffff;
  --text: #22201c;
  --muted: #6f6a61;
  --border: #ded8cc;
  --accent: #315f56;
  --accent-soft: #e3eee8;
}

* {
  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.65;
}

a {
  color: var(--accent);
  font-weight: 650;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-header,
.site-footer {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.nav a:hover {
  color: var(--text);
}

main {
  max-width: 980px;
  margin: 0 auto;
  padding: 36px 24px 72px;
}

.hero {
  padding: 56px 0 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 8vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 44px 0 12px;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin: 28px 0 8px;
  font-size: 18px;
  letter-spacing: 0;
}

p,
li {
  font-size: 16px;
}

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

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.panel {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

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

.grid .panel {
  margin-top: 0;
}

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

.legal {
  max-width: 760px;
}

.legal ul {
  padding-left: 22px;
}

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  main {
    padding-top: 20px;
  }

  .hero {
    padding: 42px 0 36px;
  }

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