:root {
  --bg: #f7f8f5;
  --surface: #ffffff;
  --text: #17201b;
  --muted: #5d675f;
  --line: #dfe5dc;
  --accent: #126b45;
  --accent-strong: #0c5134;
  --warm: #d99a1e;
  --ink: #0f1720;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
}

.nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--accent-strong);
}

.hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 64px);
  background:
    linear-gradient(115deg, rgba(18, 107, 69, 0.10), rgba(217, 154, 30, 0.10)),
    var(--bg);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 10px;
}

h1,
h2 {
  line-height: 1.12;
  margin: 0 0 18px;
  color: var(--ink);
}

h1 {
  font-size: clamp(42px, 7vw, 84px);
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.lead {
  max-width: 640px;
  font-size: 20px;
  color: var(--muted);
  margin: 0 0 28px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--surface);
  text-decoration: none;
  font-weight: 700;
}

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

.signal-panel {
  display: grid;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 32, 0.08);
}

.signal-panel div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.metric {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-strong);
}

.label {
  color: var(--muted);
  align-self: end;
}

.section,
.page {
  padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 64px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

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

.service-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-decoration: none;
}

.service-card strong {
  font-size: 19px;
  color: var(--ink);
}

.service-card span:last-child {
  color: var(--muted);
}

.service-kicker {
  color: var(--warm);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.split p:last-child,
.page p {
  color: var(--muted);
  font-size: 17px;
}

.page {
  max-width: 920px;
  min-height: 64vh;
}

.page h1 {
  font-size: clamp(36px, 6vw, 62px);
}

.page h2 {
  margin-top: 34px;
  font-size: 26px;
}

.muted {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.contact-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.contact-list span {
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface);
}

@media (max-width: 900px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 18px;
  }

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

  .contact-list div,
  .signal-panel div {
    flex-direction: column;
  }
}
