:root {
  --ink: #0b1821;
  --navy: #05364d;
  --blue: #0a6070;
  --steel: #76858d;
  --lime: #8dc63f;
  --gold: #f4bd38;
  --rust: #b85d32;
  --paper: #ffffff;
  --concrete: #f2f3ef;
  --smoke: #dfe5e2;
  --shadow: 0 24px 70px rgba(6, 28, 40, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  background: var(--paper);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.26;
  background:
    linear-gradient(90deg, transparent 0 47px, rgba(11, 24, 33, 0.05) 48px 49px, transparent 50px),
    linear-gradient(0deg, transparent 0 47px, rgba(11, 24, 33, 0.04) 48px 49px, transparent 50px);
  background-size: 50px 50px;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 229, 226, 0.95);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 166px;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  font-weight: 800;
  color: var(--navy);
}

.site-nav a,
.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-nav a {
  padding: 0 13px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
  background: #e9f2dc;
}

.header-cta {
  padding: 0 16px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  font-weight: 900;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--smoke);
  border-radius: 4px;
  background: var(--paper);
}

.menu-button span:not(.visually-hidden) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 250px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: center;
  gap: 42px;
  overflow: hidden;
  padding: clamp(46px, 7vw, 88px) clamp(18px, 5vw, 72px) 38px;
  color: var(--paper);
  background:
    linear-gradient(110deg, rgba(5, 34, 47, 0.98), rgba(5, 54, 77, 0.9) 48%, rgba(10, 96, 112, 0.58)),
    url("assets/blueprint.jpg") center / cover;
}

.hero::before {
  content: "DLM";
  position: absolute;
  top: 26px;
  right: -24px;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(9rem, 25vw, 25rem);
  font-weight: 900;
  line-height: 0.8;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(38vw, 560px);
  height: 14px;
  background: repeating-linear-gradient(135deg, var(--gold) 0 18px, var(--ink) 18px 34px);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 2;
}

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

.hero h1,
.section h2,
.statement p {
  margin: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(3.55rem, 8vw, 7.7rem);
  letter-spacing: 0;
}

.hero-lede {
  max-width: 720px;
  margin: 28px 0 0;
  color: #e4f0f0;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 5px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

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

.button.primary:hover {
  background: var(--gold);
}

.button.secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.6);
}

.button.secondary:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.hero-panel {
  align-self: end;
  padding: 24px;
  border-left: 5px solid var(--lime);
  background: rgba(6, 24, 32, 0.72);
  box-shadow: var(--shadow);
}

.hero-panel span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.hero-panel ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  color: #d8e5e5;
  list-style: none;
}

.hero-panel li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--lime);
}

.hero-machine {
  position: absolute;
  right: clamp(-360px, -18vw, -70px);
  bottom: 4px;
  z-index: 1;
  width: min(72vw, 1060px);
  filter: drop-shadow(0 30px 44px rgba(0, 0, 0, 0.48));
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--smoke);
  border-bottom: 1px solid var(--smoke);
}

.metrics div {
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--concrete);
}

.metrics span {
  display: block;
  color: var(--rust);
  font-weight: 900;
}

.metrics strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 1.1;
}

.metrics p {
  margin: 10px 0 0;
  color: #56666f;
}

.markets {
  background: var(--paper);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.market-grid article {
  position: relative;
  min-height: 290px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--smoke);
  background: var(--concrete);
}

.market-grid article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 104px;
  height: 104px;
  border: 18px solid rgba(184, 93, 50, 0.16);
  transform: rotate(45deg);
}

.market-grid span,
.estimate-checklist span {
  color: var(--rust);
  font-weight: 900;
  text-transform: uppercase;
}

.market-grid h3,
.estimate-checklist h3 {
  margin: 12px 0 0;
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  line-height: 1.08;
}

.market-grid p,
.estimate-checklist p,
.estimate-copy p,
.bid-scopes li,
.equipment p,
.equipment li {
  color: #56666f;
}

.section {
  padding: clamp(68px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.section-kicker {
  width: min(980px, 100%);
  margin-bottom: 38px;
}

.section h2 {
  font-size: clamp(2.25rem, 5.5vw, 5.2rem);
}

.work {
  background: var(--paper);
}

.featured-work {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 20px;
}

.feature-project,
.project-list article,
.capability-grid article {
  border: 1px solid var(--smoke);
  background: var(--paper);
}

.feature-project {
  display: grid;
  min-height: 560px;
  overflow: hidden;
}

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

.feature-project div {
  align-self: end;
  padding: 28px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(11, 24, 33, 0.94), rgba(11, 24, 33, 0.78)),
    var(--ink);
}

.feature-project span {
  color: var(--gold);
  font-weight: 900;
}

.feature-project h3 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1;
}

.feature-project p {
  max-width: 620px;
  margin: 14px 0 0;
  color: #dbe7e5;
}

.project-list {
  display: grid;
  gap: 20px;
}

.project-list article {
  display: grid;
  grid-template-columns: 132px 1fr;
  min-height: 160px;
  overflow: hidden;
}

.project-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-list div {
  display: grid;
  align-content: center;
  padding: 22px;
}

.project-list h3,
.capability-grid h3,
.process-steps strong {
  margin: 0;
  line-height: 1.12;
}

.project-list p {
  margin: 8px 0 0;
  color: var(--steel);
}

.capabilities {
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(11, 24, 33, 0.96), rgba(5, 54, 77, 0.94)),
    url("assets/blueprint.jpg") center / cover;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.capability-grid article {
  position: relative;
  min-height: 320px;
  padding: 26px;
  overflow: hidden;
  border: 0;
  background: rgba(255, 255, 255, 0.07);
}

.capability-grid article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 118px;
  height: 118px;
  border: 18px solid rgba(141, 198, 63, 0.18);
  transform: rotate(45deg);
}

.capability-grid img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.capability-grid span {
  display: block;
  margin-top: 40px;
  color: var(--gold);
  font-weight: 900;
}

.capability-grid h3 {
  margin-top: 14px;
  font-size: 1.45rem;
}

.capability-grid p {
  margin: 14px 0 0;
  color: #d8e5e5;
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 7vw, 90px);
  background: var(--concrete);
}

.process-copy {
  position: sticky;
  top: 112px;
  align-self: start;
}

.process-copy p:not(.eyebrow) {
  color: #56666f;
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 4px;
  text-underline-offset: 7px;
}

.process-steps {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-steps li {
  position: relative;
  padding: 28px 28px 28px 92px;
  background: var(--paper);
  border-left: 6px solid var(--lime);
  box-shadow: 0 1px 0 rgba(6, 28, 40, 0.08);
}

.process-steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 26px;
  color: var(--rust);
  font-size: 1.1rem;
  font-weight: 900;
}

.process-steps span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-steps strong {
  display: block;
  margin-top: 7px;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.process-steps p {
  margin: 10px 0 0;
  color: #56666f;
}

.statement {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 72px);
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(11, 24, 33, 0.92), rgba(11, 24, 33, 0.66)),
    url("assets/excavator.png") right bottom / min(760px, 72vw) auto no-repeat,
    var(--ink);
}

.statement p {
  max-width: 1040px;
  font-size: clamp(2rem, 5.4vw, 5.5rem);
  font-weight: 900;
}

.equipment {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(28px, 7vw, 86px);
  background: var(--concrete);
}

.equipment h2 {
  font-size: clamp(2.1rem, 5vw, 4.6rem);
}

.equipment ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.equipment li {
  padding: 18px 20px;
  border-left: 6px solid var(--lime);
  background: var(--paper);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 86px);
  color: var(--paper);
  background: var(--navy);
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 1;
}

.contact-links {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  color: #d8e5e5;
  font-weight: 800;
}

address {
  display: grid;
  font-style: normal;
}

.contact-links a:hover {
  color: var(--lime);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: var(--paper);
  font: inherit;
  background: rgba(255, 255, 255, 0.1);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(141, 198, 63, 0.45);
  border-color: var(--lime);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: #d8e5e5;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: #56666f;
  background: var(--paper);
  border-top: 1px solid var(--smoke);
}

.site-footer img {
  width: 130px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--navy);
  font-weight: 900;
}

.page-hero {
  padding: clamp(70px, 10vw, 136px) clamp(18px, 5vw, 72px);
  color: var(--paper);
  background:
    linear-gradient(110deg, rgba(5, 34, 47, 0.98), rgba(5, 54, 77, 0.88)),
    url("assets/blueprint.jpg") center / cover;
}

.page-hero h1 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7.8rem);
  line-height: 0.98;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: #d8e5e5;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.page-hero .button {
  margin-top: 30px;
}

.project-directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: var(--concrete);
}

.directory-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--smoke);
  background: var(--paper);
}

.directory-card.large {
  grid-column: span 2;
}

.directory-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.directory-card div {
  padding: 24px;
}

.directory-card span,
.service-detail-grid span,
.career-grid span {
  color: var(--rust);
  font-weight: 900;
  text-transform: uppercase;
}

.directory-card h2,
.service-detail-grid h2,
.career-grid h2,
.agency-panel h2,
.employment-panel h2,
.project-detail h2,
.cta-strip h2 {
  margin: 8px 0 0;
  line-height: 1.05;
}

.directory-card h2 {
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.directory-card p,
.service-detail-grid p,
.career-grid p,
.project-detail p,
.agency-panel li,
.employment-panel li {
  color: #56666f;
}

.project-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.project-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 24, 33, 0.94), rgba(11, 24, 33, 0.48));
}

.project-hero div {
  position: relative;
  z-index: 1;
  padding: clamp(56px, 9vw, 110px) clamp(18px, 5vw, 72px);
}

.project-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.95;
}

.project-hero p:last-child {
  margin: 18px 0 0;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 900;
}

.project-detail {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(28px, 6vw, 72px);
  background: var(--paper);
}

.project-detail aside {
  align-self: start;
  padding: 24px;
  border-left: 6px solid var(--lime);
  background: var(--concrete);
}

.project-detail dl {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.project-detail dt {
  color: var(--rust);
  font-weight: 900;
  text-transform: uppercase;
}

.project-detail dd {
  margin: 0;
  color: #34434b;
  font-weight: 800;
}

.project-detail h2 {
  font-size: clamp(2rem, 4vw, 4.5rem);
}

.project-detail h3 {
  margin: 34px 0 0;
  font-size: 1.35rem;
}

.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: var(--concrete);
}

.photo-pair img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--smoke);
}

.service-detail-grid {
  display: grid;
  gap: 18px;
  background: var(--concrete);
}

.service-detail-grid article {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--smoke);
  background: var(--paper);
}

.service-detail-grid img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.service-detail-grid h2 {
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.agency-panel,
.employment-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(260px, 1fr);
  gap: clamp(28px, 6vw, 74px);
  color: var(--paper);
  background:
    linear-gradient(110deg, rgba(11, 24, 33, 0.96), rgba(5, 54, 77, 0.92)),
    url("assets/blueprint.jpg") center / cover;
}

.agency-panel h2,
.employment-panel h2 {
  font-size: clamp(2rem, 4.6vw, 4.2rem);
}

.agency-panel ul,
.employment-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.agency-panel li,
.employment-panel li {
  padding: 18px 20px;
  color: #d8e5e5;
  background: rgba(255, 255, 255, 0.08);
  border-left: 5px solid var(--lime);
  font-weight: 800;
}

.career-hero {
  background:
    linear-gradient(100deg, rgba(5, 34, 47, 0.96), rgba(5, 54, 77, 0.82)),
    url("assets/excavator.png") right bottom / min(760px, 72vw) auto no-repeat,
    var(--ink);
}

.estimate-hero {
  background:
    linear-gradient(100deg, rgba(5, 34, 47, 0.97), rgba(5, 54, 77, 0.82)),
    url("assets/blueprint.jpg") center / cover;
}

.estimate-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(30px, 6vw, 78px);
  background: var(--concrete);
}

.estimate-copy h2 {
  font-size: clamp(2.1rem, 4.6vw, 4.3rem);
}

.estimate-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.estimate-checklist article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--smoke);
  background: var(--paper);
}

.bid-scopes {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  color: var(--paper);
  background:
    linear-gradient(110deg, rgba(11, 24, 33, 0.96), rgba(5, 54, 77, 0.92)),
    url("assets/blueprint.jpg") center / cover;
}

.bid-scopes h2 {
  font-size: clamp(2rem, 4.6vw, 4.2rem);
}

.bid-scopes ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bid-scopes li {
  padding: 16px 18px;
  color: #d8e5e5;
  background: rgba(255, 255, 255, 0.08);
  border-left: 5px solid var(--lime);
  font-weight: 800;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--smoke);
}

.career-grid article {
  min-height: 260px;
  padding: 28px;
  background: var(--paper);
}

.career-grid h2 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 46px clamp(18px, 5vw, 72px);
  color: var(--ink);
  background: var(--gold);
}

.cta-strip .eyebrow {
  color: var(--navy);
}

.cta-strip h2 {
  max-width: 900px;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
}

[data-reveal] {
  transform: none;
  opacity: 1;
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

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

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .hero-machine {
    right: -330px;
    width: 940px;
  }

  .featured-work,
  .process,
  .contact,
  .project-detail,
  .agency-panel,
  .employment-panel,
  .equipment,
  .estimate-layout,
  .bid-scopes {
    grid-template-columns: 1fr;
  }

  .process-copy {
    position: static;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 74px;
  }

  .brand img {
    width: 146px;
  }

  .menu-button {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    gap: 4px;
    padding-top: 10px;
  }

  .site-nav.is-open a {
    border-radius: 4px;
    border-top: 1px solid var(--smoke);
  }

  .metrics,
  .capability-grid,
  .project-directory,
  .career-grid,
  .market-grid,
  .photo-pair {
    grid-template-columns: 1fr 1fr;
  }

  .directory-card.large {
    grid-column: span 2;
  }

  .hero {
    min-height: calc(100svh - 120px);
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 720px;
    padding-top: 42px;
    background:
      linear-gradient(180deg, rgba(5, 34, 47, 0.98), rgba(5, 54, 77, 0.84)),
      url("assets/blueprint.jpg") center / cover;
  }

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

  .hero-panel {
    display: none;
  }

  .hero-machine {
    right: -225px;
    width: 770px;
  }

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

  .metrics,
  .capability-grid,
  .project-directory,
  .career-grid,
  .market-grid,
  .estimate-checklist,
  .photo-pair {
    grid-template-columns: 1fr;
  }

  .directory-card.large {
    grid-column: span 1;
  }

  .service-detail-grid article {
    grid-template-columns: 1fr;
  }

  .project-hero {
    min-height: 480px;
  }

  .cta-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .feature-project {
    min-height: auto;
  }

  .project-list article {
    grid-template-columns: 108px 1fr;
    min-height: 132px;
  }

  .process-steps li {
    padding: 76px 22px 24px;
  }

  .process-steps li::before {
    top: 22px;
  }

  .statement {
    background:
      linear-gradient(180deg, rgba(11, 24, 33, 0.96), rgba(11, 24, 33, 0.78)),
      url("assets/excavator.png") right bottom / 620px auto no-repeat,
      var(--ink);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
