:root {
  --ink: #102019;
  --muted: #5b6a62;
  --paper: #f5f3ed;
  --white: #ffffff;
  --green: #1f5b43;
  --green-dark: #163e30;
  --lime: #c7e66a;
  --line: #d9ded9;
  --shadow: 0 18px 50px rgba(16, 32, 25, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; top: 10px; background: var(--white); padding: 10px; z-index: 999; }
.skip-link:focus { left: 10px; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 243, 237, .94);
  border-bottom: 1px solid rgba(16,32,25,.08);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; line-height: 1.05; }
.brand span { display: grid; gap: 5px; }
.brand strong { font-size: .96rem; letter-spacing: .08em; }
.brand small { color: var(--muted); font-size: .75rem; }
nav { display: flex; align-items: center; gap: 25px; }
nav a { text-decoration: none; font-weight: 650; font-size: .92rem; }
nav a:hover { color: var(--green); }
.nav-cta { padding: 11px 16px; border: 1px solid var(--ink); border-radius: 999px; }
.menu-button { display: none; font: inherit; border: 1px solid var(--line); border-radius: 8px; padding: 8px 12px; background: var(--white); }
.hero { padding: 78px 0 72px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 58px; }
.eyebrow { color: var(--green); text-transform: uppercase; letter-spacing: .14em; font-weight: 800; font-size: .78rem; margin: 0 0 14px; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -.035em; margin-top: 0; }
h1 { font-size: clamp(3.3rem, 8vw, 6.6rem); max-width: 760px; margin-bottom: 24px; }
h2 { font-size: clamp(2.2rem, 4.6vw, 4.25rem); margin-bottom: 22px; }
h3 { font-size: 1.45rem; }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 690px; color: var(--muted); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 28px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 21px; border-radius: 999px; text-decoration: none; font-weight: 800; }
.primary { background: var(--green); color: var(--white); }
.primary:hover { background: var(--green-dark); }
.secondary { border: 1px solid var(--ink); background: transparent; }
.full { width: 100%; }
.trust-list { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; padding: 0; margin: 0; }
.trust-list li { padding: 7px 11px; background: rgba(31,91,67,.08); border-radius: 999px; font-size: .84rem; font-weight: 700; }
.hero-art img { filter: drop-shadow(0 30px 40px rgba(16,32,25,.18)); }
.section { padding: 92px 0; }
.services { background: var(--ink); color: var(--white); }
.services .eyebrow { color: var(--lime); }
.section-heading { max-width: 760px; margin-bottom: 45px; }
.section-heading > p:last-child, .service-card p { color: #c7d0cb; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 300px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; padding: 27px; display: flex; flex-direction: column; }
.service-card .number { color: var(--lime); font-weight: 900; margin-bottom: auto; }
.visual-band { background: var(--white); }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.split img { border-radius: 26px; box-shadow: var(--shadow); }
.split p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.reverse > :first-child { order: 2; }
.reverse > :last-child { order: 1; }
.text-link { display: inline-block; margin-top: 13px; color: var(--green); font-weight: 850; text-decoration: none; }
.about { background: #e8eee8; }
.contact { background: var(--green); color: var(--white); }
.contact .eyebrow { color: var(--lime); }
.contact-panel { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: center; }
.contact-panel > div:first-child p:last-child { color: #d4e4dc; font-size: 1.1rem; }
.contact-details { background: var(--white); color: var(--ink); padding: 31px; border-radius: 23px; box-shadow: var(--shadow); }
.contact-details p { margin: 0 0 10px; }
.contact-details p:first-child { font-size: 1.3rem; }
.contact-details a { text-decoration: none; }
.contact-details address { font-style: normal; margin: 18px 0 23px; color: var(--muted); }
footer { background: #0b1712; color: #aebbb5; padding: 28px 0; font-size: .86rem; }
.footer-wrap { display: flex; justify-content: space-between; gap: 20px; }
@media (max-width: 820px) {
  .menu-button { display: block; }
  nav { display: none; position: absolute; top: 78px; left: 0; right: 0; padding: 20px; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; }
  nav.open { display: flex; }
  nav a { padding: 8px; }
  .nav-cta { text-align: center; }
  .hero { padding-top: 50px; }
  .hero-grid, .split, .contact-panel { grid-template-columns: 1fr; gap: 38px; }
  .hero-copy { order: 1; }
  .hero-art { order: 2; }
  .card-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 240px; }
  .reverse > :first-child, .reverse > :last-child { order: initial; }
  .footer-wrap { flex-direction: column; gap: 2px; }
}
@media (max-width: 480px) {
  .container { width: min(100% - 26px, 1120px); }
  h1 { font-size: 3.45rem; }
  .section { padding: 70px 0; }
  .brand small { display: none; }
}
