:root {
  --ink: #111417;
  --ink-soft: #252a2f;
  --paper: #f4f5f3;
  --paper-warm: #f3efe9;
  --white: #ffffff;
  --muted: #5d646b;
  --line: #d9ddda;
  --line-dark: rgba(255, 255, 255, 0.16);
  --orange: #ef7d22;
  --orange-dark: #c85c0d;
  --teal: #158477;
  --focus: #2779c5;
  --shadow-sm: 0 10px 24px rgba(17, 20, 23, 0.08);
  --shadow-lg: 0 28px 70px rgba(17, 20, 23, 0.18);
  --radius: 8px;
  --max: 1200px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI Variable", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  background: var(--ink);
  content: "";
  opacity: 0;
  transition: opacity 160ms ease;
}

body.is-leaving::after {
  opacity: 0.12;
}

::selection {
  color: var(--ink);
  background: #ffd2ae;
}

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

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

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

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

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

h1,
h2,
h3 {
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  color: var(--muted);
}

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

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

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

.utility-bar {
  color: #e9ecea;
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.utility-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 34px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-points,
.utility-contact {
  display: flex;
  align-items: center;
  gap: 18px;
}

.utility-points span + span::before {
  margin-right: 18px;
  color: var(--orange);
  content: "/";
}

.utility-contact a {
  transition: color 180ms ease;
}

.utility-contact a:hover {
  color: var(--orange);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(17, 20, 23, 0.08);
  backdrop-filter: blur(14px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 10px 30px rgba(17, 20, 23, 0.09);
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

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

.brand-mark {
  width: 56px;
  height: 56px;
  position: relative;
  display: grid;
  flex: 0 0 56px;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-mark::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: var(--orange);
  content: "";
}

.brand-text strong,
.brand-text span {
  display: block;
}

.brand-text strong {
  font-size: 0.96rem;
  line-height: 1.12;
}

.brand-text span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  width: 100%;
}

.nav-links > a:not(.button) {
  min-height: 42px;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  color: #33393e;
  font-size: 0.88rem;
  font-weight: 760;
  transition: color 180ms ease;
}

.nav-links > a:not(.button)::after {
  position: absolute;
  right: 11px;
  bottom: 5px;
  left: 11px;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.nav-links > a:not(.button):hover,
.nav-links > a:not(.button).active {
  color: var(--ink);
}

.nav-links > a:not(.button):hover::after,
.nav-links > a:not(.button).active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  margin-left: 8px;
  white-space: nowrap;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 200ms ease, opacity 160ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -7px;
}

.nav-toggle-lines::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  min-height: 48px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 12px 19px;
  border: 1px solid var(--orange);
  border-radius: 6px;
  color: var(--ink);
  background: var(--orange);
  font-weight: 820;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 120ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.16);
  content: "";
  transform: translateX(-105%);
  transition: transform 260ms ease;
}

.button:hover::before {
  transform: translateX(0);
}

.button:hover {
  box-shadow: 0 12px 26px rgba(239, 125, 34, 0.2);
  transform: translateY(-1px);
}

.button:active {
  box-shadow: none;
  transform: translateY(1px) scale(0.985);
}

.button-arrow {
  position: relative;
  font-size: 1.08em;
  transition: transform 180ms ease;
}

.button:hover .button-arrow {
  transform: translateX(3px);
}

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

.button.dark:hover {
  box-shadow: 0 12px 26px rgba(17, 20, 23, 0.18);
}

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

.button.outline {
  color: var(--ink);
  background: transparent;
  border-color: #aeb4b0;
}

.button.outline::before {
  background: rgba(17, 20, 23, 0.06);
}

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

.button.outline-light::before {
  background: rgba(255, 255, 255, 0.1);
}

.section-inner,
.nav-shell,
.utility-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.home-hero {
  min-height: min(760px, calc(100svh - 34px));
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background-image: url("../img/photos/home-van.webp");
  background-position: center;
  background-size: cover;
}

.home-hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 13, 0.67);
  content: "";
}

.home-hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  background: var(--orange);
  content: "";
}

.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 100%;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: 82px 0 158px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 3px;
  flex: 0 0 38px;
  background: var(--orange);
  content: "";
}

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

.home-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 4.8rem;
  line-height: 0.98;
}

.home-hero .hero-lead {
  max-width: 720px;
  margin-bottom: 0;
  color: #f1f3f2;
  font-size: 1.16rem;
}

.hero-actions,
.page-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 28px;
  color: #e1e5e3;
  font-size: 0.83rem;
  font-weight: 720;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(21, 132, 119, 0.2);
  content: "";
}

.hero-stats {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(9, 12, 14, 0.84);
  backdrop-filter: blur(12px);
}

.stats-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat {
  min-height: 112px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.stat:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.stat strong {
  display: block;
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: #bec5c1;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.audience-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.audience-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 36px;
}

.audience-label {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.audience-list span + span {
  border-left: 1px solid #c8ceca;
  padding-left: 24px;
}

.section {
  padding: 92px 0;
}

.section.compact {
  padding: 68px 0;
}

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

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

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

.section.ink p,
.section.ink .section-intro,
.section.ink .kicker {
  color: #c7ceca;
}

.section-head {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-head.row {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 64px;
  align-items: end;
}

.section-head.row p {
  margin-bottom: 4px;
}

.kicker {
  margin-bottom: 12px;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section h2,
.cta-band h2 {
  margin-bottom: 16px;
  font-size: 3.35rem;
  line-height: 1.02;
}

.section h3 {
  line-height: 1.2;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.05rem;
}

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

.service-tile {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.service-tile:hover {
  border-color: #bdc3bf;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.service-image {
  height: 220px;
  overflow: hidden;
  background: #dfe3e0;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.service-tile:hover .service-image img {
  transform: scale(1.035);
}

.service-content {
  min-height: 244px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.service-number {
  margin-bottom: 26px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.service-content h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.service-content p {
  margin-bottom: 22px;
}

.text-link {
  width: fit-content;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-bottom: 3px;
  color: var(--ink);
  font-weight: 850;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 200ms ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.text-link span {
  transition: transform 180ms ease;
}

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

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.process-step {
  min-height: 220px;
  padding: 32px 30px 12px 0;
  border-right: 1px solid var(--line-dark);
}

.process-step + .process-step {
  padding-left: 30px;
}

.process-step:last-child {
  border-right: 0;
}

.process-index {
  display: block;
  margin-bottom: 44px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.45rem;
}

.process-step p {
  margin-bottom: 0;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.split-feature-media {
  min-height: 540px;
  overflow: hidden;
  border-radius: 7px 0 0 7px;
}

.split-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.split-feature-copy {
  display: grid;
  align-content: center;
  padding: 58px;
}

.split-feature-copy h2 {
  font-size: 2.75rem;
}

.check-list,
.plain-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 29px;
  color: #3d4449;
}

.check-list li::before {
  position: absolute;
  top: 5px;
  left: 1px;
  width: 17px;
  height: 17px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  content: "";
}

.check-list li::after {
  position: absolute;
  top: 9px;
  left: 7px;
  width: 4px;
  height: 7px;
  border: solid var(--teal);
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.plain-list li::before {
  position: absolute;
  top: 12px;
  left: 1px;
  width: 14px;
  height: 2px;
  background: var(--orange);
  content: "";
}

.proof-band {
  padding: 32px 0;
  color: var(--white);
  background: var(--teal);
}

.proof-inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(0, 0.65fr));
  align-items: center;
  gap: 22px;
}

.proof-title {
  font-size: 1.05rem;
  font-weight: 850;
}

.proof-item {
  min-height: 58px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  font-size: 1rem;
}

.proof-item span {
  margin-top: 3px;
  color: #e3f2ef;
  font-size: 0.78rem;
}

.page-hero {
  min-height: 470px;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
}

.page-hero.about-hero {
  background-image: url("../img/photos/partnership.webp");
}

.page-hero.services-hero {
  background-image: url("../img/photos/highway.webp");
}

.page-hero.certifications-hero {
  background-image: url("../img/photos/partnership.webp");
}

.page-hero.contact-hero {
  background-image: url("../img/photos/warehouse-truck.webp");
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
  padding: 76px 0 72px;
}

.page-hero-copy {
  max-width: 820px;
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 4rem;
  line-height: 1;
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: #edf0ee;
  font-size: 1.08rem;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 64px;
  align-items: center;
}

.story-media {
  min-height: 580px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.story-media img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}

.story-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px 22px;
  color: var(--white);
  background: rgba(17, 20, 23, 0.88);
  font-size: 0.84rem;
  font-weight: 760;
}

.story-copy h2 {
  font-size: 3rem;
}

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

.value-item {
  min-height: 270px;
  padding: 36px 32px 12px 0;
  border-right: 1px solid var(--line);
}

.value-item + .value-item {
  padding-left: 32px;
}

.value-item:last-child {
  border-right: 0;
}

.value-item .value-number {
  display: block;
  margin-bottom: 50px;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.value-item h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

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

.timeline-item {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.timeline-media {
  height: 190px;
  overflow: hidden;
  border-radius: 7px 7px 0 0;
  background: #292e31;
}

.timeline-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.25, 1);
}

.timeline-item:hover .timeline-media img {
  transform: scale(1.035);
}

.timeline-copy {
  padding: 24px;
}

.timeline-label {
  display: block;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.45rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.partner-item {
  min-height: 270px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.partner-item:hover {
  border-color: #b8beb9;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.partner-item img {
  width: 100%;
  height: 188px;
  display: block;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.25, 1);
}

.partner-item:hover img {
  transform: scale(1.035);
}

.partner-item-copy {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
}

.partner-item span {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.partner-item strong {
  font-size: 1.1rem;
}

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

.service-row {
  display: grid;
  grid-template-columns: 100px minmax(210px, 0.65fr) minmax(0, 1.35fr);
  gap: 30px;
  align-items: start;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding 180ms ease;
}

.service-row:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: #f8f9f7;
}

.service-row-number {
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.service-row h3 {
  margin-bottom: 0;
  font-size: 1.7rem;
}

.service-row-copy p {
  margin-bottom: 18px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid #cdd2cf;
  border-radius: 999px;
  color: #454c50;
  background: var(--white);
  font-size: 0.74rem;
  font-weight: 760;
}

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

.equipment-panel {
  min-height: 340px;
  padding: 34px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--orange);
  border-radius: var(--radius);
  background: var(--white);
}

.equipment-panel:nth-child(2) {
  border-top-color: var(--teal);
}

.equipment-type {
  display: block;
  margin-bottom: 64px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.equipment-panel h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1.42fr);
  gap: 48px;
  align-items: center;
}

.route-map {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.route-map img {
  width: 100%;
  height: auto;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
  background: #e8ece9;
}

.route-map figcaption {
  padding: 12px 16px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

.credential-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.credential-media {
  min-height: 580px;
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #dfe3e0;
}

.credential-media img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}

.credential-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 24px;
  color: var(--white);
  background: rgba(17, 20, 23, 0.9);
  font-size: 0.84rem;
  font-weight: 760;
}

.credential-list {
  display: grid;
  align-content: stretch;
}

.credential {
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 24px 32px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background 180ms ease;
}

.credential:last-child {
  border-bottom: 0;
}

.credential:hover {
  background: var(--paper);
}

.credential-code {
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.credential h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.credential p {
  margin-bottom: 0;
}

.document-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 58px;
  align-items: center;
}

.document-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.document-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.document-stack {
  background: var(--white);
}

.document-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.document-row:last-child {
  border-bottom: 0;
}

.document-row span {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.document-row strong,
.document-row small {
  display: block;
}

.document-row small {
  margin-top: 3px;
  color: var(--muted);
}

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

.standard-item {
  min-height: 220px;
  padding: 28px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.05);
}

.standard-item:nth-child(2) {
  border-left-color: var(--teal);
}

.standard-item:nth-child(3) {
  border-left-color: #d6d9d7;
}

.standard-item h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.35rem;
}

.standard-item p {
  margin-bottom: 0;
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1.3fr);
  gap: 64px;
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 132px;
}

.contact-aside h2 {
  font-size: 2.55rem;
}

.contact-methods {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.contact-method {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-method span,
.contact-method a {
  display: block;
}

.contact-method span {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-method a {
  margin-top: 4px;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
  transition: color 180ms ease;
}

.contact-method a:hover {
  color: var(--orange-dark);
}

.form-shell {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.form-shell h2 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.form-shell > p {
  margin-bottom: 26px;
}

.inquiry-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin-bottom: 24px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.inquiry-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.inquiry-switch label {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 9px 12px;
  border-radius: 4px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 850;
  text-align: center;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.inquiry-switch input:checked + label {
  color: var(--white);
  background: var(--ink);
}

.inquiry-switch input:focus-visible + label {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.form {
  display: grid;
  gap: 16px;
}

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

.form label {
  display: grid;
  gap: 7px;
  color: #343a3e;
  font-size: 0.84rem;
  font-weight: 780;
}

.form input:not([type="radio"]),
.form select,
.form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #c6ccc8;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.form input:not([type="radio"]):focus,
.form select:focus,
.form textarea:focus {
  outline: 0;
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(39, 121, 197, 0.14);
}

.form-note {
  margin: -2px 0 0;
  font-size: 0.79rem;
}

.form-note a {
  color: var(--ink);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}

.form .form-honeypot {
  display: none;
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  opacity: 0;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.status-message {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
}

.status-message[data-state="success"] {
  color: var(--teal);
}

.status-message[data-state="error"] {
  color: #b53a2d;
}

.form.is-submitting button[type="submit"] {
  cursor: wait;
  opacity: 0.72;
}

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

.response-step {
  padding: 30px 30px 12px 0;
  border-right: 1px solid var(--line);
}

.response-step + .response-step {
  padding-left: 30px;
}

.response-step:last-child {
  border-right: 0;
}

.response-step span {
  display: block;
  margin-bottom: 40px;
  color: var(--orange-dark);
  font-size: 0.74rem;
  font-weight: 900;
}

.response-step h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

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

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

.faq-list summary {
  min-height: 76px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 52px 20px 0;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 820;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 18px;
  height: 2px;
  background: var(--orange);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-answer {
  max-width: 760px;
  padding: 0 52px 24px 0;
}

.faq-answer p {
  margin-bottom: 0;
}

.cta-band {
  padding: 78px 0;
  color: var(--ink);
  background: var(--orange);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.cta-band h2 {
  max-width: 780px;
  margin-bottom: 12px;
}

.cta-band p {
  max-width: 700px;
  margin-bottom: 0;
  color: #3e2d20;
}

.cta-band .kicker {
  color: #4b2a11;
}

.site-footer {
  color: var(--white);
  background: #0d1012;
}

.footer-main {
  padding: 64px 0 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(0, 0.7fr));
  gap: 42px;
}

.footer-brand {
  max-width: 360px;
}

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

.footer-brand .brand-text span {
  color: #9fa7a2;
}

.footer-brand p {
  margin: 20px 0 0;
  color: #b7bfba;
  font-size: 0.9rem;
}

.footer-title {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-copy {
  overflow-wrap: anywhere;
  color: #b7bfba;
  font-size: 0.88rem;
  transition: color 180ms ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-bottom-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #89918c;
  font-size: 0.76rem;
}

.mobile-actions {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms cubic-bezier(0.2, 0.65, 0.3, 1), transform 600ms cubic-bezier(0.2, 0.65, 0.3, 1);
  transition-delay: var(--delay, 0ms);
}

[data-reveal="left"] {
  transform: translateX(-20px);
}

[data-reveal="right"] {
  transform: translateX(20px);
}

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

@media (max-width: 1080px) {
  .nav-links > a:not(.button) {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 0.82rem;
  }

  .nav-links > a:not(.button)::after {
    right: 8px;
    left: 8px;
  }

  .section h2,
  .cta-band h2 {
    font-size: 2.9rem;
  }

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

  .proof-title {
    grid-column: 1 / -1;
  }

  .proof-item:first-of-type {
    padding-left: 0;
    border-left: 0;
  }

  .split-feature-copy {
    padding: 42px;
  }

  .story-grid,
  .contact-intro {
    gap: 42px;
  }

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

@media (max-width: 960px) {
  :root {
    --header-height: 70px;
  }

  .utility-bar {
    display: none;
  }

  .nav-shell {
    min-height: var(--header-height);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 4px;
    padding: 14px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 22px 42px rgba(17, 20, 23, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 220ms ease;
  }

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

  .nav-links > a:not(.button) {
    min-height: 48px;
    padding: 10px 4px;
    border-bottom: 1px solid #eceeec;
    font-size: 0.94rem;
  }

  .nav-links > a:not(.button)::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
    margin: 8px 0 0;
  }

  .home-hero {
    min-height: 760px;
  }

  .hero-inner {
    padding-top: 70px;
  }

  .home-hero h1 {
    font-size: 4.1rem;
  }

  .section-head.row,
  .story-grid,
  .route-layout,
  .document-panel,
  .contact-intro,
  .cta-grid {
    grid-template-columns: 1fr;
  }

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

  .service-tile:last-child {
    grid-column: 1 / -1;
  }

  .service-tile:last-child {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  }

  .service-tile:last-child .service-image {
    height: 100%;
  }

  .split-feature {
    grid-template-columns: 1fr;
  }

  .split-feature-media {
    min-height: 400px;
    border-radius: 7px 7px 0 0;
  }

  .split-feature-media img {
    min-height: 400px;
  }

  .story-media,
  .story-media img {
    min-height: 460px;
  }

  .service-row {
    grid-template-columns: 70px minmax(200px, 0.7fr) minmax(0, 1.3fr);
  }

  .contact-aside {
    position: static;
  }

  .contact-aside h2 {
    max-width: 680px;
  }

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

@media (max-width: 720px) {
  .section-inner,
  .nav-shell,
  .footer-inner,
  .hero-inner,
  .stats-grid,
  .audience-inner {
    width: min(100% - 24px, var(--max));
  }

  body {
    padding-bottom: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand-text strong {
    max-width: 190px;
    font-size: 0.86rem;
  }

  .brand-text span {
    display: none;
  }

  .home-hero {
    min-height: 742px;
    background-position: 60% center;
  }

  .home-hero::before,
  .page-hero::before {
    background: rgba(8, 11, 13, 0.73);
  }

  .hero-inner {
    align-content: start;
    padding: 34px 0 235px;
  }

  .home-hero h1 {
    font-size: 3.1rem;
    line-height: 1;
  }

  .home-hero .hero-lead {
    font-size: 1rem;
  }

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

  .home-hero .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero .hero-actions .button {
    width: auto;
    padding-right: 12px;
    padding-left: 12px;
    text-align: center;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

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

  .stat {
    min-height: 96px;
    padding: 18px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .stat:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .stat strong {
    font-size: 1.48rem;
  }

  .audience-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px 0;
  }

  .audience-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .audience-list span + span {
    padding: 8px 0 0;
    border-top: 1px solid #c8ceca;
    border-left: 0;
  }

  .section {
    padding: 66px 0;
  }

  .section.compact {
    padding: 52px 0;
  }

  .section h2,
  .cta-band h2,
  .story-copy h2,
  .split-feature-copy h2,
  .contact-aside h2 {
    font-size: 2.35rem;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .service-grid,
  .equipment-grid,
  .credential-showcase,
  .standards-grid,
  .partner-grid,
  .form-row,
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .service-tile:last-child {
    grid-column: auto;
    display: block;
  }

  .service-tile:last-child .service-image,
  .service-image {
    height: 210px;
  }

  .service-content {
    min-height: 0;
  }

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

  .process-step,
  .value-item,
  .response-step {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .value-item,
  .response-step {
    border-bottom-color: var(--line);
  }

  .process-step + .process-step,
  .value-item + .value-item,
  .response-step + .response-step {
    padding-left: 0;
  }

  .process-index,
  .value-item .value-number,
  .response-step span {
    margin-bottom: 24px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0;
  }

  .timeline-item {
    min-height: 0;
  }

  .timeline-media {
    height: 210px;
  }

  .timeline-label {
    margin-bottom: 18px;
  }

  .credential-media,
  .credential-media img {
    min-height: 360px;
  }

  .partner-item {
    min-height: 0;
  }

  .partner-item img {
    height: 220px;
  }

  .split-feature-media,
  .split-feature-media img {
    min-height: 300px;
  }

  .split-feature-copy {
    padding: 30px 24px;
  }

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

  .proof-item:nth-of-type(3) {
    padding-left: 0;
    border-left: 0;
  }

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

  .page-hero .section-inner {
    padding: 64px 0 52px;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .story-media,
  .story-media img {
    min-height: 380px;
  }

  .service-row {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 30px 0;
  }

  .service-row:hover {
    padding-right: 10px;
    padding-left: 10px;
  }

  .service-row-copy {
    grid-column: 2;
  }

  .equipment-panel {
    min-height: 0;
    padding: 28px 24px;
  }

  .equipment-type {
    margin-bottom: 40px;
  }

  .route-map img {
    min-height: 260px;
  }

  .credential {
    min-height: 0;
    padding: 24px 20px;
  }

  .form-shell {
    padding: 24px 18px;
  }

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

  .form-submit-row .button {
    width: 100%;
  }

  .cta-band {
    padding: 60px 0;
  }

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

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 1px;
    padding: 8px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
  }

  .mobile-actions a {
    min-height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 5px;
    color: var(--white);
    background: var(--ink);
    font-size: 0.85rem;
    font-weight: 850;
  }

  .mobile-actions a:last-child {
    color: var(--ink);
    background: var(--orange);
    border-color: var(--orange);
  }
}

@media (max-width: 420px) {
  .brand-text strong {
    max-width: 155px;
    font-size: 0.79rem;
  }

  .home-hero h1 {
    font-size: 2.5rem;
  }

  .page-hero h1 {
    font-size: 2.65rem;
  }

}

@media (max-width: 360px) {
  .hero-inner {
    padding-bottom: 247px;
  }

  .home-hero h1 {
    font-size: 2.3rem;
  }

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

  .home-hero .hero-actions {
    margin-top: 22px;
  }

  .hero-trust {
    margin-top: 20px;
  }
}

@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;
  }
}
