.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.utility-bar {
  min-height: 34px;
  background: var(--navy-2);
  color: var(--white);
  font-size: 0.76rem;
}

.utility-bar__inner,
.utility-bar__links,
.utility-bar__links a {
  display: flex;
  align-items: center;
}

.utility-bar__inner {
  min-height: 34px;
  justify-content: space-between;
  gap: 24px;
}

.utility-bar p {
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
}

.utility-bar__links {
  gap: 22px;
}

.utility-bar__links a {
  gap: 7px;
  font-weight: 650;
}

.utility-bar__links svg {
  width: 16px;
  height: 16px;
  color: var(--yellow);
}

.header-main {
  position: relative;
}

.header-main__inner {
  display: grid;
  min-height: 76px;
  grid-template-columns: 194px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 168px;
}

.desktop-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.7vw, 24px);
}

.nav-link {
  position: relative;
  padding: 26px 0 24px;
  color: #393d47;
  font-size: 0.88rem;
  font-weight: 650;
  white-space: nowrap;
}

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

.nav-link:hover,
.nav-link.is-active {
  color: var(--navy);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--yellow);
  border-radius: var(--radius-small);
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.1;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

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

.button--small {
  min-height: 44px;
  padding: 10px 14px;
}

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

.button--secondary:hover {
  border-color: var(--navy);
  background: var(--paper);
}

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

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

.button--icon {
  width: 48px;
  padding-inline: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 760;
}

.text-link svg {
  transition: transform 160ms ease;
}

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

.text-link--large {
  font-size: 1rem;
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

[hidden] {
  display: none !important;
}

.mega-panel {
  position: absolute;
  z-index: 20;
  top: 100%;
  right: 0;
  left: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mega-panel__grid {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, 1fr);
  gap: 0;
}

.mega-panel__intro,
.mega-link {
  min-height: 150px;
  padding: 26px 28px;
}

.mega-panel__intro {
  background: var(--paper);
}

.mega-panel__intro strong,
.mega-link strong {
  display: block;
  margin-top: 10px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.mega-panel__intro p {
  max-width: 27ch;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.mega-link {
  position: relative;
  border-left: 1px solid var(--line);
  transition: background 160ms ease;
}

.mega-link > span:first-child {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-link svg {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: var(--navy);
}

.mega-link:hover {
  background: #f8f8f5;
}

.mega-link--accent {
  background: var(--navy);
  color: var(--white);
}

.mega-link--accent:hover {
  background: var(--navy-2);
}

.mega-link--accent > span:first-child,
.mega-link--accent svg {
  color: var(--yellow);
}

.menu-backdrop {
  position: fixed;
  z-index: 180;
  inset: 0;
  background: rgba(8, 8, 60, 0.55);
}

.mobile-menu {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  bottom: 0;
  display: grid;
  width: min(420px, 92vw);
  grid-template-rows: auto 1fr auto;
  overflow-y: auto;
  background: var(--white);
  box-shadow: -20px 0 50px rgba(8, 8, 60, 0.18);
}

.mobile-menu__head {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu__head > img {
  width: 146px;
}

.icon-button {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--white);
  color: var(--navy);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding: 14px 20px 26px;
}

.mobile-menu__nav > a,
.mobile-menu__nav > button {
  display: flex;
  min-height: 52px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  text-align: left;
}

.mobile-menu__sub {
  display: grid;
  gap: 0;
  padding: 6px 0 10px 16px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu__sub a {
  padding: 10px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.mobile-menu__contact {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: var(--paper);
}

.mobile-menu__contact > a:not(.button) {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu__contact small,
.mobile-menu__contact span {
  display: block;
}

.mobile-menu__contact small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.7rem;
}

.noscript-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-block: 10px;
  background: var(--line);
}

.noscript-nav a {
  min-height: 44px;
  padding: 11px 14px;
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 650;
}

.eyebrow {
  display: inline-block;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

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

.hero--compact {
  padding: 30px 0 38px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.34fr);
  grid-template-rows: 1fr auto;
  gap: 18px;
}

.hero__copy,
.hero__media {
  min-height: 350px;
  border-radius: var(--radius);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  background: var(--white);
}

.hero__copy h1 {
  max-width: 14ch;
  margin-top: 16px;
  color: var(--navy);
}

.hero__copy > p {
  max-width: 47ch;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.hero__media {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  place-items: center;
  background: #eef0f4;
}

.hero__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  min-width: 160px;
  gap: 2px;
  padding: 14px 16px;
  border-left: 4px solid var(--yellow);
  background: var(--navy);
  color: var(--white);
}

.hero__badge strong {
  font-size: 1rem;
}

.hero__badge span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
}

.hero__route {
  grid-column: 1 / -1;
}

.quick-route {
  display: grid;
  min-height: 80px;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-route__field {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
}

.quick-route__field label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
  text-transform: uppercase;
}

.quick-route__field input {
  min-width: 0;
  width: 100%;
  min-height: 44px;
  padding: 0 6px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-weight: 700;
}

.quick-route__arrow {
  color: var(--navy);
  font-size: 1.35rem;
}

.section {
  padding: var(--section) 0;
}

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

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

.section--navy h2,
.section--navy h3,
.section--navy .section-head p {
  color: var(--white);
}

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

.section-head {
  max-width: 720px;
}

.section-head h2 {
  max-width: 19ch;
  margin-top: 10px;
}

.section-head > p {
  max-width: 60ch;
  margin-top: 14px;
  color: var(--muted);
}

.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) 0.86fr;
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.service-card,
.warehouse-card {
  min-height: 268px;
  padding: 28px;
}

.service-card {
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--white);
}

.service-card__number {
  justify-self: end;
  color: var(--muted-2);
  font-size: 0.76rem;
  font-weight: 700;
}

.service-card h3,
.warehouse-card h3 {
  margin-top: 9px;
  font-size: 1.45rem;
}

.service-card p,
.warehouse-card p {
  max-width: 46ch;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-card .text-link,
.warehouse-card .text-link {
  align-self: end;
  margin-top: 24px;
}

.warehouse-card {
  display: flex;
  flex-direction: column;
  background: var(--navy);
  color: var(--white);
}

.warehouse-card h3 {
  color: var(--white);
}

.warehouse-card p {
  color: rgba(255, 255, 255, 0.68);
}

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

.vehicle-card {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.vehicle-card__media {
  display: grid;
  min-height: 260px;
  place-items: center;
  overflow: hidden;
  background: var(--paper);
}

.vehicle-card__media img {
  width: min(100%, 400px);
  max-height: 254px;
  object-fit: contain;
}

.vehicle-card__body {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.vehicle-card__body p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.spec-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: auto;
  padding-top: 22px;
  background: var(--line);
}

.spec-row > div {
  padding: 10px 12px;
  background: var(--paper);
}

.spec-row dt {
  color: var(--muted);
  font-size: 0.67rem;
  text-transform: uppercase;
}

.spec-row dd {
  margin-top: 3px;
  color: var(--navy);
  font-weight: 800;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(34px, 7vw, 100px);
}

.process-layout .section-head h2 {
  color: var(--white);
}

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

.process-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
}

.process-list li:first-child {
  padding-top: 0;
}

.process-list > li > span {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 800;
}

.process-list p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(36px, 7vw, 100px);
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.trust-grid .lead {
  max-width: 55ch;
  margin-top: 20px;
}

.trust-grid .button {
  margin-top: 24px;
}

.trust-visual {
  position: relative;
  display: grid;
  min-height: 320px;
  align-content: end;
  padding: 24px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
}

.trust-visual::before {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 42%;
  height: 1px;
  background: var(--yellow);
  content: "";
}

.trust-visual > img {
  position: absolute;
  top: 58px;
  right: 28px;
  width: 205px;
  height: 140px;
  border: 6px solid var(--white);
  object-fit: cover;
}

.trust-facts {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.trust-facts > div {
  min-width: 0;
  padding: 15px;
  background: rgba(8, 8, 60, 0.9);
  color: var(--white);
}

.trust-facts dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.trust-facts dd {
  margin-top: 5px;
  font-weight: 720;
}

.price-preview-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(34px, 6vw, 80px);
}

.price-preview-layout .text-link {
  margin-top: 20px;
}

.price-preview {
  border-top: 1px solid var(--line);
}

.price-preview a {
  display: grid;
  min-height: 62px;
  grid-template-columns: minmax(0, 1fr) auto 22px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.price-preview a > span {
  color: var(--muted);
}

.price-preview strong {
  color: var(--navy);
  font-size: 0.9rem;
}

.price-preview svg {
  color: var(--navy);
}

.home-contact-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
}

.contact-phone,
.contact-email {
  display: block;
  width: max-content;
}

.contact-phone {
  margin-top: 26px;
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 780;
  letter-spacing: -0.035em;
}

.contact-email {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 650;
}

.home-contact-grid > div:first-child > p {
  max-width: 38ch;
  margin-top: 16px;
  color: var(--muted);
}

.route-card {
  display: grid;
  min-height: 220px;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.route-card__visual {
  position: relative;
  overflow: hidden;
  background-color: var(--paper);
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 36px 36px;
}

.route-dot,
.route-pin {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 2px var(--navy);
}

.route-dot {
  top: 32px;
  left: 34px;
}

.route-pin {
  right: 32px;
  bottom: 36px;
  background: var(--yellow);
  box-shadow: 0 0 0 2px var(--yellow-2);
}

.route-line {
  position: absolute;
  top: 48px;
  right: 39px;
  bottom: 43px;
  left: 41px;
  border-right: 2px dashed var(--navy);
  border-bottom: 2px dashed var(--navy);
}

.route-card > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  background: var(--navy);
  color: var(--white);
}

.route-card > div:last-child > span {
  color: var(--yellow);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.route-card > div:last-child > strong {
  margin: 8px 0 18px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 0.72fr) 1.25fr;
  gap: 42px;
  padding-block: 46px;
}

.footer-brand img {
  width: 164px;
}

.footer-brand p {
  max-width: 32ch;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-column strong {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer-column a,
.footer-contact a,
.footer-contact span {
  color: var(--muted);
  font-size: 0.83rem;
}

.footer-column a:hover,
.footer-contact a:hover {
  color: var(--navy);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-contact .footer-phone {
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

.developer-credit {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
}

.developer-credit img {
  width: 24px;
  height: 24px;
  border-radius: 2px;
}

.developer-credit strong {
  color: var(--navy);
}

.page-intro {
  padding: 24px 0 38px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.75rem;
}

.breadcrumbs a:hover {
  color: var(--navy);
}

.page-intro__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: end;
}

.page-intro h1 {
  max-width: 18ch;
  margin-top: 12px;
  color: var(--navy);
}

.page-intro__lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.page-intro__lead > p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1rem;
}

.company-story {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.company-story__media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
}

.company-story__media img {
  width: 100%;
}

.company-story__copy h2 {
  max-width: 14ch;
  margin: 10px 0 20px;
}

.company-story__copy p {
  margin-top: 14px;
  color: var(--muted);
}

.warehouse-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.warehouse-layout > div:first-child {
  display: grid;
  min-height: 300px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--navy);
}

.warehouse-layout > div:first-child img {
  width: 205px;
  height: 140px;
  border: 8px solid var(--white);
  object-fit: cover;
  box-shadow: 22px 22px 0 var(--yellow);
}

.address-chip {
  display: grid;
  gap: 3px;
  margin: 24px 0;
  padding: 16px;
  border-left: 4px solid var(--yellow);
  background: var(--white);
}

.address-chip span {
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.document-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.document-card {
  display: grid;
  min-height: 260px;
  grid-template-rows: 1fr auto;
  gap: 14px;
  place-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--white);
}

.document-card img {
  max-width: 205px;
  max-height: 184px;
  object-fit: contain;
}

.document-card span {
  width: 100%;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 720;
  text-align: center;
}

.contact-band {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 46px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}

.contact-band h2 {
  max-width: 18ch;
  margin-top: 8px;
  color: var(--white);
  font-size: 1.7rem;
}

.contact-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-detail {
  padding-top: 30px;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(34px, 7vw, 90px);
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 20px;
}

.service-detail__title {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
}

.service-detail__title > span,
.support-list article > span {
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
}

.service-detail__title h2 {
  margin-top: 8px;
}

.service-detail__content .lead {
  margin-bottom: 18px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  content: "";
}

.support-grid > .section-head {
  margin-bottom: 26px;
}

.support-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.support-list article {
  min-height: 190px;
  padding: 24px;
  background: var(--white);
}

.support-list h3 {
  margin-top: 28px;
}

.support-list p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.vehicle-grid--page .vehicle-card {
  grid-template-columns: 1fr;
}

.vehicle-grid--page .vehicle-card__media {
  min-height: 300px;
}

.transport-note {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr auto;
  gap: 36px;
  align-items: center;
}

.transport-note p {
  color: rgba(255, 255, 255, 0.72);
}

.sale-layout {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.sale-gallery {
  display: grid;
  max-width: 640px;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.sale-gallery a {
  display: grid;
  max-height: 260px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--paper);
}

.sale-gallery a:first-child {
  grid-column: 1 / -1;
  max-height: 380px;
}

.sale-gallery img {
  width: 100%;
  max-width: 640px;
  height: 100%;
  object-fit: contain;
}

.sale-info {
  position: sticky;
  top: 20px;
}

.sale-price {
  display: grid;
  gap: 3px;
  padding: 20px;
  border-left: 4px solid var(--yellow);
  background: var(--navy);
  color: var(--white);
}

.sale-price span,
.sale-price small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.sale-price strong {
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.sale-specs {
  margin: 20px 0;
  border-top: 1px solid var(--line);
}

.sale-specs > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.sale-specs dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.sale-specs dd {
  font-size: 0.84rem;
  font-weight: 700;
}

.sale-info > p {
  color: var(--muted);
  font-size: 0.86rem;
}

.sale-info > .button {
  margin-top: 22px;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 22px;
  align-items: start;
}

.request-form {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.request-form__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.request-form__head h2 {
  font-size: 1.65rem;
}

.request-form__head p {
  color: var(--muted);
  font-size: 0.75rem;
}

.request-form__head span,
.form-field label span {
  color: var(--danger);
}

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

.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

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

.form-field label {
  font-size: 0.76rem;
  font-weight: 720;
}

.form-field input,
.form-field select,
.form-field textarea {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.form-field input,
.form-field select {
  padding: 0 13px;
}

.form-field textarea {
  min-height: 104px;
  padding: 12px 13px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy);
  outline: 2px solid rgba(17, 16, 94, 0.14);
  outline-offset: 1px;
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: var(--danger);
}

.field-error {
  min-height: 16px;
  color: var(--danger);
  font-size: 0.72rem;
}

.form-summary {
  margin-top: 18px;
  padding: 12px 14px;
  border-left: 4px solid var(--danger);
  background: #fff2f2;
  color: #7c1d1d;
  font-size: 0.82rem;
}

.form-summary.is-success {
  border-left-color: var(--success);
  background: #eff8f3;
  color: var(--success);
}

.request-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.form-disclosure {
  max-width: 78ch;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.75rem;
}

.request-aside {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}

.request-aside > a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 8px;
}

.request-aside__phone {
  color: var(--yellow);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.request-aside > p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

.document-links {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  background: var(--line-dark);
}

.document-links a {
  display: grid;
  min-height: 60px;
  grid-template-columns: 38px 1fr 20px;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  background: var(--navy);
  font-size: 0.76rem;
}

.document-links a > span {
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--white);
}

.price-table thead {
  background: var(--navy);
  color: var(--white);
}

.price-table th,
.price-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  border-color: rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.price-table tbody th {
  color: var(--navy);
  font-size: 0.84rem;
}

.price-table tbody td {
  white-space: nowrap;
  font-size: 0.83rem;
}

.price-table tbody tr:nth-child(even) {
  background: #f8f8f5;
}

.price-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border-left: 4px solid var(--yellow);
  background: var(--paper);
}

.price-note > strong {
  color: var(--navy);
}

.price-note > p {
  color: var(--muted);
  font-size: 0.8rem;
}

.contacts-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(34px, 7vw, 90px);
}

.contacts-main {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.contact-block {
  display: grid;
  gap: 7px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-block > span {
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.contact-block > a:not(.text-link),
.contact-block address {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 720;
}

.contact-map-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-map-card__canvas {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background-color: var(--paper);
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 42px 42px;
}

.contact-map-card__canvas::before {
  position: absolute;
  top: 22%;
  right: -10%;
  bottom: 18%;
  left: -8%;
  border: 26px solid var(--white);
  border-radius: 50%;
  content: "";
  transform: rotate(-7deg);
}

.contact-map-card__canvas span {
  position: absolute;
  z-index: 2;
  top: 44%;
  left: 12%;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  transform: rotate(-8deg);
}

.contact-map-card__canvas i {
  position: absolute;
  z-index: 3;
  top: 47%;
  right: 28%;
  width: 20px;
  height: 20px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px var(--navy);
}

.contact-map-card > div:last-child {
  padding: 24px;
}

.contact-map-card h2 {
  margin-top: 8px;
  font-size: 1.65rem;
}

.contact-map-card p {
  max-width: 56ch;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.84rem;
}

.specialists-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

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

.specialist-list > div {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.specialist-list strong {
  color: var(--navy);
}

.specialist-list span {
  color: var(--muted);
  font-size: 0.8rem;
}

.not-found {
  padding: clamp(70px, 11vw, 140px) 0;
  background: var(--paper);
}

.not-found__grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 70px;
  align-items: center;
}

.not-found__code {
  display: block;
  color: var(--yellow-2);
  font-size: 5rem;
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.not-found h1 {
  margin-top: 12px;
  color: var(--navy);
}

.not-found p {
  max-width: 50ch;
  margin-top: 16px;
  color: var(--muted);
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.not-found__route {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius);
  background: var(--navy);
}

.not-found__route span,
.not-found__route i {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--yellow);
}

.not-found__route span {
  top: 40px;
  left: 44px;
}

.not-found__route i {
  right: 48px;
  bottom: 44px;
}

.not-found__route::before {
  position: absolute;
  top: 56px;
  right: 56px;
  bottom: 54px;
  left: 55px;
  border-right: 2px dashed var(--yellow);
  border-bottom: 2px dashed var(--yellow);
  content: "";
}

.not-found__route b {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--white);
  font-size: 5rem;
  transform: translate(-50%, -50%);
}

.gallery-dialog {
  position: fixed;
  z-index: 260;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 8, 60, 0.88);
}

.gallery-dialog__inner {
  position: relative;
  display: grid;
  max-width: min(920px, 92vw);
  max-height: 88vh;
  place-items: center;
}

.gallery-dialog__inner img {
  max-height: 84vh;
  width: auto;
}

.gallery-dialog__close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
}

@media (max-width: 1100px) {
  .header-main__inner {
    grid-template-columns: 160px 1fr auto;
    gap: 18px;
  }

  .brand {
    width: 150px;
  }

  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav .nav-link {
    font-size: 0.8rem;
  }

  .header-cta {
    padding-inline: 12px;
  }

  .vehicle-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .utility-bar p,
  .utility-bar__links a:first-child,
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .utility-bar__inner {
    justify-content: flex-end;
  }

  .header-main__inner {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 148px;
  }

  .js .menu-toggle {
    display: block;
  }

  .mega-panel {
    display: none;
  }

  .hero__grid,
  .page-intro__grid,
  .trust-grid,
  .price-preview-layout,
  .home-contact-grid,
  .company-story,
  .warehouse-layout,
  .sale-layout,
  .contacts-layout,
  .specialists-layout,
  .not-found__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy,
  .hero__media {
    min-height: 0;
  }

  .hero__media {
    min-height: 290px;
  }

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

  .warehouse-card {
    grid-column: 1 / -1;
    min-height: 200px;
  }

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

  .process-layout,
  .service-detail,
  .transport-note,
  .request-layout {
    grid-template-columns: 1fr;
  }

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

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

  .page-intro__grid {
    gap: 20px;
  }

  .sale-info {
    position: static;
  }

  .transport-note {
    gap: 20px;
  }
}

@media (max-width: 720px) {
  :root {
    --section: 3.25rem;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.4rem);
  }

  h2 {
    font-size: clamp(1.6rem, 7.5vw, 2rem);
  }

  .utility-bar {
    display: none;
  }

  .hero--compact {
    padding-top: 16px;
  }

  .hero__copy {
    padding: 26px 22px;
  }

  .hero__copy h1 {
    max-width: 17ch;
  }

  .hero__media {
    min-height: 220px;
  }

  .hero__badge {
    right: 10px;
    bottom: 10px;
    min-width: 142px;
    padding: 10px 12px;
  }

  .quick-route {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .quick-route__field {
    grid-column: 1 / -1;
    grid-template-columns: 60px 1fr;
  }

  .quick-route__arrow {
    display: none;
  }

  .quick-route .button {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
  }

  .service-grid,
  .support-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .section-head-row,
  .contact-band,
  .footer-bottom,
  .request-form__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-layout {
    gap: 30px;
  }

  .trust-facts {
    grid-template-columns: 1fr;
  }

  .price-preview a {
    grid-template-columns: 1fr 20px;
    gap: 8px;
    padding-block: 12px;
  }

  .price-preview strong {
    grid-column: 1;
    grid-row: 2;
  }

  .price-preview svg {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .route-card {
    grid-template-columns: 1fr;
  }

  .route-card__visual {
    min-height: 170px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 36px;
  }

  .developer-credit {
    flex-wrap: wrap;
  }

  .page-intro {
    padding-bottom: 30px;
  }

  .breadcrumbs {
    margin-bottom: 22px;
  }

  .service-detail {
    gap: 24px;
  }

  .document-gallery {
    grid-template-columns: 1fr;
  }

  .contact-band__actions,
  .contact-band__actions .button {
    width: 100%;
  }

  .sale-gallery {
    grid-template-columns: 1fr;
  }

  .sale-gallery a:first-child {
    grid-column: auto;
  }

  .form-field--wide {
    grid-column: auto;
  }

  .request-aside {
    padding: 24px 20px;
  }

  .price-note {
    grid-template-columns: 1fr;
  }

  .price-note .button {
    width: 100%;
  }

  .specialist-list > div {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .header-main__inner {
    min-height: 66px;
  }

  .brand {
    width: 132px;
  }

  .hero__actions,
  .hero__actions .button,
  .request-form__actions,
  .request-form__actions .button {
    width: 100%;
  }

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

  .hero__media {
    min-height: 185px;
  }

  .service-card,
  .warehouse-card {
    min-height: 238px;
    padding: 22px;
  }

  .vehicle-card__body,
  .request-form {
    padding: 22px 18px;
  }

  .spec-row {
    grid-template-columns: 1fr;
  }

  .trust-visual {
    min-height: 360px;
  }

  .trust-visual > img {
    right: 18px;
  }

  .contact-phone {
    font-size: 1.7rem;
  }

  .footer-bottom {
    padding-block: 18px;
  }
}
