:root {
  --black: #050505;
  --ink: #101010;
  --charcoal: #171717;
  --graphite: #242424;
  --steel: #6f7378;
  --mist: #e7e7e4;
  --paper: #f7f6f1;
  --white: #ffffff;
  --yellow: #f5c400;
  --yellow-2: #ffd84a;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  --max: 1500px;
  --readable: 760px;
  --edge-pad: max(clamp(20px, 4vw, 64px), calc((100vw - var(--max)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms ease;
}

body.is-loaded {
  opacity: 1;
  transform: none;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(20px, 4vw, 58px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
  transition: background 260ms ease, box-shadow 260ms ease, min-height 260ms ease;
}

.site-header.is-scrolled,
body:not([data-page="home"]) .site-header {
  min-height: 70px;
  background: rgba(5, 5, 5, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  display: block;
  width: 168px;
  height: auto;
  aspect-ratio: 1586 / 569;
  max-height: none;
  object-fit: contain;
  background: transparent;
  image-rendering: auto;
  opacity: 1;
  transform: none;
  filter: none;
}

.brand-logo--primary {
  filter: none;
}

.brand-logo--reversed {
  filter: none;
}

.brand-logo--official {
  filter: none;
}

.site-footer .brand-logo {
  width: 204px;
  height: auto;
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.7vw, 28px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 120px var(--edge-pad);
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.hero-backdrop,
.hero-backdrop img,
.hero-backdrop video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  z-index: 0;
  overflow: hidden;
  background: var(--black);
}

.hero-backdrop img,
.hero-backdrop video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.92) contrast(1.08);
}

.hero-backdrop iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  min-width: 100%;
  min-height: 100%;
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1.06);
  filter: saturate(0.92) contrast(1.08);
}

.hero-backdrop:not(.hero-slideshow) img {
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-slideshow img,
.hero-slideshow iframe,
.hero-slideshow video {
  opacity: 0;
  transition: opacity 1600ms ease;
  animation: none;
  will-change: opacity, transform;
}

.hero-slideshow > :first-child {
  opacity: 1;
}

.hero-slideshow.is-ready > :first-child:not(.is-active) {
  opacity: 0;
}

.hero-slideshow img.is-active,
.hero-slideshow iframe.is-active,
.hero-slideshow video.is-active {
  opacity: 1;
}

.hero-slideshow img.is-active {
  animation: heroSlideZoom 9200ms ease-in-out forwards;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(102deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.64) 42%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.08) 42%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10vw;
  width: 38vw;
  height: 100%;
  background: rgba(245, 196, 0, 0.18);
  clip-path: polygon(38% 0, 100% 0, 64% 100%, 0 100%);
  mix-blend-mode: screen;
  z-index: 2;
}

.hero-grid {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 920px) minmax(300px, 420px);
  gap: clamp(42px, 5vw, 76px);
  align-items: end;
}

.hero-copy h1,
.page-hero-copy h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.6rem, 6.8vw, 5.8rem);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.word-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em);
  clip-path: inset(0 0 100% 0);
  transition:
    opacity 700ms ease,
    transform 820ms cubic-bezier(0.19, 1, 0.22, 1),
    clip-path 820ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: opacity, transform, clip-path;
}

.word-reveal.is-animated .word {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0);
}

.hero-subtitle,
.page-hero-copy p {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 13px 20px;
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  cursor: default;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn[href] {
  cursor: pointer;
}

.btn-primary {
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 16px 34px rgba(245, 196, 0, 0.18);
}

.btn-primary:hover,
.btn-dark:hover,
.btn-outline:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-dark {
  color: var(--white);
  background: var(--black);
}

.btn-outline {
  color: var(--black);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.24);
}

.hero-panel {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-panel div {
  display: grid;
  gap: 6px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

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

.metric {
  color: var(--yellow);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 950;
}

.hero-panel span:not(.metric) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.87rem;
  font-weight: 750;
  text-transform: uppercase;
}

.section {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(72px, 9vw, 124px) var(--edge-pad);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(150px, 0.18fr) minmax(0, 1fr) minmax(360px, 0.38fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: start;
}

.section-kicker {
  color: var(--steel);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.split-copy h2,
.section-heading h2,
.final-cta h2,
.safety-copy h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.55vw, 3.75rem);
  line-height: 1.01;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.split-copy p,
.split-card p,
.section-heading p,
.reason-card p,
.value-card p,
.leader-card p,
.portfolio-card p,
.article-card p,
.contact-card p,
.statement-card p,
.service-card p,
.final-cta p {
  color: rgba(16, 16, 16, 0.72);
}

.split-copy p {
  max-width: var(--readable);
  font-size: 1.08rem;
}

.split-card {
  padding: 28px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-left: 6px solid var(--yellow);
}

.split-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--black);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.text-link::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--yellow);
  transition: width 180ms ease;
}

.text-link:hover::after {
  width: 50px;
}

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

.dark-band {
  width: 100%;
  max-width: none;
  padding-left: var(--edge-pad);
  padding-right: var(--edge-pad);
  background:
    linear-gradient(135deg, rgba(245, 196, 0, 0.12), transparent 32%),
    var(--black);
  color: var(--white);
}

.diagonal-band::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background: rgba(245, 196, 0, 0.12);
  clip-path: polygon(38% 0, 100% 0, 62% 100%, 0 100%);
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  margin-bottom: 46px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -6px;
}

.section-heading h2 {
  max-width: 980px;
}

.dark-band .section-heading h2,
.dark-band .reason-card p,
.dark-band .statement-card p,
.dark-band .service-tile p {
  color: rgba(255, 255, 255, 0.78);
}

.service-grid,
.reason-grid,
.value-grid,
.leader-grid,
.contact-grid,
.article-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

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

.service-tile,
.reason-card,
.statement-card {
  min-height: 245px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-tile:hover,
.reason-card:hover,
.statement-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 196, 0, 0.62);
  background: rgba(255, 255, 255, 0.085);
}

.tile-number {
  display: inline-block;
  color: var(--yellow);
  font-weight: 950;
  margin-bottom: 32px;
}

.service-tile h3,
.reason-card h3,
.value-card h3,
.leader-card h3,
.portfolio-card h2,
.article-card h2,
.contact-card h2,
.service-card h2 {
  margin: 0 0 12px;
  line-height: 1.05;
  letter-spacing: 0;
}

.project-feature {
  padding-bottom: clamp(72px, 8vw, 110px);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 1fr);
  gap: clamp(20px, 2vw, 30px);
}

.project-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 28px;
  color: var(--white);
  isolation: isolate;
}

.project-card.large {
  grid-row: span 2;
  min-height: 640px;
}

.project-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.18));
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-meta {
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: var(--black);
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.project-card h3 {
  max-width: 520px;
  margin: 0;
  font-size: 2.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.choose-section .reason-grid,
.dark-band .reason-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choose-section .reason-card,
.value-card,
.leader-card,
.contact-card,
.article-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.07);
}

.choose-section .reason-card {
  min-height: 220px;
}

.safety-strip {
  width: 100%;
  max-width: none;
  display: block;
  padding-left: var(--edge-pad);
  padding-right: var(--edge-pad);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.safety-strip:not(.compliance-strip) {
  color: var(--black);
}

.safety-strip:not(.compliance-strip) .safety-copy h2,
.safety-strip:not(.compliance-strip) .safety-items span {
  color: var(--black);
}

.compliance-strip {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.82) 48%, rgba(5, 5, 5, 0.68)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.26)),
    url("../images/hero-construction.png") center / cover;
}

.compliance-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.24;
}

.compliance-strip::after {
  content: "";
  position: absolute;
  top: 0;
  right: -7vw;
  z-index: -1;
  width: 34vw;
  height: 100%;
  background: rgba(245, 196, 0, 0.13);
  clip-path: polygon(34% 0, 100% 0, 66% 100%, 0 100%);
}

.safety-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.compliance-panel {
  position: relative;
  grid-column: 1 / -1;
  min-height: 0;
  display: grid;
  gap: 18px;
  align-content: start;
  justify-items: stretch;
  padding-top: 28px;
  border-top: 1px solid rgba(245, 196, 0, 0.42);
}

.compliance-panel__label {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.compliance-logo-grid {
  --logo-tile: 108px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(104px, 1fr));
  gap: clamp(14px, 2vw, 28px);
  align-items: start;
  width: 100%;
}

.compliance-logo-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 0;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform-origin: center;
  transition: transform 220ms ease;
}

.compliance-logo-card__mark {
  width: var(--logo-tile);
  height: var(--logo-tile);
  display: grid;
  place-items: center;
  padding: 14px;
  background: linear-gradient(180deg, var(--white), #ececec);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(5, 5, 5, 0.08);
  transform-origin: center;
  animation: complianceBadgeBounce 2.7s ease-in-out infinite;
}

.compliance-logo-card:nth-child(1) .compliance-logo-card__mark {
  animation-delay: 0s;
}

.compliance-logo-card:nth-child(2) .compliance-logo-card__mark {
  animation-delay: 0.14s;
}

.compliance-logo-card:nth-child(3) .compliance-logo-card__mark {
  animation-delay: 0.28s;
}

.compliance-logo-card:nth-child(4) .compliance-logo-card__mark {
  animation-delay: 0.42s;
}

.compliance-logo-card:nth-child(5) .compliance-logo-card__mark {
  animation-delay: 0.56s;
}

.compliance-logo-card img {
  width: 100%;
  max-width: 76px;
  max-height: 56px;
  object-fit: contain;
}

.compliance-logo-card--wide img {
  max-width: 76px;
  max-height: 52px;
}

.compliance-logo-card:hover {
  transform: translateY(-5px);
}

.compliance-logo-grid:hover .compliance-logo-card__mark {
  animation-play-state: paused;
}

.compliance-strip .safety-copy {
  position: relative;
  display: grid;
  gap: 20px;
  align-content: start;
}

.compliance-strip .safety-copy::after {
  content: "";
  width: 58px;
  height: 4px;
  background: var(--yellow);
}

.safety-copy .eyebrow {
  color: var(--yellow);
}

.safety-copy h2 span {
  display: block;
}

.safety-copy h2 span:first-child {
  color: var(--yellow);
}

.safety-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.safety-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 20px);
}

.safety-item-card {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(20px, 2vw, 28px);
  background: rgba(5, 5, 5, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.safety-item-card:hover {
  transform: translateY(-7px);
  border-color: rgba(245, 196, 0, 0.68);
  background: rgba(5, 5, 5, 0.82);
}

.safety-item-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 10px;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(245, 196, 0, 0.18);
}

.safety-item-card h3 {
  margin: 4px 0 0;
  color: var(--white);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.06;
  text-transform: uppercase;
}

.safety-item-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.final-cta {
  width: 100%;
  max-width: none;
  padding-left: var(--edge-pad);
  padding-right: var(--edge-pad);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.48)),
    url("../images/mechanical-electrical.png") center / cover;
  color: var(--white);
}

.final-cta-inner {
  max-width: 760px;
}

.final-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.75);
}

.page-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: 150px var(--edge-pad) 82px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: 0;
  width: 42vw;
  height: 76%;
  background: rgba(245, 196, 0, 0.16);
  clip-path: polygon(42% 0, 100% 0, 62% 100%, 0 100%);
  z-index: 2;
}

.image-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.86) contrast(1.08);
}

.image-hero::before {
  display: none;
}

.page-hero-copy {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero-copy h1 {
  font-size: clamp(2.45rem, 5.65vw, 4.75rem);
}

.about-hero {
  min-height: clamp(680px, 86vh, 920px);
  align-items: center;
  padding-top: clamp(126px, 13vh, 168px);
  padding-bottom: clamp(68px, 8vh, 100px);
}

.about-hero::after {
  display: none;
}

.about-hero .hero-backdrop img {
  object-position: center right;
  filter: saturate(0.98) contrast(1.08);
  transform: scale(1);
  transform-origin: center right;
  animation: heroSlowZoom 14s ease-in-out infinite alternate;
}

.about-hero .hero-overlay {
  background:
    linear-gradient(100deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 36%, rgba(0, 0, 0, 0.58) 64%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.08) 54%),
    radial-gradient(circle at 82% 36%, rgba(245, 196, 0, 0.14), transparent 32%);
}

.about-hero .page-hero-copy {
  max-width: var(--max);
  z-index: 4;
}

.about-hero-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, min(45vw, 720px)) minmax(320px, 430px);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
  justify-content: space-between;
}

.about-hero-content {
  min-width: 0;
}

.about-hero .eyebrow {
  margin-bottom: 34px;
}

.about-hero .eyebrow::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 14px;
  background: var(--yellow);
}

.about-hero .page-hero-copy h1 {
  max-width: 780px;
  font-size: clamp(3.25rem, 5.4vw, 6rem);
  line-height: 0.92;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.5);
}

.about-hero-lede {
  max-width: 660px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.03rem, 1.32vw, 1.22rem);
}

.about-hero-badges {
  display: grid;
  grid-template-columns: 1fr;
  justify-self: end;
  width: min(100%, 430px);
  margin-top: 0;
  gap: 14px;
}

.about-hero-badge {
  min-height: 118px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: clamp(18px, 2vw, 24px);
  color: var(--white);
  background: rgba(5, 5, 5, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.about-hero-badge:first-child {
  border-left: 4px solid var(--yellow);
}

.about-hero-badge + .about-hero-badge {
  border-left: 4px solid var(--yellow);
}

.about-hero-badge-icon {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  color: var(--yellow);
}

.about-hero-badge-icon--calendar {
  border: 3px solid currentColor;
  border-radius: 5px;
}

.about-hero-badge-icon--calendar::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 8px;
  right: 8px;
  height: 3px;
  background: currentColor;
}

.about-hero-badge-icon--calendar::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 9px;
  width: 6px;
  height: 14px;
  border-radius: 4px;
  background: currentColor;
  box-shadow: 20px 0 0 currentColor;
}

.about-hero-badge-icon--shield::before {
  content: "";
  position: absolute;
  inset: 2px 5px;
  border: 3px solid currentColor;
  clip-path: polygon(50% 0, 100% 18%, 86% 76%, 50% 100%, 14% 76%, 0 18%);
}

.about-hero-badge-icon--shield::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 21px;
  width: 17px;
  height: 9px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.about-hero-badge-icon--image {
  width: 52px;
  height: 52px;
}

.about-hero-badge-icon--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(245, 196, 0, 0.22));
}

.about-hero-badge-copy,
.about-hero-badge-label {
  display: block;
}

.about-hero-badge-label {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.about-hero-badge strong {
  display: block;
  margin-top: 5px;
  color: var(--yellow);
  font-size: clamp(1.85rem, 2.7vw, 2.75rem);
  line-height: 1;
  text-transform: uppercase;
}

.about-hero-quote {
  display: grid;
  grid-template-columns: auto 2px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  max-width: 620px;
  margin: clamp(28px, 3.2vw, 40px) 0 0;
  color: var(--white);
}

.about-hero-quote::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 2px;
  height: 72px;
  background: var(--yellow);
}

.about-hero-quote > span {
  color: var(--yellow);
  font-size: clamp(3rem, 4.2vw, 4.8rem);
  font-weight: 950;
  line-height: 0.8;
}

.about-hero-quote blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-style: italic;
  line-height: 1.32;
}

.excavator-light-zone {
  position: absolute;
  z-index: 2;
  top: 10%;
  right: 3.5%;
  width: 52%;
  height: 78%;
  clip-path: polygon(22% 0, 100% 0, 80% 100%, 0 100%);
  background:
    linear-gradient(115deg, rgba(245, 196, 0, 0.1), rgba(255, 255, 255, 0.045) 48%, rgba(245, 196, 0, 0.12));
  backdrop-filter: brightness(1.42) contrast(1.08) saturate(1.05);
  -webkit-backdrop-filter: brightness(1.42) contrast(1.08) saturate(1.05);
  pointer-events: none;
}

.excavator-outline {
  position: absolute;
  z-index: 3;
  top: 10%;
  right: 3.5%;
  width: 52%;
  height: 78%;
  pointer-events: none;
}

.excavator-outline path {
  fill: none;
  stroke: var(--yellow-2);
  stroke-width: 4;
  stroke-linejoin: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  vector-effect: non-scaling-stroke;
  animation: traceExcavatorFrame 7s linear infinite;
  filter: drop-shadow(0 0 10px rgba(245, 196, 0, 0.55));
}

.service-hero,
.editorial-hero,
.contact-hero {
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.64)),
    radial-gradient(circle at 78% 20%, rgba(245, 196, 0, 0.28), transparent 28%),
    var(--black);
}

.service-hero::before,
.editorial-hero::before,
.contact-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  height: 40%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
}

.two-column {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.statement-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-weight: 950;
  text-transform: uppercase;
}

.statement-card p {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.35;
}

.statement-card--flip {
  min-height: clamp(300px, 22vw, 360px);
  padding: 0;
  border: 0;
  background: transparent;
  perspective: 1200px;
}

.statement-card--flip:hover,
.statement-card--flip:focus-visible {
  background: transparent;
  border-color: transparent;
}

.statement-card--flip:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 6px;
}

.statement-card__inner {
  min-height: inherit;
  display: grid;
  transform-style: preserve-3d;
  transition: transform 720ms cubic-bezier(0.19, 1, 0.22, 1);
}

.statement-card--flip:hover .statement-card__inner,
.statement-card--flip:focus-visible .statement-card__inner,
.statement-card--flip:focus-within .statement-card__inner {
  transform: rotateY(180deg);
}

.statement-card__face {
  grid-area: 1 / 1;
  min-height: inherit;
  display: grid;
  align-content: center;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(5, 5, 5, 0.18);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
  backface-visibility: hidden;
}

.statement-card__front {
  place-items: center;
  text-align: center;
}

.statement-card__front span {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(2.4rem, 6vw, 4.9rem);
  line-height: 0.95;
}

.statement-card__front::after {
  content: "";
  width: 76px;
  height: 4px;
  margin-top: 22px;
  background: var(--yellow);
}

.statement-card__back {
  transform: rotateY(180deg);
  border-color: rgba(245, 196, 0, 0.44);
}

.statement-card__back span {
  margin-bottom: 16px;
}

.statement-card__back p {
  font-size: clamp(1.02rem, 1.35vw, 1.34rem);
}

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

.values-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.72), transparent 30%),
    var(--paper);
}

.values-inner {
  width: min(90vw, 1400px);
  margin: 0 auto;
}

.values-heading {
  max-width: 1120px;
  margin-bottom: clamp(34px, 4vw, 52px);
  padding-left: clamp(18px, 2vw, 26px);
  border-left: 5px solid var(--yellow);
}

.values-heading .eyebrow {
  margin-bottom: 14px;
  color: rgba(16, 16, 16, 0.72);
}

.values-heading h2 {
  max-width: 1080px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.5rem, 4.6vw, 4.65rem);
  line-height: 0.98;
  font-weight: 950;
  text-transform: uppercase;
  text-wrap: balance;
}

.values-section .value-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.values-section .value-card {
  position: relative;
  min-height: clamp(162px, 13vw, 190px);
  display: grid;
  grid-template-columns: clamp(112px, 9vw, 156px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 2.5vw, 34px);
  overflow: hidden;
  padding: clamp(28px, 3vw, 38px) clamp(28px, 3.2vw, 46px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.09);
  isolation: isolate;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.value-letter {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(16, 16, 16, 0.045);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5.75rem, 8.2vw, 9.4rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  pointer-events: none;
}

.value-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.values-section .value-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.55vw, 1.42rem);
  font-weight: 950;
}

.values-section .value-card h3::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 16px;
  background: var(--yellow);
  transition: width 240ms ease;
}

.values-section .value-card p {
  position: relative;
  z-index: 1;
  max-width: 470px;
  margin: 0;
  color: rgba(16, 16, 16, 0.7);
  font-size: clamp(1rem, 1.18vw, 1.11rem);
  line-height: 1.42;
}

.values-section .value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 196, 0, 0.35);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.13);
}

.values-section .value-card:hover h3::before {
  width: 52px;
}

.value-card,
.leader-card,
.contact-card,
.article-card {
  padding: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.value-card:hover,
.leader-card:hover,
.contact-card:hover,
.article-card:hover,
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.14);
}

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

.avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 950;
  clip-path: polygon(0 0, 84% 0, 100% 100%, 16% 100%);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  position: relative;
  min-height: 180px;
  padding: 24px;
  border-left: 1px solid rgba(0, 0, 0, 0.16);
  background: var(--white);
}

.timeline li::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 34px;
  color: var(--yellow);
  font-weight: 950;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.timeline span {
  color: rgba(16, 16, 16, 0.68);
}

.business-approach-section {
  padding: clamp(82px, 8vw, 118px) 0 clamp(92px, 9vw, 126px);
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.72), transparent 32%),
    var(--paper);
  color: var(--ink);
}

.business-approach-inner {
  width: min(90vw, 1450px);
  margin: 0 auto;
}

.business-approach-kicker {
  margin: 0 0 24px;
  color: rgba(16, 16, 16, 0.72);
  font-size: 0.88rem;
}

.business-approach-section h2 {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 5.7vw, 5.85rem);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.business-approach-line {
  position: relative;
  width: 100%;
  height: 2px;
  margin: clamp(44px, 5vw, 60px) 0 clamp(42px, 5vw, 56px);
  overflow: visible;
  background: linear-gradient(90deg, rgba(245, 196, 0, 0.72), var(--yellow), rgba(245, 196, 0, 0.72));
}

.business-approach-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  border: 3px solid var(--yellow);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 0 18px rgba(245, 196, 0, 0.9);
  transform: translate(-50%, -50%);
  animation: approachDotMove 7s ease-in-out infinite alternate;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.approach-step {
  min-height: 250px;
  padding: 0 clamp(28px, 3vw, 48px);
  border-left: 1px solid rgba(16, 16, 16, 0.16);
}

.approach-step:first-child {
  padding-left: 0;
  border-left: 0;
}

.approach-step:nth-child(2) {
  transition-delay: 80ms;
}

.approach-step:nth-child(3) {
  transition-delay: 160ms;
}

.approach-step:nth-child(4) {
  transition-delay: 240ms;
}

.step-number {
  display: block;
  margin-bottom: clamp(34px, 4vw, 48px);
  color: rgba(245, 196, 0, 0.04);
  font-size: clamp(3.9rem, 5.8vw, 6rem);
  line-height: 1;
  font-weight: 950;
  -webkit-text-stroke: 2px var(--yellow);
  text-stroke: 2px var(--yellow);
}

.approach-step h3 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.04;
  font-weight: 950;
}

.approach-step p {
  max-width: 310px;
  margin: 0;
  color: rgba(16, 16, 16, 0.68);
  font-size: clamp(1rem, 1.23vw, 1.18rem);
  line-height: 1.65;
}

.service-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 30px);
}

.service-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 360px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card.wide-card {
  grid-column: 1 / -1;
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
}

.service-card > div {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 30px;
}

.service-card .btn {
  margin-top: auto;
}

.services-carousel-section {
  width: 100%;
  background: #f5f4ef;
  padding: clamp(72px, 7vw, 96px) 0 clamp(84px, 8vw, 112px);
}

.service-anchor {
  position: absolute;
  top: -96px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.services-carousel-shell {
  position: relative;
  width: min(90vw, 1500px);
  margin: 0 auto;
}

.service-slide {
  position: relative;
  min-height: clamp(520px, 42vw, 660px);
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(480px, 0.95fr);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.service-copy {
  position: relative;
  min-height: inherit;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(60px, 7vw, 110px);
}

.service-bg-number {
  position: absolute;
  left: 6%;
  top: 16%;
  z-index: 0;
  color: rgba(0, 0, 0, 0.045);
  font-size: clamp(11rem, 20vw, 22rem);
  font-weight: 950;
  line-height: 0.9;
  pointer-events: none;
  user-select: none;
}

.service-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.service-count {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(1.4rem, 1.8vw, 1.75rem);
  line-height: 1;
  font-weight: 500;
}

.service-number {
  color: var(--yellow);
  font-size: clamp(2.9rem, 4vw, 4.4rem);
  font-weight: 950;
}

.service-content h2 {
  max-width: 610px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.5rem, 4.2vw, 4.55rem);
  line-height: 1.05;
  font-weight: 950;
  text-transform: none;
  text-wrap: balance;
}

.service-content p[data-service-description] {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(16, 16, 16, 0.72);
  font-size: clamp(1.05rem, 1.35vw, 1.34rem);
  line-height: 1.68;
}

.service-btn {
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(30px, 3.2vw, 44px);
  padding: 18px 32px;
  border: 0;
  color: var(--white);
  background: #050505;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.service-btn span {
  margin-left: 12px;
  color: var(--yellow);
  font-size: 1.2rem;
}

.service-btn:hover,
.service-btn:focus-visible {
  color: var(--black);
  background: var(--yellow);
  transform: translateY(-2px);
}

.service-btn:hover span,
.service-btn:focus-visible span {
  color: var(--black);
}

.service-image-wrap {
  min-height: inherit;
  overflow: hidden;
  background: var(--black);
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
  transform: scale(1.01);
}

.service-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  font-size: 2.45rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.service-prev {
  left: 34px;
}

.service-next {
  right: 34px;
}

.service-arrow:hover,
.service-arrow:focus-visible {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-50%) scale(1.06);
}

.service-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 6;
  display: flex;
  justify-content: center;
  gap: 18px;
  transform: translateX(-50%);
}

.service-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.service-dot.is-active {
  background: var(--yellow);
  transform: scale(1.12);
}

.service-dot:hover,
.service-dot:focus-visible {
  background: var(--yellow);
  transform: scale(1.22);
}

.service-slide.is-changing .service-image-wrap img,
.service-slide.is-changing .service-bg-number,
.service-slide.is-changing .service-count,
.service-slide.is-changing .service-content h2,
.service-slide.is-changing .service-content p[data-service-description],
.service-slide.is-changing .service-inquire-btn {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-slide.is-changing .service-image-wrap img {
  opacity: 0.55;
  transform: scale(1.04);
}

.service-slide.is-entering .service-image-wrap img {
  animation: serviceImageIn 780ms ease both;
}

.service-slide.is-entering .service-bg-number {
  animation: serviceTextIn 620ms ease 20ms both;
}

.service-slide.is-entering .service-count {
  animation: serviceTextIn 520ms ease 80ms both;
}

.service-slide.is-entering .service-content h2 {
  animation: serviceTextIn 620ms ease 160ms both;
}

.service-slide.is-entering .service-content p[data-service-description] {
  animation: serviceTextIn 680ms ease 240ms both;
}

.service-slide.is-entering .service-inquire-btn {
  animation: serviceTextIn 720ms ease 330ms both;
}

.portfolio-section .section-heading {
  margin-bottom: 34px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.6vw, 26px);
}

.portfolio-card {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.24);
}

.portfolio-card__button {
  position: relative;
  display: block;
  width: 100%;
  min-height: 420px;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--white);
  background: var(--black);
  text-align: left;
  cursor: pointer;
}

.portfolio-card__button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -6px;
}

.portfolio-card__button img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08);
  transform: scale(1.01);
  transition: transform 560ms ease, filter 560ms ease;
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.46)),
    linear-gradient(135deg, rgba(245, 196, 0, 0.28), transparent 38%);
  transition: background 320ms ease;
}

.portfolio-card__content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: grid;
  gap: 14px;
  padding: 28px;
  transform: translateY(0);
  transition: transform 260ms ease;
}

.portfolio-card__label {
  width: fit-content;
  margin: 0;
  padding: 7px 10px;
  color: var(--black);
  background: var(--yellow);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.portfolio-card__title {
  max-width: 92%;
  font-size: 2.05rem;
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.portfolio-card:hover .portfolio-card__button img {
  filter: saturate(0.94) contrast(1.16);
  transform: scale(1.08);
}

.portfolio-card:hover .portfolio-card__overlay {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.24) 56%, rgba(0, 0, 0, 0.56)),
    linear-gradient(135deg, rgba(245, 196, 0, 0.38), transparent 42%);
}

.portfolio-card:hover .portfolio-card__content {
  transform: translateY(-8px);
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  place-items: center;
  padding: clamp(18px, 3vw, 42px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.project-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.project-modal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
}

.project-modal__dialog {
  position: relative;
  width: min(100%, 1120px);
  max-height: 90vh;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  overflow: hidden;
  color: var(--white);
  background: rgba(5, 5, 5, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.54);
  transform: translateY(16px) scale(0.98);
  transition: transform 240ms ease;
}

.project-modal.is-open .project-modal__dialog {
  transform: translateY(0) scale(1);
}

.project-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(0, 0, 0, 0.64);
  font-weight: 950;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.project-modal__close:hover,
.project-modal__close:focus-visible {
  color: var(--black);
  background: var(--yellow);
}

.project-modal__media {
  position: relative;
  min-height: 520px;
  background: var(--black);
}

.project-modal__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 260ms ease, transform 420ms ease;
}

.project-modal__media img.is-loaded {
  opacity: 1;
  transform: scale(1);
}

.project-modal__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--yellow);
  background: rgba(0, 0, 0, 0.7);
  font-size: 1.25rem;
  font-weight: 950;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.project-modal__nav:hover,
.project-modal__nav:focus-visible {
  color: var(--black);
  background: var(--yellow);
}

.project-modal__nav--prev {
  left: 18px;
}

.project-modal__nav--next {
  right: 18px;
}

.project-modal__count {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 8px 11px;
  color: var(--black);
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 950;
}

.project-modal__content {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(28px, 4vw, 52px);
  overflow-y: auto;
}

.project-modal__eyebrow {
  width: fit-content;
  padding: 7px 10px;
  color: var(--black);
  background: var(--yellow);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.project-modal__content h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-modal__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
}

.project-modal__meta {
  display: grid;
  gap: 12px;
  margin: 0;
}

.project-modal__meta div {
  display: grid;
  gap: 5px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.project-modal__meta dt {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.project-modal__meta dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

body.modal-open {
  overflow: hidden;
}

.client-showcase {
  overflow: hidden;
}

.client-showcase .section-heading {
  margin-bottom: 28px;
}

.client-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 28px 0;
  background: transparent;
  border: 0;
}

.client-track {
  display: flex;
  width: max-content;
  animation: clientMarquee 58s linear infinite;
}

.client-marquee:hover .client-track {
  animation-duration: 96s;
}

.client-logo-set {
  display: flex;
  gap: 16px;
  padding-right: 16px;
}

.client-logo-card {
  position: relative;
  flex: 0 0 248px;
  min-height: 128px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.client-logo-card::after {
  display: none;
}

.client-logo-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 205px;
  height: 82px;
  object-fit: contain;
  filter: saturate(0.98) contrast(1.03);
  mix-blend-mode: multiply;
}

.article-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--black);
  background: var(--yellow);
  padding: 6px 9px;
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

.article-card {
  min-height: 290px;
}

.feature-article {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 42% 1fr;
  padding: 0;
  overflow: hidden;
}

.feature-article img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.feature-article div {
  padding: 30px;
}

.careers-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 4vw, 64px);
  align-items: start;
}

.vacancy-empty {
  min-height: 280px;
  display: grid;
  align-content: center;
  padding: 36px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 8px solid var(--yellow);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.07);
}

.vacancy-empty span {
  font-size: 1.85rem;
  line-height: 1.12;
  font-weight: 900;
}

.career-apply-notice {
  width: fit-content;
  margin: 24px 0 0;
  padding: 12px 16px;
  color: var(--black);
  background: rgba(255, 205, 0, 0.18);
  border-left: 4px solid var(--yellow);
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.career-apply-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.career-apply-notice[hidden] {
  display: none;
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.7vw, 28px);
}

.contact-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.contact-card .btn {
  margin-top: auto;
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 950;
}

.contact-panel {
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-left: var(--edge-pad);
  padding-right: var(--edge-pad);
  background: var(--black);
  color: var(--white);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-page-main {
  background: var(--paper);
}

.contact-hero-section {
  position: relative;
  min-height: clamp(680px, 58vw, 840px);
  overflow: visible;
  padding: clamp(132px, 11vw, 172px) 0 clamp(164px, 14vw, 220px);
  color: var(--white);
  background:
    linear-gradient(102deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.74) 48%, rgba(5, 5, 5, 0.34) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.12) 58%),
    url("../images/hero-construction.png") center / cover no-repeat;
}

.contact-hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  height: clamp(82px, 9vw, 134px);
  background: var(--paper);
  clip-path: polygon(0 44%, 38% 88%, 100% 52%, 100% 100%, 0 100%);
}

.contact-hero-shell,
.contact-support-shell,
.contact-info-shell {
  width: min(90vw, 1500px);
  margin: 0 auto;
}

.contact-hero-shell {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 0.72fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.contact-hero-copy {
  max-width: 740px;
}

.contact-hero-copy.reveal {
  transform: translateX(-30px);
}

.contact-hero-copy.reveal.is-visible {
  transform: translateX(0);
}

.contact-yellow-rule {
  display: block;
  width: 74px;
  height: 4px;
  margin-bottom: 20px;
  background: var(--yellow);
}

.contact-hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(4rem, 7.8vw, 7.25rem);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.contact-hero-lede {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.contact-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  margin-top: clamp(42px, 5vw, 70px);
}

.contact-trust-item {
  position: relative;
  min-height: 96px;
  padding: 0 24px;
  color: var(--white);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.contact-hero-copy.reveal.is-visible .contact-trust-item {
  opacity: 1;
  transform: translateY(0);
}

.contact-hero-copy.reveal.is-visible .contact-trust-item:nth-child(1) {
  transition-delay: 220ms;
}

.contact-hero-copy.reveal.is-visible .contact-trust-item:nth-child(2) {
  transition-delay: 340ms;
}

.contact-hero-copy.reveal.is-visible .contact-trust-item:nth-child(3) {
  transition-delay: 460ms;
}

.contact-trust-item + .contact-trust-item {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-trust-icon {
  width: 32px;
  height: 28px;
  display: block;
  margin-bottom: 12px;
  border: 2px solid var(--yellow);
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.contact-trust-icon::before,
.contact-trust-icon::after {
  content: "";
  display: block;
  background: var(--yellow);
}

.contact-trust-icon::before {
  width: 18px;
  height: 2px;
  margin: -7px auto 0;
}

.contact-trust-icon::after {
  width: 7px;
  height: 7px;
  margin: 9px auto 0;
  border-radius: 999px;
}

.contact-trust-item h2 {
  margin: 0;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-trust-item p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-hero-lines {
  position: absolute;
  top: 23%;
  right: 4vw;
  z-index: 3;
  width: clamp(150px, 17vw, 270px);
  height: clamp(250px, 30vw, 430px);
  border: 1px solid rgba(245, 196, 0, 0.58);
  border-left: 0;
  transform: skewX(-17deg);
  opacity: 0.72;
  animation: contactTraceIn 1200ms ease both;
}

.contact-hero-lines::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(245, 196, 0, 0.24);
  border-left: 0;
}

.email-form-card {
  display: grid;
  gap: 22px;
  align-content: start;
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.22);
}

.contact-floating-form {
  position: relative;
  z-index: 6;
  align-self: end;
  max-width: 650px;
  width: 100%;
  justify-self: center;
  margin-bottom: -210px;
}

.contact-floating-form.reveal {
  opacity: 0;
  transform: translateY(60px);
}

.contact-floating-form.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-field {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-field legend,
.contact-field > span,
.contact-name-grid label span {
  color: var(--ink);
  font-weight: 900;
}

.contact-field em,
.contact-field legend span {
  color: rgba(16, 16, 16, 0.5);
  font-style: normal;
  font-weight: 800;
}

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

.contact-name-grid label {
  display: grid;
  gap: 8px;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(16, 16, 16, 0.16);
  border-radius: 5px;
  padding: 15px 16px;
  color: var(--ink);
  background: #fdfcf9;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(245, 196, 0, 0.18);
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form-status {
  margin: 0;
  padding: 12px 14px;
  border-left: 4px solid var(--yellow);
  color: var(--ink);
  background: rgba(245, 196, 0, 0.14);
  font-weight: 850;
}

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

.contact-submit-btn {
  min-height: 60px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  border-radius: 5px;
  padding: 16px 28px;
  color: var(--white);
  background: var(--black);
  font: inherit;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.contact-submit-btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.contact-submit-btn span {
  color: var(--yellow);
  font-size: 1.2rem;
}

.contact-submit-btn:hover,
.contact-submit-btn:focus-visible {
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 20px 46px rgba(245, 196, 0, 0.34);
  transform: translateY(-2px);
}

.contact-submit-btn:hover span,
.contact-submit-btn:focus-visible span {
  color: var(--black);
}

.email-form-card.reveal .contact-field,
.email-form-card.reveal .contact-submit-btn {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.email-form-card.reveal.is-visible .contact-field,
.email-form-card.reveal.is-visible .contact-submit-btn {
  opacity: 1;
  transform: translateY(0);
}

.email-form-card.reveal.is-visible .contact-field:nth-child(1) {
  transition-delay: 80ms;
}

.email-form-card.reveal.is-visible .contact-field:nth-child(2) {
  transition-delay: 140ms;
}

.email-form-card.reveal.is-visible .contact-field:nth-child(3) {
  transition-delay: 200ms;
}

.email-form-card.reveal.is-visible .contact-field:nth-child(4) {
  transition-delay: 260ms;
}

.email-form-card.reveal.is-visible .contact-submit-btn {
  transition-delay: 320ms;
}

.contact-support-section {
  position: relative;
  padding: clamp(136px, 16vw, 230px) 0 clamp(78px, 8vw, 120px);
  background:
    radial-gradient(circle at 7% 76%, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 14px 14px, auto;
}

.contact-support-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(260px, 0.38fr);
  gap: clamp(34px, 8vw, 140px);
  align-items: center;
}

.contact-support-copy {
  max-width: 470px;
}

.contact-support-icon {
  position: relative;
  width: 52px;
  height: 42px;
  margin: 0 0 20px;
}

.contact-support-icon::before,
.contact-support-icon::after,
.contact-support-icon span {
  content: "";
  position: absolute;
  border: 2px solid var(--yellow);
}

.contact-support-icon::before {
  left: 2px;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 999px;
}

.contact-support-icon::after {
  left: 0;
  bottom: 0;
  width: 24px;
  height: 18px;
  border-top: 2px solid var(--yellow);
  border-radius: 18px 18px 0 0;
  border-bottom: 0;
}

.contact-support-icon span:first-child {
  right: 5px;
  top: 2px;
  width: 15px;
  height: 15px;
  border-radius: 999px;
}

.contact-support-icon span:last-child {
  right: 0;
  bottom: 0;
  width: 24px;
  height: 18px;
  border-top: 2px solid var(--yellow);
  border-radius: 18px 18px 0 0;
  border-bottom: 0;
}

.contact-support-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-support-copy p {
  max-width: 430px;
  margin: 18px 0 0;
  color: rgba(16, 16, 16, 0.72);
  font-size: 1.05rem;
}

.contact-brand-badge {
  position: relative;
  justify-self: center;
  width: min(100%, 360px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  text-align: center;
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.contact-badge-core {
  width: min(100%, 248px);
  min-height: 108px;
  display: grid;
  place-items: center;
  padding: 18px 22px;
  border-radius: 8px;
  background: radial-gradient(circle, #242424, var(--black));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.contact-badge-core img {
  width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.contact-badge-kicker,
.contact-badge-title {
  display: block;
  text-transform: uppercase;
}

.contact-badge-kicker {
  margin-top: 6px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
}

.contact-badge-title {
  max-width: 260px;
  color: var(--ink);
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  line-height: 1.18;
  font-weight: 950;
}

.contact-info-strip {
  position: relative;
  padding: clamp(36px, 5vw, 58px) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(17, 20, 21, 0.94)),
    url("../images/civil-infrastructure.png") center bottom / cover no-repeat;
}

.contact-info-shell {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(4, minmax(160px, 1fr));
  align-items: start;
}

.contact-info-brand,
.contact-info-item {
  min-height: 96px;
  padding: 0 clamp(18px, 2vw, 32px);
}

.contact-info-brand {
  padding-left: 0;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-brand h2,
.contact-info-item h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.2;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-info-brand h2 {
  color: var(--yellow);
}

.contact-info-brand p,
.contact-info-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.contact-info-icon {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 2px solid var(--yellow);
}

.contact-info-icon--pin {
  border-radius: 999px 999px 999px 0;
  transform: rotate(-45deg);
}

.contact-info-icon--pin::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 2px solid var(--yellow);
  border-radius: 999px;
}

.contact-info-phone-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.contact-info-icon--mail::before,
.contact-info-icon--mail::after {
  content: "";
  position: absolute;
  top: 7px;
  width: 16px;
  height: 2px;
  background: var(--yellow);
}

.contact-info-icon--mail::before {
  left: -1px;
  transform: rotate(32deg);
}

.contact-info-icon--mail::after {
  right: -1px;
  transform: rotate(-32deg);
}

.contact-info-icon--clock {
  border-radius: 999px;
}

.contact-info-icon--clock::before,
.contact-info-icon--clock::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 11px;
  width: 2px;
  background: var(--yellow);
  transform-origin: bottom center;
}

.contact-info-icon--clock::before {
  height: 9px;
}

.contact-info-icon--clock::after {
  height: 7px;
  transform: rotate(90deg);
}

@keyframes contactTraceIn {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  to {
    clip-path: inset(0);
    opacity: 0.72;
  }
}

@media (max-width: 1180px) {
  .contact-hero-shell {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.78fr);
    gap: 34px;
  }

  .contact-info-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 32px;
  }

  .contact-info-brand,
  .contact-info-item {
    padding: 0 24px;
  }

  .contact-info-brand {
    padding-left: 0;
  }

  .contact-info-item:nth-child(2n + 2) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 980px) {
  .contact-hero-section {
    padding-bottom: 150px;
  }

  .contact-hero-shell,
  .contact-support-shell {
    grid-template-columns: 1fr;
  }

  .contact-hero-copy {
    max-width: 780px;
  }

  .contact-floating-form {
    max-width: 760px;
    justify-self: stretch;
    margin-bottom: -150px;
  }

  .contact-support-section {
    padding-top: 170px;
  }

  .contact-brand-badge {
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .contact-hero-section {
    min-height: auto;
    padding: 112px 0 118px;
  }

  .contact-hero-shell,
  .contact-support-shell,
  .contact-info-shell {
    width: calc(100% - 28px);
  }

  .contact-hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .contact-trust-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 36px;
  }

  .contact-trust-item {
    min-height: 0;
    padding: 0 0 0 18px;
    border-left: 3px solid rgba(245, 196, 0, 0.8);
  }

  .contact-trust-item + .contact-trust-item {
    border-left: 3px solid rgba(245, 196, 0, 0.8);
  }

  .contact-hero-lines {
    right: -12vw;
    width: 150px;
    height: 230px;
    opacity: 0.36;
  }

  .email-form-card {
    padding: 24px 18px;
    gap: 20px;
  }

  .contact-floating-form {
    margin-bottom: -96px;
  }

  .contact-name-grid {
    grid-template-columns: 1fr;
  }

  .contact-support-section {
    padding-top: 128px;
    padding-bottom: 68px;
  }

  .contact-brand-badge {
    width: min(72vw, 250px);
  }

  .contact-info-shell {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .contact-info-brand,
  .contact-info-item,
  .contact-info-item:nth-child(2n + 2) {
    min-height: 0;
    padding: 0 0 24px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .contact-info-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

@media (max-width: 460px) {
  .contact-hero-section {
    padding-top: 104px;
  }

  .contact-hero-lede,
  .contact-support-copy p {
    font-size: 1rem;
  }

  .contact-field input,
  .contact-field textarea {
    padding: 13px 14px;
  }

  .contact-submit-btn {
    min-height: 56px;
    padding: 15px 20px;
  }
}

.site-footer {
  padding: 70px var(--edge-pad) 24px;
  background: var(--black);
  color: var(--white);
}

.footer-brand,
.footer-links,
.footer-bottom {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.footer-brand {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 4vw, 66px);
  align-items: start;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-row a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(245, 196, 0, 0.34);
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  transition:
    transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 180ms ease,
    box-shadow 180ms ease;
  will-change: transform;
}

.social-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.social-row a:hover,
.social-row a:focus-visible {
  border-color: var(--yellow);
  box-shadow: 0 16px 34px rgba(245, 196, 0, 0.28);
  transform: translateY(-5px) scale(1.12);
  animation: socialLogoBounce 520ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-row a:hover .social-logo,
.social-row a:focus-visible .social-logo {
  transform: scale(1.08);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 86px);
  padding: 42px 0;
}

.footer-links div {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links h2 {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.54);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.8%, -1.4%, 0);
  }
}

@keyframes heroSlideZoom {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.13) translate3d(-1.6%, -1.2%, 0);
  }
}

@keyframes heroSlowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes traceExcavatorFrame {
  0% {
    stroke-dashoffset: 1200;
    opacity: 0.55;
  }
  45% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -1200;
    opacity: 0.55;
  }
}

@keyframes socialLogoBounce {
  0%,
  100% {
    transform: translateY(-5px) scale(1.12);
  }
  38% {
    transform: translateY(-10px) scale(1.18);
  }
  70% {
    transform: translateY(-3px) scale(1.09);
  }
}

@keyframes complianceBadgeBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes approachDotMove {
  from {
    left: 0%;
  }
  to {
    left: 100%;
  }
}

@keyframes serviceImageIn {
  from {
    opacity: 0;
    transform: translateX(-22px) scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1.01);
  }
}

@keyframes serviceTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes clientMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 1320px) {
  .portfolio-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .portfolio-card,
  .portfolio-card__button {
    min-height: 460px;
  }

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

  .project-card.large {
    min-height: 700px;
  }

  .service-grid.compact,
  .choose-section .reason-grid,
  .dark-band .reason-grid,
  .value-grid,
  .leader-grid,
  .article-grid {
    gap: clamp(20px, 1.6vw, 28px);
  }

  .contact-card {
    min-height: 340px;
  }
}

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

  .nav-toggle {
    display: inline-block;
    position: relative;
    z-index: 60;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 55;
    display: grid;
    align-content: center;
    justify-content: stretch;
    gap: 0;
    padding: 92px 28px 40px;
    background: rgba(5, 5, 5, 0.98);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: clip-path 260ms ease, opacity 260ms ease, visibility 260ms ease;
  }

  body.nav-open .site-nav {
    clip-path: inset(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  body:not([data-page="home"]).nav-open .site-header {
    z-index: 500;
  }

  body:not([data-page="home"]) .site-nav {
    inset: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100svh;
    max-height: 100dvh;
    align-content: start;
    padding:
      clamp(96px, 14vh, 124px)
      max(28px, env(safe-area-inset-right))
      max(36px, env(safe-area-inset-bottom))
      max(28px, env(safe-area-inset-left));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--black);
    box-shadow: none;
  }

  body:not([data-page="home"]) .site-nav a {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
  }

  body:not([data-page="home"]) .nav-toggle {
    z-index: 510;
  }

  .site-nav a {
    padding: 18px 0;
    font-size: clamp(1.15rem, 2.8vw, 1.45rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 7.8vw, 5rem);
  }

  .page-hero-copy h1 {
    font-size: clamp(2.9rem, 6.7vw, 4.3rem);
  }

  .about-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: clamp(28px, 4vw, 54px);
  }

  .about-hero-content {
    width: auto;
  }

  .about-hero .page-hero-copy h1 {
    font-size: clamp(3rem, 7vw, 4.9rem);
  }

  .excavator-light-zone,
  .excavator-outline {
    top: 13%;
    right: -2%;
    width: 54%;
    height: 74%;
    opacity: 0.72;
  }

  .hero-subtitle,
  .page-hero-copy p {
    font-size: clamp(1rem, 1.55vw, 1.08rem);
  }

  .split-copy h2,
  .section-heading h2,
  .final-cta h2,
  .safety-copy h2,
  .contact-panel h2 {
    font-size: clamp(2.15rem, 5.2vw, 3.15rem);
  }

  .project-card h3 {
    font-size: 1.9rem;
  }

  .statement-card p {
    font-size: 1.24rem;
  }

  .vacancy-empty span {
    font-size: 1.55rem;
  }

  .hero-grid,
  .split-section,
  .careers-layout,
  .safety-shell {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 620px;
  }

  .compliance-panel {
    min-height: 0;
  }

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

  .compliance-logo-grid {
    grid-template-columns: repeat(5, minmax(92px, 1fr));
    --logo-tile: 92px;
  }

  .service-grid.compact,
  .choose-section .reason-grid,
  .dark-band .reason-grid,
  .portfolio-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .service-page-grid,
  .two-column,
  .value-grid,
  .leader-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

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

  .values-section .value-card {
    grid-template-columns: clamp(88px, 10vw, 118px) minmax(0, 1fr);
    gap: 24px;
  }

  .value-letter {
    font-size: clamp(5.25rem, 9vw, 7rem);
  }

  .feature-article {
    grid-column: auto;
  }

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

  .services-carousel-shell {
    width: min(92vw, 1200px);
  }

  .service-slide {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .service-copy {
    order: 2;
    min-height: 0;
    padding: clamp(52px, 7vw, 78px) clamp(38px, 5vw, 64px) 88px;
  }

  .service-bg-number {
    top: 12%;
    left: 4%;
    font-size: clamp(8rem, 26vw, 14rem);
  }

  .service-image-wrap {
    order: 1;
    min-height: 360px;
    height: 360px;
  }

  .service-content {
    max-width: 680px;
  }

  .approach-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 48px;
  }

  .approach-step {
    padding-right: clamp(26px, 4vw, 44px);
  }

  .approach-step:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .approach-step:nth-child(even) {
    border-left: 1px solid rgba(16, 16, 16, 0.16);
  }

  .portfolio-card__title {
    font-size: 1.8rem;
  }

  .project-modal__dialog {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .project-modal__media,
  .project-modal__media img {
    min-height: 390px;
  }

  .project-modal__content {
    align-content: start;
  }

  .project-modal__content h2 {
    font-size: 2.45rem;
  }

  .client-logo-card {
    flex-basis: 220px;
  }

  .client-logo-card img {
    max-width: 180px;
    height: 76px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 136px;
    height: auto;
  }

  .site-footer .brand-logo {
    width: 186px;
    height: auto;
  }

  .hero {
    min-height: 94vh;
    padding: 108px 20px 96px;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(2.05rem, 8.3vw, 2.72rem);
    line-height: 1.01;
  }

  .hero-subtitle,
  .page-hero-copy p {
    font-size: clamp(0.96rem, 2.6vw, 1rem);
  }

  .site-nav a {
    font-size: clamp(1rem, 4.2vw, 1.12rem);
  }

  .split-copy h2,
  .section-heading h2,
  .final-cta h2,
  .safety-copy h2,
  .contact-panel h2 {
    font-size: clamp(1.85rem, 7.2vw, 2.18rem);
  }

  .project-card h3 {
    font-size: 1.5rem;
  }

  .statement-card p {
    font-size: 1.08rem;
  }

  .vacancy-empty span {
    font-size: 1.22rem;
  }

  .hero-actions,
  .button-row,
  .contact-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    width: 100%;
    padding: 64px 16px;
  }

  .values-section {
    padding-top: 68px;
    padding-bottom: 70px;
  }

  .values-inner {
    width: 100%;
  }

  .values-heading {
    padding-left: 16px;
    border-left-width: 4px;
  }

  .values-heading h2 {
    font-size: clamp(2rem, 9.4vw, 2.75rem);
  }

  .values-section .value-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .values-section .value-card {
    min-height: 150px;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 22px;
  }

  .value-letter {
    font-size: 4.8rem;
  }

  .values-section .value-card h3::before {
    margin-bottom: 12px;
  }

  .dark-band,
  .safety-strip,
  .final-cta,
  .contact-panel {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .compliance-panel {
    min-height: 0;
  }

  .compliance-panel__label {
    text-align: left;
  }

  .safety-card-grid,
  .compliance-logo-grid {
    grid-template-columns: 1fr;
  }

  .safety-item-card {
    min-height: 0;
  }

  .compliance-logo-grid {
    --logo-tile: 82px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
  }

  .compliance-logo-card img,
  .compliance-logo-card--wide img {
    max-width: 62px;
    max-height: 44px;
  }

  .service-grid.compact,
  .choose-section .reason-grid,
  .dark-band .reason-grid,
  .portfolio-grid,
  .contact-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .business-approach-section {
    padding: 68px 0 76px;
  }

  .business-approach-inner {
    width: calc(100% - 32px);
  }

  .business-approach-kicker {
    margin-bottom: 18px;
  }

  .business-approach-section h2 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .business-approach-line {
    margin: 34px 0 34px;
  }

  .business-approach-line::after {
    width: 14px;
    height: 14px;
    border-width: 2px;
  }

  .services-carousel-section {
    padding: 56px 0 72px;
  }

  .services-carousel-shell {
    width: calc(100% - 28px);
  }

  .service-slide {
    min-height: 0;
    padding-bottom: 84px;
  }

  .service-arrow {
    top: auto;
    bottom: 20px;
    width: 52px;
    height: 52px;
    font-size: 2rem;
    transform: none;
  }

  .service-prev {
    left: 22px;
  }

  .service-next {
    right: 22px;
  }

  .service-arrow:hover,
  .service-arrow:focus-visible {
    transform: scale(1.06);
  }

  .service-image-wrap {
    min-height: 280px;
    height: 280px;
  }

  .service-copy {
    padding: 36px 24px 26px;
  }

  .service-bg-number {
    left: -2%;
    top: 18%;
    font-size: clamp(7rem, 38vw, 11rem);
  }

  .service-content {
    max-width: none;
  }

  .service-count {
    margin-bottom: 18px;
    gap: 10px;
    font-size: 1.15rem;
  }

  .service-number {
    font-size: 3rem;
  }

  .service-content h2 {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .service-content p[data-service-description] {
    margin-top: 18px;
  }

  .service-inquire-btn {
    margin-top: 24px;
  }

  .service-btn {
    width: 100%;
    min-height: 58px;
    padding: 16px 20px;
  }

  .service-dots {
    bottom: 40px;
    gap: 12px;
  }

  .service-dot {
    width: 10px;
    height: 10px;
  }

  .approach-steps {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .approach-step,
  .approach-step:nth-child(even),
  .approach-step:nth-child(odd) {
    min-height: 0;
    padding: 28px 0;
    border-left: 0;
    border-top: 1px solid rgba(16, 16, 16, 0.14);
  }

  .approach-step:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .step-number {
    margin-bottom: 18px;
    font-size: clamp(3.3rem, 18vw, 4.9rem);
  }

  .approach-step h3 {
    margin-bottom: 14px;
    font-size: 1.55rem;
  }

  .approach-step p {
    max-width: 100%;
    font-size: 1rem;
  }

  .feature-grid {
    gap: 14px;
  }

  .project-card.large {
    min-height: 410px;
  }

  .project-card {
    min-height: 300px;
  }

  .portfolio-card,
  .portfolio-card__button {
    min-height: 340px;
  }

  .portfolio-card__content {
    padding: 22px;
  }

  .portfolio-card__title {
    max-width: 100%;
    font-size: 1.45rem;
  }

  .project-modal {
    padding: 12px;
  }

  .project-modal__dialog {
    max-height: 92vh;
  }

  .project-modal__media,
  .project-modal__media img {
    min-height: 300px;
  }

  .project-modal__nav {
    width: 40px;
    height: 40px;
  }

  .project-modal__nav--prev {
    left: 12px;
  }

  .project-modal__nav--next {
    right: 12px;
  }

  .project-modal__content {
    padding: 24px;
  }

  .project-modal__content h2 {
    font-size: 1.9rem;
  }

  .client-marquee {
    padding: 20px 0;
  }

  .client-logo-card {
    flex-basis: 190px;
    min-height: 110px;
    padding: 16px;
  }

  .client-logo-card img {
    max-width: 160px;
    height: 68px;
  }

  .page-hero {
    min-height: 68vh;
    padding: 120px 20px 58px;
  }

  .about-hero {
    min-height: 88vh;
    padding: 118px 20px 64px;
  }

  .about-hero .hero-backdrop img {
    object-position: 64% center;
  }

  .about-hero .hero-overlay {
    background:
      linear-gradient(102deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.86) 58%, rgba(0, 0, 0, 0.54) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.1) 58%);
  }

  .about-hero-content {
    width: 100%;
  }

  .about-hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-hero .eyebrow {
    margin-bottom: 26px;
  }

  .about-hero .page-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10vw, 3.35rem);
  }

  .about-hero-lede {
    max-width: 100%;
    margin-top: 22px;
  }

  .about-hero-badges {
    grid-template-columns: 1fr;
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    gap: 10px;
    margin-top: 0;
  }

  .about-hero-badge {
    min-height: 0;
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 16px;
    border-left: 4px solid var(--yellow);
  }

  .about-hero-badge + .about-hero-badge {
    border-left: 4px solid var(--yellow);
  }

  .about-hero-badge-icon {
    width: 42px;
    height: 42px;
  }

  .about-hero-badge strong {
    font-size: 1.85rem;
  }

  .about-hero-quote {
    gap: 14px;
    margin-top: 24px;
  }

  .about-hero-quote::before {
    height: 58px;
  }

  .about-hero-quote blockquote {
    font-size: 1.15rem;
  }

  .excavator-light-zone,
  .excavator-outline {
    display: none;
  }

  .service-card,
  .feature-article {
    grid-template-columns: 1fr;
  }

  .service-card.wide-card {
    grid-column: auto;
  }

  .service-card img,
  .feature-article img {
    height: 240px;
    min-height: auto;
  }

  .footer-brand,
  .footer-links,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 420px) {
  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(1.95rem, 9vw, 2.18rem);
  }

  .compliance-logo-grid {
    --logo-tile: 50px;
    gap: 6px;
  }

  .compliance-logo-card img,
  .compliance-logo-card--wide img {
    max-width: 38px;
    max-height: 28px;
  }
}

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

  .hero-slideshow img,
  .hero-slideshow iframe,
  .hero-slideshow video {
    opacity: 0 !important;
    animation: none !important;
  }

  .hero-slideshow img,
  .hero-slideshow video {
    transform: none !important;
  }

  .hero-slideshow > :first-child,
  .hero-slideshow > .is-active:first-child {
    opacity: 1 !important;
  }

  .word-reveal .word {
    opacity: 1 !important;
    transform: none !important;
    clip-path: inset(0) !important;
  }

  .client-track {
    animation: none !important;
    transform: none !important;
  }

  .compliance-logo-card__mark,
  .compliance-logo-card img,
  .about-hero-badge,
  .about-hero-bg,
  .excavator-outline path {
    animation: none !important;
    transform: none !important;
  }

  .business-approach-line::after {
    left: 50% !important;
    animation: none !important;
  }

  .statement-card--flip,
  .statement-card--flip .statement-card__inner,
  .statement-card--flip .statement-card__back {
    transform: none !important;
  }

  .statement-card--flip .statement-card__inner {
    transition: none !important;
  }

  .statement-card--flip .statement-card__front {
    display: none;
  }

  .statement-card--flip .statement-card__back {
    backface-visibility: visible;
  }
}
