:root {
  --rust: #B35E06;
  --accent: #B35E06;
  --blue: #14415C;
  --green: #3A6331;
  --olive: #665C3E;
  --ink: #17242A;
  --muted: #5F6867;
  --paper: #F8F6F0;
  --white: #FFFFFF;
  --line: rgba(20, 65, 92, 0.16);
  --shadow: 0 24px 70px rgba(20, 65, 92, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Aptos, "Aptos Display", Calibri, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(248, 246, 240, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  display: block;
  width: clamp(220px, 24vw, 340px);
  max-height: 62px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 650;
}

.nav a {
  padding: 8px 0;
}

.nav-cta {
  padding: 9px 15px !important;
  color: var(--white);
  background: var(--accent);
  border-radius: 6px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(24px, 3.5vw, 48px);
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: clamp(28px, 4.6vw, 62px) clamp(20px, 5vw, 72px) 32px;
  background:
    linear-gradient(90deg, rgba(248, 246, 240, 0.98), rgba(248, 246, 240, 0.78)),
    radial-gradient(circle at 82% 18%, rgba(179, 94, 6, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(58, 99, 49, 0.14), transparent 36%);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(34px, 3.45vw, 44px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(36px, 4.8vw, 66px);
  line-height: 1;
}

h3 {
  font-size: 25px;
}

.lede {
  max-width: 640px;
  margin: 14px 0 0;
  color: #34484B;
  font-size: clamp(17px, 1.65vw, 19px);
  line-height: 1.5;
}

.hero-actions,
.cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  line-height: 1.1;
}

.button.primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(179, 94, 6, 0.22);
}

.button.secondary {
  color: var(--blue);
  background: transparent;
  border-color: rgba(20, 65, 92, 0.28);
}

.hero-visual {
  overflow: hidden;
  min-height: 360px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.76)),
    linear-gradient(135deg, rgba(20, 65, 92, 0.14), rgba(58, 99, 49, 0.12));
  border: 1px solid rgba(20, 65, 92, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  color: var(--blue);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.visual-topline span:last-child {
  color: var(--olive);
  font-weight: 700;
  text-align: right;
}

.hero-visual svg {
  display: block;
  width: 100%;
  min-height: 300px;
}

.map-land {
  fill: rgba(58, 99, 49, 0.16);
}

.map-line {
  fill: none;
  stroke: rgba(58, 99, 49, 0.55);
  stroke-linecap: round;
  stroke-width: 6;
}

.map-line.alt {
  stroke: rgba(102, 92, 62, 0.45);
  stroke-width: 4;
}

.pin {
  fill: var(--accent);
}

.pin.two {
  fill: var(--rust);
}

.pin.three {
  fill: var(--blue);
}

.panel {
  fill: rgba(255, 255, 255, 0.84);
  stroke: rgba(20, 65, 92, 0.16);
}

.panel.large {
  fill: rgba(20, 65, 92, 0.08);
}

.panel.small {
  fill: rgba(179, 94, 6, 0.08);
}

.bars rect {
  fill: var(--blue);
}

.bars rect:nth-child(2) {
  fill: var(--green);
}

.bars rect:nth-child(3) {
  fill: var(--rust);
}

.matrix rect {
  fill: rgba(179, 94, 6, 0.25);
  stroke: rgba(179, 94, 6, 0.34);
}

.matrix rect:nth-child(2) {
  fill: rgba(58, 99, 49, 0.23);
  stroke: rgba(58, 99, 49, 0.35);
}

.matrix rect:nth-child(3) {
  fill: rgba(179, 94, 6, 0.24);
  stroke: rgba(179, 94, 6, 0.36);
}

.matrix rect:nth-child(4) {
  fill: rgba(20, 65, 92, 0.23);
  stroke: rgba(20, 65, 92, 0.34);
}

.route {
  fill: none;
  stroke: var(--accent);
  stroke-dasharray: 9 12;
  stroke-linecap: round;
  stroke-width: 5;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-strip div {
  padding: 24px clamp(20px, 5vw, 72px);
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.proof-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 15px;
}

.section,
.standards,
.cta {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.standards-copy p {
  margin: 8px 0 0;
  color: #34484B;
  font-size: 21px;
  line-height: 1.6;
}

.services {
  background: var(--white);
}

.section-heading {
  max-width: 780px;
}

.service-grid,
.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-grid article,
.approach-steps article {
  min-height: 286px;
  padding: 28px;
  background: var(--white);
}

.service-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--rust);
  font-weight: 850;
}

.service-grid p,
.approach-steps p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.standards {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: center;
  color: var(--white);
  background: var(--blue);
}

.standards h2,
.standards .eyebrow {
  color: var(--white);
}

.standards .eyebrow {
  opacity: 0.78;
}

.standards-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.standards-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.standards-list span {
  padding: 11px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 750;
}

.approach {
  background: #F1EFE7;
}

.approach-steps {
  grid-template-columns: repeat(3, 1fr);
}

.approach-steps article {
  min-height: 210px;
  background: #FDFCF8;
}

.cta {
  justify-content: space-between;
  color: var(--white);
  background: var(--green);
}

.cta h2 {
  max-width: 780px;
  color: var(--white);
}

.cta .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.cta .button.primary {
  background: var(--rust);
  box-shadow: none;
}

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

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .standards {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .brand {
    font-size: 15px;
  }

  .nav {
    gap: 16px;
    font-size: 14px;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual svg {
    min-height: 330px;
  }

  .visual-topline {
    flex-direction: column;
  }

  .visual-topline span:last-child {
    text-align: left;
  }

  .proof-strip,
  .service-grid,
  .approach-steps {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .service-grid article,
  .approach-steps article {
    min-height: auto;
  }

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