@font-face {
  font-family: "Barlow Condensed";
  src: url("/fonts/barlow-condensed-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("/fonts/barlow-condensed-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #10191c;
  --ink-2: #192428;
  --ink-3: #273439;
  --steel: #59666b;
  --steel-light: #a9b0b1;
  --line: #d4d6d2;
  --paper: #f2f0e9;
  --paper-2: #e9e6dd;
  --white: #fff;
  --signal: #f1592a;
  --signal-dark: #a92f0e;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --shell: min(1440px, calc(100vw - 80px));
  --section-space: clamp(5rem, 8vw, 9rem);
  --shadow: 0 24px 70px rgba(16, 25, 28, 0.18);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

svg {
  display: block;
}

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

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

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.96;
  text-wrap: balance;
  hyphens: none;
  overflow-wrap: normal;
}

h1 {
  font-size: clamp(4.1rem, 7.6vw, 8.6rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(3rem, 5vw, 5.7rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.75rem, 2.5vw, 2.45rem);
  letter-spacing: -0.015em;
}

::selection {
  background: var(--signal);
  color: var(--ink);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section--paper {
  background: var(--paper-2);
}

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

.section--graphite::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  pointer-events: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .8rem 1rem;
  transform: translateY(-180%);
  background: var(--signal);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--steel);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.8rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--signal {
  color: var(--signal-dark);
}

.icon {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.button {
  display: inline-flex;
  min-height: 3.45rem;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  padding: .95rem 1.35rem;
  border: 1px solid transparent;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.1;
  text-transform: uppercase;
  transition: background-color .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.button svg,
.text-link svg,
.cluster-card li svg,
.related-card b svg,
.catalog-cluster__items > a > svg,
.situation-grid b svg,
.drawer-primary > svg {
  width: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform .25s ease;
}

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

.button:hover svg,
.text-link:hover svg,
.cluster-card li a:hover > svg,
.catalog-cluster__items > a:hover > svg,
.related-card:hover b svg,
.situation-grid a:hover b svg {
  transform: translateX(.28rem);
}

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

.button--signal:hover {
  background: #ff6a3d;
}

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

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

.button--ghost {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}

.button--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: .7rem;
  border-bottom: 1px solid currentColor;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.text-link--light {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(16, 25, 28, .08);
}

.service-bar {
  min-height: 2.15rem;
  background: var(--ink);
  color: #d9dddd;
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .095em;
  text-transform: uppercase;
}

.service-bar__inner {
  display: flex;
  min-height: 2.15rem;
  align-items: center;
  justify-content: space-between;
}

.service-bar p {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0;
}

.status-dot {
  display: inline-block;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(241, 89, 42, .15);
}

.service-bar__inner > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.main-nav {
  position: relative;
  display: grid;
  height: 5.35rem;
  grid-template-columns: minmax(170px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 2rem;
}

.brand {
  width: 170px;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 2.35rem;
}

.desktop-nav > a,
.nav-button {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.desktop-nav > a::after,
.nav-button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--signal);
  content: "";
  transition: transform .2s ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current="page"]::after,
.nav-button:hover::after,
.nav-button.is-active::after,
.nav-button[aria-expanded="true"]::after {
  transform: scaleX(1);
}

.nav-button {
  gap: .4rem;
}

.nav-button > svg {
  width: .8rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform .2s ease;
}

.nav-button[aria-expanded="true"] > svg {
  transform: rotate(180deg);
}

.mega-wrap {
  position: static;
  height: 100%;
}

.mega-panel {
  position: absolute;
  z-index: 5;
  top: 100%;
  right: 0;
  left: 0;
  padding: 2.25rem 2.5rem 2.5rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.mega-panel__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--line);
}

.mega-panel__top p {
  margin: .6rem 0 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr .85fr;
  gap: 3rem;
  padding-top: 1.7rem;
}

.mega-kicker {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .75rem;
  color: var(--steel);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.mega-kicker span {
  color: var(--signal-dark);
}

.mega-group > a {
  display: grid;
  min-height: 3.55rem;
  align-content: center;
  padding: .5rem 0;
  border-bottom: 1px solid var(--line);
}

.mega-group > a span {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.1;
}

.mega-group > a small {
  margin-top: .2rem;
  color: var(--steel);
  font-size: .7rem;
}

.mega-group > a:hover span {
  color: var(--signal-dark);
}

.header-call {
  display: grid;
  min-width: 13rem;
  grid-template-columns: 2.5rem auto;
  grid-template-rows: 1fr 1fr;
  justify-self: end;
  line-height: 1.1;
}

.header-call > span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  grid-row: 1 / 3;
  place-items: center;
  margin-right: .8rem;
  background: var(--paper-2);
}

.header-call small {
  align-self: end;
  color: var(--steel);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.header-call strong {
  align-self: start;
  margin-top: .2rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: .025em;
}

.menu-toggle,
.mobile-drawer {
  display: none;
}

.home-hero {
  position: relative;
  min-height: min(780px, calc(100svh - 7.5rem));
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.home-hero__image {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(8, 14, 17, .96) 0%, rgba(8, 14, 17, .83) 37%, rgba(8, 14, 17, .26) 70%, rgba(8, 14, 17, .15) 100%), image-set(url("/assets/hero-inspection-1440.webp") 1x, url("/assets/hero-inspection.jpg") 2x);
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.home-hero__grid,
.not-found__grid {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: min(9vw, 120px) min(9vw, 120px);
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.home-hero__content {
  position: relative;
  display: grid;
  min-height: inherit;
  grid-template-columns: minmax(0, 1fr) 10rem;
  align-items: center;
  gap: 3rem;
  padding-top: 1rem;
  padding-bottom: 5rem;
}

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

.hero-copy h1 {
  max-width: 12ch;
  margin: 1.25rem 0 1.7rem;
  font-size: clamp(4.8rem, 8.3vw, 9.3rem);
  line-height: .83;
  text-transform: uppercase;
}

.hero-copy h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.7);
}

.hero-copy > p {
  max-width: 640px;
  margin-bottom: 2rem;
  color: #d4dada;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.hero-index {
  align-self: end;
  padding: 0 0 7rem 1.2rem;
  border-left: 1px solid rgba(255,255,255,.3);
}

.hero-index span {
  display: block;
  color: var(--signal);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-index strong {
  display: block;
  margin: 1.4rem 0 .5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.hero-index p {
  margin: 0;
  color: #b3bcbc;
  font-size: .68rem;
  line-height: 1.7;
  text-transform: uppercase;
}

.home-hero__foot {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255,255,255,.2);
  background: rgba(9,15,17,.76);
  backdrop-filter: blur(8px);
}

.home-hero__foot .shell {
  display: grid;
  min-height: 4.7rem;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-hero__foot p {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0;
}

.home-hero__foot a {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.home-hero__foot a svg {
  width: 1.1rem;
  fill: none;
  stroke: var(--signal);
  stroke-width: 1.5;
}

.home-hero__foot > .shell > span {
  color: #aeb6b7;
}

.page-hero {
  display: grid;
  min-height: 630px;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  background: var(--ink);
  color: var(--white);
}

.page-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(4rem, 7vw, 7rem) max(3rem, calc((100vw - min(1440px, calc(100vw - 80px))) / 2));
  padding-right: clamp(3rem, 6vw, 7rem);
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 76px 76px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: auto;
  color: #aeb6b7;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.breadcrumbs a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
}

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

.page-hero__copy > .eyebrow {
  margin-top: 3.5rem;
}

.page-hero h1 {
  max-width: 9ch;
  margin: 1.15rem 0 1.5rem;
  font-size: clamp(4.2rem, 6.5vw, 7.5rem);
}

.page-hero--long h1 {
  max-width: 100%;
  font-size: clamp(3.7rem, 5.6vw, 6.5rem);
}

.page-hero__copy > p {
  max-width: 630px;
  margin-bottom: 2rem;
  color: #cad0d0;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.page-hero__media {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  margin: 0;
}

.page-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,25,28,.28), transparent 40%), linear-gradient(0deg, rgba(16,25,28,.7), transparent 30%);
  content: "";
  pointer-events: none;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__media figcaption {
  position: absolute;
  z-index: 1;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
}

.page-hero__media figcaption span {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.page-hero__media figcaption strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

/* Section language ------------------------------------------------------- */

.section-head {
  max-width: 920px;
  margin-bottom: clamp(2.5rem, 5vw, 4.8rem);
}

.section-head h2 {
  max-width: 11ch;
  margin: 1rem 0 0;
}

.section-head > p {
  max-width: 640px;
  margin: 1.3rem 0 0;
  color: var(--steel);
}

.section-head--row {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.55fr) minmax(250px, .65fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 7rem);
}

.section-head--row > p,
.section-head--row > .text-link {
  justify-self: end;
  margin-bottom: .35rem;
}

.section-head--light .eyebrow,
.section--graphite .eyebrow {
  color: #9da7a8;
}

.section-head--light h2,
.section--graphite h2 {
  color: var(--white);
}

.prose {
  max-width: 780px;
}

.prose p {
  color: var(--steel);
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose--large p:first-child {
  color: var(--ink);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.55;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  align-items: start;
  gap: .85rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
}

.check-list .icon {
  margin-top: .3rem;
  color: var(--signal-dark);
}

.home-hero .eyebrow--signal,
.page-hero .eyebrow--signal,
.work-section .eyebrow--signal,
.network-section .eyebrow--signal,
.contact-hero .eyebrow--signal,
.legal-hero .eyebrow--signal,
.not-found .eyebrow--signal {
  color: var(--signal);
}

.work-facts span,
.expertise-card > span,
.contact-card address .icon,
.contact-hero__grid > div:last-child > a > .icon {
  color: var(--signal);
}

/* Homepage --------------------------------------------------------------- */

.intro-statement__grid {
  display: grid;
  grid-template-columns: minmax(210px, .52fr) minmax(0, 1.48fr);
  gap: clamp(3rem, 8vw, 10rem);
}

.intro-statement__grid > div:first-child {
  padding-top: .6rem;
}

.micro-copy {
  max-width: 14rem;
  margin: 2rem 0 0;
  color: var(--steel);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.25;
}

.intro-statement h2 {
  max-width: 15ch;
  margin-bottom: 2rem;
}

.intro-statement h2 em {
  color: var(--signal-dark);
  font-style: normal;
}

.intro-statement__grid > div:last-child > p {
  max-width: 700px;
  margin-bottom: 2rem;
  color: var(--steel);
  font-size: 1.08rem;
}

.cluster-section {
  padding-top: 0;
}

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

.cluster-card {
  min-width: 0;
  padding: clamp(2rem, 3.2vw, 3.5rem);
  border-right: 1px solid var(--line);
}

.cluster-card:first-child {
  padding-left: 0;
}

.cluster-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.cluster-card__head {
  min-height: 9rem;
}

.cluster-card__head > span {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--signal-dark);
  font-family: var(--font-display);
  font-size: .95rem;
}

.cluster-card__head h3 {
  max-width: 9ch;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 3vw, 3.35rem);
}

.cluster-card > p {
  min-height: 5.4rem;
  margin-bottom: 2rem;
  color: var(--steel);
  font-size: .9rem;
}

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

.cluster-card li a {
  display: grid;
  min-height: 4.8rem;
  grid-template-columns: minmax(0, 1fr) 1.2rem;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.cluster-card li b,
.cluster-card li small {
  display: block;
}

.cluster-card li b {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.1;
}

.cluster-card li small {
  margin-top: .25rem;
  color: var(--steel);
  font-size: .65rem;
}

.cluster-card li a:hover b {
  color: var(--signal-dark);
}

.work-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
  background: var(--ink);
  color: var(--white);
}

.work-section::before {
  position: absolute;
  inset: 0;
  opacity: .52;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 84px 84px;
  content: "";
}

.work-section__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, .72fr);
  grid-template-rows: auto auto;
  gap: clamp(2rem, 4vw, 5rem);
}

.work-main {
  position: relative;
  min-height: 620px;
  grid-row: 1 / 3;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.work-main img,
.work-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}

.work-main:hover img,
.work-detail:hover img {
  transform: scale(1.025);
}

.work-main::after,
.work-detail::after {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(9,14,16,.78));
  content: "";
}

.work-main figcaption,
.work-detail figcaption,
.gallery-grid figcaption {
  position: absolute;
  z-index: 1;
  right: 1.35rem;
  bottom: 1.1rem;
  left: 1.35rem;
  color: rgba(255,255,255,.78);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.work-copy {
  padding-top: .6rem;
}

.work-copy h2 {
  max-width: 10ch;
  margin: 1.2rem 0 1.5rem;
  font-size: clamp(3.2rem, 5.2vw, 5.7rem);
}

.work-copy > p {
  max-width: 580px;
  margin-bottom: 2rem;
  color: #bcc4c5;
}

.work-facts {
  margin-bottom: 2rem;
  border-top: 1px solid rgba(255,255,255,.18);
}

.work-facts > div {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.work-facts span {
  color: var(--signal);
  font-family: var(--font-display);
  font-size: .8rem;
}

.work-facts p {
  margin: 0;
  color: #9fa9aa;
  font-size: .78rem;
  line-height: 1.4;
}

.work-facts b {
  display: block;
  margin-bottom: .15rem;
  color: var(--white);
  font-size: .84rem;
}

.work-detail {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
}

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

.situation-grid > a {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(2rem, 3vw, 3.25rem);
  border-right: 1px solid var(--line);
  transition: background-color .25s ease, color .25s ease;
}

.situation-grid > a:first-child {
  padding-left: 0;
}

.situation-grid > a:last-child {
  padding-right: 0;
  border-right: 0;
}

.situation-grid > a > span {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  margin-bottom: 2.6rem;
  border: 1px solid var(--line);
  color: var(--signal-dark);
}

.situation-grid small {
  color: var(--steel);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.situation-grid h3 {
  max-width: 12ch;
  margin: .8rem 0 1rem;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.situation-grid p {
  max-width: 360px;
  margin-bottom: 2rem;
  color: var(--steel);
  font-size: .88rem;
}

.situation-grid b {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-top: auto;
  font-size: .72rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.network-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
  background: var(--ink-2);
  color: var(--white);
}

.network-section::after {
  position: absolute;
  right: -9rem;
  bottom: -10rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255,255,255,.025), 0 0 0 10rem rgba(255,255,255,.018);
  content: "";
}

.network-section__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .72fr);
  gap: clamp(3rem, 8vw, 10rem);
}

.network-section h2 {
  max-width: 10ch;
  margin: 1.2rem 0 0;
}

.network-section__grid > div:last-child {
  padding-top: 2.2rem;
}

.network-section__grid > div:last-child p {
  color: #b9c1c2;
}

.network-section .text-link {
  margin-top: 1rem;
}

.contact-cta {
  padding-block: clamp(4rem, 7vw, 7rem);
  background: var(--signal);
}

.contact-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .75fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
}

.contact-cta .eyebrow {
  color: var(--ink);
}

.contact-cta h2 {
  max-width: 11ch;
  margin: 1rem 0 0;
  color: var(--ink);
}

.contact-cta__grid > div:last-child > p {
  max-width: 520px;
  margin-bottom: 1.8rem;
  color: var(--ink);
  font-weight: 600;
}

.contact-cta__grid > div:last-child > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.contact-cta__phone {
  display: grid;
  line-height: 1.1;
}

.contact-cta__phone small {
  color: var(--ink);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-cta__phone strong {
  margin-top: .3rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

/* Service detail --------------------------------------------------------- */

.detail-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.detail-intro h2,
.services-intro h2 {
  max-width: 11ch;
  margin: 1rem 0 0;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.2);
}

.expertise-card {
  min-height: 330px;
  padding: clamp(2rem, 4vw, 4rem);
  border-right: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.expertise-card:nth-child(2n) {
  border-right: 0;
}

.expertise-card > span {
  display: block;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  color: var(--signal);
  font-family: var(--font-display);
  font-size: .9rem;
}

.expertise-card h3 {
  color: var(--white);
}

.expertise-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: #aeb8b9;
}

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

.process-list li {
  display: grid;
  grid-template-columns: minmax(7rem, .35fr) minmax(0, 1fr);
  gap: 2rem;
  padding: clamp(2rem, 4vw, 3.7rem) 0;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--signal-dark);
  font-family: var(--font-display);
  font-size: 1rem;
}

.process-list li > div {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(280px, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
}

.process-list h3 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.process-list p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--steel);
}

.split-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.split-feature figure {
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  background: var(--paper-2);
}

.split-feature figure img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.split-feature h2 {
  max-width: 10ch;
  margin: 1rem 0 2rem;
}

.split-feature .text-link {
  margin-top: 2rem;
}

.gallery-grid {
  display: grid;
  min-height: 700px;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-grid figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.gallery-grid .gallery-1 {
  grid-row: 1 / 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.025);
}

.gallery-grid figure::after {
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  content: "";
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.capability-grid > article {
  display: grid;
  min-height: 300px;
  grid-template-columns: 4rem minmax(0, 1fr);
  align-content: start;
  gap: 1rem 2rem;
  padding: clamp(2rem, 4vw, 4rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-grid > article:nth-child(2n) {
  border-right: 0;
}

.capability-number {
  color: var(--signal-dark);
  font-family: var(--font-display);
}

.capability-grid h3 {
  margin-bottom: 1.5rem;
}

.capability-grid .check-list {
  grid-column: 2;
}

.capability-grid .check-list li {
  padding: .65rem 0;
  font-size: .84rem;
}

.inquiry-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 3rem;
  padding: clamp(3rem, 6vw, 6rem) max(2rem, calc((100vw - min(1440px, calc(100vw - 80px))) / 2));
  background: var(--signal);
}

.inquiry-band h2 {
  max-width: 13ch;
  margin: 1rem 0;
  color: var(--ink);
}

.inquiry-band p {
  max-width: 690px;
  margin-bottom: 0;
  color: #5a1e0c;
  font-weight: 600;
}

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

.related-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: clamp(2rem, 3vw, 3.2rem);
  border-right: 1px solid var(--line);
  transition: background-color .25s ease;
}

.related-card:first-child {
  padding-left: 0;
}

.related-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.related-card:hover {
  background: rgba(255,255,255,.4);
}

.related-card > span {
  color: var(--signal-dark);
  font-family: var(--font-display);
}

.related-card h3 {
  margin: 2.5rem 0 1rem;
}

.related-card p {
  color: var(--steel);
  font-size: .85rem;
}

.related-card b {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-top: auto;
  font-size: .7rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* Services overview ------------------------------------------------------ */

.services-intro {
  padding-bottom: calc(var(--section-space) * .6);
}

.service-catalog {
  padding-top: 0;
}

.catalog-cluster {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 8rem);
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  border-top: 1px solid var(--ink);
}

.catalog-cluster:last-child {
  border-bottom: 1px solid var(--ink);
}

.catalog-cluster__intro > span {
  color: var(--signal-dark);
  font-family: var(--font-display);
  font-size: 1rem;
}

.catalog-cluster__intro h2 {
  max-width: 8ch;
  margin: 1.2rem 0;
  font-size: clamp(3rem, 4.8vw, 5.4rem);
}

.catalog-cluster__intro p {
  max-width: 440px;
  color: var(--steel);
}

.catalog-cluster__items {
  border-top: 1px solid var(--line);
}

.catalog-cluster__items > a {
  display: grid;
  min-height: 7.3rem;
  grid-template-columns: 3rem minmax(0, 1fr) 1.5rem;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.catalog-cluster__items > a > span {
  align-self: start;
  padding-top: 1.7rem;
  color: var(--signal-dark);
  font-family: var(--font-display);
  font-size: .72rem;
}

.catalog-cluster__items h3 {
  margin: 0 0 .35rem;
  font-size: clamp(1.7rem, 2.3vw, 2.45rem);
}

.catalog-cluster__items p {
  margin: 0;
  color: var(--steel);
  font-size: .8rem;
  line-height: 1.45;
}

.catalog-cluster__items > a:hover h3 {
  color: var(--signal-dark);
}

/* Contact --------------------------------------------------------------- */

.contact-hero,
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 2.2rem 0 clamp(4rem, 8vw, 8rem);
  background: var(--ink);
  color: var(--white);
}

.contact-hero::after,
.legal-hero::after {
  position: absolute;
  top: -16rem;
  right: -12rem;
  width: 48rem;
  height: 48rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(255,255,255,.02), 0 0 0 12rem rgba(255,255,255,.015);
  content: "";
}

.breadcrumbs--light {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.contact-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .65fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
}

.contact-hero h1 {
  max-width: 12ch;
  margin: 1.2rem 0 0;
  text-transform: uppercase;
}

.contact-hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.3px rgba(255,255,255,.7);
}

.contact-hero__grid > div:last-child > p {
  color: #b5bfc0;
}

.contact-hero__grid > div:last-child > a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.25);
}

.contact-hero__grid > div:last-child > a > .icon {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--signal);
}

.contact-hero__grid > div:last-child small,
.contact-hero__grid > div:last-child strong {
  display: block;
}

.contact-hero__grid > div:last-child small {
  color: #9da8a9;
  font-size: .65rem;
  text-transform: uppercase;
}

.contact-hero__grid > div:last-child strong {
  margin-top: .25rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, .65fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 9rem);
}

.contact-form-wrap h2 {
  margin: 1rem 0 1.2rem;
}

.form-note {
  max-width: 700px;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--signal);
  background: var(--paper-2);
  color: var(--steel);
  font-size: .77rem;
}

.contact-form {
  margin-top: 2.8rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.3rem;
}

.field {
  margin-bottom: 1.4rem;
}

.field label {
  display: block;
  margin-bottom: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.field label span,
.consent b {
  color: var(--signal-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #b8bbb7;
  border-radius: 0;
  background: rgba(255,255,255,.55);
  transition: border-color .2s ease, background-color .2s ease;
}

.field input,
.field select {
  min-height: 3.65rem;
  padding: .75rem 1rem;
}

.field textarea {
  min-height: 12rem;
  padding: 1rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #656b6d;
  opacity: 1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  outline: 2px solid transparent;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(241,89,42,.22);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--signal-dark);
}

.field-error {
  display: none;
  margin-top: .35rem;
  color: #a12e0e;
  font-size: .7rem;
}

.field.is-invalid .field-error {
  display: block;
}

.consent {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: .75rem;
  align-items: start;
  margin: .5rem 0 2rem;
  color: var(--steel);
  font-size: .76rem;
}

.consent input {
  width: 1.5rem;
  height: 1.5rem;
  margin: .2rem 0 0;
  accent-color: var(--signal);
}

.consent a {
  padding-block: .25rem;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent.is-invalid {
  color: #a12e0e;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.form-actions p {
  max-width: 360px;
  margin: 0;
  color: var(--steel);
  font-size: .72rem;
}

.form-result {
  padding: clamp(1.6rem, 3.5vw, 2.8rem);
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--signal);
  background: var(--white);
}

.form-result[hidden] {
  display: none;
}

.form-result h3 {
  margin: .8rem 0 1rem;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
}

.form-result > p {
  max-width: 650px;
  color: var(--steel);
}

.form-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.5rem;
}

.form-result__status {
  min-height: 1.4rem;
  margin: 1rem 0 0;
  color: var(--ink) !important;
  font-size: .75rem;
  font-weight: 700;
}

.manual-copy {
  margin: .5rem 0 1rem;
  border-top: 1px solid var(--line);
}

.manual-copy summary {
  display: flex;
  min-height: 2.9rem;
  align-items: center;
  color: var(--ink);
  cursor: pointer;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.manual-copy textarea {
  width: 100%;
  min-height: 11rem;
  padding: .9rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: .76rem/1.55 var(--font-body);
  resize: vertical;
}

.form-result__address {
  padding-top: 1rem;
  margin: .4rem 0 0;
  border-top: 1px solid var(--line);
  font-size: .72rem;
}

.form-result__address a,
.legal-copy a {
  text-decoration: underline;
  text-decoration-color: var(--signal);
  text-underline-offset: 3px;
}

.legal-copy a {
  display: inline-block;
  padding-block: .2rem;
}

.contact-sidebar {
  position: sticky;
  top: 2rem;
}

.contact-card {
  padding: clamp(2rem, 3.5vw, 3.5rem);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-card .eyebrow {
  color: #9da8a9;
}

.contact-card h2 {
  margin: 1.1rem 0 2.2rem;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.contact-card address {
  margin-bottom: 2rem;
  font-style: normal;
}

.contact-card address > p {
  display: grid;
  grid-template-columns: 1.3rem minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
  padding: 1rem 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,.18);
}

.contact-card address > p:last-child {
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.contact-card address .icon {
  margin-top: .3rem;
  color: var(--signal);
}

.contact-card address a,
.contact-card address small {
  display: block;
}

.contact-card address small {
  margin: .25rem 0 .7rem;
  color: #8f9a9c;
  font-size: .6rem;
  text-transform: uppercase;
}

.contact-card .text-link {
  max-width: 100%;
  color: var(--white);
  font-size: .65rem;
}

.contact-meta {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-top: 0;
}

.contact-meta p {
  margin: 0 0 1rem;
  font-size: .76rem;
}

.contact-meta p:last-child {
  margin-bottom: 0;
}

.contact-meta span {
  display: block;
  margin-bottom: .15rem;
  color: var(--steel);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Legal, 404 and footer -------------------------------------------------- */

.legal-hero .shell {
  position: relative;
  z-index: 1;
}

.legal-hero .breadcrumbs {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.legal-hero h1 {
  margin: 1rem 0;
  text-transform: uppercase;
}

.legal-hero .shell > p {
  max-width: 650px;
  color: #aeb8b9;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, .5fr) minmax(0, 1.5fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 9rem);
}

.legal-layout > aside {
  position: sticky;
  top: 2rem;
  padding-top: 1.2rem;
  border-top: 2px solid var(--ink);
}

.legal-layout > aside p,
.legal-layout > aside strong,
.legal-layout > aside span {
  display: block;
}

.legal-layout > aside p {
  margin-bottom: .4rem;
  color: var(--steel);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.legal-layout > aside strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.legal-layout > aside span {
  margin-top: .6rem;
  color: var(--steel);
  font-size: .72rem;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin: 3rem 0 .8rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

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

.legal-copy p {
  color: #4e5a5e;
}

.legal-notice {
  padding: 1.5rem;
  margin: 2.5rem 0;
  border-left: 4px solid var(--signal);
  background: var(--paper-2);
}

.legal-notice strong {
  display: block;
  margin-bottom: .35rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.legal-notice p {
  margin: 0;
  font-size: .8rem;
}

.not-found {
  position: relative;
  display: grid;
  min-height: calc(100svh - 7.5rem);
  place-items: center;
  overflow: hidden;
  padding-block: 6rem;
  background: var(--ink);
  color: var(--white);
}

.not-found > .shell {
  position: relative;
  z-index: 1;
}

.not-found__code {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-55%);
  color: transparent;
  font-family: var(--font-display);
  font-size: min(34vw, 35rem);
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255,255,255,.12);
}

.not-found h1 {
  position: relative;
  max-width: 8ch;
  margin: 1rem 0 1.5rem;
  text-transform: uppercase;
}

.not-found p {
  position: relative;
  max-width: 560px;
  color: #b6c0c1;
}

.not-found > .shell > div {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

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

.footer-rule {
  height: 4px;
  background: #202b2e;
}

.footer-rule span {
  display: block;
  width: 34%;
  height: 100%;
  background: var(--signal);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(170px, .62fr) minmax(210px, .75fr) minmax(220px, .65fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(4rem, 7vw, 7rem);
}

.footer-brand {
  display: block;
  width: 190px;
}

.footer-brand img {
  opacity: .92;
  filter: grayscale(1) invert(1) brightness(2.2);
}

.footer-about > p {
  max-width: 390px;
  margin: 1.7rem 0 2rem;
  color: #96a1a3;
  font-size: .8rem;
}

.footer-links > p,
.footer-contact > p {
  margin-bottom: 1.35rem;
  color: var(--signal);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-links > a,
.footer-contact > a,
.footer-contact > span {
  display: block;
  padding: .4rem 0;
  color: #b3bcbd;
  font-size: .75rem;
}

.footer-links > a:hover,
.footer-contact > a:hover {
  color: var(--white);
}

.footer-contact {
  font-style: normal;
}

.footer-contact > span {
  margin-bottom: 1rem;
}

.footer-bottom {
  display: flex;
  min-height: 4.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #8b9699;
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 1.5rem;
}

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

.footer-bottom a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
}

/* Motion ---------------------------------------------------------------- */

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive ------------------------------------------------------------ */

@media (max-width: 1260px) {
  :root {
    --shell: min(100% - 56px, 1180px);
  }

  .main-nav {
    grid-template-columns: 160px auto minmax(190px, 1fr);
    gap: 1.4rem;
  }

  .desktop-nav {
    gap: 1.5rem;
  }

  .header-call {
    min-width: 11.2rem;
  }

  .footer-main {
    grid-template-columns: minmax(250px, 1.2fr) repeat(3, minmax(160px, 1fr));
    gap: 2.2rem;
  }
}

@media (max-width: 1020px) {
  :root {
    --shell: calc(100% - 48px);
    --section-space: clamp(4.5rem, 9vw, 7rem);
  }

  h1 {
    font-size: clamp(3.8rem, 10vw, 6.2rem);
  }

  .service-bar__inner > div,
  .desktop-nav,
  .header-call {
    display: none;
  }

  .main-nav {
    height: 4.9rem;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 156px;
  }

  .menu-toggle {
    display: grid;
    width: 3.25rem;
    height: 3.25rem;
    place-items: center;
    border: 0;
    background: var(--ink);
    color: var(--white);
  }

  .menu-toggle__lines {
    display: grid;
    width: 1.25rem;
    gap: .35rem;
  }

  .menu-toggle__lines i {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform .2s ease;
  }

  .menu-toggle[aria-expanded="true"] i:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .mobile-drawer {
    position: fixed;
    z-index: 99;
    top: 7.05rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    overflow-y: auto;
    background: rgba(6,11,13,.76);
    overscroll-behavior: contain;
  }

  .mobile-drawer[hidden] {
    display: none;
  }

  .mobile-drawer__inner {
    width: min(100%, 580px);
    min-height: 100%;
    margin-left: auto;
    padding: 1.5rem clamp(1.4rem, 5vw, 3rem) 2.5rem;
    background: var(--paper);
    box-shadow: -24px 0 70px rgba(0,0,0,.28);
  }

  .drawer-head {
    display: flex;
    min-height: 3.5rem;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--ink);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .drawer-head button {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
    gap: .55rem;
    border: 0;
    background: transparent;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
  }

  .drawer-head button span {
    color: var(--signal-dark);
    font-size: 1.4rem;
    font-weight: 400;
  }

  .mobile-drawer nav {
    padding-block: 1rem;
  }

  .drawer-primary {
    display: flex;
    min-height: 3.7rem;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
  }

  .mobile-drawer details {
    border-bottom: 1px solid var(--line);
  }

  .mobile-drawer summary {
    display: flex;
    min-height: 4.1rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
  }

  .mobile-drawer summary::-webkit-details-marker {
    display: none;
  }

  .mobile-drawer summary > span {
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 600;
  }

  .mobile-drawer summary b {
    margin-right: 1rem;
    color: var(--signal-dark);
    font-size: .7rem;
  }

  .mobile-drawer summary > svg {
    width: .9rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: transform .2s ease;
  }

  .mobile-drawer details[open] summary > svg {
    transform: rotate(180deg);
  }

  .mobile-drawer details > div {
    padding: 0 0 1rem 2.1rem;
  }

  .mobile-drawer details a {
    display: flex;
    min-height: 2.8rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--steel);
    font-size: .78rem;
  }

  .mobile-drawer details a span {
    color: var(--signal-dark);
  }

  .drawer-contact {
    padding: 1.3rem;
    background: var(--ink);
    color: var(--white);
  }

  .drawer-contact > p {
    margin-bottom: .7rem;
    color: var(--signal);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .drawer-contact > a {
    display: flex;
    min-height: 3rem;
    align-items: center;
    gap: 1rem;
  }

  .drawer-contact .icon {
    color: var(--signal);
  }

  .drawer-contact small,
  .drawer-contact span {
    display: block;
  }

  .drawer-contact small {
    color: #889496;
    font-size: .56rem;
    text-transform: uppercase;
  }

  .home-hero {
    min-height: 720px;
  }

  .home-hero__content {
    grid-template-columns: 1fr;
    padding-bottom: 5.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(4.2rem, 11vw, 7rem);
  }

  .hero-index {
    display: none;
  }

  .page-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .page-hero__copy {
    min-height: 570px;
    padding: 3rem var(--shell-side, 24px) 4.5rem;
    padding-inline: calc((100% - var(--shell)) / 2);
  }

  .page-hero__media {
    min-height: 520px;
  }

  .cluster-grid,
  .situation-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .cluster-card,
  .cluster-card:first-child,
  .cluster-card:last-child,
  .situation-grid > a,
  .situation-grid > a:first-child,
  .situation-grid > a:last-child,
  .related-card,
  .related-card:first-child,
  .related-card:last-child {
    padding: 2.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cluster-card:last-child,
  .situation-grid > a:last-child,
  .related-card:last-child {
    border-bottom: 0;
  }

  .cluster-card__head,
  .cluster-card > p {
    min-height: 0;
  }

  .cluster-card > p {
    max-width: 620px;
  }

  .situation-grid > a {
    min-height: 310px;
  }

  .work-section__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .work-main {
    min-height: 560px;
    grid-row: auto;
  }

  .work-copy {
    padding-block: 2rem;
  }

  .work-detail {
    min-height: 390px;
  }

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

  .footer-about {
    grid-column: 1 / 3;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 36px);
    --section-space: 3.75rem;
  }

  html {
    scroll-padding-top: 6rem;
  }

  body {
    font-size: .95rem;
  }

  h1 {
    font-size: clamp(3.6rem, 16vw, 5.7rem);
  }

  h2 {
    font-size: clamp(2.8rem, 12.5vw, 4.3rem);
  }

  h3 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .service-bar {
    min-height: 1.8rem;
  }

  .service-bar__inner {
    min-height: 1.8rem;
  }

  .service-bar p {
    font-size: .57rem;
    letter-spacing: .07em;
  }

  .main-nav {
    height: 4.4rem;
  }

  .mobile-drawer {
    top: 6.2rem;
  }

  .brand {
    width: 140px;
  }

  .menu-toggle {
    width: 3rem;
    height: 3rem;
  }

  .button {
    min-height: 3.3rem;
    padding-inline: 1.15rem;
    font-size: .7rem;
  }

  .home-hero {
    min-height: max(660px, calc(100svh - 6.2rem));
  }

  .home-hero__image {
    background-image: linear-gradient(90deg, rgba(8,14,17,.97), rgba(8,14,17,.68)), image-set(url("/assets/hero-inspection-720.webp") 1x, url("/assets/hero-inspection-1440.webp") 2x);
    background-position: 58% center;
  }

  .home-hero__content {
    align-items: center;
    padding-top: 0;
    padding-bottom: 5.2rem;
  }

  .hero-copy h1 {
    margin: 1rem 0 1.35rem;
    font-size: clamp(3.75rem, 17vw, 5.8rem);
    line-height: .86;
  }

  .hero-copy > p {
    font-size: .98rem;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .home-hero__foot .shell {
    min-height: 4.2rem;
    grid-template-columns: 1fr auto;
    gap: .8rem;
  }

  .home-hero__foot p,
  .home-hero__foot > .shell > span {
    display: none;
  }

  .home-hero__foot a {
    grid-column: 2;
    font-size: 1.05rem;
  }

  .intro-statement__grid,
  .section-head--row,
  .network-section__grid,
  .contact-cta__grid,
  .detail-intro__grid,
  .split-feature__grid,
  .catalog-cluster,
  .contact-hero__grid,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .intro-statement__grid,
  .network-section__grid,
  .contact-cta__grid,
  .detail-intro__grid,
  .split-feature__grid,
  .catalog-cluster,
  .contact-hero__grid,
  .contact-layout,
  .legal-layout {
    gap: 2.5rem;
  }

  .section-head--row > p,
  .section-head--row > .text-link {
    justify-self: start;
  }

  .micro-copy {
    margin-top: 1rem;
  }

  .cluster-card__head h3 {
    font-size: 2.65rem;
  }

  .cluster-card li a {
    min-height: 3.65rem;
  }

  .cluster-card li small {
    display: block;
    font-size: .63rem;
    line-height: 1.35;
  }

  .work-main {
    min-height: 360px;
  }

  .work-detail {
    min-height: 230px;
  }

  .situation-grid > a {
    min-height: 240px;
  }

  .network-section__grid > div:last-child {
    padding-top: 0;
  }

  .contact-cta__grid > div:last-child > div {
    align-items: stretch;
    flex-direction: column;
  }

  .page-hero__copy {
    min-height: 470px;
    padding-top: 1.5rem;
    padding-bottom: 3.5rem;
  }

  .page-hero__copy > .eyebrow {
    margin-top: 2.5rem;
  }

  .page-hero h1 {
    margin-bottom: 1.2rem;
    font-size: clamp(3.6rem, 15vw, 5.5rem);
  }

  .page-hero--long h1 {
    font-size: clamp(3rem, 12.4vw, 4.5rem);
  }

  .page-hero__media {
    min-height: 340px;
  }

  .page-hero__media figcaption {
    right: 1.2rem;
    bottom: 1.2rem;
    left: 1.2rem;
  }

  .expertise-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .expertise-card,
  .expertise-card:nth-child(2n),
  .capability-grid > article,
  .capability-grid > article:nth-child(2n) {
    min-height: 0;
    padding: 2.5rem 0;
    border-right: 0;
  }

  .expertise-card > span {
    margin-bottom: 2rem;
  }

  .process-list li,
  .process-list li > div {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-list li {
    padding: 1.8rem 0;
  }

  .process-list > li > span {
    margin-bottom: .5rem;
  }

  .split-feature figure {
    min-height: 420px;
  }

  .gallery-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-grid .gallery-1 {
    grid-row: auto;
  }

  .gallery-grid figure {
    min-height: 270px;
  }

  .capability-grid > article {
    grid-template-columns: 2.5rem minmax(0, 1fr);
  }

  .inquiry-band {
    grid-template-columns: 1fr;
    align-items: start;
    padding-inline: 18px;
  }

  .inquiry-band .button {
    width: 100%;
  }

  .related-card {
    min-height: 230px;
  }

  .catalog-cluster__intro h2 {
    font-size: 3.7rem;
  }

  .catalog-cluster__items > a {
    min-height: 7rem;
    grid-template-columns: 2rem minmax(0, 1fr) 1.1rem;
    gap: .8rem;
  }

  .catalog-cluster__items p {
    display: -webkit-box;
    overflow: hidden;
    font-size: .68rem;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .contact-hero,
  .legal-hero {
    padding-top: 1.2rem;
  }

  .contact-hero .breadcrumbs,
  .legal-hero .breadcrumbs {
    margin-bottom: 3.5rem;
  }

  .contact-hero h1 {
    font-size: clamp(3.6rem, 15vw, 5.4rem);
  }

  .contact-hero__grid > div:last-child > a {
    margin-top: 1.8rem;
  }

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

  .contact-sidebar,
  .legal-layout > aside {
    position: static;
  }

  .legal-layout > aside {
    max-width: 390px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.4rem;
  }

  .footer-about {
    grid-column: 1 / 3;
  }

  .footer-contact {
    grid-column: 1 / 3;
  }

  .footer-links {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.13);
  }

  .footer-links > a,
  .footer-contact > a,
  .footer-contact > span {
    font-size: .8rem;
  }

  .footer-links > p,
  .footer-contact > p {
    font-size: .67rem;
  }

  .form-result__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-result__actions .button {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1.3rem;
    gap: .6rem;
  }

  .not-found__code {
    top: 14%;
    transform: none;
    font-size: 55vw;
  }
}

@media (min-width: 1800px) {
  .home-hero__image {
    background-image: linear-gradient(90deg, rgba(8, 14, 17, .96) 0%, rgba(8, 14, 17, .83) 37%, rgba(8, 14, 17, .26) 70%, rgba(8, 14, 17, .15) 100%), url("/assets/hero-inspection.jpg");
  }
}

@media (max-width: 420px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .eyebrow {
    font-size: .62rem;
    letter-spacing: .12em;
  }

  .hero-copy h1 {
    font-size: 3.65rem;
  }

  .page-hero h1,
  .contact-hero h1,
  .legal-hero h1 {
    font-size: 3.6rem;
  }

  .page-hero__media {
    min-height: 350px;
  }

  .contact-card {
    padding: 1.6rem;
  }

  .form-actions .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
