body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text);
  background: var(--bg);
  font-weight: 400;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: var(--lh-display);
  color: var(--green-900);
  letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: 600;
  line-height: 1.3;
  color: var(--green-900);
}

p { max-width: 64ch; }

a {
  color: var(--green-800);
  transition: color var(--transition);
}
a:hover { color: var(--green-700); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-700);
  display: inline-block;
}

.sub {
  font-family: var(--font-sub);
  font-weight: 400;
  font-style: italic;
  font-size: var(--fs-lead);
  color: var(--text-soft);
  max-width: 56ch;
}

.lead {
  font-size: var(--fs-lead);
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 64ch;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }

section {
  padding-block: var(--section-pad);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.section-header p { margin-inline: auto; }

.divider {
  width: 48px;
  height: 1px;
  background: var(--green-700);
  margin: var(--space-3) auto;
}

.grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.muted { color: var(--text-muted); }
.italic { font-family: var(--font-sub); font-style: italic; }
