:root {
  --ink: #101110;
  --ink-soft: #1b1c1a;
  --paper: #f1eee7;
  --paper-deep: #e3ded3;
  --white: #faf9f5;
  --red: #d42c21;
  --red-dark: #9d1d16;
  --steel: #92958e;
  --line: rgba(16, 17, 16, 0.18);
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

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

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

button,
input,
select,
textarea {
  border-radius: 0;
}

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

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

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

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

.utility-bar {
  position: relative;
  z-index: 70;
  background: var(--red);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.utility-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-hours {
  display: flex;
  align-items: center;
  gap: 12px;
}

.utility-hours i {
  width: 3px;
  height: 3px;
  background: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(16, 17, 16, 0.96);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 76px;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  width: max-content;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  color: white;
  text-transform: uppercase;
  line-height: 0.82;
  letter-spacing: -0.04em;
}

.brand-small {
  width: 58px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 0.93rem;
  line-height: 0.88;
  text-align: right;
}

.brand-right {
  text-align: left;
}

.brand-rv {
  padding: 0 6px;
  color: var(--red);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 3.25rem;
  line-height: 0.75;
  letter-spacing: -0.08em;
  text-shadow: 1px 1px 0 white;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
}

.main-nav a {
  position: relative;
  padding: 28px 0 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

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

.main-nav a:hover,
.main-nav a:focus-visible {
  color: white;
}

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

.header-call {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 1.05;
}

.header-call span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-call strong {
  margin-top: 6px;
  font-family: "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 108px);
  overflow: hidden;
  background: #111;
  color: white;
}

.hero-image,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.05);
  animation: hero-arrive 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 11, 10, 0.97) 0%, rgba(10, 11, 10, 0.88) 34%, rgba(10, 11, 10, 0.26) 70%, rgba(10, 11, 10, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 11, 10, 0.72) 0%, transparent 42%);
}

.hero-grid {
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, black, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 108px);
  display: grid;
  grid-template-columns: minmax(0, 660px) 1fr;
  align-items: center;
  gap: 80px;
  padding-block: 92px 128px;
}

.hero-copy {
  animation: copy-arrive 900ms 150ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: #ff6a60;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  background: currentColor;
  content: "";
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-stretch: condensed;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.8rem, 6vw, 6.5rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

h1 span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75em;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
}

.hero-actions,
.mobile-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  overflow: hidden;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button::before {
  position: absolute;
  top: -80%;
  bottom: -80%;
  left: -60%;
  width: 36px;
  background: rgba(255, 255, 255, 0.28);
  content: "";
  transform: rotate(18deg);
  transition: left 420ms ease;
}

.button:hover::before {
  left: 120%;
}

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

.button-primary {
  background: var(--red);
  color: white;
}

.button-primary:hover {
  background: #e03b30;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  color: white;
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: white;
  background: white;
  color: var(--ink);
}

.hero-proof {
  max-width: 630px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  padding-right: 18px;
}

.hero-proof div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-proof strong {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-proof span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.74rem;
}

.hero-service-panel {
  position: relative;
  justify-self: end;
  width: 285px;
  min-height: 350px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(12, 13, 12, 0.64);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(13px);
  perspective: 900px;
  animation: panel-arrive 1.1s 450ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.panel-topline,
.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.56);
  font-family: monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-topline {
  justify-content: flex-start;
  gap: 8px;
}

.panel-topline b {
  margin-left: auto;
  color: white;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #59dc78;
  box-shadow: 0 0 12px #59dc78;
}

.diagnostic-orbit {
  position: relative;
  height: 265px;
  display: grid;
  place-items: center;
  transform: rotateX(58deg) rotateZ(-7deg);
  transform-style: preserve-3d;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  animation: orbit-spin 11s linear infinite;
}

.orbit::after {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px rgba(212, 44, 33, 0.9);
  content: "";
}

.orbit-one {
  width: 205px;
  height: 205px;
}

.orbit-two {
  width: 155px;
  height: 155px;
  animation-direction: reverse;
  animation-duration: 8s;
}

.orbit-three {
  width: 105px;
  height: 105px;
  animation-duration: 6s;
}

.orbit-core {
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(18, 19, 18, 0.9);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.72);
  font-family: monospace;
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  transform: rotateZ(7deg) rotateX(-58deg) translateZ(25px);
}

.orbit-core strong {
  margin: 2px 0;
  color: var(--red);
  font-size: 1.2rem;
}

.hero-scroll {
  position: absolute;
  right: 32px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-style: normal;
}

.intro-strip {
  background: var(--red);
  color: white;
}

.intro-strip-grid {
  min-height: 102px;
  display: grid;
  grid-template-columns: 1fr 1.7fr auto;
  align-items: center;
  gap: 40px;
}

.intro-strip span,
.intro-strip a {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.intro-strip p {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 650;
  line-height: 1.25;
}

.intro-strip a {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.section-heading h2,
.specialty-header h2,
.capability-copy h2,
.mobile-copy h2,
.request-copy h2,
.faq-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.55rem, 4.2vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.section-heading > p,
.faq-heading > p {
  margin-bottom: 0;
  color: #555851;
  font-size: 0.94rem;
  line-height: 1.65;
}

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

.service-card {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(250, 249, 245, 0.42);
  transform-style: preserve-3d;
  transition:
    transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 250ms ease,
    box-shadow 350ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  border-top: 3px solid var(--red);
  content: "";
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 200ms ease,
    transform 250ms ease;
}

.service-card:hover {
  z-index: 3;
  background: var(--white);
  box-shadow: 0 30px 70px rgba(24, 20, 15, 0.14);
  transform: translateY(-10px) rotateX(2deg) rotateY(-1.5deg);
}

.service-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.card-rail {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 54px;
  color: var(--red);
  font-family: monospace;
  font-size: 0.72rem;
}

.card-rail i {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.service-card h3 {
  max-width: 280px;
  margin-bottom: 18px;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.service-card > p {
  color: #5d6059;
  font-size: 0.9rem;
  line-height: 1.62;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0 32px;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 5px 8px;
  border: 1px solid var(--line);
  color: #646760;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-card > a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card > a span {
  color: var(--red);
}

.capability-section {
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.capability-section::before {
  position: absolute;
  top: 0;
  right: 50%;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  content: "";
}

.capability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 110px;
}

.capability-copy h2 {
  margin-bottom: 26px;
}

.large-copy {
  max-width: 610px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
  line-height: 1.68;
}

.capability-list {
  margin-bottom: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.capability-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.capability-list span {
  color: var(--red);
  font-family: monospace;
  font-size: 0.65rem;
}

.capability-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.84rem;
}

.capability-list strong {
  display: block;
  margin-bottom: 3px;
  color: white;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--red);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(6px);
}

.precision-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.stage-grid {
  position: absolute;
  inset: 10%;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 28px 28px;
  transform: rotateX(62deg) rotateZ(-12deg);
}

.stage-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transform: rotateX(62deg) rotateZ(-12deg);
}

.stage-ring::after {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 25px rgba(212, 44, 33, 0.9);
  content: "";
}

.ring-outer {
  width: 78%;
  height: 78%;
  animation: stage-spin 16s linear infinite;
}

.ring-middle {
  width: 57%;
  height: 57%;
  animation: stage-spin-reverse 11s linear infinite;
}

.ring-inner {
  width: 35%;
  height: 35%;
  animation: stage-spin 7s linear infinite;
}

.stage-axis {
  position: absolute;
  width: 72%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.7;
}

.axis-y {
  transform: rotate(90deg);
}

.stage-core {
  position: relative;
  z-index: 2;
  width: 145px;
  height: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(17, 18, 17, 0.94);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.4),
    inset 0 0 25px rgba(255, 255, 255, 0.04);
  transform: rotateX(-4deg) rotateY(8deg) translateZ(42px);
}

.stage-core span,
.stage-core small {
  color: rgba(255, 255, 255, 0.52);
  font-family: monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.stage-core strong {
  margin: 3px 0 6px;
  color: white;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.48rem;
  letter-spacing: -0.035em;
}

.stage-label {
  position: absolute;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.66);
  font-family: monospace;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
}

.label-one {
  top: 22%;
  right: 10%;
}

.label-two {
  right: 12%;
  bottom: 24%;
}

.label-three {
  bottom: 20%;
  left: 11%;
}

.stage-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.48);
  font-family: monospace;
  font-size: 0.57rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-caption b {
  color: rgba(255, 255, 255, 0.76);
}

.mobile-section {
  overflow: hidden;
  background: #181a18;
  color: white;
}

.mobile-glow {
  position: absolute;
  top: 10%;
  left: -15%;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: rgba(212, 44, 33, 0.14);
  filter: blur(140px);
}

.mobile-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 110px;
}

.route-visual {
  position: relative;
  min-height: 570px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.28);
  transform: perspective(1200px) rotateY(5deg) rotateX(1deg);
}

.route-map {
  position: absolute;
  inset: 30px;
  overflow: hidden;
}

.route-map::before,
.route-map::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.route-map::before {
  top: 8%;
  right: 4%;
  width: 270px;
  height: 270px;
}

.route-map::after {
  bottom: 3%;
  left: -8%;
  width: 330px;
  height: 330px;
}

.route-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(212, 44, 33, 0.1));
  transform-origin: left;
}

.route-line::after {
  position: absolute;
  inset: -8px 0;
  background: linear-gradient(90deg, rgba(212, 44, 33, 0.18), transparent);
  content: "";
  filter: blur(7px);
}

.route-a {
  top: 43%;
  left: 23%;
  width: 55%;
  transform: rotate(-18deg);
}

.route-b {
  top: 45%;
  left: 22%;
  width: 48%;
  transform: rotate(43deg);
}

.route-c {
  top: 68%;
  left: 60%;
  width: 34%;
  transform: rotate(-63deg);
}

.route-node {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding-left: 18px;
  font-family: monospace;
}

.route-node i {
  position: absolute;
  top: 2px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--red);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(212, 44, 33, 0.8);
}

.route-node b {
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.route-node small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.54rem;
}

.node-shop {
  top: 40%;
  left: 18%;
}

.node-site {
  top: 20%;
  right: 8%;
}

.node-road {
  right: 16%;
  bottom: 14%;
}

.service-van {
  position: absolute;
  z-index: 4;
  top: 46%;
  left: 53%;
  width: 110px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: #252825;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.42);
  transform: skewX(-7deg) rotate(-17deg);
  animation: van-float 4s ease-in-out infinite;
}

.service-van::before,
.service-van::after {
  position: absolute;
  bottom: -8px;
  width: 15px;
  height: 15px;
  border: 3px solid #646860;
  border-radius: 50%;
  background: #101110;
  content: "";
}

.service-van::before {
  left: 16px;
}

.service-van::after {
  right: 16px;
}

.service-van i {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 26px;
  height: 17px;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.service-van b {
  color: #ff5c52;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.route-data {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-data span {
  color: rgba(255, 255, 255, 0.42);
}

.mobile-copy h2 {
  margin-bottom: 26px;
}

.mobile-copy > p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.mobile-copy ol {
  margin: 38px 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.mobile-copy li {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.85rem;
}

.mobile-copy li span {
  color: var(--red);
  font-family: monospace;
  font-size: 0.65rem;
}

.text-link-light {
  color: rgba(255, 255, 255, 0.8);
}

.specialty-section {
  background: var(--paper-deep);
}

.specialty-header {
  max-width: 860px;
  margin-bottom: 65px;
}

.specialty-grid {
  border-top: 1px solid var(--line);
}

.specialty-feature {
  position: relative;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 60px;
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
}

.specialty-feature::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms ease;
}

.specialty-feature:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.feature-index {
  color: rgba(16, 17, 16, 0.28);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 5.2rem;
  line-height: 0.78;
}

.feature-type {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.specialty-feature h3 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.specialty-feature div > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: #595c55;
  line-height: 1.65;
}

.process-section {
  background: var(--white);
}

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

.process-step {
  min-height: 300px;
  padding: 34px;
  background: var(--white);
}

.process-step > span {
  color: var(--red);
  font-family: monospace;
  font-size: 0.7rem;
}

.process-line {
  width: 100%;
  height: 84px;
  margin: 20px 0 32px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transform: skewX(-34deg);
  transform-origin: left top;
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.process-step p {
  margin-bottom: 0;
  color: #63665f;
  font-size: 0.88rem;
  line-height: 1.6;
}

.request-section {
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.request-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.request-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  align-items: start;
}

.request-copy h2 {
  margin-bottom: 24px;
}

.request-copy > p {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

.request-phone {
  display: flex;
  flex-direction: column;
  margin: 42px 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.request-phone span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-phone strong {
  margin-top: 6px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  letter-spacing: -0.04em;
}

.request-details {
  display: grid;
  gap: 22px;
}

.request-details div {
  display: flex;
  flex-direction: column;
}

.request-details span,
.form-heading {
  color: rgba(255, 255, 255, 0.42);
  font-family: monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.request-details b {
  margin-top: 4px;
  font-size: 0.82rem;
}

.request-details small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.48);
}

.service-form {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.24);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.form-heading b {
  font-weight: 400;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px 16px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-grid label > span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.form-grid input,
.form-grid select {
  height: 48px;
  padding: 0 13px;
}

.form-grid textarea {
  resize: vertical;
  min-height: 120px;
  padding: 13px;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.09);
}

.form-grid select option {
  color: var(--ink);
}

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

.form-submit {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 26px;
}

.form-submit button {
  cursor: pointer;
}

.form-submit p {
  max-width: 240px;
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.68rem;
  line-height: 1.45;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-heading h2 {
  margin-bottom: 22px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  min-height: 94px;
  cursor: pointer;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--red);
  font-family: monospace;
  font-size: 0.62rem;
  font-weight: 400;
}

.faq-list summary i {
  font-style: normal;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  margin: -8px 45px 30px 42px;
  color: #5e615a;
  font-size: 0.9rem;
  line-height: 1.7;
}

.site-footer {
  padding-top: 85px;
  background: #0d0e0d;
  color: white;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 54px;
}

.brand-footer {
  transform: scale(1.3);
  transform-origin: left center;
}

.footer-top > div:first-child > p {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact a:first-of-type {
  margin: 8px 0 4px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.footer-contact a:last-of-type {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
}

.footer-middle {
  display: grid;
  grid-template-columns: 1.4fr 1.3fr 0.7fr 0.7fr;
  gap: 50px;
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-middle > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-middle b {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-middle a,
.footer-middle p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.65;
}

.footer-middle a:hover {
  color: white;
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.32);
  font-family: monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-action-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.service-card:nth-child(2),
.process-step:nth-child(2),
.specialty-feature:nth-child(2) {
  transition-delay: 80ms;
}

.service-card:nth-child(3),
.process-step:nth-child(3),
.specialty-feature:nth-child(3) {
  transition-delay: 160ms;
}

.service-card:nth-child(5) {
  transition-delay: 80ms;
}

.service-card:nth-child(6) {
  transition-delay: 160ms;
}

@keyframes hero-arrive {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes copy-arrive {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panel-arrive {
  from {
    opacity: 0;
    transform: translateX(40px) rotateY(-8deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateY(0);
  }
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes stage-spin {
  to {
    transform: rotateX(62deg) rotateZ(348deg);
  }
}

@keyframes stage-spin-reverse {
  to {
    transform: rotateX(62deg) rotateZ(-372deg);
  }
}

@keyframes van-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

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

  .header-inner {
    grid-template-columns: 220px 1fr auto;
    gap: 20px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.68rem;
  }

  .hero-content {
    grid-template-columns: 1fr 260px;
    gap: 35px;
  }

  .hero-service-panel {
    width: 255px;
  }

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

  .capability-grid,
  .mobile-grid {
    gap: 60px;
  }

  .request-grid,
  .faq-grid {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  html {
    scroll-padding-top: 72px;
  }

  .utility-bar {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .header-inner {
    height: 70px;
    display: flex;
    justify-content: space-between;
  }

  .brand {
    transform: scale(0.9);
    transform-origin: left center;
  }

  .menu-button {
    width: 56px;
    height: 44px;
    display: grid;
    grid-template-columns: 18px 1fr;
    align-content: center;
    gap: 4px 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: white;
    cursor: pointer;
  }

  .menu-button span {
    grid-column: 1;
    width: 18px;
    height: 1px;
    background: white;
  }

  .menu-button b {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: #101110;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .main-nav a::after {
    display: none;
  }

  .header-call {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 780px;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 11, 10, 0.93) 0%, rgba(10, 11, 10, 0.72) 60%, rgba(10, 11, 10, 0.4) 100%),
      linear-gradient(0deg, rgba(10, 11, 10, 0.9) 0%, transparent 65%);
  }

  .hero-content {
    display: flex;
    align-items: flex-start;
    padding-top: 105px;
  }

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

  .hero-service-panel,
  .hero-scroll {
    display: none;
  }

  h1 {
    font-size: clamp(3.4rem, 10.5vw, 5.4rem);
  }

  .intro-strip-grid {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding-block: 26px;
  }

  .intro-strip span {
    display: none;
  }

  .intro-strip p {
    font-size: 1rem;
  }

  .section {
    padding: 92px 0;
  }

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

  .capability-grid,
  .mobile-grid,
  .request-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .capability-section::before {
    display: none;
  }

  .precision-stage {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .mobile-grid {
    gap: 70px;
  }

  .route-visual {
    min-height: 500px;
    order: 2;
    transform: none;
  }

  .mobile-copy {
    order: 1;
  }

  .specialty-feature {
    gap: 30px;
  }

  .request-copy {
    max-width: 600px;
  }

  .faq-heading {
    position: static;
  }

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

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    min-height: 58px;
    background: #101110;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.24);
  }

  .mobile-action-bar a {
    display: grid;
    place-items: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .mobile-action-bar a:last-child {
    background: var(--red);
  }

  .site-footer {
    padding-bottom: 58px;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100vw - 26px);
  }

  .brand {
    transform: scale(0.82);
  }

  .hero,
  .hero-content {
    min-height: 730px;
  }

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

  h1 {
    font-size: 3.4rem;
  }

  h1 span {
    margin-top: 5px;
  }

  .hero-lead {
    font-size: 0.94rem;
  }

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

  .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
    gap: 16px 0;
    margin-top: 38px;
  }

  .hero-proof div:nth-child(3) {
    display: none;
  }

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

  .intro-strip a {
    width: max-content;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .specialty-header h2,
  .capability-copy h2,
  .mobile-copy h2,
  .request-copy h2,
  .faq-heading h2 {
    font-size: 2.55rem;
  }

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

  .service-card {
    min-height: 350px;
    padding: 25px;
  }

  .card-rail {
    margin-bottom: 40px;
  }

  .precision-stage {
    aspect-ratio: 1 / 1.05;
  }

  .stage-label {
    display: none;
  }

  .route-visual {
    min-height: 410px;
  }

  .route-map {
    inset: 18px;
  }

  .route-node b {
    font-size: 0.55rem;
  }

  .service-van {
    width: 82px;
    height: 46px;
  }

  .specialty-feature {
    grid-template-columns: 62px 1fr;
    gap: 18px;
    padding: 40px 0;
  }

  .feature-index {
    font-size: 3.5rem;
  }

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

  .process-step {
    min-height: 250px;
  }

  .process-line {
    height: 55px;
  }

  .service-form {
    padding: 22px 18px;
  }

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

  .form-full {
    grid-column: auto;
  }

  .form-heading b {
    display: none;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit p {
    max-width: none;
  }

  .faq-list summary {
    grid-template-columns: 34px 1fr auto;
    min-height: 84px;
    font-size: 1rem;
  }

  .faq-list details > p {
    margin-left: 34px;
  }

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

  .footer-contact {
    text-align: left;
  }

  .footer-middle {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom span:last-child {
    display: none;
  }
}

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

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

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