* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cf-white);
  color: var(--cf-text);
  font-family: var(--cf-font-body);
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--cf-green-main); }
h1, h2, h3, h4 {
  font-family: var(--cf-font-heading);
  line-height: 1.06;
  margin: 0 0 14px;
  color: var(--cf-green-deep);
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.45rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3.1vw, 2.75rem); }
h3 { font-size: clamp(1.08rem, 1.55vw, 1.28rem); }
p { margin: 0 0 15px; color: var(--cf-muted); }
ul { margin: 0; padding-left: 1.2rem; color: var(--cf-muted); }
.screen-reader-text, .cf-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.cf-skip-link:focus {
  width: auto;
  height: auto;
  margin: 12px;
  padding: 10px 14px;
  clip: auto;
  z-index: 1000;
  background: var(--cf-green-deep);
  color: var(--cf-white);
  border-radius: 8px;
}
::selection { background: rgba(76, 175, 42, 0.22); }
