:root {
  --ink: #111719;
  --ink-soft: #273236;
  --paper: #f5f7f4;
  --white: #ffffff;
  --line: #d8dedb;
  --muted: #657174;
  --teal: #14706f;
  --teal-dark: #0d5555;
  --signal: #e3be35;
  --danger: #9f2f2f;
  --success: #176c4b;
  --shadow: 0 18px 50px rgb(17 23 25 / 10%);
  --container: 1180px;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

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

.section--dark {
  color: var(--white);
  background: var(--ink);
}

.section--compact {
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  background: var(--signal);
  content: "";
}

.section--dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: #b8e1df;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 6.5rem);
  font-weight: 790;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 760;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.lead {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.section--dark .lead,
.page-hero .lead {
  color: #d4dedd;
}

.measure {
  max-width: 720px;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button--primary {
  color: var(--ink);
  background: var(--signal);
}

.button--primary:hover {
  background: #f0cb43;
}

.button--secondary {
  color: var(--white);
  border-color: rgb(255 255 255 / 55%);
  background: transparent;
}

.button--secondary:hover {
  border-color: var(--white);
  background: rgb(255 255 255 / 10%);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

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

.button__arrow {
  font-size: 1.15em;
  line-height: 1;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgb(17 23 25 / 10%);
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  line-height: 1;
}

.brand__name {
  font-size: 1.42rem;
  font-weight: 850;
  text-transform: uppercase;
}

.brand__note {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand--logo {
  flex: 0 0 auto;
}

.brand__logo {
  width: 190px;
  height: auto;
}

.footer-brand__logo {
  width: 250px;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__link {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__icon::before {
  transform: translateY(-7px);
}

.nav-toggle__icon::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
  transform: translateY(0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
  transform: translateY(-2px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: min(760px, calc(100svh - 118px));
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: #1c282b;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: rgb(9 15 17 / 66%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -10%;
  bottom: -45%;
  width: 65%;
  height: 92%;
  border: 1px solid rgb(255 255 255 / 18%);
  content: "";
  transform: rotate(-12deg);
}

.hero__image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__content {
  max-width: 980px;
  padding: 90px 0 76px;
}

.hero h1 {
  max-width: 940px;
  margin-bottom: 24px;
}

.hero__lead {
  max-width: 670px;
  margin-bottom: 0;
  color: #dce4e3;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.trust-strip {
  color: var(--white);
  background: var(--teal-dark);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  min-height: 112px;
  padding: 26px 34px;
  border-right: 1px solid rgb(255 255 255 / 18%);
}

.trust-item:first-child {
  border-left: 1px solid rgb(255 255 255 / 18%);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1rem;
}

.trust-item span {
  color: #b8d5d3;
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 84px;
  align-items: center;
}

.split--reverse > :first-child {
  order: 2;
}

.equipment-visual {
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
}

.equipment-visual__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-team-photo {
  height: 520px;
  overflow: hidden;
}

.about-team-photo__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-assessment-photo {
  height: 420px;
  overflow: hidden;
}

.about-assessment-photo__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photo-placeholder {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #bdc8c5;
  color: #536165;
  background:
    linear-gradient(135deg, transparent 48%, rgb(20 112 111 / 18%) 49% 51%, transparent 52%),
    linear-gradient(45deg, transparent 48%, rgb(227 190 53 / 30%) 49% 51%, transparent 52%),
    #e6ebe8;
}

.photo-placeholder::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(17 23 25 / 16%);
  content: "";
}

.photo-placeholder span {
  z-index: 1;
  max-width: 230px;
  padding: 12px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.photo-placeholder--wide {
  min-height: 520px;
}

.photo-placeholder--service {
  min-height: 250px;
  margin-top: 28px;
}

.service-photo {
  aspect-ratio: 1254 / 464;
  margin-top: 28px;
  overflow: hidden;
}

.service-photo__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-photo--placeholder {
  position: relative;
  display: flex;
  padding: 28px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #c4cfcc;
  color: var(--ink-soft);
  background: #e9efec;
  text-align: center;
}

.service-photo--placeholder::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(20 112 111 / 22%);
  content: "";
}

.service-photo--placeholder span,
.service-photo--placeholder strong {
  position: relative;
  z-index: 1;
}

.service-photo--placeholder span {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-photo--placeholder strong {
  max-width: 430px;
  font-size: 1.1rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 46px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > div > .eyebrow {
  margin-bottom: 16px;
}

.section-heading p {
  max-width: 460px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.service-card:is(:hover, :focus-visible) {
  background: #f0f6f4;
  box-shadow: inset 0 0 0 2px var(--teal);
}

.service-card__number {
  margin-bottom: 36px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 850;
}

.service-card h3 {
  font-size: 1.4rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 800;
}

.service-card__link span {
  transition: transform 180ms ease;
}

.service-card:is(:hover, :focus-visible) .service-card__link span {
  transform: translateX(4px);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgb(255 255 255 / 18%);
}

.value {
  padding: 38px;
  background: var(--ink);
}

.value__mark {
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 26px;
  background: var(--signal);
}

.value p {
  margin-bottom: 0;
  color: #bdc9c8;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}

.project-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: #314247;
}

.project-card:first-child {
  grid-row: 1 / span 2;
}

.project-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgb(17 23 25 / 85%) 100%),
    repeating-linear-gradient(125deg, #4b5f63 0 2px, #34484c 2px 56px);
  content: "";
}

.project-card:nth-child(2)::before {
  background:
    linear-gradient(180deg, transparent 20%, rgb(17 23 25 / 88%) 100%),
    repeating-linear-gradient(35deg, #657372 0 4px, #455757 4px 68px);
}

.project-card:nth-child(3)::before {
  background:
    linear-gradient(180deg, transparent 20%, rgb(17 23 25 / 88%) 100%),
    repeating-linear-gradient(90deg, #344f51 0 3px, #476064 3px 75px);
}

.project-card.project-card--with-image::before {
  background: linear-gradient(180deg, rgb(17 23 25 / 5%) 30%, rgb(17 23 25 / 90%) 100%);
}

.project-card__image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__content {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.project-card__content p {
  margin-bottom: 4px;
  color: #cad5d4;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-card__content h3 {
  margin-bottom: 0;
}

.draft-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid currentColor;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--teal-dark);
}

.cta-band::after {
  position: absolute;
  top: -70%;
  right: -5%;
  width: 420px;
  height: 420px;
  border: 70px solid rgb(255 255 255 / 7%);
  content: "";
  transform: rotate(18deg);
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 72px 0;
}

.cta-band h2 {
  max-width: 750px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero::after {
  position: absolute;
  right: -130px;
  bottom: -270px;
  width: 540px;
  height: 540px;
  border: 80px solid rgb(20 112 111 / 28%);
  content: "";
  transform: rotate(18deg);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 930px;
  padding: 94px 0 88px;
}

.page-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

.breadcrumb {
  margin-bottom: 26px;
  color: #9eb1af;
  font-size: 0.82rem;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--white);
}

.services-directory {
  border-bottom: 1px solid var(--line);
}

.services-directory__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.services-directory__grid a {
  display: flex;
  min-height: 190px;
  padding: 28px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.services-directory__grid a:is(:hover, :focus-visible) {
  background: #f0f6f4;
  box-shadow: inset 0 0 0 2px var(--teal);
}

.services-directory__grid span {
  margin-bottom: 24px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 850;
}

.services-directory__grid strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.35;
}

.services-directory__grid small {
  margin-top: auto;
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
}

.service-group[id] {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.service-group + .service-group {
  margin-top: 88px;
}

.service-group__heading {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
  margin-bottom: 38px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.service-group__heading h2,
.service-group__heading p {
  margin-bottom: 0;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 72px;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.service-detail__title {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  align-self: start;
}

.service-detail__title span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 850;
}

.service-detail__title h3 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.service-detail__body > p:first-child {
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.service-list {
  margin: 24px 0 28px;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.service-list li {
  padding-left: 6px;
}

.service-list li + li {
  margin-top: 9px;
}

.service-list li::marker {
  color: var(--teal);
}

.service-list--columns {
  columns: 2;
  column-gap: 42px;
}

.service-list--columns li {
  break-inside: avoid;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
}

.service-maintenance-note {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px 64px;
  margin-top: 64px;
  padding: 42px;
  color: var(--white);
  background: var(--teal-dark);
}

.service-maintenance-note .eyebrow {
  grid-row: 1 / span 2;
  margin-bottom: 0;
  color: #a9ccca;
}

.service-maintenance-note h3,
.service-maintenance-note p:last-child {
  margin-bottom: 0;
}

.service-maintenance-note p:last-child {
  color: #d2e0df;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding-top: 26px;
  border-top: 3px solid var(--signal);
  counter-increment: process;
}

.process-step::before {
  display: block;
  margin-bottom: 30px;
  color: #87aaa8;
  content: "0" counter(process);
  font-size: 0.82rem;
  font-weight: 800;
}

.process-step p {
  margin-bottom: 0;
  color: #bdc9c8;
}

.quote {
  padding: 38px 0 38px 38px;
  border-left: 4px solid var(--signal);
  color: var(--ink-soft);
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  line-height: 1.45;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.reference-item {
  border: 1px solid var(--line);
  background: var(--white);
}

.reference-item__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #e6ebe8;
}

.reference-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reference-item .photo-placeholder {
  min-height: 330px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.reference-item__body {
  padding: 26px;
}

.reference-item__body p {
  margin-bottom: 0;
  color: var(--muted);
}

.reference-item__body .reference-item__meta {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.partner-section {
  overflow: hidden;
}

.partner-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.partner-section__heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.partner-slider__controls {
  display: flex;
  flex: 0 0 auto;
  gap: 4px;
}

.partner-slider__button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  place-items: center;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.partner-slider__button:hover:not(:disabled) {
  color: var(--teal);
}

.partner-slider__button:disabled {
  cursor: default;
  opacity: 0.3;
}

.partner-slider__viewport {
  overflow-x: auto;
  padding: 18px 18px 46px;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 18px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.partner-slider__viewport::-webkit-scrollbar {
  display: none;
}

.partner-slider__track {
  display: grid;
  grid-auto-columns: calc((100% - 48px) / 3);
  grid-auto-flow: column;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-logo {
  display: grid;
  height: 180px;
  min-width: 0;
  border-radius: 3px;
  place-items: center;
  background: var(--white);
  box-shadow:
    0 12px 34px -24px rgb(17 23 25 / 22%),
    0 3px 10px -8px rgb(17 23 25 / 7%);
  scroll-snap-align: start;
}

.partner-logo__image {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  align-items: start;
}

.contact-list {
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.contact-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list span,
.contact-list strong {
  display: block;
}

.contact-list span {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 1rem;
}

.form-panel {
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.87rem;
  font-weight: 760;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #aeb9b7;
  border-radius: 2px;
  color: var(--ink);
  background: var(--white);
}

.form-field textarea {
  min-height: 165px;
  resize: vertical;
}

.file-picker {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.form-field input.file-picker__input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-field label.file-picker__button {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 44px;
  margin: 0;
  padding: 10px 16px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--teal);
  cursor: pointer;
  font-size: 0.87rem;
  font-weight: 750;
}

.form-field label.file-picker__button:hover {
  background: var(--teal-dark);
}

.file-picker__input:focus-visible + .file-picker__button {
  outline: 3px solid rgb(20 112 111 / 24%);
  outline-offset: 2px;
}

.file-picker__selection {
  min-width: 0;
  color: var(--muted);
  font-size: 0.85rem;
  overflow-wrap: anywhere;
}

.file-picker__selection.is-error {
  color: var(--danger);
  font-weight: 700;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgb(20 112 111 / 18%);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.checkbox-field input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--teal);
}

.checkbox-field input:focus {
  outline: none;
}

.checkbox-field input:focus-visible {
  outline: 3px solid rgb(20 112 111 / 24%);
  outline-offset: 2px;
}

.checkbox-field label {
  font-size: 0.85rem;
}

.checkbox-field a {
  color: var(--teal-dark);
  text-decoration: underline;
}

.form-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-note--error {
  color: var(--danger);
  font-weight: 700;
}

.form-note a {
  color: inherit;
  text-decoration: underline;
}

.form-panel .button:disabled {
  opacity: 0.58;
  cursor: wait;
}

.field-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-status {
  display: none;
  margin-bottom: 24px;
  padding: 14px 16px;
  border-left: 4px solid currentColor;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status--success {
  color: var(--success);
  background: #e8f4ee;
}

.form-status--error {
  color: var(--danger);
  background: #f8eaea;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h2 {
  margin: 0;
}

.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 28px;
  gap: 20px;
  align-items: center;
  padding: 25px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 760;
}

.faq-question__icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-question__icon::before,
.faq-question__icon::after {
  position: absolute;
  top: 11px;
  left: 4px;
  width: 16px;
  height: 2px;
  background: var(--teal);
  content: "";
  transition: transform 180ms ease;
}

.faq-question__icon::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-question__icon::after {
  transform: rotate(0);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer__inner {
  max-width: 780px;
  padding: 0 0 25px;
  color: var(--muted);
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  gap: 72px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-nav a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-nav a:hover {
  color: var(--teal-dark);
}

.legal-content h2 {
  margin-top: 54px;
  margin-bottom: 14px;
  font-size: 1.65rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 30px;
}

.legal-content ul {
  padding-left: 20px;
}

.site-footer {
  color: var(--white);
  background: #0b1012;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 0.65fr 0.85fr;
  gap: 70px;
  padding: 74px 0 58px;
}

.footer-brand p {
  max-width: 430px;
  margin: 20px 0 0;
  color: #aab7b6;
}

.site-footer .brand__name {
  color: var(--white);
}

.footer-heading {
  margin-bottom: 18px;
  color: #82918f;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  color: #d7dfde;
}

.footer-links a:hover {
  color: var(--signal);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 28px;
  color: #d7dfde;
  font-style: normal;
}

.footer-contact__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.footer-contact__label {
  color: #82918f;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-contact a:hover {
  color: var(--signal);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: #80908e;
  font-size: 0.78rem;
}

@media (max-width: 980px) {
  .section {
    padding: 78px 0;
  }

  .site-nav__links {
    gap: 18px;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav > .button {
    display: none;
  }

  .split,
  .contact-layout {
    gap: 48px;
  }

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

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

  .service-list--columns {
    columns: 1;
  }

  .partner-slider__track {
    grid-auto-columns: calc((100% - 20px) / 2);
    gap: 20px;
  }

  .service-group__heading,
  .service-detail {
    gap: 40px;
  }

  .footer-main {
    gap: 40px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 66px 0;
  }

  .section--compact {
    padding: 48px 0;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .brand__logo {
    width: 168px;
  }

  .footer-brand__logo {
    width: 225px;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 26px 20px 40px;
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav__links {
    display: block;
  }

  .site-nav__link {
    display: block;
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.15rem;
  }

  .site-nav__link::after {
    display: none;
  }

  .site-nav__link[aria-current="page"] {
    color: var(--teal-dark);
  }

  .site-nav > .button {
    display: flex;
    margin-top: 24px;
  }

  .hero {
    min-height: min(700px, calc(100svh - 92px));
  }

  .hero__content {
    padding: 72px 0 56px;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child {
    min-height: auto;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
    border-left: 0;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .split,
  .contact-layout,
  .service-group__heading,
  .service-detail,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 40px;
  }

  .split--reverse > :first-child {
    order: initial;
  }

  .photo-placeholder,
  .photo-placeholder--wide {
    min-height: 340px;
  }

  .about-team-photo {
    height: 340px;
  }

  .about-assessment-photo {
    height: 340px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 18px;
  }

  .partner-section__heading {
    display: block;
    margin-bottom: 30px;
  }

  .partner-slider__controls {
    margin-top: 20px;
  }

  .partner-slider__track {
    grid-auto-columns: min(82vw, 280px);
    gap: 16px;
  }

  .partner-logo {
    height: 154px;
  }

  .service-grid,
  .services-directory__grid,
  .values-grid,
  .process-grid,
  .reference-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 260px;
    padding: 28px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 300px);
  }

  .project-card:first-child {
    grid-row: auto;
  }

  .cta-band__inner {
    display: block;
    padding: 58px 0;
  }

  .cta-band .button {
    margin-top: 28px;
  }

  .page-hero__inner {
    padding: 70px 0 66px;
  }

  .service-group__heading,
  .service-detail {
    gap: 24px;
  }

  .service-detail {
    padding: 42px 0;
  }

  .service-detail__title {
    position: static;
  }

  .services-directory__grid a {
    min-height: 160px;
    padding: 24px;
  }

  .service-list--columns {
    columns: 1;
  }

  .service-maintenance-note {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 30px 24px;
  }

  .service-maintenance-note .eyebrow {
    grid-row: auto;
  }

  .process-grid {
    gap: 40px;
  }

  .form-panel {
    padding: 28px 20px;
  }

  .form-field--full {
    grid-column: auto;
  }

  .legal-layout {
    gap: 42px;
  }

  .legal-nav {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 58px 0 44px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
  }

  .footer-bottom span + span {
    margin-top: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
