*,
*::before,
*::after { box-sizing: border-box; }

:root{
  --bg: #f5f7f3;
  --surface: #ffffff;
  --surface-soft: #edf3ee;
  --text: #143223;
  --text-soft: #4d6558;
  --primary: #0f3b27;
  --primary-strong: #0a2e1d;
  --accent: #ee7b2d;
  --accent-strong: #d5661d;
  --line: rgba(15, 59, 39, 0.1);
  --shadow: 0 18px 40px rgba(10, 46, 29, 0.10);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 92px;

  --header-footer-bg: #163c2f;
  --header-footer-text: #f4f7f3;
  --header-footer-muted: rgba(244, 247, 243, 0.78);
}

html { scroll-behavior: smooth; }
body{
  margin:0;
  font-family:'Inter', system-ui, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
p{ margin:0 0 1rem; color:var(--text-soft); }
h1,h2,h3{ margin:0 0 1rem; line-height:1.12; color:var(--text); }
h1{ font-size:clamp(2.4rem, 5vw, 4.5rem); letter-spacing:-0.04em; }
h2{ font-size:clamp(1.8rem, 3vw, 2.8rem); letter-spacing:-0.03em; }
h3{ font-size:1.25rem; }
ul{ margin:0; padding-left:1.2rem; }
main{ padding-top:var(--header-height); }

.container{
  width:min(calc(100% - 2rem), var(--container));
  margin-inline:auto;
}

.section{ padding:5.5rem 0; }
.section--soft{ background:linear-gradient(180deg, #edf3ee 0%, #f7faf7 100%); }
.section--accent{ background:linear-gradient(135deg, var(--primary) 0%, #145234 100%); color:#fff; }

.stack-md > * + *{ margin-top:1.3rem; }
.stack-lg > * + *{ margin-top:1.8rem; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  margin-bottom:1rem;
  font-weight:700;
  font-size:.9rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--accent);
}
.eyebrow--light{ color:#ffd6b6; }

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  border:0;
}
