:root {
  --ink: #111820;
  --navy: #0b1420;
  --navy-2: #142130;
  --graphite: #22272d;
  --steel: #64717e;
  --line: #d9dee4;
  --paper: #f4f6f8;
  --white: #ffffff;
  --copper: #d36f2c;
  --copper-2: #f08b42;
  --shadow: 0 26px 80px rgba(9, 17, 28, .16);
  --radius: 6px;
  --max: 1216px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(15, 23, 36, .035) 1px, transparent 1px) 0 0 / 96px 96px,
    var(--paper);
  font-family: var(--font);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 4px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(11, 20, 32, .82);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(11, 20, 32, .96);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .2);
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 880;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--copper), #a95828);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
}

.brand-text {
  display: grid;
  line-height: 1.08;
}

.brand-text span:last-child {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .01em;
}

.primary-nav a {
  position: relative;
  padding: 27px 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;
  height: 2px;
  background: var(--copper-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus,
.primary-nav a[aria-current="page"] {
  color: var(--white);
}

.primary-nav a:hover::after,
.primary-nav a:focus::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  background: var(--copper);
  color: var(--white);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 800;
  transition: background .2s ease, transform .2s ease;
}

.nav-cta:hover,
.nav-cta:focus {
  background: var(--copper-2);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border-radius: 2px;
  cursor: pointer;
}

.menu-toggle svg {
  width: 23px;
  height: 23px;
}

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  min-height: 676px;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.hero--compact {
  min-height: 520px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.03);
  filter: saturate(.9) contrast(1.06);
  animation: heroDrift 22s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 14, 23, .96), rgba(11, 18, 29, .72) 48%, rgba(11, 18, 29, .24)),
    linear-gradient(0deg, rgba(9, 15, 24, .92), rgba(9, 15, 24, .14) 58%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 74px 0 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px) 0 0 / 112px 100%,
    linear-gradient(135deg, transparent 0 68%, rgba(211, 111, 44, .18) 68% 68.2%, transparent 68.2%);
  opacity: .72;
}

.hero-grid {
  width: min(var(--max), calc(100% - 40px));
  min-height: inherit;
  margin: 0 auto;
  padding: 124px 0 34px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: end;
  gap: 42px;
}

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

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(46px, 5vw, 70px);
  line-height: .98;
  letter-spacing: 0;
  font-weight: 850;
}

.hero--compact h1 {
  max-width: 880px;
  font-size: clamp(42px, 5vw, 72px);
}

.hero p,
.page-hero p {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 19px;
  line-height: 1.58;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  color: var(--white);
  background: var(--copper);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--copper-2);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(211, 111, 44, .28);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .06);
}

.btn-ghost:hover,
.btn-ghost:focus {
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-self: end;
  background: rgba(9, 17, 27, .88);
  border: 1px solid rgba(255, 255, 255, .18);
  border-left: 4px solid var(--copper);
  border-radius: 0;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
}

.hero-panel-item {
  min-width: 0;
  padding: 22px 26px;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.hero-panel-item:last-child {
  border-right: 0;
}

.hero-panel strong {
  display: block;
  color: var(--copper-2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.hero-panel p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-tight {
  padding: 82px 0;
}

.band-dark {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px) 0 0 / 104px 104px,
    radial-gradient(circle at 8% 0, rgba(211, 111, 44, .2), transparent 24%),
    linear-gradient(135deg, #0b1420, #1a2634);
}

.band-steel {
  background:
    linear-gradient(90deg, rgba(11, 20, 32, .055) 1px, transparent 1px) 0 0 / 104px 104px,
    #e6ebef;
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, .62fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 52px;
}

.section-head h2,
.split-copy h2,
.cta-panel h2,
.content-page h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.band-dark .section-head h2,
.band-dark .split-copy h2,
.band-dark .cta-panel h2 {
  color: var(--white);
}

.section-head p,
.split-copy p,
.content-page p,
.legal p {
  margin: 0;
  color: #556170;
  font-size: 17px;
}

.band-dark .section-head p,
.band-dark .split-copy p,
.band-dark .cta-panel p {
  color: rgba(255, 255, 255, .72);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  counter-reset: service;
  background: rgba(17, 24, 32, .12);
  border: 1px solid rgba(17, 24, 32, .1);
}

.band-dark .service-grid {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .14);
}

.service-card {
  counter-increment: service;
  position: relative;
  min-height: 320px;
  padding: 30px;
  background: var(--white);
  border: 0;
  border-radius: 0;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), transparent);
}

.service-card::after {
  content: "0" counter(service);
  position: absolute;
  top: 26px;
  right: 26px;
  color: rgba(100, 113, 126, .2);
  font-size: 48px;
  font-weight: 850;
  line-height: 1;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 60px rgba(9, 17, 28, .2);
}

.service-card.dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .055) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(145deg, #101a27, #202b36);
  border-color: rgba(255, 255, 255, .08);
}

.band-dark .service-card {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .055) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(145deg, #101a27, #202b36);
}

.band-dark .service-card p {
  color: rgba(255, 255, 255, .68);
}

.band-dark .service-card::after,
.service-card.dark::after {
  color: rgba(255, 255, 255, .08);
}

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--copper);
  background: rgba(211, 111, 44, .08);
  border: 1px solid rgba(211, 111, 44, .28);
  border-radius: 0;
}

.icon-box svg {
  width: 27px;
  height: 27px;
}

.service-card h3,
.info-card h3,
.contact-card h3 {
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.16;
}

.service-card p,
.info-card p,
.contact-card p {
  margin: 0;
  color: #5b6674;
}

.service-card.dark p {
  color: rgba(255, 255, 255, .68);
}

.card-link {
  position: absolute;
  left: 28px;
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--copper);
  font-size: 14px;
  font-weight: 850;
}

.card-link::after {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: width .2s ease;
}

.service-card:hover .card-link::after {
  width: 34px;
}

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

.split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
}

.split.reverse .media-frame {
  order: 2;
}

.media-frame {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-frame img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
}

.media-frame.wide img {
  aspect-ratio: 16 / 10;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: auto 24px 24px auto;
  width: 112px;
  height: 112px;
  border-right: 2px solid var(--copper);
  border-bottom: 2px solid var(--copper);
}

.split-copy ul,
.content-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.split-copy li,
.content-list li {
  position: relative;
  padding-left: 28px;
  color: #4e5966;
}

.band-dark .split-copy li {
  color: rgba(255, 255, 255, .76);
}

.split-copy li::before,
.content-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 11px;
  height: 2px;
  background: var(--copper);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(17, 24, 32, .1);
  box-shadow: 0 20px 55px rgba(9, 17, 28, .08);
}

.stat {
  padding: 34px 26px;
  border-right: 1px solid rgba(17, 24, 32, .1);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 12px;
  color: #5f6a76;
  font-weight: 700;
}

.industry-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.industry-feature,
.info-card,
.contact-card,
.form-panel {
  background: var(--white);
  border: 1px solid rgba(17, 24, 32, .08);
  border-radius: 0;
  box-shadow: 0 16px 45px rgba(17, 24, 32, .08);
}

.industry-feature {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.industry-feature img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.industry-feature .overlay-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(10, 15, 23, .88), rgba(10, 15, 23, 0));
}

.industry-feature h3 {
  max-width: 540px;
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.05;
}

.industry-feature p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
}

.industry-list {
  display: grid;
  gap: 18px;
}

.info-card {
  padding: 28px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.info-card:hover {
  transform: translateX(4px);
  border-color: rgba(211, 111, 44, .32);
  box-shadow: 0 18px 52px rgba(9, 17, 28, .11);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 48px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(135deg, rgba(211, 111, 44, .28), transparent 38%),
    linear-gradient(145deg, #0b1420, #26303a);
  border-radius: 0;
  overflow: hidden;
}

.cta-panel h2 {
  color: var(--white);
}

.cta-panel p {
  max-width: 680px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .7);
}

.page-hero {
  min-height: 500px;
}

.breadcrumbs {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.content-page {
  background: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 58px;
  align-items: start;
}

.content-main {
  display: grid;
  gap: 42px;
}

.content-main article {
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.content-main article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 28px;
}

.contact-card a {
  color: var(--copper);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
}

.form-panel {
  padding: 34px;
}

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

.field {
  display: grid;
  gap: 8px;
}

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

.field label {
  color: #34404c;
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #cfd7df;
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
}

.field input:focus,
.field textarea:focus {
  outline: 3px solid rgba(200, 117, 53, .22);
  border-color: var(--copper);
}

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

.legal {
  max-width: 880px;
  margin: 0 auto;
}

.legal h2 {
  margin-top: 46px;
  font-size: 32px;
}

.legal h3 {
  margin: 28px 0 8px;
  font-size: 21px;
}

.legal ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: #556170;
}

.site-footer {
  color: rgba(255, 255, 255, .72);
  background: #0d131c;
}

.footer-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 62px 0 38px;
  display: grid;
  grid-template-columns: 1.1fr .75fr .75fr .9fr;
  gap: 38px;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 18px;
}

.footer-grid p {
  margin: 0;
}

.footer-links {
  display: grid;
  gap: 10px;
}

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

.footer-bottom {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.content-page .reveal,
.contact-layout .reveal,
.service-card.reveal {
  opacity: 1;
  transform: none;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.1) translate3d(-18px, -10px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .primary-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-panel {
    position: fixed;
    inset: 78px 0 0;
    z-index: 60;
    display: none;
    padding: 22px 20px 32px;
    color: var(--white);
    min-height: calc(100vh - 78px);
    background: #0d131c;
  }

  .mobile-panel.is-open {
    display: block;
  }

  .mobile-panel nav {
    display: grid;
    gap: 4px;
  }

  .mobile-panel a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-weight: 800;
  }

  .hero-grid,
  .section-head,
  .split,
  .split.reverse,
  .content-grid,
  .contact-layout,
  .industry-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-content: end;
    gap: 34px;
  }

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

  .hero-panel-item:nth-child(2) {
    border-right: 0;
  }

  .hero-panel-item:nth-child(1),
  .hero-panel-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .split.reverse .media-frame {
    order: 0;
  }

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

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid rgba(17, 24, 32, .1);
  }

  .sidebar {
    position: static;
  }

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

@media (max-width: 720px) {
  .nav-shell,
  .container,
  .footer-grid,
  .footer-bottom,
  .hero-grid {
    width: min(100% - 28px, var(--max));
  }

  .nav-shell {
    height: 68px;
  }

  .mobile-panel {
    top: 68px;
    min-height: calc(100vh - 68px);
  }

  .brand-text span:last-child {
    display: none;
  }

  .hero,
  .hero--compact {
    min-height: 850px;
  }

  .hero-grid {
    padding-top: 108px;
    padding-bottom: 28px;
    gap: 28px;
  }

  .hero h1,
  .hero--compact h1,
  .page-hero h1 {
    font-size: clamp(34px, 9.8vw, 47px);
    line-height: 1.02;
  }

  .hero p,
  .page-hero p {
    font-size: 17px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 28px;
  }

  .btn {
    flex: 1 1 0;
    min-width: 0;
    gap: 7px;
    padding: 0 10px;
    font-size: 13px;
  }

  .btn svg {
    width: 16px;
    height: 16px;
  }

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

  .hero-panel-item,
  .hero-panel-item:nth-child(2) {
    padding: 15px 16px;
    border-right: 1px solid rgba(255, 255, 255, .16);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .hero-panel-item:nth-child(2),
  .hero-panel-item:nth-child(4) {
    border-right: 0;
  }

  .hero-panel-item:nth-child(3),
  .hero-panel-item:nth-child(4) {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .hero-panel-item:nth-child(4) {
    border-bottom: 0;
  }

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

  .section {
    padding: 74px 0;
  }

  .section-tight {
    padding: 58px 0;
  }

  .section-head {
    gap: 18px;
    margin-bottom: 30px;
  }

  .section-head h2,
  .split-copy h2,
  .cta-panel h2,
  .content-page h2 {
    font-size: clamp(31px, 9vw, 44px);
  }

  .service-grid,
  .stats,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .stat,
  .stat:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 24, 32, .1);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .split {
    gap: 34px;
  }

  .media-frame img {
    aspect-ratio: 1 / .9;
  }

  .industry-feature,
  .industry-feature img {
    min-height: 360px;
  }

  .industry-feature .overlay-copy {
    padding: 24px;
  }

  .industry-feature h3 {
    font-size: 27px;
  }

  .cta-panel {
    padding: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
