:root {
  --bg: #fbfaf6;
  --paper: #ffffff;
  --muted: #f1f0ea;
  --ink: #20221f;
  --soft: #6f756b;
  --line: #dedbd0;
  --olive: #75835a;
  --olive-dark: #4d5c38;
  --charcoal: #30332f;
  --shadow: 0 24px 70px rgba(31, 34, 30, 0.13);
  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: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 4px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  left: 20px;
  right: 20px;
  top: 18px;
  z-index: 50;
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 22px;
  align-items: center;
  padding: 10px 10px 10px 18px;
  color: white;
  background: rgba(34, 36, 32, 0.2);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(18px);
  border-radius: 6px;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.site-header.is-scrolled {
  background: rgba(251, 250, 246, 0.93);
  color: var(--ink);
  border-color: rgba(32,34,31,0.12);
  box-shadow: 0 16px 44px rgba(31, 34, 30, 0.1);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  letter-spacing: 0.01em;
  min-height: 44px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 34px);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.desktop-nav a, .site-footer a { transition: color 180ms ease; }
.desktop-nav a:hover, .site-footer a:hover { color: var(--olive); }
.header-cta {
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--olive);
  color: white;
  font-weight: 700;
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease;
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile-nav {
  position: fixed;
  top: 92px;
  left: 20px;
  right: 20px;
  z-index: 45;
  display: none;
  padding: 12px;
  background: rgba(251,250,246,0.98);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.mobile-nav.is-open { display: grid; }
.mobile-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border-bottom: 0; }

.hero {
  position: relative;
  min-height: 760px;
  height: 92vh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--charcoal);
}
.hero picture, .hero img, .hero-video, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-video {
  z-index: 0;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
}
.hero picture {
  z-index: 0;
}
.hero img {
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(0.86) contrast(1.03);
}
.hero-video + picture {
  opacity: 0;
}
.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,22,19,0.45), rgba(20,22,19,0.42)),
    radial-gradient(circle at 50% 55%, rgba(117,131,90,0.18), transparent 42%);
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(940px, calc(100% - 36px));
  margin-top: 48px;
  color: white;
  text-align: center;
}
.hero-content.reveal {
  opacity: 1;
  transform: none;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--olive);
  font-size: 0.75rem;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.hero .eyebrow { color: #dce6cc; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 7vw, 6.1rem);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: 0;
}
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0;
}
h3 {
  margin: 0;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.hero-content p:not(.eyebrow) {
  width: min(710px, 100%);
  margin: 22px auto 0;
  color: rgba(255,255,255,0.86);
  font-size: clamp(1rem, 2vw, 1.22rem);
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 760;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 3px solid rgba(117, 131, 90, 0.38);
  outline-offset: 3px;
}
.button-primary { background: var(--olive); color: white; }
.button-primary:hover { background: var(--olive-dark); }
.button-secondary { color: white; border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.08); }

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}
.section-head {
  width: min(840px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}
.service-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(31,34,30,0.06);
}
.service-card img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  background: var(--muted);
}
.service-card div { padding: 26px; }
.service-card p { color: var(--soft); margin: 12px 0 22px; }
.service-card a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--olive-dark);
  font-weight: 750;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: white;
}
.split-copy { max-width: 680px; justify-self: end; }
.split-copy p:not(.eyebrow), .check-list { color: rgba(255,255,255,0.72); }
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 28px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 12px;
  height: 12px;
  border: 3px solid var(--olive);
  border-radius: 50%;
}
.process-panel {
  display: grid;
  gap: 14px;
}
.process-panel div {
  padding: 28px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
}
.process-panel span {
  display: block;
  color: #c5d2ad;
  margin-bottom: 18px;
  font-weight: 800;
}
.process-panel p { margin: 10px 0 0; color: rgba(255,255,255,0.67); }

.metrics-map {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
  background: var(--muted);
}
.metrics-copy { max-width: 660px; justify-self: end; }
.metrics-copy p:not(.eyebrow) { color: var(--soft); }
.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.metrics div {
  padding: 22px 16px;
  background: rgba(255,255,255,0.68);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.metrics strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
  font-weight: 500;
}
.metrics span { color: var(--soft); font-size: 0.85rem; }
.map-card {
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(18px, 4vw, 42px);
  box-shadow: var(--shadow);
}
.pin circle { fill: var(--olive); stroke: white; stroke-width: 5; }
.pin text {
  fill: var(--charcoal);
  font-size: 20px;
  text-anchor: middle;
  font-weight: 700;
}

.region-map {
  width: 100%;
  overflow: visible;
}
.map-shape {
  transform-origin: center;
  animation: mapBreathe 6s ease-in-out infinite;
}
.shape-river {
  animation-delay: .7s;
}
.map-road {
  fill: none;
  stroke: var(--olive);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 18 16;
  stroke-dashoffset: 190;
  animation: routeDraw 5s linear infinite;
}
.road-b {
  opacity: .38;
  stroke-width: 3;
  animation-duration: 7s;
}
.map-pin circle:not(.pulse) {
  fill: var(--olive);
  stroke: #fff;
  stroke-width: 6;
}
.map-pin .pulse {
  fill: var(--olive);
  opacity: .16;
  animation: pinPulse 2.6s ease-out infinite;
  animation-delay: var(--d);
}
.map-pin text {
  fill: #444740;
  font-size: 21px;
  font-weight: 800;
  text-anchor: middle;
}
.scan-dot {
  offset-path: path("M168 327 C250 255 312 339 382 268 C430 219 487 217 554 190");
  animation: scanRoute 5s ease-in-out infinite;
}

@keyframes routeDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes pinPulse {
  0% { transform: scale(.45); opacity: .34; }
  75%, 100% { transform: scale(1.35); opacity: 0; }
}
@keyframes mapBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.018); }
}
@keyframes scanRoute {
  0% { offset-distance: 0%; opacity: 0; }
  12% { opacity: 1; }
  85% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

.motion-section {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(340px, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding: clamp(70px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background: #fff;
}
.motion-copy {
  max-width: 560px;
  justify-self: end;
}
.motion-copy p:not(.eyebrow) {
  color: var(--soft);
}
.video-frame {
  position: relative;
  min-height: 320px;
  border: 1px solid var(--line);
  background: #f3f3f1;
  overflow: hidden;
}
.video-frame video {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(.78) contrast(1.02);
}
.video-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: white;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.video-caption span {
  padding: 8px 10px;
  background: rgba(65, 66, 63, .78);
}

.partners { background: var(--bg); }
.partner-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.partner-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.5);
}
.partner-card span { color: var(--olive); font-weight: 800; }
.partner-card p { margin: 16px 0 0; color: var(--soft); }

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 76px);
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
  background: #e8e8df;
}
.contact-copy { max-width: 620px; justify-self: end; }
.contact-copy p:not(.eyebrow) { color: var(--soft); }
.contact-form {
  width: min(760px, 100%);
  padding: clamp(22px, 4vw, 40px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 760;
}
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  min-height: 48px;
  padding: 12px 14px;
  background: #fbfaf6;
  color: var(--ink);
}
textarea { resize: vertical; }
.privacy-check {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  color: var(--soft);
  font-weight: 500;
  line-height: 1.45;
}
.privacy-check input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 2px;
}
.privacy-check a { color: var(--olive-dark); text-decoration: underline; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: white;
}
.site-footer p { margin: 8px 0 0; color: rgba(255,255,255,0.65); }
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.78);
}

.legal-page {
  background: var(--bg);
}
.legal-content {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 46px 0 72px;
}
.legal-brand {
  color: var(--ink);
  margin-bottom: 46px;
}
.legal-content h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 8vw, 5.4rem);
}
.legal-content h2 {
  margin: 34px 0 10px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.legal-content p {
  color: var(--soft);
}
.legal-content a {
  color: var(--olive-dark);
  text-decoration: underline;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    left: 12px;
    right: 12px;
    top: 12px;
  }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .mobile-nav { top: 84px; left: 12px; right: 12px; }
  .hero {
    min-height: 680px;
    height: 88vh;
  }
  .service-grid, .split-section, .metrics-map, .contact-band {
    grid-template-columns: 1fr;
  }
  .split-copy, .metrics-copy, .contact-copy { justify-self: start; max-width: 100%; }
  .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .motion-section { grid-template-columns: 1fr; }
  .motion-copy { justify-self: start; max-width: 100%; }
}

@media (max-width: 640px) {
  .brand span:last-child { max-width: 168px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .site-header { min-height: 58px; padding-left: 12px; }
  .brand-mark { width: 34px; height: 34px; }
  .hero {
    min-height: 650px;
    place-items: end center;
    padding-bottom: 58px;
  }
  .hero-content { text-align: left; }
  .hero-actions { justify-content: flex-start; }
  .hero-actions .button { width: 100%; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.6rem); }
  h2 { font-size: clamp(2rem, 11vw, 3rem); }
  .service-card div, .partner-card { padding: 22px; }
  .metrics { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .site-footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-video { display: none; }
  .hero-video + picture { opacity: 1; }
}

/* BE-inspired visual pass: closer corporate rhythm, uppercase hero, flatter cards. */
:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --muted: #f3f3f1;
  --ink: #343632;
  --soft: #72756e;
  --line: #ddddda;
  --olive: #7b8b45;
  --olive-dark: #617033;
  --charcoal: #41423f;
  --shadow: 0 14px 38px rgba(25, 28, 24, 0.08);
}

body {
  background: #fff;
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
}

.site-header {
  left: 0;
  right: 0;
  top: 0;
  min-height: 76px;
  padding: 0 clamp(18px, 5vw, 70px);
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #3f413d;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.site-header.is-scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 12px 34px rgba(0,0,0,0.07);
}

.brand {
  text-transform: uppercase;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

.brand-mark {
  border-radius: 0;
  border-width: 2px;
  color: var(--olive);
}

.desktop-nav {
  justify-content: flex-end;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.header-cta {
  min-height: 42px;
  border-radius: 999px;
  padding-inline: 24px;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.hero {
  height: 76vh;
  min-height: 620px;
  margin-top: 0;
}

.hero-video,
.hero img {
  filter: grayscale(0.1) saturate(0.72) contrast(1.02);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(16, 18, 16, 0.42), rgba(16, 18, 16, 0.58)),
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0.22), transparent 46%);
}

.hero-content {
  width: min(980px, calc(100% - 36px));
  margin-top: 62px;
}

.hero .eyebrow,
.eyebrow {
  font-size: 0.69rem;
  letter-spacing: 0.24em;
  color: var(--olive);
}

.hero .eyebrow {
  color: rgba(255,255,255,0.94);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

h1 {
  font-family: "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.25rem, 6vw, 5.7rem);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 3px 26px rgba(0, 0, 0, 0.38);
}

h2 {
  font-family: "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.8rem, 3.9vw, 4rem);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h3 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.hero-content p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.button {
  min-height: 44px;
  border-radius: 0;
  padding-inline: 24px;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.button-secondary {
  background: rgba(255,255,255,0.9);
  color: #343632;
  border-color: rgba(255,255,255,0.9);
}

.section {
  padding-top: clamp(70px, 8vw, 112px);
  padding-bottom: clamp(70px, 8vw, 112px);
}

.section-head {
  margin-bottom: 48px;
}

.service-grid {
  gap: 24px;
}

.service-card {
  box-shadow: none;
  border-color: #e2e2df;
  text-align: center;
}

.service-card img {
  aspect-ratio: 1.35 / 1;
}

.service-card div {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card p {
  font-size: 0.9rem;
}

.service-card a {
  margin-top: auto;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.split-section {
  background: #fff;
  color: var(--ink);
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
}

.split-copy {
  justify-self: end;
}

.split-copy p:not(.eyebrow),
.check-list,
.process-panel p {
  color: var(--soft);
}

.process-panel div {
  background: #f7f7f4;
  border-color: var(--line);
  color: var(--ink);
}

.process-panel span {
  color: var(--olive);
}

.metrics-map {
  background: #f3f3f1;
}

.metrics div,
.map-card {
  box-shadow: none;
  border-color: #e0dfd8;
}

.metrics strong {
  font-family: "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
  font-weight: 300;
  color: #5d6257;
}

.partners {
  background: #fff;
}

.partner-card {
  min-height: 230px;
  box-shadow: none;
}

.contact-band {
  background: #f3f3f1;
  align-items: center;
}

.contact-form {
  box-shadow: none;
}

.site-footer {
  background: #424340;
}

@media (max-width: 980px) {
  .site-header {
    left: 0;
    right: 0;
    top: 0;
    grid-template-columns: auto 1fr auto;
  }
  .mobile-nav {
    top: 76px;
    left: 0;
    right: 0;
    border-radius: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 540px;
    height: 72vh;
    place-items: center;
    padding-bottom: 0;
  }
  .hero-content {
    text-align: center;
  }
  h1 {
    font-size: clamp(1.85rem, 9.5vw, 3rem);
    letter-spacing: 0.12em;
  }
  h2 {
    font-size: clamp(1.55rem, 7vw, 2.25rem);
    letter-spacing: 0.06em;
  }
  .hero-content p:not(.eyebrow) {
    font-size: 0.78rem;
  }
  .service-card div {
    min-height: 210px;
  }
  .split-section,
  .metrics-map,
  .contact-band {
    grid-template-columns: 1fr;
  }
  .split-copy,
  .metrics-copy,
  .contact-copy {
    justify-self: stretch;
  }
  .split-section,
  .metrics-map,
  .contact-band,
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .split-copy h2,
  .metrics-copy h2,
  .contact-copy h2 {
    max-width: 100%;
    word-break: normal;
    overflow-wrap: normal;
  }
  .process-panel {
    width: 100%;
  }
  .motion-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .video-frame,
  .video-frame video {
    min-height: 230px;
  }
  .video-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
