:root {
  --ink: #040e0a;
  --ink-soft: #17313c;
  --blue: #004079;
  --fleet-blue: #005cac;
  --accent: #0088c0;
  --cyan-light: #70d4f2;
  --orange: #ef8323;
  --blue-deep: #002f58;
  --canvas-rich: #eaf2f6;
  --canvas: #f2f6f8;
  --paper: #ffffff;
  --steel: #506874;
  --steel-light: #9fb1ba;
  --line: #cad7de;
  --line-soft: rgba(0, 64, 121, 0.14);
  --shadow: 0 24px 60px rgba(0, 64, 121, 0.14);
  --display: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  --body: "Golos Text", Arial, sans-serif;
  --ease-enter: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-move: cubic-bezier(0.25, 1, 0.5, 1);
  --motion-fast: 140ms;
  --motion-ui: 200ms;
  --motion-panel: 280ms;
  --motion-section: 400ms;
  --gutter: clamp(20px, 4vw, 64px);
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

address {
  font-style: normal;
}

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

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

.shell {
  width: min(100% - (var(--gutter) * 2), 1280px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 3px;
  background: var(--paper);
  color: var(--blue);
  font-weight: 700;
  transition: transform var(--motion-ui) var(--ease-enter);
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.contact-strip {
  background: var(--blue);
  color: var(--paper);
}

.contact-strip__inner {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
  font-size: 12px;
}

.contact-strip address {
  color: rgba(255, 255, 255, 0.74);
}

.contact-strip__links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.contact-strip a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.site-header {
  --scroll-progress: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px) saturate(140%);
  transition: box-shadow var(--motion-ui) ease, background-color var(--motion-ui) ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue) 0 76%, var(--accent) 76% 100%);
  content: "";
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 64, 121, 0.1);
}

.site-header__inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 40px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 180px;
  height: auto;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: stretch;
  gap: clamp(18px, 2vw, 31px);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  display: flex;
  min-height: 84px;
  align-items: center;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent);
  content: "";
  transition: transform var(--motion-ui) var(--ease-enter);
}

.desktop-nav a[aria-current="page"] {
  color: var(--blue);
}

.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-button {
  position: relative;
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--ink);
  transition: transform var(--motion-fast) var(--ease-enter);
}

.menu-button span:first-child {
  transform: translateY(-5px);
}

.menu-button span:last-child {
  transform: translateY(5px);
}

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

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

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: calc(100dvh - 84px);
  overflow-y: auto;
  border-top: 1px solid var(--line-soft);
  background: var(--canvas);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding-block: 24px 42px;
}

.mobile-menu__nav > a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
}

.mobile-menu__nav > a span {
  color: var(--steel);
  font-family: var(--body);
  font-size: 11px;
}

.mobile-menu__contacts {
  display: flex;
  margin-top: 28px;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
  font-weight: 700;
}

.mobile-menu__contacts .mobile-menu__cta {
  width: 100%;
  margin-top: 10px;
  border: 0;
  color: var(--paper);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 3px;
  background: var(--blue);
  color: var(--paper);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.1;
  padding: 15px 22px;
  text-align: center;
  transition: transform var(--motion-fast) var(--ease-enter), background-color var(--motion-ui) ease;
}

.button--secondary {
  border: 1px solid var(--blue);
  background: transparent;
  color: var(--blue);
}

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

.hero-actions .button {
  min-width: 180px;
}

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

.hero__grid {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(460px, 0.88fr) minmax(560px, 1.12fr);
  align-items: stretch;
  gap: clamp(34px, 5vw, 80px);
}

.hero__copy {
  display: flex;
  max-width: 640px;
  flex-direction: column;
  justify-content: center;
  padding-block: 76px;
}

.eyebrow,
.section-kicker {
  display: block;
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.clients h2,
.trust-band h2,
.retail h2,
.geography h2,
.contact-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.hero h1 {
  color: var(--blue);
  font-size: clamp(52px, 5vw, 70px);
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero__lead {
  max-width: 580px;
  margin: 30px 0 0;
  color: var(--steel);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.6;
}

.hero__facts {
  display: grid;
  margin: 42px 0 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.hero-actions + .hero__facts {
  margin-top: 34px;
}

.hero__facts div {
  padding-top: 15px;
  border-top: 2px solid var(--line);
}

.hero__facts dt {
  color: var(--blue);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
}

.hero__facts dd {
  max-width: 210px;
  margin: 4px 0 0;
  color: var(--steel);
  font-size: 12px;
}

.hero__visual {
  position: relative;
  min-width: 0;
  margin: 28px calc((100vw - min(100vw - (var(--gutter) * 2), 1280px)) / -2) 28px 0;
  overflow: hidden;
  background: #dbe7ec;
  box-shadow: var(--shadow);
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
}

.hero__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 55%;
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 64, 121, 0.16), transparent 30%, rgba(0, 64, 121, 0.05));
  content: "";
  pointer-events: none;
}

.hero__visual figcaption,
.service-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  padding: 15px 18px;
  background: rgba(0, 64, 121, 0.92);
  box-shadow: inset 0 3px 0 var(--accent);
  color: var(--paper);
}

.hero__visual figcaption span,
.hero__visual figcaption strong {
  display: block;
}

.hero__visual figcaption span {
  color: var(--cyan-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero__visual figcaption strong {
  margin-top: 4px;
  font-size: 13px;
}

.statement {
  overflow: hidden;
  background: var(--blue);
  color: var(--paper);
}

.statement__inner {
  display: grid;
  min-height: 126px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.statement p {
  max-width: 980px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.14;
}

.statement--light {
  border-block: 1px solid var(--line);
  background: var(--canvas);
  color: var(--blue);
}

.arrow-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.arrow-link span,
.service-card h3 span {
  display: inline-block;
  transition: transform var(--motion-fast) var(--ease-enter);
}

.section {
  padding-block: clamp(76px, 7.5vw, 112px);
}

.section-heading {
  display: grid;
  margin-bottom: clamp(42px, 5vw, 64px);
  grid-template-columns: minmax(210px, 0.36fr) minmax(0, 1fr);
  align-items: start;
  gap: 44px;
}

.section-heading h2,
.clients h2,
.retail h2,
.geography h2,
.contact-panel h2 {
  font-size: clamp(40px, 4.6vw, 58px);
}

.section-heading > div > p,
.retail__heading > p:last-child {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--steel);
  font-size: 17px;
}

.services-overview {
  background: var(--paper);
}

.services-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "transport warehouse"
    "photo third";
  align-items: stretch;
}

.service-card {
  position: relative;
  min-height: 460px;
  padding: clamp(32px, 4vw, 54px);
}

.service-card--transport {
  grid-area: transport;
  background: var(--blue);
  color: var(--paper);
}

.service-card--warehouse {
  grid-area: warehouse;
  background: var(--accent);
  color: var(--ink);
}

.service-card--third-party {
  grid-area: third;
  border: 1px solid var(--line);
  background: var(--canvas);
  color: var(--ink);
}

.service-card__index {
  margin: 0 0 24px;
  color: currentColor;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  opacity: 1;
}

.service-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 3.1vw, 43px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.service-card h3 a {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
}

.service-card h3 a::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  cursor: pointer;
  content: "";
}

.service-card h3 a:focus-visible {
  outline: 0;
}

.service-card h3 a:focus-visible::after {
  border-radius: 2px;
  outline: 3px solid currentColor;
  outline-offset: -7px;
}

.service-card h3 span {
  font-family: var(--body);
  font-size: 18px;
}

.service-card ul {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  gap: 16px;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

.service-card li::before {
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 8px;
  height: 2px;
  transform: skewX(-24deg);
  background: currentColor;
  content: "";
  opacity: 0.72;
}

.service-photo {
  position: relative;
  min-height: 460px;
  grid-area: photo;
  margin: 0;
  overflow: hidden;
  background: #dbe7ec;
  clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%, 0 18px);
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 52%;
  transition: transform var(--motion-panel) var(--ease-enter);
}

.service-photo figcaption {
  right: auto;
  bottom: 24px;
  left: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.clients__heading {
  display: flex;
  margin-bottom: 48px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.clients__heading > div {
  max-width: 760px;
}

.carousel-controls {
  display: flex;
  gap: 2px;
}

.carousel-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  color: var(--blue);
  cursor: pointer;
  font-size: 20px;
  transition: background-color var(--motion-ui) ease, color var(--motion-ui) ease, transform var(--motion-fast) var(--ease-enter);
}

.carousel-controls button:disabled {
  cursor: default;
  opacity: 0.35;
}

.logo-carousel {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 22px 58px rgba(0, 47, 88, 0.11);
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%, 0 14px);
}

.logo-carousel__toolbar {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 22px;
  background: var(--blue-deep);
  box-shadow: inset 0 5px 0 var(--orange);
  color: var(--paper);
}

.logo-carousel__meta {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 12px;
}

.logo-carousel__meta > i {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  background: var(--steel-light);
}

.logo-carousel[data-autoplay="running"] .logo-carousel__meta > i {
  border-color: rgba(112, 212, 242, 0.42);
  background: var(--cyan-light);
}

.logo-carousel__meta strong {
  display: block;
}

.logo-carousel__meta strong {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.logo-carousel__toolbar .carousel-controls button {
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
  color: var(--paper);
}

.logo-carousel__viewport {
  position: relative;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  background: var(--canvas-rich);
  mask-image: linear-gradient(90deg, transparent, #000 22px, #000 calc(100% - 22px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 22px, #000 calc(100% - 22px), transparent);
}

.logo-carousel__viewport.is-repositioning {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.logo-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.logo-carousel__track {
  display: grid;
  padding-block: 10px;
  grid-auto-columns: clamp(220px, 19vw, 248px);
  grid-auto-flow: column;
  gap: 10px;
}

.logo-carousel figure,
.retail-logos figure {
  display: grid;
  margin: 0;
  place-items: center;
  background: var(--paper);
}

.logo-carousel figure {
  position: relative;
  min-height: 154px;
  padding: 22px 20px 30px;
  scroll-snap-align: start;
  transition: background-color var(--motion-ui) ease;
}

.logo-carousel figure::before {
  position: absolute;
  right: 20px;
  bottom: 14px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--paper);
  content: "";
}

.logo-carousel figure::after {
  position: absolute;
  right: 20px;
  bottom: 17px;
  left: 20px;
  height: 1px;
  background: var(--line);
  content: "";
}

.logo-carousel img {
  width: auto;
  height: auto;
  max-width: 168px;
  max-height: 82px;
  object-fit: contain;
  filter: grayscale(0.14) saturate(0.92);
  opacity: 0.92;
  transition: opacity var(--motion-ui) ease, transform var(--motion-ui) var(--ease-enter);
}

.logo-carousel.is-continuous .logo-carousel__viewport {
  overflow: hidden;
  scroll-snap-type: none;
}

.logo-carousel.is-continuous .logo-carousel__track {
  animation: logo-rail 58s linear infinite;
  animation-play-state: paused;
}

.logo-carousel.is-continuous[data-autoplay="running"] .logo-carousel__track {
  animation-play-state: running;
  will-change: transform;
}

@keyframes logo-rail {
  from { transform: translate3d(var(--rail-start, 0), 0, 0); }
  to { transform: translate3d(var(--rail-end, 0), 0, 0); }
}

.trust-band {
  overflow: hidden;
  padding-block: clamp(72px, 7vw, 104px);
  background: var(--blue);
  color: var(--paper);
}

.trust-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: end;
  gap: clamp(54px, 8vw, 124px);
}

.trust-band .section-kicker {
  color: var(--cyan-light);
}

.trust-band h2 {
  max-width: 650px;
  font-size: clamp(40px, 4vw, 54px);
}

.trust-band__grid > div > p:last-child {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.trust-band__facts {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.trust-band__facts div {
  padding: 24px 22px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.trust-band__facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.trust-band__facts dt {
  color: var(--cyan-light);
  font-family: var(--display);
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 800;
  line-height: 1;
}

.trust-band__facts dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.retail {
  background: var(--canvas);
}

.retail__heading {
  max-width: 800px;
  margin-bottom: 40px;
}

.retail__heading > p:last-child {
  margin-top: 20px;
}

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

.retail-logos figure {
  min-height: 160px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.retail-logos img {
  width: min(70%, 174px);
  height: 82px;
  object-fit: contain;
}

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

.geography__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(58px, 8vw, 124px);
}

.geography-list {
  margin: 40px 0 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.geography-list li {
  display: grid;
  padding-block: 13px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.geography-list strong {
  font-size: 14px;
}

.geography-list span {
  color: var(--steel);
  font-size: 11px;
  text-align: right;
}

.route-map {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background-color: var(--blue);
  background-image:
    linear-gradient(148deg, transparent 0 64%, rgba(112, 212, 242, 0.08) 64% 65%, transparent 65%),
    linear-gradient(32deg, rgba(255, 255, 255, 0.035) 0 25%, transparent 25% 100%);
  color: var(--paper);
  box-shadow: var(--shadow);
  clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%, 0 18px);
}

.route-map::before,
.route-map::after {
  position: absolute;
  z-index: 0;
  width: 520px;
  height: 2px;
  transform: rotate(-28deg);
  background: rgba(112, 212, 242, 0.14);
  content: "";
  pointer-events: none;
}

.route-map::before {
  top: 126px;
  right: -116px;
}

.route-map::after {
  right: 36px;
  bottom: 84px;
}

.route-map__label {
  position: absolute;
  z-index: 2;
  top: 34px;
  left: 34px;
  color: var(--cyan-light);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-map__graphic {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.route-map__plot {
  overflow: visible;
}

.route-map__waters {
  fill: rgba(112, 212, 242, 0.1);
  stroke: rgba(112, 212, 242, 0.28);
  stroke-width: 1.5;
}

.route-map__waters path,
.route-map__route {
  vector-effect: non-scaling-stroke;
}

.route-map__route {
  fill: none;
  stroke: rgba(112, 212, 242, 0.82);
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: stroke-dashoffset 560ms var(--ease-enter);
}

.route-map__route--2 { transition-delay: 45ms; }
.route-map__route--3 { transition-delay: 90ms; }
.route-map__route--4 { transition-delay: 135ms; }
.route-map__route--5 { transition-delay: 180ms; }

.route-map__water-name {
  fill: rgba(255, 255, 255, 0.42);
  stroke: rgba(0, 64, 121, 0.72);
  stroke-width: 3px;
  paint-order: stroke fill;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-map__city {
  overflow: visible;
  transition: opacity 260ms var(--ease-enter), transform 260ms var(--ease-enter);
}

.route-map__city-marker {
  fill: var(--paper);
  stroke: var(--blue);
  stroke-width: 3px;
  vector-effect: non-scaling-stroke;
}

.route-map__city-name {
  fill: var(--paper);
  stroke: rgba(0, 64, 121, 0.92);
  stroke-linejoin: round;
  stroke-width: 3px;
  paint-order: stroke fill;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
}

.contact-panel {
  overflow: hidden;
  padding-block: clamp(70px, 7vw, 104px);
  background-color: var(--blue);
  background-image: linear-gradient(90deg, rgba(0, 64, 121, 0.98) 0 58%, rgba(0, 64, 121, 0.8)), url("assets/web/cta-brand-detail.webp");
  background-position: 58% 60%;
  background-size: cover;
  color: var(--paper);
}

.contact-panel__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 60px;
}

.contact-panel .section-kicker {
  color: var(--cyan-light);
}

.contact-panel h2 {
  max-width: 760px;
  font-size: clamp(38px, 4.8vw, 62px);
}

.contact-panel__links {
  display: flex;
  min-width: 270px;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
  font-weight: 700;
}

.contact-panel__links > a:not(.button) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-panel .button {
  margin-top: 12px;
  background: var(--paper);
  color: var(--blue);
}

.site-footer {
  position: relative;
  padding-block: 62px 42px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0 78%, var(--accent) 78% 100%);
  content: "";
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.9fr;
  gap: 56px;
}

.site-footer__brand p,
.site-footer__contacts {
  color: var(--steel);
  font-size: 13px;
}

.site-footer__brand p {
  margin: 14px 0 0;
}

.site-footer__contacts,
.site-footer__nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 11px;
}

.site-footer__contacts a,
.site-footer__nav a {
  border-bottom: 1px solid rgba(0, 64, 121, 0.28);
  color: var(--blue);
  font-size: 13px;
}

/* Internal pages */

.inner-page main {
  background: var(--paper);
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(0, 64, 121, 0.06), transparent 45%),
    var(--canvas);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(146deg, transparent 0 52%, rgba(0, 136, 192, 0.11) 52% 52.6%, transparent 52.6%),
    linear-gradient(112deg, rgba(112, 212, 242, 0.12) 0 23%, transparent 23.1%);
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 76%);
}

.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: clamp(480px, 56vh, 620px);
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  align-items: stretch;
  gap: clamp(42px, 6vw, 92px);
}

.page-hero__copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-block: clamp(68px, 7vw, 104px);
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(54px, 5.4vw, 76px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.94;
  text-wrap: balance;
}

.page-hero__lead {
  max-width: 650px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

.page-hero__copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

main :where(section[id], aside[id], form[id], h2[id], h3[id]) {
  scroll-margin-top: 0;
}

.page-hero__visual {
  position: relative;
  width: calc(100% + var(--gutter));
  min-height: 0;
  margin: 28px 0;
  overflow: hidden;
  background: #dbe7ec;
  box-shadow: 0 28px 70px rgba(0, 47, 88, 0.18);
  clip-path: polygon(28px 0, 100% 0, 100% 100%, 0 100%, 0 28px);
}

.page-hero__visual::before {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--orange) 0 28%, var(--accent) 28% 100%);
  content: "";
  pointer-events: none;
}

.page-hero__visual::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 64, 121, 0.14), transparent 32%, rgba(0, 64, 121, 0.05));
  content: "";
  pointer-events: none;
}

.page-hero__visual img,
.page-hero__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.page-hero__visual img {
  object-fit: cover;
}

.page-hero__visual figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  max-width: min(390px, calc(100% - 56px));
  padding: 15px 18px;
  background: rgba(0, 64, 121, 0.92);
  box-shadow: inset 0 3px 0 var(--accent);
  color: var(--paper);
}

.page-hero__visual figcaption span,
.page-hero__visual figcaption strong {
  display: block;
}

.page-hero__visual figcaption span {
  color: var(--cyan-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.page-hero__visual figcaption strong {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.35;
}

.page-hero--freight .page-hero__visual img {
  object-position: 50% 48%;
}

.page-hero--warehouse .page-hero__visual img {
  object-position: 45% 50%;
}

.page-hero--fuel .page-hero__visual img {
  object-position: 48% 54%;
}

.breadcrumb {
  display: flex;
  margin: 0 0 26px;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.breadcrumb a {
  border-bottom: 1px solid rgba(0, 64, 121, 0.25);
  color: var(--blue);
}

.breadcrumb ol {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.breadcrumb li + li::before {
  margin-right: 7px;
  color: var(--steel-light);
  content: "/";
}

.page-thesis {
  background: var(--blue);
  color: var(--paper);
}

.page-thesis__inner {
  display: grid;
  min-height: 180px;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding-block: clamp(40px, 5vw, 70px);
}

.page-thesis p:not(.eyebrow),
.page-thesis h2 {
  max-width: 1090px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 2.65vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-transform: none;
  text-wrap: balance;
}

.page-thesis > .shell:not(.page-thesis__inner) {
  display: flex;
  min-height: 180px;
  justify-content: center;
  flex-direction: column;
  padding-block: clamp(40px, 5vw, 70px);
}

.page-thesis .eyebrow {
  margin-bottom: 18px;
  color: var(--cyan-light);
}

.page-thesis a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.content-section {
  padding-block: clamp(70px, 7.2vw, 106px);
  background: var(--paper);
}

.content-section--tint {
  background: var(--canvas);
}

.content-section--compact {
  padding-block: clamp(52px, 5.8vw, 78px);
}

.content-section[id],
.legal-section[id] {
  scroll-margin-top: 0;
}

.content-heading {
  display: grid;
  margin-bottom: clamp(36px, 5vw, 58px);
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 6vw, 90px);
}

.content-heading > p:first-child,
.content-heading .section-kicker {
  margin: 8px 0 0;
}

.content-heading h2,
.content-heading h3 {
  max-width: 930px;
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(38px, 4.3vw, 56px);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1;
  text-wrap: balance;
}

.content-heading > div > p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--steel);
}

.content-heading > h2,
.content-heading > h3,
.content-heading > p:last-child:not(:first-child) {
  grid-column: 2;
}

.content-heading > p:last-child:not(:first-child) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--steel);
}

.metric-banner {
  display: grid;
  margin-bottom: clamp(50px, 7vw, 90px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 1fr);
}

.metric-banner strong {
  display: flex;
  min-height: 152px;
  align-items: center;
  padding: 24px clamp(22px, 4vw, 52px);
  background: var(--blue);
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 78px);
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.metric-banner span,
.metric-banner p {
  display: flex;
  min-height: 152px;
  align-items: center;
  margin: 0;
  padding: 30px clamp(28px, 5vw, 68px);
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

dl.metric-banner {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--line);
  gap: 1px;
}

.metric-banner > div {
  min-width: 0;
  padding: clamp(27px, 4vw, 46px);
  background: var(--paper);
}

.metric-banner > div:first-child {
  background: var(--blue);
  color: var(--paper);
}

.metric-banner dt {
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.metric-banner > div:first-child dt {
  color: var(--paper);
}

.metric-banner dd {
  margin: 15px 0 0;
  color: var(--steel);
  font-size: 13px;
}

.metric-banner > div:first-child dd {
  color: rgba(255, 255, 255, 0.75);
}

.feature-grid,
.departments-grid,
.contacts-grid,
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-card,
.contact-card,
.job-card {
  position: relative;
  padding: clamp(32px, 4vw, 54px);
  background: var(--paper);
}

.jobs-grid > .job-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.feature-card h3,
.contact-card h2,
.contact-card h3,
.department-card h2,
.department-card h3 {
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.feature-card > p:last-child,
.contact-card > p:last-child {
  margin-bottom: 0;
}

.feature-card__index {
  display: block;
  margin-bottom: 42px;
  color: var(--fleet-blue);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
}

.check-list li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 11px;
  height: 3px;
  background: var(--accent);
  content: "";
  transform: skewX(-20deg);
}

.fleet-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  align-items: start;
  gap: clamp(34px, 5vw, 70px);
}

.fleet-showcase {
  display: grid;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  background: linear-gradient(180deg, var(--paper) 0%, var(--canvas) 100%);
}

.fleet-showcase__item {
  display: flex;
  min-width: 0;
  min-height: 330px;
  margin: 0;
  padding: 28px clamp(24px, 3vw, 42px) 16px;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
}

.fleet-showcase__item + .fleet-showcase__item {
  border-left: 1px solid var(--line);
}

.fleet-showcase figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 7px 20px;
}

.fleet-showcase figcaption strong {
  color: var(--blue);
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.015em;
}

.fleet-showcase figcaption span {
  color: var(--steel);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.fleet-showcase img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 245px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 17px 13px rgba(0, 47, 88, 0.12));
}

.fleet-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.fleet-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  border-collapse: collapse;
  font-size: 14px;
}

.fleet-table table {
  width: 100%;
  border-collapse: collapse;
}

.fleet-table caption {
  padding: 22px 24px;
  background: var(--blue);
  color: var(--paper);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  text-align: left;
}

.fleet-table th,
.fleet-table td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.fleet-table thead th {
  background: var(--canvas);
  color: var(--steel);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fleet-table tbody th {
  color: var(--blue);
  font-weight: 700;
}

.fleet-table tbody tr:last-child th,
.fleet-table tbody tr:last-child td {
  border-bottom: 0;
}

.fleet-table .table-group th,
.fleet-table .fleet-table__group th {
  padding-block: 12px;
  background: rgba(0, 136, 192, 0.1);
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.equipment-panel {
  overflow: hidden;
  background: var(--blue);
  color: var(--paper);
}

.equipment-panel__body {
  padding: clamp(34px, 4vw, 52px);
}

.equipment-panel h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1;
}

.equipment-panel > .eyebrow {
  margin: 0;
  padding: clamp(34px, 4vw, 52px) clamp(34px, 4vw, 52px) 0;
  color: var(--cyan-light);
}

.equipment-panel > h3 {
  padding: 20px clamp(34px, 4vw, 52px) 0;
}

.equipment-panel > .check-list {
  margin: 28px clamp(34px, 4vw, 52px) clamp(34px, 4vw, 52px);
}

.equipment-panel .check-list li {
  color: rgba(255, 255, 255, 0.84);
}

.equipment-panel__note {
  margin: 0;
  padding: 28px clamp(34px, 4vw, 52px);
  background: var(--fleet-blue);
  color: var(--paper);
  font-weight: 600;
}

.media-stack {
  display: grid;
  gap: clamp(60px, 9vw, 120px);
}

.media-row {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  align-items: center;
  gap: clamp(38px, 7vw, 100px);
}

.media-row--reverse .media-row__image {
  grid-column: 2;
}

.media-row--reverse .media-row__copy {
  grid-column: 1;
  grid-row: 1;
}

.media-row__image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  margin: 0;
  background: var(--blue);
}

.media-row__image::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38%;
  height: 5px;
  background: var(--accent);
  content: "";
}

.media-row__image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.media-row__image--food img {
  object-position: 58% 50%;
}

.media-row__copy h3 {
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1;
}

.media-row > article h3 {
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -0.03em;
  line-height: 1;
}

.media-row__copy > p {
  margin: 24px 0 0;
  color: var(--ink-soft);
}

.page-callout {
  position: relative;
  overflow: hidden;
  padding-block: clamp(70px, 8vw, 110px);
  background:
    linear-gradient(100deg, rgba(0, 64, 121, 0.98), rgba(0, 64, 121, 0.86)),
    url("assets/web/cta-brand-detail.webp") center / cover;
  color: var(--paper);
}

.page-callout::after {
  position: absolute;
  top: 0;
  right: 10%;
  width: 7px;
  height: 100%;
  background: var(--accent);
  content: "";
  transform: skewX(-20deg);
}

.page-callout p {
  max-width: 1100px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-transform: uppercase;
  text-wrap: balance;
}

.page-callout.page-callout--quiet {
  padding: clamp(34px, 3.5vw, 46px);
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--accent);
  background:
    linear-gradient(135deg, rgba(112, 212, 242, 0.1), rgba(255, 255, 255, 0) 62%),
    var(--paper);
  color: var(--blue);
}

.page-callout.page-callout--quiet::after {
  content: none;
}

.page-callout.page-callout--quiet p {
  max-width: 26ch;
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.14;
  text-transform: none;
}

.collaboration-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(44px, 8vw, 110px);
}

.department-card {
  position: sticky;
  top: 120px;
  padding: clamp(34px, 5vw, 58px);
  border-top: 5px solid var(--accent);
  background: var(--blue);
  color: var(--paper);
}

.department-card .section-kicker {
  color: var(--cyan-light);
}

.department-card h2,
.department-card h3 {
  color: var(--paper);
}

.department-card address,
.department-card__links,
.department-card__contact {
  display: flex;
  margin-top: 28px;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.content-section > .shell:not(.collaboration-grid) > .department-card {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 42px;
}

.collaboration-grid + .request-form {
  margin-top: clamp(38px, 6vw, 72px);
}

.department-card a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--paper);
  font-weight: 700;
}

.request-form {
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.request-form h2,
.request-form h3 {
  margin: 0 0 38px;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1;
}

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

.form-field {
  display: grid;
  align-content: start;
  gap: 8px;
}

.form-field--full,
.consent,
.form-actions,
.form-status {
  grid-column: 1 / -1;
}

.form-field label,
.form-field > span:first-child {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.form-optional {
  color: var(--steel);
  font-size: 11px;
  font-weight: 500;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--canvas);
  color: var(--ink);
  padding: 13px 15px;
  transition: border-color var(--motion-ui) ease, box-shadow var(--motion-ui) ease, background-color var(--motion-ui) ease;
}

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

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
  outline: 0;
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(0, 136, 192, 0.16);
}

.form-field input:user-invalid,
.form-field textarea:user-invalid {
  border-color: #a83a32;
  background: #fff8f7;
  box-shadow: 0 0 0 3px rgba(168, 58, 50, 0.11);
}

.form-hint {
  margin: 0;
  color: var(--steel);
  font-size: 12px;
}

.form-field small {
  color: var(--steel);
  font-size: 12px;
}

.prototype-note {
  margin: -10px 0 30px;
  padding: 14px 16px;
  border-top: 2px solid var(--accent);
  background: rgba(0, 136, 192, 0.08);
  color: var(--ink-soft);
  font-size: 13px;
}

.consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  color: var(--steel);
  font-size: 13px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.consent a {
  border-bottom: 1px solid rgba(0, 64, 121, 0.3);
  color: var(--blue);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-actions .button,
.request-form .button {
  border: 0;
  cursor: pointer;
}

.request-form .button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.request-form > .button {
  margin-top: 28px;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.form-status:not(:empty) {
  margin-top: 16px;
  padding: 14px 16px;
  border-top: 2px solid var(--fleet-blue);
  background: rgba(0, 92, 172, 0.08);
}

.client-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.client-badge {
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: var(--paper);
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
}

.job-card {
  padding: 0;
}

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

.job-card details,
details.job-card {
  height: auto;
  background: var(--paper);
}

.job-card summary {
  position: relative;
  display: grid;
  min-height: 116px;
  cursor: pointer;
  grid-template-columns: minmax(0, 1fr) 38px;
  align-items: center;
  gap: 24px;
  padding: clamp(30px, 4vw, 48px);
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  list-style: none;
}

.job-card summary::-webkit-details-marker {
  display: none;
}

.job-card summary::after {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--accent);
  content: "+";
  font-family: var(--body);
  font-size: 23px;
  font-weight: 400;
}

.job-card details[open] summary::after,
details.job-card[open] summary::after {
  content: "−";
}

.job-card__body {
  padding: 0 clamp(30px, 4vw, 48px) clamp(34px, 4vw, 52px);
  border-top: 1px solid var(--line-soft);
}

.job-card__body .check-list {
  margin-top: 28px;
}

details.job-card summary {
  grid-template-columns: 42px minmax(0, 1fr) 36px;
}

details.job-card summary::after {
  display: none;
}

.job-card__index {
  align-self: start;
  margin-top: 4px;
  color: var(--fleet-blue);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.job-card__toggle {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
}

.job-card__toggle::before,
.job-card__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: translate(-50%, -50%);
}

.job-card__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

details.job-card[open] .job-card__toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

.job-card__content {
  padding: 0 clamp(30px, 4vw, 48px) clamp(34px, 4vw, 52px);
  border-top: 1px solid var(--line-soft);
}

.job-card__content dl {
  margin: 0;
}

.job-card__content dl > div {
  display: grid;
  padding-block: 13px;
  border-bottom: 1px solid var(--line-soft);
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 0.58fr);
  gap: 20px;
}

.job-card__content dt {
  color: var(--steel);
  font-size: 12px;
  font-weight: 700;
}

.job-card__content dd {
  margin: 0;
  color: var(--ink-soft);
}

.job-card__action {
  margin-top: 24px;
}

.contact-card {
  min-height: 260px;
}

.contact-card__label {
  display: block;
  margin-bottom: 38px;
  color: var(--fleet-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card__index {
  display: block;
  margin: 0 0 38px;
  color: var(--fleet-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.contact-card address,
.contact-card__links {
  display: flex;
  margin-top: 26px;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  color: var(--steel);
}

.contact-card a {
  border-bottom: 1px solid rgba(0, 64, 121, 0.28);
  color: var(--blue);
  font-weight: 700;
}

.map-frame {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  border: 1px solid var(--line);
  background:
    linear-gradient(148deg, transparent 0 62%, rgba(0, 136, 192, 0.1) 62% 62.8%, transparent 62.8%),
    linear-gradient(112deg, rgba(112, 212, 242, 0.14) 0 26%, transparent 26.1%),
    var(--canvas);
  margin: 0;
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 400px;
  border: 0;
  transition: opacity var(--motion-ui) ease, filter var(--motion-ui) ease;
}

.map-frame iframe[hidden] {
  display: none;
}

.map-frame iframe[hidden] + figcaption {
  margin-top: 210px;
}

.map-frame.is-map-locked {
  min-height: 300px;
}

.map-frame.is-map-locked::before {
  position: absolute;
  top: 44px;
  left: 50%;
  width: 34px;
  height: 34px;
  transform: translateX(-50%) rotate(-45deg);
  border: 2px solid var(--accent);
  border-radius: 50% 50% 50% 0;
  content: "";
}

.map-frame.is-map-locked::after {
  position: absolute;
  top: 55px;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.map-frame.is-map-locked .map-frame__toggle {
  top: 104px;
  left: 50%;
  transform: translateX(-50%);
}

.map-frame.is-map-loading iframe {
  opacity: 0.18;
}

.map-frame.is-map-locked iframe {
  pointer-events: none;
  filter: saturate(0.68) contrast(0.94);
}

.map-frame__loading {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  color: var(--steel);
  font-size: 13px;
  font-weight: 700;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.map-frame__toggle {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  background: var(--blue);
  color: var(--paper);
  cursor: pointer;
  font: 700 12px/1.2 var(--body);
  padding: 11px 14px;
  box-shadow: 0 8px 22px rgba(0, 64, 121, 0.22);
}

.map-frame__toggle:disabled {
  cursor: wait;
  opacity: 0.76;
}

.map-frame figcaption {
  display: flex;
  min-height: 78px;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  padding: 17px 20px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--steel);
  font-size: 12px;
}

.map-frame figcaption strong {
  color: var(--blue);
  font-size: 14px;
}

.map-frame__link {
  width: fit-content;
  margin-top: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.contacts-grid > .map-frame:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.location-block {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.location-block .contact-card,
.location-block .map-frame {
  border: 0;
}

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

.requisites-grid dl {
  display: grid;
  margin: 0;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
}

.requisites-grid dt,
.requisites-grid dd {
  margin: 0;
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
}

dl.requisites-grid > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
}

.requisites-grid__wide {
  grid-column: 1 / -1;
}

dl.requisites-grid > div dt,
dl.requisites-grid > div dd {
  margin: 0;
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
}

dl.requisites-grid > div dt {
  color: var(--steel);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

dl.requisites-grid > div dd {
  color: var(--ink-soft);
}

.requisites-grid dt {
  color: var(--steel);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.requisites-grid dd {
  color: var(--ink-soft);
}

/* Contacts: one clear routing surface instead of a sequence of equal cards. */

.contact-directory {
  padding-block: clamp(76px, 8vw, 118px);
  background:
    linear-gradient(145deg, rgba(112, 212, 242, 0.12) 0 18%, transparent 18.1%),
    var(--canvas);
}

.contact-directory__heading {
  display: grid;
  margin-bottom: clamp(38px, 5vw, 60px);
  padding-bottom: clamp(30px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(170px, 0.31fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 6vw, 90px);
}

.contact-directory__heading .section-kicker {
  margin-top: 8px;
}

.contact-directory__heading h2,
.contact-requisites__heading h2 {
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(39px, 4.3vw, 58px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
  text-wrap: balance;
}

.contact-directory__heading p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--steel);
}

.contact-directory__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
  align-items: start;
  gap: clamp(26px, 4vw, 54px);
}

.contact-directory__lead {
  position: sticky;
  top: 120px;
  overflow: hidden;
  min-height: 470px;
  padding: clamp(34px, 4vw, 52px);
  border-top: 6px solid var(--accent);
  background: var(--blue);
  color: var(--paper);
}

.contact-directory__lead::after {
  position: absolute;
  right: -82px;
  bottom: 46px;
  width: 260px;
  height: 8px;
  transform: rotate(-34deg);
  background: rgba(112, 212, 242, 0.22);
  content: "";
  pointer-events: none;
}

.contact-directory__lead > * {
  position: relative;
  z-index: 1;
}

.contact-directory__number {
  display: block;
  margin-bottom: clamp(50px, 7vw, 86px);
  color: var(--cyan-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-directory__lead .section-kicker {
  margin-bottom: 16px;
  color: var(--cyan-light);
}

.contact-directory__lead h3 {
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(34px, 3.6vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1;
}

.contact-directory__lead > p:not(.section-kicker) {
  max-width: 390px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-directory__lead address {
  display: flex;
  margin-top: 34px;
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
}

.contact-directory__lead address span {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.contact-directory__lead address a,
.contact-entry__links a,
.contact-requisites a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  overflow-wrap: anywhere;
}

.contact-directory__lead address a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--paper);
  font-weight: 700;
}

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

.contact-entry {
  position: relative;
  display: grid;
  min-width: 0;
  padding: clamp(26px, 3.2vw, 38px) clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--paper);
  grid-template-columns: 34px minmax(0, 1fr) minmax(210px, 0.43fr);
  align-items: start;
  gap: clamp(18px, 3vw, 36px);
}

.contact-entry::before {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  width: 4px;
  transform: scaleY(0);
  transform-origin: top;
  background: var(--accent);
  content: "";
  transition: transform var(--motion-ui) var(--ease-enter);
}

.contact-entry__index {
  padding-top: 3px;
  color: var(--fleet-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.contact-entry__eyebrow {
  margin: 0 0 7px;
  color: var(--steel);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-entry__copy h3 {
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(25px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.contact-entry__copy > p:last-child {
  margin: 12px 0 0;
  color: var(--steel);
  font-size: 13px;
}

.contact-entry__links {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
}

.contact-entry__links a {
  max-width: 100%;
  border-bottom: 1px solid rgba(0, 64, 121, 0.26);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.contacts-locations {
  background: var(--paper);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.locations-grid .map-frame {
  width: 100%;
  min-height: 270px;
  border-top: 4px solid var(--accent);
}

.locations-grid .map-frame iframe[hidden] + figcaption {
  margin-top: 145px;
}

.locations-grid .map-frame.is-map-locked {
  min-height: 270px;
}

.locations-grid .map-frame.is-map-locked::before {
  top: 32px;
}

.locations-grid .map-frame.is-map-locked::after {
  top: 43px;
}

.locations-grid .map-frame.is-map-locked .map-frame__toggle {
  top: 90px;
}

.locations-grid .map-frame figcaption {
  min-height: 118px;
}

.locations-grid .map-frame__link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 2px;
}

.contact-requisites {
  border-top: 1px solid var(--line);
  background: var(--canvas-rich);
}

.contact-requisites__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  align-items: start;
  gap: clamp(44px, 8vw, 110px);
}

.contact-requisites__heading {
  padding-top: 12px;
  border-top: 5px solid var(--orange);
}

.contact-requisites__heading h2 {
  margin-top: 20px;
  font-size: clamp(36px, 3.6vw, 48px);
}

.contact-requisites__heading > p:last-child {
  max-width: 420px;
  margin: 20px 0 0;
  color: var(--steel);
}

.contact-requisites .requisites-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.contact-requisites .requisites-grid__wide {
  grid-column: auto;
}

/* Careers: compact proof band plus a scannable vacancy board. */

.career-promise {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(0, 47, 88, 0.98), rgba(0, 64, 121, 0.92)),
    url("assets/web/cta-brand-detail.webp") center / cover;
  color: var(--paper);
}

.career-promise::after {
  position: absolute;
  top: -30%;
  right: 12%;
  width: 7px;
  height: 160%;
  transform: rotate(28deg);
  background: rgba(112, 212, 242, 0.36);
  content: "";
  pointer-events: none;
}

.career-promise__inner {
  position: relative;
  z-index: 1;
  display: grid;
  padding-block: clamp(54px, 6.5vw, 88px);
  grid-template-columns: minmax(300px, 0.43fr) minmax(0, 0.57fr);
  align-items: center;
  gap: clamp(46px, 7vw, 98px);
}

.career-promise__copy .section-kicker {
  color: var(--cyan-light);
}

.career-promise__copy h2,
.career-board__sidebar h2 {
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(39px, 4.3vw, 58px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
  text-wrap: balance;
}

.career-promise__copy h2 {
  margin-top: 17px;
  color: var(--paper);
  font-size: clamp(36px, 4vw, 52px);
}

.career-promise__copy > p:last-child {
  max-width: 540px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.career-promise__facts {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.career-promise__facts > div {
  min-width: 0;
  padding: 18px clamp(18px, 2.5vw, 30px);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.career-promise__facts dt {
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.career-promise__facts dd {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.45;
}

.career-board {
  background: var(--canvas);
}

.career-board__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.34fr) minmax(0, 0.66fr);
  align-items: start;
  gap: clamp(38px, 6vw, 78px);
}

.career-board__sidebar {
  position: sticky;
  top: 120px;
  padding: clamp(30px, 3.8vw, 46px);
  border-top: 6px solid var(--accent);
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(0, 64, 121, 0.1);
}

.career-board__sidebar h2 {
  margin-top: 18px;
  font-size: clamp(38px, 4vw, 52px);
}

.career-board__sidebar > p:not(.section-kicker) {
  margin: 24px 0 0;
  color: var(--steel);
}

.career-board__contact {
  display: flex;
  margin-top: 34px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  align-items: flex-start;
  flex-direction: column;
}

.career-board__contact span,
.career-board__contact small {
  color: var(--steel);
  font-size: 11px;
}

.career-board__contact span {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career-board__contact a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid rgba(0, 64, 121, 0.28);
  color: var(--blue);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 700;
}

.career-board__contact small {
  max-width: 290px;
  margin-top: 9px;
  line-height: 1.45;
}

.career-board__sidebar > .button {
  width: 100%;
  margin-top: 26px;
}

.career-board__vacancies {
  min-width: 0;
}

.career-board__topline {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-inline: 4px;
  color: var(--steel);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career-board .jobs-grid {
  border: 0;
  background: transparent;
  gap: 12px;
}

.career-board details.job-card {
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color var(--motion-ui) ease, box-shadow var(--motion-ui) ease;
}

.career-board details.job-card[open] {
  border-color: rgba(0, 136, 192, 0.62);
  box-shadow: 0 18px 44px rgba(0, 64, 121, 0.1);
}

.career-board .job-card summary {
  min-height: 0;
  padding: 25px 26px;
  grid-template-columns: 28px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 20px;
  font-size: inherit;
}

.career-board .job-card__index {
  align-self: center;
  margin: 0;
}

.job-card__heading {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.job-card__area {
  margin-bottom: 6px;
  color: var(--fleet-blue);
  font-family: var(--body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.job-card__heading strong {
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(26px, 2.7vw, 34px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.job-card__preview {
  margin-top: 8px;
  color: var(--steel);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
}

.career-board .job-card__content {
  padding: 10px 26px 30px 74px;
  background: #fbfdfe;
}

.career-board .job-card__content dl > div {
  padding-block: 12px;
}

.career-board .job-card__action {
  min-width: 230px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.3fr) minmax(0, 0.7fr);
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
}

.legal-toc {
  position: sticky;
  top: 116px;
  max-height: calc(100vh - 146px);
  overflow-y: auto;
  padding: 28px;
  border-top: 4px solid var(--accent);
  background: var(--canvas);
}

.legal-toc h2,
.legal-toc__title {
  margin: 0 0 20px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
}

.legal-toc .arrow-link {
  margin-top: 26px;
}

.legal-toc ol {
  display: grid;
  margin: 0;
  padding: 0 0 0 20px;
  gap: 9px;
  color: var(--steel);
  font-size: 12px;
}

.legal-toc a {
  border-bottom: 1px solid transparent;
}

.legal-content {
  min-width: 0;
}

.legal-section {
  padding-block: 0 clamp(52px, 7vw, 86px);
  border-bottom: 1px solid var(--line);
}

.legal-section + .legal-section {
  padding-top: clamp(52px, 7vw, 86px);
}

.legal-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-section h2 {
  margin: 0 0 30px;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(30px, 3.7vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.legal-section h3 {
  margin: 34px 0 12px;
  color: var(--ink-soft);
  font-size: 17px;
}

.legal-section p,
.legal-section li {
  color: var(--ink-soft);
}

.legal-section p {
  margin: 0 0 18px;
}

.legal-section ul,
.legal-section ol {
  display: grid;
  margin: 18px 0 24px;
  padding-left: 24px;
  gap: 9px;
}

.legal-section__back {
  display: none;
}

.message-dock {
  display: none;
}

.message-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  background: var(--blue);
  color: var(--paper);
  box-shadow: 0 14px 34px rgba(0, 64, 121, 0.28);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 17px;
  transition: transform var(--motion-fast) var(--ease-enter), background-color var(--motion-ui) ease;
}

.reveal-pending {
  opacity: 0;
  transform: translateY(16px);
}

.reveal-pending.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--motion-section) var(--ease-enter), transform var(--motion-section) var(--ease-enter);
}

[data-reveal="image"].reveal-pending img {
  transform: scale(1.025);
}

[data-reveal="image"].reveal-pending.is-visible img {
  transform: scale(1);
}

.route-map.reveal-pending {
  opacity: 1;
  transform: none;
}

.route-map.reveal-pending .route-map__route {
  stroke-dashoffset: 1;
}

.route-map.reveal-pending .route-map__city {
  opacity: 0;
  transform: translateY(4px);
}

.route-map.reveal-pending.is-visible .route-map__route {
  stroke-dashoffset: 0;
}

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

.route-map.reveal-pending.is-visible .route-map__city--nov,
.route-map.reveal-pending.is-visible .route-map__city--ptr {
  transition-delay: 170ms;
}

.route-map.reveal-pending.is-visible .route-map__city--psk,
.route-map.reveal-pending.is-visible .route-map__city--arh {
  transition-delay: 230ms;
}

.route-map.reveal-pending.is-visible .route-map__city--msk,
.route-map.reveal-pending.is-visible .route-map__city--mur {
  transition-delay: 290ms;
}

/* Homepage visual polish: the diagonal route language follows the Sorozh mark. */

.home-page .hero {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(112deg, rgba(112, 212, 242, 0.1) 0 28%, transparent 28.1%),
    var(--paper);
}

.home-page .hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(33vw, 520px);
  background: linear-gradient(150deg, rgba(0, 136, 192, 0.08), transparent 58%);
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
  content: "";
}

.home-page .hero__grid {
  position: relative;
  z-index: 1;
  min-height: 680px;
  grid-template-columns: minmax(480px, 0.9fr) minmax(560px, 1.1fr);
  gap: clamp(42px, 5vw, 72px);
}

.home-page .hero__copy {
  max-width: 680px;
  padding-block: 82px;
}

.home-page :where(h1, h2, h3) {
  text-wrap: balance;
}

.home-page :where(p, li, dd) {
  text-wrap: pretty;
}

.home-page .eyebrow,
.home-page .section-kicker {
  font-size: 12px;
  letter-spacing: 0.1em;
}

.home-page .hero h1 {
  max-width: 700px;
  font-size: clamp(56px, 5.3vw, 76px);
  line-height: 0.95;
}

.home-page .hero__lead {
  margin-top: 27px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.55;
}

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

.home-page .hero-actions .button {
  min-height: 54px;
}

.home-page .hero__facts {
  margin-top: 34px;
  gap: 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.home-page .hero__facts div {
  min-width: 0;
  padding: 17px 20px 18px;
  border-top: 0;
}

.home-page .hero__facts div + div {
  border-left: 1px solid var(--line);
}

.home-page .hero__facts dt {
  font-size: 26px;
  line-height: 1;
}

.home-page .hero__facts dd {
  margin-top: 7px;
  font-size: 12.5px;
  line-height: 1.45;
}

.home-page .hero__visual {
  margin-block: 30px;
  box-shadow: 0 32px 78px rgba(0, 47, 88, 0.2);
  clip-path: polygon(28px 0, 100% 0, 100% 100%, 0 100%, 0 28px);
}

.home-page .hero__visual::before {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--orange) 0 28%, var(--accent) 28% 100%);
  content: "";
  pointer-events: none;
}

.home-page .hero__visual img {
  animation: hero-image-in 900ms var(--ease-enter) both;
}

.hero__route-chip {
  position: absolute;
  z-index: 3;
  top: 30px;
  left: 30px;
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero__route-chip i {
  display: block;
  width: 48px;
  height: 2px;
  transform-origin: left;
  background: var(--orange);
  animation: route-line-in 760ms 300ms var(--ease-enter) both;
}

.home-page .hero + .statement {
  border-top: 6px solid var(--orange);
}

.home-page .statement__inner {
  min-height: 132px;
}

.home-page .statement p {
  font-size: clamp(22px, 2.3vw, 32px);
}

.home-page .section-heading > div {
  max-width: 850px;
}

.home-page .services-overview {
  position: relative;
  background: linear-gradient(180deg, var(--paper) 0 70%, var(--canvas-rich) 70% 100%);
}

.home-page .services-mosaic {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  box-shadow: 0 28px 70px rgba(0, 47, 88, 0.12);
}

.home-page .service-card {
  min-height: 480px;
  overflow: hidden;
}

.home-page .service-card > * {
  position: relative;
  z-index: 1;
}

.home-page .service-card--transport {
  background:
    linear-gradient(100deg, rgba(0, 47, 88, 0.97), rgba(0, 64, 121, 0.88)),
    url("assets/web/service-transport.webp") center / cover;
}

.home-page .service-card--warehouse {
  background: var(--accent);
  box-shadow: inset 0 7px 0 var(--orange);
  color: var(--ink);
}

.home-page .service-card--warehouse::after {
  position: absolute;
  right: -54px;
  bottom: -92px;
  width: 250px;
  height: 320px;
  transform: skewX(-22deg);
  background: rgba(255, 255, 255, 0.1);
  content: "";
}

.home-page .service-card--third-party {
  background:
    linear-gradient(90deg, rgba(242, 246, 248, 0.99) 0 57%, rgba(242, 246, 248, 0.78) 100%),
    url("assets/web/service-fuel-tanker.webp") 72% center / cover;
}

.home-page .service-card__index {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-page .service-card__index::before {
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
  opacity: 0.7;
}

.home-page .service-card li {
  font-size: 14.5px;
  line-height: 1.5;
}

.home-page .service-photo {
  min-height: 480px;
  clip-path: polygon(24px 0, 100% 0, 100% 100%, 0 100%, 0 24px);
}

.home-page .clients {
  border-block: 1px solid var(--line);
  background: var(--canvas-rich);
}

.home-page .clients__heading {
  margin-bottom: 30px;
}

.home-page .logo-carousel__track {
  border: 0;
  background: transparent;
}

.home-page .logo-carousel figure {
  border: 0;
  background: var(--paper);
}

.home-page .logo-carousel img {
  width: auto;
  filter: grayscale(0.14) saturate(0.92);
  opacity: 0.92;
}

.home-page .trust-band {
  border-top: 6px solid var(--orange);
  background:
    linear-gradient(90deg, rgba(0, 47, 88, 0.99) 0 43%, rgba(0, 64, 121, 0.9) 100%),
    url("assets/web/cta-brand-detail.webp") 70% 55% / cover;
}

.home-page .trust-band__grid {
  align-items: center;
}

.home-page .trust-band__facts div {
  padding-top: 30px;
}

.home-page .trust-band__facts dt {
  font-size: clamp(42px, 4vw, 58px);
}

.home-page .trust-band__facts dd {
  font-size: 13px;
}

.home-page .retail-logos {
  border-top: 4px solid var(--orange);
  box-shadow: 0 18px 44px rgba(0, 47, 88, 0.08);
}

.home-page .retail-logos figure {
  min-height: 138px;
}

.home-page .geography-list li {
  padding-block: 14px;
  transition: color var(--motion-ui) ease;
}

.home-page .route-map {
  box-shadow: 0 30px 72px rgba(0, 47, 88, 0.2);
  outline: 1px solid rgba(112, 212, 242, 0.22);
  outline-offset: -12px;
}

.home-page .contact-panel__links > a:not(.button) {
  font-size: clamp(17px, 1.6vw, 22px);
}

@keyframes hero-image-in {
  from {
    opacity: 0.72;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes route-line-in {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (hover: hover) and (pointer: fine) {
  .logo-carousel.is-continuous .carousel-controls {
    display: none;
  }

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

  .button:hover,
  .message-button:hover {
    transform: translateY(-2px);
    background: var(--fleet-blue);
  }


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

  .button:active,
  .message-button:active,
  .carousel-controls button:active {
    transform: scale(0.98);
  }

  .arrow-link:hover span,
  .service-card h3 a:hover span {
    transform: translateX(4px);
  }

  .service-photo:hover img {
    transform: scale(1.015);
  }

  .logo-carousel figure:hover img {
    transform: scale(1.015);
    filter: none;
    opacity: 1;
  }

  .logo-carousel figure:hover {
    background: #f6fafc;
  }

  .carousel-controls button:not(:disabled):hover {
    transform: translateY(-2px);
    background: var(--blue);
    color: var(--paper);
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(50px, 6vw, 68px);
  }

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

  .trust-band__facts {
    max-width: 760px;
  }

  .geography__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
    gap: 56px;
  }

  .route-map {
    min-height: 560px;
  }
}

@media (max-width: 900px) {
  .contact-strip__inner {
    justify-content: space-between;
  }

  .hero__grid {
    display: block;
  }

  .hero__copy {
    max-width: 760px;
    padding-block: 76px 62px;
  }

  .hero__visual {
    width: 100vw;
    height: clamp(400px, 62vw, 560px);
    margin: 0 0 0 calc((100vw - 100%) / -2);
  }

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

  .services-mosaic {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "transport" "warehouse" "photo" "third";
  }

  .service-card,
  .service-photo {
    min-height: auto;
  }

  .service-photo {
    height: 440px;
  }

  .logo-carousel__track {
    grid-auto-columns: calc(33.333% - 0.67px);
  }

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

  .geography__copy {
    max-width: 760px;
  }

  .route-map {
    min-height: 600px;
  }

  .contact-panel {
    background-image: linear-gradient(90deg, rgba(0, 64, 121, 0.97), rgba(0, 64, 121, 0.88)), url("assets/web/cta-brand-detail.webp");
  }

  .contact-panel__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 38px;
  }

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

  .site-footer__nav {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 700px) {
  :root {
    --gutter: 20px;
  }

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

  .contact-strip {
    display: none;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand img {
    width: 138px;
  }

  .mobile-menu {
    height: calc(100dvh - 72px);
  }

  .hero__copy {
    padding-block: 66px 54px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 19px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 52px);
    line-height: 1;
  }

  .hero__lead {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero__facts {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 34px;
  }

  .hero__facts div {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: baseline;
    gap: 12px;
  }

  .hero__facts dd {
    max-width: none;
  }

  .hero__visual {
    height: 390px;
  }

  .hero__visual img {
    object-position: 42% 52%;
  }

  .hero__visual figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .statement__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 30px;
  }

  .statement__inner .arrow-link {
    grid-column: auto;
    margin-left: 0;
  }

  .statement p {
    font-size: 21px;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .clients h2,
  .retail h2,
  .geography h2,
  .contact-panel h2 {
    font-size: clamp(36px, 10.5vw, 46px);
  }

  .section-heading > div > p,
  .retail__heading > p:last-child {
    font-size: 15px;
  }

  .service-card {
    min-height: 0;
    padding: 34px 26px 40px;
  }

  .service-card h3 {
    font-size: 34px;
  }

  .service-card ul {
    margin-top: 26px;
  }

  .service-photo {
    height: 340px;
  }

  .clients__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .logo-carousel__track {
    grid-auto-columns: 67%;
  }

  .logo-carousel figure {
    min-height: 190px;
  }

  .trust-band {
    padding-block: 78px;
  }

  .trust-band__facts {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .trust-band__facts div,
  .trust-band__facts div:first-child {
    display: grid;
    padding: 20px 0;
    grid-template-columns: 120px 1fr;
    align-items: baseline;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }

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

  .retail-logos figure:last-child {
    grid-column: 1 / -1;
  }

  .geography__grid {
    gap: 46px;
  }

  .geography-list li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .geography-list span {
    text-align: left;
  }

  .route-map {
    min-height: 490px;
  }

  .route-map__label {
    top: 24px;
    right: 24px;
    left: auto;
  }

  .route-map__water-name {
    display: none;
  }

  .route-map__city-name {
    font-size: 10px;
  }

  .contact-panel {
    padding-block: 76px;
  }

  .contact-panel__links {
    min-width: 0;
  }

  .contact-panel .button {
    width: 100%;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__nav {
    grid-column: auto;
    grid-row: auto;
  }

  .message-button {
    right: 14px;
    bottom: 14px;
    width: 46px;
    min-height: 44px;
    justify-content: center;
    gap: 0;
    overflow: hidden;
    font-size: 0;
    padding: 0;
  }

  .message-button span {
    font-size: 16px;
  }

  .reveal-pending {
    transform: translateY(8px);
  }
}

@media (hover: hover) and (pointer: fine) {
  .job-card summary,
  .contact-card,
  .feature-card {
    transition: background-color var(--motion-ui) ease;
  }

  .job-card summary:hover,
  .contact-card:hover,
  .feature-card:hover {
    background: #f6fafc;
  }

  .legal-toc a:hover {
    border-bottom-color: var(--accent);
    color: var(--blue);
  }
}

@media (max-width: 900px) {
  .page-hero__grid {
    display: block;
  }

  .page-hero__copy {
    max-width: 760px;
    padding-block: 76px 62px;
  }

  main :where(section[id], aside[id], form[id], h2[id], h3[id]) {
    scroll-margin-top: 0;
  }

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

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

  .page-hero__visual {
    width: 100vw;
    height: clamp(360px, 62vw, 520px);
    min-height: 0;
    margin-block: 0;
    margin-left: calc((100vw - 100%) / -2);
    clip-path: polygon(22px 0, 100% 0, 100% 100%, 0 100%, 0 22px);
  }

  .content-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .content-heading > h2,
  .content-heading > h3,
  .content-heading > p:last-child:not(:first-child) {
    grid-column: auto;
  }

  .fleet-layout,
  .collaboration-grid,
  .location-block,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .equipment-panel {
    max-width: 760px;
  }

  .department-card,
  .legal-toc {
    position: static;
  }

  .legal-toc {
    max-height: none;
  }

  .media-row,
  .media-row--reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .media-row--reverse .media-row__image,
  .media-row--reverse .media-row__copy {
    grid-column: auto;
    grid-row: auto;
  }

  .media-row--reverse .media-row__image {
    order: 0;
  }

  .media-row--reverse .media-row__copy {
    order: 1;
  }

  .media-row__image {
    min-height: 380px;
  }

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

@media (max-width: 700px) {
  .page-hero__copy {
    padding-block: 58px 50px;
  }

  .page-hero h1 {
    font-size: clamp(43px, 14vw, 58px);
  }

  .page-hero__lead {
    margin-top: 24px;
    font-size: 16px;
  }

  .page-hero__visual {
    height: 320px;
  }

  .page-hero__visual figcaption {
    right: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
    padding: 13px 15px;
  }

  .page-thesis__inner {
    min-height: 0;
    gap: 24px;
    padding-block: 38px;
  }

  .page-thesis > .shell:not(.page-thesis__inner) {
    min-height: 0;
    padding-block: 38px;
  }

  .page-thesis p {
    font-size: 23px;
  }

  .content-section {
    padding-block: 76px;
  }

  .content-heading {
    margin-bottom: 38px;
  }

  .content-heading h2,
  .content-heading h3 {
    font-size: clamp(35px, 11vw, 46px);
  }

  .metric-banner {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }

  dl.metric-banner {
    grid-template-columns: 1fr;
  }

  .metric-banner strong,
  .metric-banner span,
  .metric-banner p {
    min-height: 0;
  }

  .metric-banner strong {
    padding: 24px;
    font-size: 50px;
  }

  .metric-banner span,
  .metric-banner p {
    padding: 24px;
    font-size: 25px;
  }

  .feature-grid,
  .departments-grid,
  .contacts-grid,
  .jobs-grid,
  .client-badges {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .contact-card {
    padding: 30px 25px 36px;
  }

  .feature-card__index,
  .contact-card__label {
    margin-bottom: 28px;
  }

  .fleet-table-wrap {
    border: 0;
    background: transparent;
  }

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

  .fleet-showcase__item {
    min-height: 0;
    padding: 24px 18px 14px;
    gap: 22px;
  }

  .fleet-showcase__item + .fleet-showcase__item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .fleet-showcase figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .fleet-showcase figcaption strong {
    font-size: 19px;
  }

  .fleet-showcase img {
    max-height: 190px;
  }

  .fleet-table,
  .fleet-table table,
  .fleet-table tbody,
  .fleet-table tr,
  .fleet-table th,
  .fleet-table td {
    display: block;
    width: 100%;
  }

  .fleet-table caption {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
  }

  .fleet-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .fleet-table tbody tr:not(.table-group) {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    background: var(--paper);
  }

  .fleet-table th,
  .fleet-table td {
    display: grid;
    min-height: 45px;
    padding: 11px 14px;
    border-bottom: 1px solid var(--line-soft);
    grid-template-columns: minmax(110px, 0.8fr) minmax(0, 1.2fr);
    gap: 12px;
  }

  .fleet-table th::before,
  .fleet-table td::before {
    color: var(--steel);
    content: attr(data-label);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .fleet-table .table-group,
  .fleet-table .fleet-table__group {
    margin: 25px 0 10px;
  }

  .fleet-table .table-group th,
  .fleet-table .fleet-table__group th {
    display: block;
    padding: 12px 14px;
  }

  .fleet-table .table-group th::before,
  .fleet-table .fleet-table__group th::before {
    content: none;
  }

  .equipment-panel__body,
  .equipment-panel__note,
  .department-card,
  .request-form,
  .legal-toc {
    padding: 28px 24px;
  }

  .media-stack {
    gap: 70px;
  }

  .media-row__image {
    min-height: 300px;
  }

  .media-row__copy h3 {
    font-size: 39px;
  }

  .page-callout {
    padding-block: 66px;
  }

  .page-callout::after {
    right: 20px;
    width: 5px;
  }

  .page-callout p {
    max-width: calc(100% - 28px);
    font-size: 31px;
  }

  .page-callout.page-callout--quiet {
    padding: 28px 24px;
  }

  .page-callout.page-callout--quiet p {
    max-width: none;
    font-size: clamp(25px, 7vw, 28px);
  }

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

  .form-field,
  .form-field--full,
  .consent,
  .form-actions,
  .form-status {
    grid-column: 1;
  }

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

  .form-actions .button,
  .request-form .button {
    width: 100%;
  }

  .client-badge {
    min-height: 140px;
  }

  .job-card summary {
    min-height: 108px;
    padding: 24px 18px;
    font-size: 28px;
  }

  .job-card__body {
    padding: 0 22px 34px;
  }

  details.job-card summary {
    grid-template-columns: 22px minmax(0, 1fr) 30px;
    gap: 13px;
  }

  .job-card__content {
    padding: 0 22px 34px;
  }

  .job-card__content dl > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .job-card__action {
    width: 100%;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 330px;
  }

  .map-frame iframe[hidden] + figcaption {
    margin-top: 170px;
  }

  .map-frame.is-map-locked {
    min-height: 260px;
  }

  .map-frame__toggle {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
  }

  .map-frame.is-map-locked .map-frame__toggle {
    top: 92px;
    left: 50%;
    transform: translateX(-50%);
  }

  .requisites-grid dl {
    grid-template-columns: 1fr;
  }

  dl.requisites-grid > div {
    grid-template-columns: 1fr;
  }

  .requisites-grid dt {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .requisites-grid dd {
    padding-top: 0;
  }

  dl.requisites-grid > div dt {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  dl.requisites-grid > div dd {
    padding-top: 0;
  }

  .legal-section h2 {
    font-size: 32px;
  }

  .legal-section__back {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    margin-top: 8px;
    border-bottom: 1px solid currentColor;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
  }

  .message-dock {
    display: none;
  }
}

@media (max-width: 900px) {
  .home-page .hero__copy {
    max-width: 760px;
    padding-block: 70px 58px;
  }

  .home-page .hero__visual {
    margin-block: 0;
  }

  .home-page .services-mosaic {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "transport" "warehouse" "photo" "third";
  }

  .home-page .service-card {
    min-height: 0;
  }

  .home-page .service-photo {
    min-height: 0;
    height: 420px;
  }
}

@media (max-width: 700px) {
  .home-page .hero {
    background:
      linear-gradient(122deg, rgba(112, 212, 242, 0.12) 0 34%, transparent 34.2%),
      var(--paper);
  }

  .home-page .hero::before {
    width: 72vw;
    opacity: 0.62;
  }

  .home-page .hero__copy {
    padding-block: 58px 48px;
  }

  .home-page .hero h1 {
    font-size: clamp(40px, 11.7vw, 50px);
    line-height: 0.98;
  }

  .home-page .eyebrow,
  .home-page .section-kicker {
    font-size: 10.5px;
  }

  .home-page .hero__lead {
    margin-top: 22px;
    font-size: 16px;
  }

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

  .home-page .hero__facts {
    margin-top: 28px;
  }

  .home-page .hero__facts div {
    padding: 16px 0;
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .home-page .hero__facts dt {
    font-size: 23px;
    white-space: nowrap;
  }

  .home-page .hero__facts div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .home-page .hero__visual {
    clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%, 0 18px);
  }

  .hero__route-chip {
    top: 18px;
    left: 18px;
    min-height: 34px;
    padding: 8px 10px;
  }

  .hero__route-chip i {
    width: 32px;
  }

  .home-page .statement__inner {
    min-height: 0;
  }

  .home-page .service-card {
    padding: 32px 24px 38px;
  }

  .home-page .service-card--third-party {
    background:
      linear-gradient(90deg, rgba(242, 246, 248, 0.98), rgba(242, 246, 248, 0.88)),
      url("assets/web/service-fuel-tanker.webp") center / cover;
  }

  .home-page .service-photo {
    height: 320px;
  }

  .home-page .logo-carousel figure {
    min-height: 158px;
  }

  .home-page .logo-carousel__toolbar {
    min-height: 62px;
    gap: 10px;
    padding: 9px 10px 9px 14px;
  }

  .home-page .logo-carousel__meta {
    gap: 9px;
  }

  .home-page .logo-carousel__meta > i {
    width: 8px;
    height: 8px;
  }

  .home-page .logo-carousel__meta strong {
    font-size: 11px;
  }

  .home-page .logo-carousel__toolbar .carousel-controls {
    gap: 2px;
  }

  .home-page .logo-carousel__toolbar .carousel-controls button {
    width: 44px;
    height: 44px;
  }

  .home-page .logo-carousel__viewport {
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent, #000 14px, #000 calc(100% - 14px), transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 14px, #000 calc(100% - 14px), transparent);
  }

  .home-page .logo-carousel__track {
    grid-auto-columns: min(80%, 320px);
  }

  .home-page .trust-band {
    background:
      linear-gradient(rgba(0, 47, 88, 0.94), rgba(0, 64, 121, 0.94)),
      url("assets/web/cta-brand-detail.webp") center / cover;
  }

  .home-page .retail-logos figure {
    min-height: 124px;
  }
}

@media (max-width: 360px) {
  .home-page .hero h1 {
    font-size: 39px;
  }

  .home-page .service-card h3 {
    font-size: 31px;
  }

  details.job-card summary {
    grid-template-columns: 18px minmax(0, 1fr) 28px;
    gap: 10px;
    font-size: 26px;
  }
}

/* Responsive layout for the contacts directory and vacancy board. */

@media (max-width: 900px) {
  .contact-directory__heading,
  .contact-directory__layout,
  .contact-requisites__layout,
  .career-promise__inner,
  .career-board__layout {
    grid-template-columns: 1fr;
  }

  .contact-directory__heading {
    gap: 14px;
  }

  .contact-directory__lead,
  .career-board__sidebar {
    position: static;
  }

  .contact-directory__lead {
    min-height: 0;
  }

  .contact-directory__number {
    margin-bottom: 34px;
  }

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

  .locations-grid .map-frame {
    align-self: start;
  }

  .career-promise__inner {
    gap: 34px;
  }

  .career-promise__copy {
    max-width: 720px;
  }

  .career-board__sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.42fr);
    align-items: end;
    gap: 0 34px;
  }

  .career-board__sidebar > .section-kicker,
  .career-board__sidebar > h2,
  .career-board__sidebar > p:not(.section-kicker) {
    grid-column: 1;
  }

  .career-board__contact,
  .career-board__sidebar > .button {
    grid-column: 2;
  }

  .career-board__contact {
    grid-row: 1 / span 3;
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  .page-hero--contacts .page-hero__copy,
  .page-hero--careers .page-hero__copy {
    padding-block: 46px 40px;
  }

  .page-hero--contacts h1,
  .page-hero--careers h1 {
    font-size: clamp(40px, 12vw, 49px);
    overflow-wrap: break-word;
  }

  .page-hero--contacts .page-hero__visual,
  .page-hero--careers .page-hero__visual {
    height: 280px;
  }

  .contact-directory {
    padding-block: 64px;
  }

  .contact-directory__heading {
    margin-bottom: 30px;
    padding-bottom: 26px;
  }

  .contact-directory__heading h2,
  .contact-requisites__heading h2,
  .career-promise__copy h2,
  .career-board__sidebar h2 {
    font-size: 38px;
  }

  .contact-directory__layout {
    gap: 22px;
  }

  .contact-directory__lead {
    padding: 30px 24px 34px;
  }

  .contact-directory__lead h3 {
    font-size: 37px;
  }

  .contact-entry {
    padding: 24px 20px 26px;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 14px;
  }

  .contact-entry__links {
    grid-column: 2;
    margin-top: 4px;
  }

  .contact-entry__copy h3 {
    font-size: 28px;
  }

  .locations-grid {
    gap: 14px;
  }

  .locations-grid .map-frame,
  .locations-grid .map-frame.is-map-locked {
    min-height: 258px;
  }

  .locations-grid .map-frame iframe[hidden] + figcaption {
    margin-top: 132px;
  }

  .contact-requisites__layout {
    gap: 34px;
  }

  .career-promise__inner {
    padding-block: 44px;
  }

  .career-promise__facts {
    grid-template-columns: 1fr;
  }

  .career-promise__facts > div {
    display: grid;
    min-height: 72px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
    grid-template-columns: 100px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
  }

  .career-promise__facts dt {
    font-size: 31px;
  }

  .career-promise__facts dd {
    margin: 0;
  }

  .career-board__layout {
    gap: 36px;
  }

  .career-board__sidebar {
    display: block;
    padding: 30px 24px;
  }

  .career-board__contact {
    margin-top: 30px;
  }

  .career-board__topline {
    min-height: 40px;
    margin-bottom: 8px;
  }

  .career-board .job-card summary {
    padding: 21px 16px;
    grid-template-columns: 20px minmax(0, 1fr) 30px;
    gap: 12px;
  }

  .career-board .job-card__toggle {
    width: 30px;
    height: 30px;
  }

  .job-card__heading strong {
    font-size: 27px;
  }

  .job-card__preview {
    font-size: 11px;
  }

  .career-board .job-card__content {
    padding: 6px 18px 28px 48px;
  }

  .career-board .job-card__action {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 360px) {
  .page-hero--contacts h1,
  .page-hero--careers h1 {
    font-size: 38px;
  }

  .contact-entry__links a {
    font-size: 12px;
  }

  .job-card__heading strong {
    font-size: 25px;
  }

  .career-board .job-card summary {
    grid-template-columns: 18px minmax(0, 1fr) 28px;
    gap: 9px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal-pending,
  .reveal-pending.is-visible,
  .route-map.reveal-pending,
  .route-map.reveal-pending .route-map__city {
    opacity: 1 !important;
    transform: none !important;
  }

  .route-map.reveal-pending .route-map__route {
    stroke-dashoffset: 0 !important;
  }

  [data-reveal="image"].reveal-pending img {
    transform: none !important;
  }

}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--paper);
    backdrop-filter: none;
  }

  .hero__visual figcaption,
  .page-hero__visual figcaption {
    background: var(--blue);
  }
}

@media (prefers-contrast: more) {
  .site-header {
    border-bottom: 2px solid var(--blue);
    background: var(--paper);
    backdrop-filter: none;
  }

  .hero__visual figcaption,
  .page-hero__visual figcaption,
  .service-photo figcaption,
  .route-map {
    outline: 2px solid currentColor;
  }
}
