:root {
  color-scheme: light;
  --bg: #f7f8f5;
  --text: #15201c;
  --muted: #5c6963;
  --line: #d8dfd8;
  --panel: #ffffff;
  --accent: #0e6f61;
  --accent-dark: #0a5148;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header,
.site-footer {
  border-color: var(--line);
  border-style: solid;
  border-width: 0;
}

.site-header {
  background: rgba(255, 255, 255, 0.86);
  border-bottom-width: 1px;
}

.site-footer {
  border-top-width: 1px;
  color: var(--muted);
}

.wrap {
  width: min(100% - 32px, 920px);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 14px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

main {
  padding: 56px 0 72px;
}

.hero {
  padding: 22px 0 18px;
}

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

h1 {
  font-size: clamp(38px, 7vw, 70px);
  line-height: 1.02;
  margin: 0 0 18px;
  max-width: 780px;
}

h2 {
  font-size: 24px;
  line-height: 1.25;
  margin: 40px 0 10px;
}

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

p,
li {
  color: var(--muted);
}

.lead {
  color: #34413b;
  font-size: 20px;
  max-width: 740px;
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 32px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.card h2 {
  font-size: 20px;
  margin-top: 0;
}

.button {
  align-items: center;
  background: var(--accent);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  min-height: 44px;
  padding: 0 18px;
  text-decoration: none;
}

.button:hover {
  background: var(--accent-dark);
}

.content {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 44px);
}

.content > :first-child {
  margin-top: 0;
}

.meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.callout {
  background: #edf6f2;
  border: 1px solid #c9e2d8;
  border-radius: 8px;
  color: #25473e;
  margin: 24px 0;
  padding: 16px 18px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: space-between;
  padding: 22px 0;
}

@media (max-width: 620px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  main {
    padding-top: 34px;
  }
}
