:root {
  --ink: #071724;
  --ink-2: #102738;
  --ink-3: #183449;
  --paper: #f4f2ec;
  --white: #ffffff;
  --muted: #667580;
  --line: rgba(7, 23, 36, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --orange: #e7672f;
  --orange-bright: #f0783a;
  --sand: #d7d1c5;
  --shadow: 0 22px 70px rgba(7, 23, 36, 0.16);
  --header-height: 5.5rem;
  --max-width: 88rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 20rem;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 3.5vw;
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
  transition: background 220ms ease, box-shadow 220ms ease, height 220ms ease;
}

.site-header.is-scrolled {
  height: 4.75rem;
  background: rgba(7, 23, 36, 0.96);
  box-shadow: 0 12px 30px rgba(2, 12, 19, 0.22);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 100%, 0 100%);
}

.brand-mark span {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  transform: skewX(-7deg);
}

.brand-copy {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy strong {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.045em;
}

.brand-copy small {
  margin-top: 0.27rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 2.25rem);
}

.site-nav a {
  position: relative;
  font-size: 0.875rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.45rem;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  transition: background 180ms ease, border 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.menu-button {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  border: 0;
  color: var(--white);
  background: transparent;
}

.menu-button > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 0.27rem 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: min(56rem, 100svh);
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 4rem) max(4vw, calc((100vw - var(--max-width)) / 2)) 7.5rem;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-image,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -1;
}

.hero-image {
  background:
    linear-gradient(90deg, rgba(5, 18, 29, 0.97) 0%, rgba(5, 18, 29, 0.76) 42%, rgba(5, 18, 29, 0.2) 75%),
    linear-gradient(0deg, rgba(5, 18, 29, 0.65), rgba(5, 18, 29, 0.02) 54%),
    url("./assets/sitework-hero.webp") center 48% / cover no-repeat;
  transform: scale(1.015);
}

.hero-grid {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 5.25rem 5.25rem;
  mask-image: linear-gradient(90deg, black, transparent 64%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 0.55rem;
  height: 46%;
  background: var(--orange);
}

.service-areas {
  background: #e9e5dc;
}

.area-intro {
  max-width: 58rem;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3.5rem;
  background: rgba(7, 23, 36, 0.18);
  border: 1px solid rgba(7, 23, 36, 0.18);
}

.area-card {
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.area-card > span {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.area-card h3 {
  margin: auto 0 0.65rem;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.area-card p {
  min-height: 4.8rem;
  margin: 0;
  color: var(--muted);
}

.area-card strong {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.area-card:hover,
.area-card:focus-visible {
  z-index: 1;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-0.4rem);
}

.area-card:hover p,
.area-card:focus-visible p {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1050px) {
  .area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .area-card:last-child { grid-column: 1 / -1; min-height: 14rem; }
}

@media (max-width: 620px) {
  .area-grid { grid-template-columns: 1fr; }
  .area-card, .area-card:last-child { grid-column: auto; min-height: 15rem; }
}

.hero-content {
  max-width: 53rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 2.4rem;
  height: 2px;
  flex: 0 0 auto;
  background: var(--orange);
}

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

.hero h1,
.section-intro h2,
.scope-copy h2,
.process-intro h2,
.project-panel h2,
.contact-band h2 {
  font-family: Impact, "Arial Narrow", "Franklin Gothic Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0.012em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(4.1rem, 9vw, 8.8rem);
  line-height: 0.82;
  letter-spacing: 0.005em;
}

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

.hero-lede {
  max-width: 42rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.3rem;
}

.button {
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.82rem 1.1rem 0.82rem 1.3rem;
  border: 1px solid transparent;
  font-size: 0.91rem;
  font-weight: 850;
  line-height: 1.25;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border 180ms ease, transform 180ms ease;
}

.button span {
  font-size: 1.15rem;
}

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

.button:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(240, 120, 58, 0.62);
  outline-offset: 3px;
}

summary:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 4px;
}

.button-primary {
  min-width: 13.25rem;
  color: var(--white);
  background: var(--orange);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-bright);
}

.button-quiet {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(7, 23, 36, 0.18);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.hero-rail {
  position: absolute;
  right: 3.5vw;
  bottom: 2.1rem;
  display: flex;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-rail span {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-rail span:not(:last-child)::after {
  content: "/";
  color: var(--orange);
}

.proof-strip {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  padding: 0 3.5vw;
  background: var(--white);
  transform: translateY(-1px);
}

.proof-strip p {
  min-height: 7.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 1.5rem 1.7rem;
  border-right: 1px solid var(--line);
}

.proof-strip p:first-child {
  border-left: 1px solid var(--line);
}

.proof-strip strong {
  font-size: 0.96rem;
  line-height: 1.35;
}

.proof-strip span {
  margin-top: 0.32rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 10rem) 3.5vw;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(15rem, 0.7fr) minmax(20rem, 1.6fr) minmax(15rem, 0.7fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

.section-intro .eyebrow {
  align-self: start;
}

.section-intro h2,
.scope-copy h2,
.process-intro h2,
.project-panel h2,
.contact-band h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.96;
}

.section-intro > p:last-child,
.scope-copy > p,
.process-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

.capability-card {
  min-height: 21.5rem;
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.48);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.capability-card:hover {
  z-index: 1;
  color: var(--white);
  background: var(--ink-2);
  transform: translateY(-0.4rem);
  box-shadow: var(--shadow);
}

.capability-card.featured {
  color: var(--ink);
  background: var(--orange);
}

.card-number {
  color: currentColor;
  font-size: 0.76rem;
  font-weight: 850;
  opacity: 0.55;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin: 2rem 0 1.25rem;
  border: 1px solid currentColor;
  font-size: 1.4rem;
  opacity: 0.72;
}

.capability-card h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.3;
}

.capability-card p {
  max-width: 27rem;
  margin: 0.75rem 0 1.5rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  transition: color 220ms ease;
}

.capability-card:not(.featured):hover p {
  color: rgba(255, 255, 255, 0.76);
}

.capability-card.featured p {
  color: var(--ink);
}

.card-tag {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid currentColor;
  font-size: 0.875rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.68;
}

.service-guide {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.65;
}

.service-guide summary {
  padding-block: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 800;
  cursor: pointer;
}

.service-guide ul {
  margin: 0.75rem 0;
  padding-left: 1.25rem;
}

.service-guide li + li {
  margin-top: 0.65rem;
}

.service-guide p {
  margin-bottom: 0.75rem;
}

.service-inquiry {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 2.75rem;
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 800;
  text-underline-offset: 0.25em;
  text-decoration-thickness: 1px;
}

.service-inquiry:hover {
  text-decoration-thickness: 2px;
}

.service-inquiry-options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.scope-section {
  position: relative;
  padding: clamp(5rem, 9vw, 9rem) 3.5vw;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 4.5rem 4.5rem;
}

.scope-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.55rem;
  background: var(--orange);
}

.scope-shell {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: minmax(17rem, 0.75fr) minmax(36rem, 1.35fr);
  gap: clamp(4rem, 8vw, 9rem);
  margin: 0 auto;
}

.scope-copy {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.scope-copy > p {
  max-width: 32rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.68);
}

.scope-note {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-light);
}

.scope-note > span {
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 0.8rem;
}

.scope-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  line-height: 1.55;
}

.scope-tool fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.scope-tool legend {
  width: 100%;
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.scope-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 1rem 0 1.5rem;
}

.scope-option {
  min-height: 6.2rem;
  position: relative;
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  grid-template-rows: auto auto;
  gap: 0.15rem 0.75rem;
  align-content: center;
  padding: 1rem;
  color: var(--white);
  text-align: left;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: background 180ms ease, border 180ms ease, transform 180ms ease;
}

.scope-option:hover {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.07);
}

.scope-option[aria-pressed="true"] {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.scope-option .check {
  grid-row: 1 / span 2;
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: transparent;
  font-size: 0.8rem;
}

.scope-option[aria-pressed="true"] .check {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.scope-option > span:nth-child(2) {
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.3;
}

.scope-option small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.73rem;
}

.scope-option[aria-pressed="true"] small {
  color: var(--muted);
}

.scope-result {
  padding: 1.5rem;
  color: var(--ink);
  background: var(--white);
}

.result-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.result-heading span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-heading strong {
  color: var(--orange);
  font-size: 0.82rem;
}

.scope-result > p {
  min-height: 4.9rem;
  margin: 1.2rem 0;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.65;
}

.phase-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.35rem;
  margin-bottom: 1.4rem;
}

.phase-track span {
  position: relative;
  padding-top: 0.72rem;
  color: #9aa4aa;
  border-top: 3px solid #d9dee0;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  transition: color 180ms ease, border 180ms ease;
}

.phase-track span.is-active {
  color: var(--ink);
  border-color: var(--orange);
}

.scope-result .button {
  width: 100%;
}

.scope-result .button.disabled {
  color: #74818a;
  background: #dce0e2;
  pointer-events: none;
}

.scope-tool,
.scope-result {
  min-width: 0;
}

.scope-tool .project-details {
  margin-bottom: 1.5rem;
}

.project-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1rem;
}

.project-fields label {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
  font-size: 1rem;
  font-weight: 650;
}

.project-fields .field-wide {
  grid-column: 1 / -1;
}

.project-fields input,
.project-fields select,
.project-fields textarea {
  width: 100%;
  min-width: 0;
  padding: 0.85rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 0;
  font: inherit;
  font-weight: 400;
}

.project-fields textarea,
.brief-preview textarea {
  resize: vertical;
}

.project-fields :is(input, select, textarea):focus-visible,
.brief-preview textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.brief-preview {
  margin-bottom: 1.25rem;
}

.brief-preview summary {
  cursor: pointer;
  font-weight: 800;
}

.brief-preview textarea {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.9rem;
  color: var(--ink);
  background: #f3f5f6;
  border: 1px solid var(--line);
  font: 1rem/1.5 ui-monospace, monospace;
}

.brief-actions {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0.75rem;
}

.brief-copy {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: white;
  cursor: pointer;
}

.brief-copy:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.scope-result .brief-status,
.scope-result .brief-help {
  min-height: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.scope-result .brief-status:empty {
  display: none;
}

.scope-result .brief-help {
  margin-bottom: 0;
  color: #4b5e6b;
}

.bid-guide {
  border-bottom: 1px solid var(--line);
}

.bid-checklists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.bid-checklists details {
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
}

.bid-checklists summary {
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
}

.bid-checklists ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.bid-checklists li + li {
  margin-top: 0.65rem;
}

.bid-checklists p,
.bid-disclaimer {
  color: #4b5e6b;
  font-size: 1rem;
}

.bid-disclaimer {
  max-width: 65rem;
  margin: 1.5rem 0 0;
}

@media (max-width: 40rem) {
  .project-fields,
  .brief-actions,
  .bid-checklists { grid-template-columns: 1fr; }
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(32rem, 1.3fr);
  gap: clamp(4rem, 9vw, 10rem);
}

.process-intro {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.process-intro > p {
  max-width: 30rem;
  margin-top: 1.5rem;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list .step {
  color: var(--orange);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.process-list h3 {
  margin: 0;
  font-size: 1.2rem;
}

.process-list p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.project-types {
  min-height: 42rem;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  color: var(--white);
  background: var(--ink-2);
}

.project-image {
  min-height: 34rem;
  background:
    linear-gradient(90deg, rgba(7, 23, 36, 0.04), rgba(7, 23, 36, 0.46)),
    url("./assets/paving-detail.webp") center / cover no-repeat;
}

.project-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 7rem);
}

.project-panel h2 {
  max-width: 11ch;
  font-size: clamp(2.7rem, 4.5vw, 4.8rem);
}

.type-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line-light);
}

.type-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1rem;
  padding: 1.25rem 0;
  color: var(--white);
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  cursor: pointer;
}

.type-row > span:first-child {
  font-size: 0.95rem;
  font-weight: 800;
}

.type-row > span:nth-child(2) {
  color: var(--orange);
  font-size: 1.1rem;
}

.type-row small {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  line-height: 1.6;
  opacity: 0;
  transition: max-height 220ms ease, opacity 220ms ease, padding 220ms ease;
}

.type-row.is-open small {
  max-height: 5rem;
  padding-top: 0.35rem;
  opacity: 1;
}

.contact-band {
  position: relative;
  padding: clamp(5.5rem, 10vw, 9rem) max(4vw, calc((100vw - var(--max-width)) / 2));
  color: var(--white);
  background: var(--orange);
  overflow: hidden;
}

.contact-band::after {
  content: "LE";
  position: absolute;
  right: -0.04em;
  bottom: -0.35em;
  color: rgba(255, 255, 255, 0.09);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(14rem, 32vw, 32rem);
  line-height: 1;
  pointer-events: none;
}

.contact-band .eyebrow,
.contact-band h2,
.contact-band > p,
.contact-actions {
  position: relative;
  z-index: 1;
}

.contact-band .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.contact-band .eyebrow > span {
  background: var(--ink);
}

.contact-band h2 {
  max-width: 14ch;
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.contact-band > p {
  max-width: 43rem;
  margin: 1.5rem 0 0;
  font-size: 1.05rem;
}

.button-light {
  max-width: 100%;
  color: var(--ink);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.contact-actions > span {
  padding: 0.75rem 0;
  font-size: 0.85rem;
  font-weight: 800;
}

.review-link {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  text-underline-offset: 0.25em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 2.5rem;
  padding: 2.2rem 3.5vw;
  color: rgba(255, 255, 255, 0.62);
  background: #041019;
}

.site-footer p {
  margin: 0;
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.footer-links a {
  color: var(--white);
  font-weight: 800;
  text-underline-offset: 0.22em;
}

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

.footer-brand .brand-mark {
  width: 2.5rem;
  height: 2.5rem;
}

.footer-brand .brand-copy strong {
  font-size: 1.2rem;
}

.footer-brand .brand-copy small {
  font-size: 0.62rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 68rem) {
  .site-header {
    padding-inline: 1.5rem;
  }

  .site-nav {
    gap: 1.1rem;
  }

  .hero {
    padding-inline: 4vw;
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip p:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .proof-strip p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-intro {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .section-intro > p:last-child {
    grid-column: 2;
  }

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

  .scope-shell {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .scope-copy,
  .process-intro {
    position: static;
  }

  .scope-copy > p {
    max-width: 44rem;
  }

  .process-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
  }

  .project-types {
    grid-template-columns: 1fr 1fr;
  }

  .project-panel {
    padding: 4rem 3rem;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 50rem) {
  :root {
    --header-height: 4.75rem;
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
    padding-inline: 1rem;
    background: rgba(7, 23, 36, 0.96);
  }

  .brand-mark {
    width: 2.55rem;
    height: 2.55rem;
  }

  .brand-copy strong {
    font-size: 1.24rem;
  }

  .brand-copy small {
    font-size: 0.62rem;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(0.36rem) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-0.36rem) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem;
    background: var(--ink);
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .site-nav a {
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--line-light);
    font-size: 1.05rem;
  }

  .site-nav .nav-cta {
    margin-top: 1.25rem;
    padding: 1rem;
    text-align: center;
    background: var(--orange);
    border: 0;
  }

  .hero {
    min-height: 49rem;
    align-items: center;
    padding: calc(var(--header-height) + 3.5rem) 1.25rem 6.5rem;
  }

  .hero-image {
    background:
      linear-gradient(90deg, rgba(5, 18, 29, 0.96), rgba(5, 18, 29, 0.47)),
      linear-gradient(0deg, rgba(5, 18, 29, 0.8), rgba(5, 18, 29, 0.03)),
      url("./assets/sitework-hero.webp") 62% center / cover no-repeat;
  }

  .hero-grid {
    background-size: 3.75rem 3.75rem;
  }

  .hero .eyebrow {
    max-width: 24rem;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 19vw, 6rem);
  }

  .hero h1 em {
    -webkit-text-stroke-width: 1.5px;
  }

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

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

  .hero-rail {
    right: 1.25rem;
    left: 1.25rem;
    gap: 0.55rem;
    justify-content: space-between;
    font-size: 0.61rem;
  }

  .hero-rail span {
    gap: 0.55rem;
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
    padding-inline: 0;
  }

  .proof-strip p {
    min-height: 6.8rem;
    padding: 1.2rem;
  }

  .proof-strip p:first-child,
  .proof-strip p:nth-child(3) {
    border-left: 0;
  }

  .section,
  .scope-section {
    padding-inline: 1.25rem;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .section-intro > p:last-child {
    grid-column: auto;
  }

  .section-intro h2,
  .scope-copy h2,
  .process-intro h2,
  .project-panel h2,
  .contact-band h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

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

  .capability-card {
    min-height: 18rem;
  }

  .scope-options {
    grid-template-columns: 1fr;
  }

  .scope-option {
    min-height: 5.4rem;
  }

  .scope-result {
    padding: 1.2rem;
  }

  .scope-result > p {
    min-height: auto;
  }

  .phase-track {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(4.2rem, 1fr));
    padding-bottom: 0.25rem;
  }

  .process-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .project-types {
    grid-template-columns: 1fr;
  }

  .project-image {
    min-height: 22rem;
  }

  .project-panel {
    padding: 4rem 1.25rem;
  }

  .contact-band {
    padding-inline: 1.25rem;
  }

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

  .contact-actions .button {
    width: 100%;
    overflow-wrap: anywhere;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 2.5rem 1.25rem;
  }

  .site-footer p:nth-child(2) {
    display: block;
  }
}

@media (max-width: 27rem) {
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip p {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .result-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

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