:root {
  --ink: #111827;
  --muted: #526173;
  --line: #d8e0e7;
  --paper: #f7f8f4;
  --surface: #ffffff;
  --green: #25841f;
  --green-dark: #176316;
  --teal: #0f766e;
  --clay: #b65935;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.11);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(247, 248, 244, 0.98)),
    var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  background: rgba(247, 248, 244, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 224, 231, 0.86);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  height: 42px;
}

.brand img {
  display: block;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  width: 56px;
}

.brand span {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 650;
  color: #243244;
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding: 8px 0;
}

.nav-links a:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

main {
  overflow: hidden;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 96px);
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  min-height: calc(100svh - 72px);
  padding: clamp(54px, 9vw, 118px) clamp(20px, 5vw, 72px) clamp(44px, 7vw, 84px);
}

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

.eyebrow {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 7.2vw, 6.8rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 28px;
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
}

h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.16;
  margin-bottom: 14px;
}

.hero-lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.62;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-size: 0.96rem;
  font-weight: 800;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--green);
  box-shadow: 0 14px 34px rgba(37, 132, 31, 0.25);
  color: #ffffff;
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  color: #1d2939;
}

.button.secondary:hover {
  border-color: rgba(37, 132, 31, 0.42);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.hero-panel {
  background: var(--surface);
  border: 1px solid rgba(216, 224, 231, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 42px);
}

.hero-panel img {
  display: block;
  height: auto;
  margin: -14% auto -4%;
  max-width: 100%;
}

.hero-panel div {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.hero-panel span {
  align-items: center;
  border-left: 4px solid var(--green);
  color: #263548;
  display: flex;
  font-weight: 800;
  min-height: 48px;
  padding: 10px 0 10px 16px;
}

.trust-strip {
  border-block: 1px solid var(--line);
  color: #263548;
  display: grid;
  font-size: clamp(0.86rem, 1.5vw, 1rem);
  font-weight: 800;
  gap: 0;
  grid-template-columns: repeat(5, 1fr);
  padding: 0 clamp(20px, 5vw, 72px);
}

.trust-strip span {
  align-items: center;
  border-left: 1px solid var(--line);
  display: flex;
  justify-content: center;
  min-height: 78px;
  padding: 16px;
  text-align: center;
}

.trust-strip span:last-child {
  border-right: 1px solid var(--line);
}

.section {
  padding: clamp(70px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  margin-bottom: clamp(34px, 6vw, 64px);
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 320px;
  padding: 28px;
}

.service-number {
  color: var(--clay);
  display: block;
  font-weight: 900;
  margin-bottom: 44px;
}

.service-card p,
.approach-item p,
.contact-copy p,
.outcomes-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.split-section {
  background: #edf3f0;
  border-block: 1px solid var(--line);
}

.approach-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.approach-item {
  background: #fbfcfb;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  padding: clamp(22px, 4vw, 34px);
}

.approach-item strong {
  color: #182436;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.approach-item p {
  margin-bottom: 0;
}

.outcomes-section {
  display: grid;
  gap: clamp(34px, 6vw, 76px);
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
}

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

.outcomes-grid p {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  min-height: 142px;
  padding: 24px;
}

.contact-section {
  align-items: center;
  background: #142033;
  color: #ffffff;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 clamp(20px, 5vw, 72px) clamp(20px, 5vw, 72px);
  padding: clamp(34px, 6vw, 64px);
}

.contact-section .eyebrow {
  color: #7fcb77;
}

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

.contact-copy p {
  color: #cbd5e1;
  font-size: 1.08rem;
  margin: 22px 0 0;
}

.contact-button {
  white-space: nowrap;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 0.92rem;
  gap: 18px;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px) 34px;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 980px) {
  .hero,
  .section-heading,
  .outcomes-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    max-width: 560px;
  }

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

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-button {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    min-height: auto;
  }

  .nav-links {
    justify-content: space-between;
    width: 100%;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4.6rem);
  }

  .trust-strip,
  .service-grid,
  .approach-item,
  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip span,
  .trust-strip span:last-child {
    border-inline: 0;
    border-top: 1px solid var(--line);
    min-height: 54px;
  }

  .trust-strip span:first-child {
    border-top: 0;
  }

  .service-card {
    min-height: 0;
  }

  .service-number {
    margin-bottom: 28px;
  }

  .contact-section {
    margin-inline: 0;
  }

  .button {
    width: 100%;
  }

  .contact-button {
    justify-self: stretch;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
