:root {
  --ink: #162019;
  --muted: #5e6a62;
  --line: #dfe5df;
  --paper: #ffffff;
  --canvas: #f5f7f2;
  --green: #1f5a43;
  --green-soft: #e9f2ec;
  --lime: #dce99c;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  padding: 24px 0;
}

.site-footer {
  padding: 30px 0 46px;
  color: var(--muted);
  font-size: 14px;
}

.site-header nav,
.site-footer span:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--lime);
  color: var(--green);
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero,
.statement,
.document {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(21, 40, 28, 0.06);
}

.hero {
  padding: clamp(40px, 7vw, 82px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(40px, 7vw, 76px);
}

h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

p {
  margin: 0 0 18px;
}

.lede {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  border-color: var(--green);
  color: #fff;
  background: var(--green);
}

.button.secondary {
  background: #fff;
}

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

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

.card p,
.statement p,
.document p,
.muted {
  color: var(--muted);
}

.statement {
  margin-bottom: 24px;
  padding: 30px;
  background: linear-gradient(135deg, var(--green-soft), #fff 58%);
}

.document {
  max-width: 860px;
  padding: clamp(28px, 5vw, 54px);
}

.document h1 {
  font-size: clamp(36px, 5vw, 56px);
}

.document h2 {
  margin-top: 30px;
  font-size: 24px;
}

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

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