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

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

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

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

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

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

:root {
  --ink: #121722;
  --navy: #10192f;
  --navy-soft: #1b2948;
  --rust: #b84b2e;
  --rust-dark: #843620;
  --orange: #eb7844;
  --sand: #e9dfcf;
  --paper: #f5f1e9;
  --white: #fffdfa;
  --gray: #6e6f6d;
  --line: rgba(18, 23, 34, 0.17);
  --header-h: 80px;
  --shell: min(1216px, calc(100vw - 64px));
  --shadow: 0 24px 70px rgba(12, 18, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--rust) var(--paper);
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

*::-webkit-scrollbar-track {
  background: var(--paper);
}

*::-webkit-scrollbar-thumb {
  background: var(--rust);
  border: 3px solid var(--paper);
  border-radius: 99px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--rust-dark);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body:has(dialog[open]) {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--rust);
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

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

.section {
  padding-block: 130px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 11px 18px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  color: var(--white);
  background: rgba(16, 25, 47, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(16, 25, 47, 0.97);
  box-shadow: 0 8px 30px rgba(6, 11, 22, 0.2);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 38px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 44px;
  height: 36px;
  overflow: visible;
  fill: var(--rust);
}

.brand-mark path:last-child {
  fill: var(--orange);
}

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

.brand-copy strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-copy span {
  margin-top: 2px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  padding-block: 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 15px 24px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  background: var(--rust);
  border: 1px solid var(--rust);
  border-radius: 0;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--rust-dark);
  border-color: var(--rust-dark);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 42px;
  padding: 11px 18px;
}

.button-light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

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

.hero {
  position: relative;
  display: flex;
  min-height: 830px;
  color: var(--white);
  background: var(--navy);
  align-items: center;
  overflow: hidden;
}

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

.hero-media {
  left: 39%;
  background-image: url("assets/hero-mina.jpg");
  background-position: 52% center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, var(--navy) 0%, var(--navy) 38%, rgba(16, 25, 47, 0.84) 52%, rgba(16, 25, 47, 0.12) 77%),
    linear-gradient(0deg, rgba(5, 9, 18, 0.7) 0%, transparent 46%);
}

.hero-grid {
  opacity: 0.16;
  background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 62%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 52px;
}

.eyebrow {
  display: flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 11px;
  color: var(--rust);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--orange);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(76px, 9vw, 138px);
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-intro {
  max-width: 530px;
  margin: 30px 0 36px;
  color: rgba(255, 255, 255, 0.79);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  width: max-content;
  padding-block: 6px;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover {
  color: var(--rust);
  gap: 15px;
}

.text-link.light {
  color: var(--white);
  border-color: rgba(255,255,255,.38);
}

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

.hero-data {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr 2fr;
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-data > * {
  display: flex;
  min-height: 116px;
  padding: 25px 28px;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-index {
  color: rgba(255, 255, 255, 0.54);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 1.5;
}

.hero-stat {
  gap: 14px;
}

.hero-stat strong {
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 35px;
  line-height: 1;
}

.hero-stat span,
.hero-location span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-transform: uppercase;
}

.hero-location {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: rgba(184, 75, 46, 0.9);
  transition: background 180ms ease;
}

.hero-location:hover {
  background: var(--rust-dark);
}

.hero-location strong {
  margin-top: 5px;
  font-size: 13px;
}

.service-bar {
  color: var(--navy);
  background: var(--sand);
  border-bottom: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-item {
  display: flex;
  min-height: 112px;
  padding: 26px 34px;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line);
}

.service-item:first-child {
  border-left: 1px solid var(--line);
}

.service-item svg {
  width: 35px;
  flex: 0 0 35px;
  fill: none;
  stroke: var(--rust);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.service-item div {
  display: grid;
}

.service-item strong {
  font-size: 13px;
}

.service-item span {
  color: var(--gray);
  font-size: 11px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px 100px;
}

.intro-heading h2,
.section-head h2,
.location-heading h2 {
  color: var(--navy);
  font-size: clamp(58px, 6.4vw, 92px);
}

.intro-copy {
  padding-top: 35px;
}

.intro-copy .lead {
  margin-top: 0;
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.25;
}

.intro-copy p:not(.lead) {
  margin-bottom: 28px;
  color: var(--gray);
  font-size: 14px;
}

.intro-image {
  position: relative;
  margin: 0;
}

.intro-image::before {
  position: absolute;
  z-index: -1;
  right: -22px;
  bottom: -22px;
  width: 70%;
  height: 66%;
  content: "";
  background: var(--rust);
}

.intro-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.intro-image figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 12px 17px;
  color: var(--white);
  background: var(--navy);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.intro-aside {
  display: grid;
  padding: 30px 0 0 50px;
  align-content: center;
  grid-template-columns: 45px 1fr;
  gap: 24px;
}

.aside-rule {
  height: 2px;
  margin-top: 13px;
  background: var(--rust);
}

.intro-aside p {
  max-width: 360px;
  margin: 0;
  color: var(--gray);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.material {
  position: relative;
  padding-block: 160px;
  color: var(--white);
  background: var(--rust-dark);
  overflow: hidden;
}

.material::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.14;
  background-image: url("assets/hero-material.jpg");
  background-position: center;
  background-size: cover;
  mix-blend-mode: luminosity;
}

.strata {
  position: absolute;
  z-index: 1;
  right: 0;
  left: 0;
  height: 34px;
  background: linear-gradient(175deg, transparent 0 47%, var(--orange) 48% 60%, var(--navy) 61% 100%);
}

.strata-top {
  top: 0;
  transform: rotate(180deg);
}

.strata-bottom {
  bottom: 0;
}

.material-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 90px;
}

.material-visual {
  position: relative;
}

.material-visual img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  box-shadow: var(--shadow);
  filter: saturate(0.82) contrast(1.08);
}

.material-label {
  position: absolute;
  right: -35px;
  bottom: -30px;
  display: grid;
  width: 172px;
  height: 172px;
  padding: 25px;
  align-content: end;
  color: var(--navy);
  background: var(--sand);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 27px;
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.material-copy h2 {
  max-width: 550px;
  font-size: clamp(64px, 6.5vw, 96px);
}

.material-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 32px 0 42px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.material-facts {
  display: grid;
  border-top: 1px solid rgba(255,255,255,.25);
}

.material-facts > div {
  display: grid;
  padding: 16px 0;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,.25);
}

.material-facts strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.material-facts span {
  color: rgba(255,255,255,.58);
  font-size: 11px;
}

.section-head {
  display: grid;
  margin-bottom: 58px;
  grid-template-columns: 1fr 0.58fr;
  align-items: end;
  gap: 70px;
}

.section-head > p {
  max-width: 400px;
  margin: 0 0 9px;
  color: var(--gray);
  font-size: 13px;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-card {
  position: relative;
  padding: 30px 34px 35px;
  border-right: 1px solid var(--line);
}

.process-card:first-child {
  border-left: 1px solid var(--line);
}

.process-number {
  display: block;
  margin-bottom: 17px;
  color: var(--rust);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.process-image {
  height: 255px;
  margin-bottom: 26px;
  overflow: hidden;
  background: var(--sand);
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.06);
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.process-card:hover img {
  transform: scale(1.045);
}

.process-card h3 {
  color: var(--navy);
  font-size: 32px;
}

.process-card p {
  max-width: 290px;
  margin: 12px 0 0;
  color: var(--gray);
  font-size: 12px;
}

.fleet {
  position: relative;
  min-height: 760px;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.fleet::after {
  position: absolute;
  right: -10%;
  bottom: -40%;
  width: 65%;
  height: 95%;
  content: "";
  background: radial-gradient(ellipse, rgba(235,120,68,.28), transparent 64%);
}

.fleet-grid {
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 86px 86px;
}

.fleet-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 500px;
  grid-template-columns: 0.92fr 0.58fr;
  align-items: center;
  gap: 80px;
}

.fleet-copy {
  position: relative;
  z-index: 3;
}

.fleet-copy h2 {
  font-size: clamp(66px, 7.3vw, 108px);
}

.fleet-copy h2 span {
  color: var(--orange);
}

.fleet-copy > p:not(.eyebrow) {
  max-width: 475px;
  margin: 30px 0 36px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.fleet-specs {
  position: relative;
  z-index: 4;
  display: grid;
  align-self: stretch;
  align-content: center;
  border-left: 1px solid rgba(255,255,255,.18);
}

.fleet-specs > div {
  display: grid;
  padding: 21px 0 21px 34px;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.fleet-specs > div:first-child {
  border-top: 1px solid rgba(255,255,255,.18);
}

.fleet-specs span,
.fleet-specs small {
  color: rgba(255,255,255,.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.fleet-specs strong {
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 38px;
  line-height: 1;
}

.fleet-specs small {
  grid-column: 2;
  text-align: right;
}

.fleet-truck {
  position: absolute;
  z-index: 2;
  right: -140px;
  bottom: -220px;
  width: min(48vw, 690px);
  max-width: none;
  filter: drop-shadow(-28px 36px 28px rgba(0,0,0,.45));
  pointer-events: none;
}

.gallery {
  background: var(--sand);
}

.gallery-grid {
  display: grid;
  height: 660px;
  grid-template-columns: 1.35fr .9fr .9fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.gallery-item {
  position: relative;
  padding: 0;
  background: var(--navy);
  border: 0;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(16,25,47,.78), transparent 52%);
  transition: background 260ms ease;
}

.gallery-item:hover::after {
  background: linear-gradient(0deg, rgba(184,75,46,.68), transparent 62%);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.07);
  transition: transform 550ms cubic-bezier(.2,.7,.2,1), filter 250ms ease;
}

.gallery-item:hover img {
  filter: saturate(.95) contrast(1.08);
  transform: scale(1.035);
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 24px;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.gallery-wide {
  grid-row: span 2;
}

.gallery-tall {
  grid-column: span 2;
}

.gallery-truck {
  background: radial-gradient(circle at 70% 70%, var(--navy-soft), var(--navy) 67%);
}

.gallery-truck img {
  object-fit: contain;
  object-position: 72% 46%;
  transform: scale(1.32) translateY(10%);
}

.gallery-truck:hover img {
  transform: scale(1.36) translateY(9%);
}

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

.location-grid {
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: 80px 100px;
}

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

.distance-list > div {
  min-height: 190px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.distance-list > div:first-child {
  border-left: 1px solid var(--line);
}

.distance-list strong {
  display: block;
  color: var(--rust);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 76px;
  line-height: .9;
}

.distance-list span {
  display: block;
  margin-top: 17px;
  color: var(--gray);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
  text-transform: uppercase;
}

.address-card {
  grid-column: 1 / -1;
  display: grid;
  min-height: 270px;
  padding: 56px 66px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16,25,47,.96), rgba(16,25,47,.68)),
    url("assets/hero-mina.jpg") center 43% / cover;
  align-content: center;
}

.address-card > span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.address-card address {
  max-width: 710px;
  margin: 13px 0 24px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.contact {
  position: relative;
  color: var(--white);
  background: var(--rust);
  overflow: hidden;
}

.contact::before {
  position: absolute;
  right: -120px;
  bottom: -165px;
  width: 620px;
  height: 410px;
  content: "";
  opacity: .12;
  background-image: url("assets/hero-material.jpg");
  background-size: cover;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 110px;
}

.contact-copy h2 {
  font-size: clamp(62px, 6.5vw, 96px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 440px;
  color: rgba(255,255,255,.74);
  font-size: 14px;
}

.contact-copy .eyebrow {
  color: var(--navy);
}

.contact-direct {
  display: grid;
  margin-top: 44px;
}

.contact-direct span {
  margin-top: 16px;
  color: rgba(255,255,255,.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-direct a {
  width: max-content;
  max-width: 100%;
  font-size: 12px;
  font-weight: 700;
  overflow-wrap: anywhere;
  border-bottom: 1px solid rgba(255,255,255,.45);
}

.quote-form {
  padding: 42px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field {
  display: block;
  margin-bottom: 22px;
}

.field > span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(18,23,34,.35);
  border-radius: 0;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 120px;
  resize: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--rust);
  box-shadow: 0 1px 0 var(--rust);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #a61d16;
}

.field-error {
  display: block;
  min-height: 19px;
  padding-top: 4px;
  color: #a61d16;
  font-size: 10px;
}

.form-submit {
  width: 100%;
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  justify-content: space-between;
}

.form-submit:hover {
  color: var(--white);
  background: var(--rust-dark);
  border-color: var(--rust-dark);
}

.form-note,
.form-status {
  margin: 11px 0 0;
  color: var(--gray);
  font-size: 9px;
}

.form-status {
  min-height: 15px;
  color: var(--rust-dark);
  font-weight: 700;
}

.site-footer {
  padding: 70px 0 25px;
  color: var(--white);
  background: #0b1020;
}

.footer-main {
  display: grid;
  padding-bottom: 60px;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: start;
  gap: 70px;
}

.brand-footer .brand-mark {
  width: 48px;
}

.footer-main > p {
  max-width: 350px;
  margin: 0;
  color: rgba(255,255,255,.47);
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 28px;
}

.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

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

.footer-meta {
  display: flex;
  padding-top: 24px;
  justify-content: space-between;
  color: rgba(255,255,255,.3);
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 9px;
}

.lightbox {
  width: min(1080px, calc(100vw - 48px));
  max-width: none;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(7, 11, 22, .94);
  backdrop-filter: blur(8px);
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: var(--navy);
}

.lightbox figcaption {
  padding-top: 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--white);
  background: var(--rust);
  border: 0;
  place-items: center;
  cursor: pointer;
}

.lightbox-close {
  top: -55px;
  right: 0;
  font-size: 30px;
}

.lightbox-arrow {
  top: 45%;
  font-size: 21px;
}

.lightbox-prev {
  left: -62px;
}

.lightbox-next {
  right: -62px;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: var(--orange);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

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

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 48px, 960px);
  }

  .desktop-nav {
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .hero-data {
    grid-template-columns: .8fr 1fr 1fr 1.6fr;
  }

  .hero-data > * {
    padding-inline: 18px;
  }

  .intro-grid,
  .material-grid {
    gap: 60px;
  }

  .fleet-inner {
    grid-template-columns: .9fr .55fr;
    gap: 45px;
  }

  .fleet-truck {
    right: -190px;
  }

  .contact-grid {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 68px;
    --shell: min(100% - 36px, 720px);
  }

  .section {
    padding-block: 88px;
  }

  .site-header {
    background: rgba(16,25,47,.96);
  }

  .brand-copy strong {
    font-size: 23px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 12px 9px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.26);
    place-content: center;
    gap: 7px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 21px;
    height: 2px;
    background: var(--white);
    transition: transform 180ms ease;
  }

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

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

  .mobile-menu {
    position: fixed;
    z-index: 99;
    top: var(--header-h);
    right: 0;
    left: 0;
    display: grid;
    padding: 16px 18px 26px;
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 18px 40px rgba(5,9,18,.25);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 250ms ease, visibility 250ms;
  }

  .mobile-menu.open {
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-menu a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255,255,255,.13);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-menu a:last-child {
    margin-top: 12px;
    text-align: center;
    background: var(--rust);
    border: 0;
  }

  .hero {
    min-height: 800px;
    padding-bottom: 175px;
  }

  .hero-media {
    left: 0;
    opacity: .67;
    background-position: 58% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(16,25,47,.98), rgba(16,25,47,.65)), linear-gradient(0deg, rgba(5,9,18,.82), transparent 70%);
  }

  .hero-content {
    padding-top: var(--header-h);
  }

  h1 {
    max-width: 620px;
    font-size: clamp(69px, 17vw, 108px);
  }

  .hero-data {
    grid-template-columns: 1fr 1fr;
  }

  .hero-data > * {
    min-height: 83px;
    padding: 14px 16px;
  }

  .hero-index {
    display: none;
  }

  .hero-location {
    grid-column: 1 / -1;
  }

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

  .service-item,
  .service-item:first-child {
    min-height: 92px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .intro-grid,
  .material-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 40px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .intro-image img {
    height: 360px;
  }

  .intro-aside {
    padding: 20px 0 0;
  }

  .material-grid {
    gap: 80px;
  }

  .material-visual img {
    height: 430px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-card,
  .process-card:first-child {
    display: grid;
    padding: 24px;
    grid-template-columns: 50px 190px 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 25px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .process-number {
    grid-row: 1 / 3;
  }

  .process-image {
    height: 170px;
    margin: 0;
    grid-row: 1 / 3;
  }

  .process-card h3 {
    align-self: end;
  }

  .fleet {
    padding-bottom: 230px;
  }

  .fleet-inner {
    grid-template-columns: 1fr;
  }

  .fleet-specs {
    width: min(100%, 520px);
  }

  .fleet-truck {
    right: -80px;
    bottom: -420px;
    width: 580px;
  }

  .gallery-grid {
    height: 720px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.15fr .85fr .85fr;
  }

  .gallery-wide {
    grid-column: span 2;
    grid-row: auto;
  }

  .gallery-tall {
    grid-column: span 2;
  }

  .distance-list {
    grid-row: 2;
  }

  .address-card {
    grid-column: auto;
  }

  .contact-grid {
    gap: 55px;
  }

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

  .footer-links {
    grid-column: 1 / -1;
  }

  .lightbox-arrow {
    top: auto;
    bottom: -56px;
  }

  .lightbox-prev {
    left: 0;
  }

  .lightbox-next {
    right: 0;
  }
}

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

  .section {
    padding-block: 76px;
  }

  .hero {
    min-height: 760px;
    padding-bottom: 180px;
  }

  .hero-content {
    padding-top: 80px;
  }

  .eyebrow {
    font-size: 8px;
  }

  h1 {
    font-size: clamp(61px, 18vw, 88px);
  }

  .hero-intro {
    margin: 22px 0 29px;
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat strong {
    font-size: 28px;
  }

  .hero-stat span {
    font-size: 7px;
  }

  .intro-heading h2,
  .section-head h2,
  .location-heading h2,
  .material-copy h2,
  .fleet-copy h2,
  .contact-copy h2 {
    font-size: clamp(54px, 16vw, 76px);
  }

  .intro-copy .lead {
    font-size: 23px;
  }

  .intro-image::before {
    right: -10px;
    bottom: -10px;
  }

  .intro-image img,
  .material-visual img {
    height: 290px;
  }

  .material {
    padding-block: 110px;
  }

  .material-label {
    right: -5px;
    bottom: -45px;
    width: 125px;
    height: 125px;
    padding: 18px;
    font-size: 22px;
  }

  .material-facts > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .process-card,
  .process-card:first-child {
    display: grid;
    grid-template-columns: 38px 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px 16px;
  }

  .process-number {
    grid-row: 1 / 4;
  }

  .process-image {
    height: 190px;
    grid-row: auto;
  }

  .process-card h3 {
    margin-top: 8px;
  }

  .process-card p {
    margin-top: 0;
  }

  .fleet {
    padding-bottom: 185px;
  }

  .fleet-specs > div {
    padding-left: 18px;
  }

  .fleet-truck {
    right: -80px;
    bottom: -345px;
    width: 470px;
  }

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

  .gallery-item,
  .gallery-wide,
  .gallery-tall {
    height: 250px;
    grid-column: auto;
  }

  .gallery-item:first-child {
    height: 330px;
  }

  .distance-list {
    grid-template-columns: 1fr;
  }

  .distance-list > div,
  .distance-list > div:first-child {
    display: grid;
    min-height: 125px;
    padding: 22px;
    grid-template-columns: 110px 1fr;
    align-items: center;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .distance-list strong {
    font-size: 64px;
  }

  .distance-list span {
    margin-top: 0;
  }

  .address-card {
    min-height: 290px;
    padding: 38px 28px;
  }

  .address-card address {
    font-size: 24px;
  }

  .quote-form {
    padding: 28px 22px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-links {
    grid-column: auto;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .lightbox {
    width: calc(100vw - 28px);
  }
}

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

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

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

@media (forced-colors: active) {
  * {
    scrollbar-color: auto;
  }

  .button,
  .menu-toggle,
  .lightbox-close,
  .lightbox-arrow {
    border: 1px solid ButtonText;
  }
}
