@font-face {
  font-family: "Tainv Sans";
  src: url("/assets/media/fonts/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Tainv Sans";
  src: url("/assets/media/fonts/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w7Y3tcoqK5.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --ink: #0d202c;
  --ink-soft: #425863;
  --navy: #071e2c;
  --navy-light: #12394c;
  --blue: #0874b9;
  --green: #00a943;
  --snow: #f7fafb;
  --ice: #e4edf1;
  --line: #c8d5db;
  --white: #fff;
  --max: 1280px;
  --header: 88px;
  --radius: 14px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scrollbar-color: var(--navy-light) var(--ice);
  scrollbar-width: thin;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Tainv Sans", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgba(4, 20, 30, .22);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms var(--ease);
}

body.menu-open::before {
  opacity: 1;
  pointer-events: auto;
}

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

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: .28em;
}

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

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

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -.025em;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.6rem);
}

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

h3 {
  font-size: clamp(1.25rem, 2.1vw, 2rem);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
  transition: transform .2s var(--ease);
}

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

.site-header {
  position: relative;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: var(--header);
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(7, 30, 44, .14);
  background: rgba(255, 255, 255, .97);
  transition:
    background-color 240ms var(--ease-out),
    border-color 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out),
    backdrop-filter 240ms var(--ease-out);
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, .82);
  background: rgba(236, 245, 249, .8);
  box-shadow:
    0 20px 48px rgba(7, 30, 44, .2),
    inset 0 1px 0 rgba(255, 255, 255, .9),
    inset 0 -1px 0 rgba(255, 255, 255, .28);
  -webkit-backdrop-filter: blur(22px) saturate(180%) contrast(105%);
  backdrop-filter: blur(22px) saturate(180%) contrast(105%);
}

.site-header {
  position: fixed;
  top: 18px;
  right: max(20px, calc((100% - 1360px) / 2));
  left: max(20px, calc((100% - 1360px) / 2));
  width: auto;
  min-height: 72px;
  padding: 0 clamp(20px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 18px;
  background: rgba(236, 245, 249, .8);
  box-shadow:
    0 18px 44px rgba(7, 30, 44, .16),
    inset 0 1px 0 rgba(255, 255, 255, .9),
    inset 0 -1px 0 rgba(255, 255, 255, .28);
  transform: none;
  -webkit-backdrop-filter: blur(22px) saturate(180%) contrast(105%);
  backdrop-filter: blur(22px) saturate(180%) contrast(105%);
}

.site-header::before,
.site-header::after {
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.site-header::before {
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, .58), rgba(255, 255, 255, .12) 38%, transparent 58%, rgba(255, 255, 255, .18));
}

.site-header::after {
  inset: 1px;
  background: radial-gradient(130% 190% at 0% 0%, rgba(255, 255, 255, .42), transparent 42%);
}

.site-header > * {
  z-index: 1;
}

.brand {
  display: inline-flex;
  width: auto;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  text-decoration: none;
  transition: opacity 160ms ease, transform 120ms var(--ease);
}

.brand:hover {
  opacity: .82;
}

.brand:active {
  transform: scale(.97);
}

.brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.brand-name {
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: .88;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 34px);
}

.site-nav a,
.footer-nav a {
  position: relative;
  padding: 11px 0;
  color: var(--ink);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .035em;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, transform 120ms var(--ease);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.site-nav a,
.brand-name,
.menu-toggle {
  color: var(--ink);
  opacity: 1;
  text-shadow: none;
  mix-blend-mode: normal;
}

.menu-toggle {
  display: none;
}

morph-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

morph-icon svg {
  display: block;
  overflow: visible;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: min(860px, calc(100svh - var(--header)));
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 18, 28, .88) 0%, rgba(3, 18, 28, .64) 48%, rgba(3, 18, 28, .24) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(var(--max), calc(100% - 48px));
  min-height: min(860px, calc(100svh - var(--header)));
  margin: 0 auto;
  padding: clamp(90px, 13vh, 150px) 0 clamp(70px, 9vh, 110px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 26px;
  font-weight: 700;
}

.hero-title-break {
  display: none;
}

.hero h1::after {
  display: block;
  width: 86px;
  height: 6px;
  margin-top: 24px;
  background: var(--green);
  content: "";
}

@media (min-width: 1280px) {
  .hero h1 {
    max-width: none;
    white-space: nowrap;
  }

  .hero-title-break {
    display: block;
  }
}

.home-story-stack {
  position: relative;
  isolation: isolate;
}

.page-home .hero {
  position: sticky;
  z-index: 1;
  top: 0;
  height: 100svh;
  min-height: 100svh;
}

.page-home .hero-content {
  height: 100svh;
  min-height: 100svh;
}

.hero p {
  max-width: 62ch;
  margin-bottom: 34px;
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  line-height: 1.55;
}

.hero-link,
.text-link,
.list-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
}

.hero-link span,
.text-link span,
.list-link span {
  transition: transform .25s var(--ease);
}

.hero-link,
.text-link,
.list-link {
  transition: color 160ms ease, transform 110ms var(--ease);
}

.hero-link:active,
.text-link:active,
.list-link:active {
  transform: scale(.98);
}

.content-section {
  padding: clamp(76px, 9vw, 144px) 24px;
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  margin-bottom: clamp(40px, 5vw, 74px);
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, .7fr);
  gap: 40px;
  align-items: end;
}

.section-heading h2 {
  margin: 0;
}

.section-heading h2::after {
  display: block;
  width: clamp(80px, 9vw, 130px);
  height: 4px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--blue) 0 48%, var(--green) 48% 100%);
  content: "";
}

.section-intro {
  margin: 0;
  color: var(--ink-soft);
}

.about-section {
  background: var(--snow);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
  gap: clamp(44px, 7vw, 108px);
  align-items: start;
}

.lead-copy {
  max-width: 68ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.78;
}

.about-media {
  display: grid;
  min-height: 650px;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: 1fr .7fr;
  gap: 14px;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: var(--radius);
  object-fit: cover;
}

.about-media img:first-child {
  grid-row: 1 / 3;
}

.about-media img:nth-child(4),
.about-media img:nth-child(5) {
  display: none;
}

.page-home .about-section {
  padding: clamp(72px, 7vw, 112px) 24px;
  background-color: var(--snow);
  background-image:
    linear-gradient(90deg, rgba(247, 250, 251, .98) 0%, rgba(247, 250, 251, .92) 56%, rgba(247, 250, 251, .76) 100%),
    url("/assets/media/2025/03/Сотрудничество-1.jpeg");
  background-position: center;
  background-size: cover;
}

.page-home .about-section .section-inner {
  padding: 0;
  border-radius: 0;
  color: var(--ink);
  background: none;
}

.page-home .about-section .section-heading h2 {
  color: var(--ink);
}

.page-home .about-section .lead-copy {
  max-width: 72ch;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  line-height: 1.64;
}

.page-home .about-section .section-heading {
  display: block;
  margin-bottom: clamp(30px, 3vw, 44px);
}

.page-home .about-section .about-layout {
  display: block;
}

.page-home .about-section .about-media {
  display: none;
}

.partners-section {
  padding-bottom: 90px;
}

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

.partner-list li {
  min-height: 118px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.partner-list li:nth-child(4n + 1) {
  border-left: 1px solid var(--line);
}

.logistics-story {
  position: relative;
  z-index: 4;
  min-height: 100svh;
  margin-top: 0;
  overflow: clip;
  border-radius: 28px 28px 0 0;
  background: var(--snow);
}

.js .logistics-story {
  height: 620svh;
}

.story-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  border-radius: inherit;
  background: #f1f5f7;
  isolation: isolate;
}

.story-media,
.story-video,
.story-wash {
  position: absolute;
  inset: 0;
}

.story-media {
  z-index: 0;
  background: #f1f5f7;
  contain: paint;
}

.story-video {
  width: 100%;
  height: 100%;
  max-width: none;
  opacity: 0;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  backface-visibility: hidden;
  transform: translateZ(0);
  contain: paint;
  will-change: opacity;
}

.story-video.is-active {
  opacity: 1;
}

.story-wash {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(247, 250, 251, .98) 0%, rgba(247, 250, 251, .9) 28%, rgba(247, 250, 251, .2) 53%, transparent 68%),
    linear-gradient(0deg, rgba(247, 250, 251, .48), transparent 32%);
  pointer-events: none;
}

.story-about,
.story-partners {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - var(--max)) / 2));
  left: max(24px, calc((100vw - var(--max)) / 2));
}

.story-about {
  top: clamp(110px, 17vh, 190px);
  width: min(560px, 44vw);
  color: var(--ink);
}

.story-about h2,
.story-partners h2 {
  margin-bottom: clamp(28px, 4vw, 52px);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 700;
}

.story-about h2::after,
.story-partners h2::after {
  display: block;
  width: 96px;
  height: 4px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--blue) 0 48%, var(--green) 48% 100%);
  content: "";
}

.story-about p {
  max-width: 64ch;
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.65;
}

.story-partners {
  top: clamp(82px, 11vh, 126px);
  color: var(--ink);
}

.story-partners::before {
  position: absolute;
  z-index: -1;
  inset: -34px -8vw -54px;
  background: linear-gradient(180deg, rgba(247, 250, 251, .98) 0%, rgba(247, 250, 251, .9) 68%, rgba(247, 250, 251, 0) 100%);
  content: "";
  pointer-events: none;
}

.js .story-partners {
  opacity: 0;
  pointer-events: none;
}

.story-partners h2 {
  max-width: 10ch;
  margin-bottom: clamp(26px, 4vh, 46px);
  font-size: clamp(2rem, 4.2vw, 4.5rem);
}

.story-partners ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
}

.story-partners li {
  min-height: 82px;
  padding: 18px 22px 18px 0;
  border-top: 1px solid rgba(13, 32, 44, .25);
  font-size: clamp(.88rem, 1.15vw, 1.05rem);
  font-weight: 700;
  line-height: 1.35;
}

.js .story-partners li {
  opacity: 0;
  transform: translateY(28px);
}

.story-services {
  position: absolute;
  z-index: 2;
  inset: 0;
  color: var(--ink);
  pointer-events: none;
}

.story-services::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 250, 251, .84) 0 30%, rgba(247, 250, 251, .28) 56%, transparent 78%);
  content: "";
}

.js .story-services,
.js .story-service {
  opacity: 0;
}

.story-services > h2 {
  position: absolute;
  z-index: 2;
  top: clamp(92px, 12vh, 130px);
  right: max(24px, calc((100vw - var(--max)) / 2));
  left: max(24px, calc((100vw - var(--max)) / 2));
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 4.7rem);
  font-weight: 700;
}

.story-services > h2::after {
  display: block;
  width: 96px;
  height: 4px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--blue) 0 48%, var(--green) 48% 100%);
  content: "";
}

.story-service {
  position: absolute;
  z-index: 1;
  top: clamp(275px, 38vh, 350px);
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: clamp(24px, 4vh, 48px);
  left: max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  max-width: var(--max);
  margin: 0 auto;
  align-items: center;
  will-change: opacity, transform;
}

.story-service > div {
  width: min(560px, 46vw);
  padding: clamp(24px, 3vw, 36px);
  border-radius: 16px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 24px 70px rgba(4, 24, 36, .16);
}

.story-service p {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.story-service h3 {
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 1.8vw, 1.85rem);
  line-height: 1.16;
}

.story-service a {
  min-height: 44px;
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 7px;
  text-decoration-color: var(--green);
}

@media (min-width: 981px) and (max-height: 650px) {
  .story-service { top: 285px; bottom: 12px; }
  .story-service > div { padding: 24px; }
}

.story-progress {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 28px;
  width: min(180px, 22vw);
  height: 2px;
  overflow: hidden;
  background: rgba(13, 32, 44, .16);
}

.story-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
}

.map-section {
  padding-inline: 0;
  color: var(--white);
  background: #000;
}

.page-home .map-section {
  position: relative;
  z-index: 6;
  margin-top: -120svh;
  border-radius: 0;
  box-shadow: none;
}

/* Keep the completed map and every following section above the long sticky
   story scene while their scroll ranges briefly overlap on tall screens. */
.page-home .map-section ~ .content-section {
  position: relative;
  z-index: 7;
  background: var(--white);
}

.map-section .section-inner {
  width: 100%;
  max-width: none;
}

.map-section .section-heading,
.presence-map__footer {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.map-section .section-heading h2::after {
  background: var(--green);
}

.map-frame {
  position: relative;
  min-height: 0;
}

.presence-map {
  padding: 0;
}

.presence-map__stage {
  position: relative;
  width: calc(100% - 48px);
  aspect-ratio: 8 / 5;
  margin-inline: auto;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #000;
  box-shadow: none;
}

.presence-map__outline {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
}

.presence-point {
  position: absolute;
  z-index: 2;
  top: var(--y);
  left: var(--x);
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  -webkit-tap-highlight-color: transparent;
}

.presence-point::before,
.presence-point::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.presence-point::before {
  width: 14px;
  height: 14px;
  background: var(--green);
  box-shadow: 0 4px 12px rgba(0, 44, 61, .32);
  transition: transform 180ms cubic-bezier(.16, 1, .3, 1), background-color 180ms ease;
}

.presence-point::after {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(0, 184, 92, .42);
  opacity: .7;
  transition: transform 220ms cubic-bezier(.16, 1, .3, 1), opacity 180ms ease;
}

.presence-point span {
  position: absolute;
  z-index: 3;
  bottom: calc(100% + 8px);
  left: 50%;
  width: max-content;
  max-width: min(240px, 58vw);
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 25, 36, .24);
  font-size: clamp(.72rem, 1.2vw, .88rem);
  font-weight: 700;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 150ms ease, transform 180ms cubic-bezier(.16, 1, .3, 1);
}

.presence-point--east span {
  right: 0;
  left: auto;
  transform: translate(0, 8px);
}

.presence-point:focus-visible::before,
.presence-point.is-active::before {
  background: var(--blue);
  transform: translate(-50%, -50%) scale(1.18);
}

.presence-point:active::before {
  transform: translate(-50%, -50%) scale(.84);
  transition-duration: 80ms;
}

.presence-point:focus-visible,
.presence-point.is-active {
  z-index: 10;
}

.presence-point:focus-visible::after,
.presence-point.is-active::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.28);
}

.presence-point:focus-visible span,
.presence-point.is-active span {
  opacity: 1;
  transform: translate(-50%, 0);
}

.presence-point--east:focus-visible span,
.presence-point--east.is-active span {
  transform: translate(0, 0);
}

.presence-point:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.presence-map__hint {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .84rem;
  line-height: 1.5;
}

.presence-map__notes {
  display: grid;
  gap: 18px;
}

.estimate-note {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 24px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 6px 14px;
  color: var(--ink-soft);
  font-size: .78rem;
  line-height: 1.4;
}

.estimate-note span {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
}

.estimate-note span::before {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.estimate-note time {
  font-variant-numeric: tabular-nums;
}

.estimate-note .estimate-method {
  flex-basis: 100%;
  max-width: 65ch;
}

.footer-estimate {
  display: block;
  margin-top: 12px;
  font-size: .8rem;
  line-height: 1.5;
  font-weight: 400;
}

.estimate-note--dark {
  margin-top: 0;
  border-color: rgba(255, 255, 255, .28);
  color: #d4e4eb;
}

.estimate-note--dark span {
  color: var(--white);
}

.presence-map__footer {
  display: grid;
  margin-top: clamp(24px, 3vw, 44px);
  grid-template-columns: minmax(220px, .55fr) minmax(680px, 1.45fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}

.presence-summary {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .28);
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.presence-summary li {
  display: flex;
  min-height: 138px;
  padding: 22px clamp(18px, 2.3vw, 34px) 10px;
  border-left: 1px solid rgba(255, 255, 255, .18);
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.presence-summary li:last-child {
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.presence-summary strong {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.035em;
}

.presence-summary sup {
  margin-left: .08em;
  color: var(--green);
  font-size: .42em;
  vertical-align: top;
}

.presence-summary li > span {
  max-width: 20ch;
  color: #d4e4eb;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.35;
}

@media (min-width: 1025px) {
  .map-section {
    min-height: 100svh;
    padding-top: clamp(82px, 8svh, 104px);
    padding-bottom: clamp(22px, 3svh, 34px);
  }

  .map-section .section-heading {
    margin-bottom: clamp(18px, 2.2svh, 28px);
  }

  .map-section .section-heading h2::after {
    margin-top: 16px;
  }

  .presence-map__stage {
    width: min(var(--max), calc(53svh * 1.6), calc(100% - 48px));
  }

  .presence-map__footer {
    margin-top: clamp(14px, 1.8svh, 22px);
    gap: clamp(28px, 4vw, 56px);
  }

  .presence-summary li {
    min-height: clamp(96px, 10svh, 118px);
    padding-top: 16px;
    padding-bottom: 8px;
    gap: 12px;
  }

}

.news-feature {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
}

.news-copy time {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.news-copy h3 {
  margin-bottom: 26px;
}

.news-copy h3 a {
  text-decoration: none;
}

.news-copy p {
  max-width: 62ch;
  color: var(--ink-soft);
}

.news-copy .text-link {
  margin-top: 12px;
}

.news-image {
  overflow: hidden;
  border-radius: var(--radius);
}

.news-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 260ms var(--ease-out);
}

.services-section {
  background: var(--snow);
}

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

.service-teaser {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.service-teaser-1,
.service-teaser-4 {
  grid-column: span 7;
}

.service-teaser-2,
.service-teaser-5 {
  grid-column: span 5;
}

.service-teaser-3 {
  grid-column: span 12;
  min-height: 450px;
}

.service-teaser img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .58;
  object-fit: cover;
  transition: opacity 240ms var(--ease-out), transform 260ms var(--ease-out);
}

.service-teaser::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 12%, rgba(4, 24, 36, .94) 100%);
  content: "";
}

.service-teaser > div {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 4vw, 52px);
  bottom: clamp(24px, 4vw, 48px);
  left: clamp(24px, 4vw, 52px);
}

.service-teaser > div > p {
  margin-bottom: 14px;
  color: #b5d9e9;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.service-teaser h3 {
  max-width: 27ch;
  margin-bottom: 18px;
}

.service-teaser a {
  min-height: 44px;
  color: var(--white);
  font-weight: 700;
  text-decoration-color: var(--green);
}

.list-link {
  margin-top: 28px;
  color: var(--ink);
}

.resources-section {
  padding-bottom: clamp(100px, 12vw, 180px);
}

.resource-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.resource-panel::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(105deg, rgba(7, 30, 44, .96) 0%, rgba(7, 30, 44, .86) 42%, rgba(7, 30, 44, .58) 72%, rgba(7, 30, 44, .72) 100%);
}

.resource-slideshow {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: var(--navy);
}

.resource-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.055);
  transition: opacity 900ms var(--ease-in-out), transform 6000ms linear;
  will-change: opacity, transform;
}

.resource-slideshow img.is-active {
  opacity: 1;
  transform: scale(1.015);
}

.resource-summary {
  position: relative;
  z-index: 2;
  padding: clamp(34px, 5vw, 66px);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.resource-summary h3 {
  margin-bottom: 36px;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
}

.progress-label {
  display: flex;
  margin-bottom: 12px;
  justify-content: space-between;
  gap: 20px;
  color: #d6e6ec;
  font-size: .88rem;
}

.progress-label strong {
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.progress-track {
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
}

.progress-track span {
  display: block;
  width: 87%;
  height: 100%;
  background: var(--green);
}

.metrics-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(7, 30, 44, .2);
}

.metric {
  min-height: 190px;
  padding: 34px clamp(24px, 4vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.metric:nth-child(3n) {
  border-right: 0;
}

.metric:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.metric strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.metric span {
  color: #d6e6ec;
  line-height: 1.4;
}

.transport-story {
  position: relative;
  padding: 0;
  overflow: clip;
  color: var(--ink);
  background: #fff;
}

.transport-sticky {
  width: min(100%, 1720px);
  min-height: 100svh;
  margin-inline: auto;
  padding: clamp(112px, 10vh, 150px) clamp(24px, 5vw, 88px) clamp(42px, 7vh, 82px);
}

.transport-heading {
  position: relative;
  z-index: 3;
  max-width: 31rem;
}

.transport-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.transport-heading h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.5rem, 4.7vw, 5.5rem);
  line-height: .94;
}

.transport-heading h2::after {
  display: block;
  width: 104px;
  height: 4px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--blue) 0 48%, var(--green) 48% 100%);
  content: "";
}

.transport-total {
  max-width: 18ch;
  margin: clamp(24px, 4vh, 42px) 0 0;
  color: #4c6473;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.35;
}

.transport-total strong {
  color: var(--ink);
  font-size: 1.16em;
  font-variant-numeric: tabular-nums;
}

.transport-heading .estimate-note {
  max-width: 22rem;
}

.transport-sequence {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
}

.transport-slide {
  min-width: 0;
}

.transport-slide figure {
  margin: 0;
}

.transport-slide .vehicle-art {
  display: block;
  min-width: 0;
  mix-blend-mode: multiply;
  overflow: hidden;
}

.vehicle-art [data-vehicle-wheel] {
  transform-box: view-box;
}

.js .transport-slide svg.vehicle-art {
  height: 100%;
  min-height: 0;
  max-height: 100%;
}

@media (max-width: 1024px) and (max-height: 800px) {
  .js .transport-heading h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); line-height: 1.04; }
  .js .transport-heading h2::after { margin-top: 12px; }
  .js .transport-heading .estimate-note { width: 100%; max-width: none; margin-top: 16px; gap: 4px 10px; }
  .js .transport-heading .estimate-note small { font-size: .72rem; }
  .js .transport-slide figcaption strong { font-size: 3.5rem; }
}

html.motion-paused .transport-slide svg.vehicle-art { height: 260px; }

@media (min-width: 1025px) {
  .transport-heading h2 { font-size: clamp(2.25rem, 3vw, 4.25rem); }
}

.js .transport-sequence {
  overflow: hidden;
}

.transport-slide img,
.transport-slide .vehicle-art {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: contain;
}

.transport-slide figcaption {
  display: grid;
  grid-template-columns: auto minmax(0, 18rem);
  gap: 18px;
  align-items: end;
  justify-content: start;
  margin-top: 12px;
}

.transport-slide figcaption strong {
  color: var(--ink);
  font-size: clamp(3.3rem, 6.4vw, 7rem);
  line-height: .78;
  letter-spacing: -.055em;
  font-variant-numeric: tabular-nums;
}

.transport-slide figcaption span {
  color: #405867;
  font-size: clamp(.95rem, 1.35vw, 1.18rem);
  font-weight: 700;
  line-height: 1.25;
}

.transport-progress {
  display: none;
}

.js .transport-story {
  height: 300svh;
}

.js .transport-sticky {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.65fr);
  gap: clamp(36px, 5vw, 86px);
  align-items: center;
  height: 100svh;
  overflow: hidden;
}

.js .transport-sequence {
  position: relative;
  display: block;
  height: min(72svh, 760px);
  margin: 0;
}

.js .transport-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(24vw, 0, 0);
  transition: none;
  will-change: transform, opacity;
  mix-blend-mode: multiply;
  min-height: 0;
  grid-template-rows: minmax(0, 1fr);
}

.js .transport-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.js .transport-slide.is-before {
  transform: translate3d(-24vw, 0, 0);
}

.js .transport-slide figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: end;
  height: 100%;
  min-height: 0;
}

.js .transport-slide img,
.js .transport-slide .vehicle-art {
  width: 100%;
  height: min(55svh, 590px);
  filter: none;
  object-fit: contain;
}

.js .transport-slide figcaption {
  min-height: 118px;
  margin-top: 0;
  padding-left: clamp(12px, 3vw, 46px);
}

.js .transport-progress {
  position: absolute;
  right: clamp(24px, 5vw, 88px);
  bottom: clamp(24px, 4vh, 48px);
  left: clamp(24px, 5vw, 88px);
  display: grid;
  grid-template-columns: auto minmax(80px, 240px) auto;
  gap: 14px;
  align-items: center;
  justify-content: end;
  color: #607581;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  font-variant-numeric: tabular-nums;
}

.transport-progress i {
  display: block;
  height: 2px;
  overflow: hidden;
  background: rgba(7, 30, 44, .16);
}

.transport-progress b {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green);
  transform: scaleX(.16667);
  transform-origin: left center;
  transition: none;
}

.workforce-section {
  padding: clamp(72px, 8vw, 124px) 24px;
  background: var(--snow);
}

.workforce-stage {
  position: relative;
  min-height: clamp(620px, 60vw, 780px);
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  isolation: isolate;
}

.workforce-stage::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(ellipse at 94% 0%, rgba(4, 24, 36, .76), transparent 38%),
    linear-gradient(90deg, rgba(4, 24, 36, .94) 0%, rgba(4, 24, 36, .72) 38%, rgba(4, 24, 36, .12) 68%, transparent 100%),
    linear-gradient(0deg, rgba(4, 24, 36, .62), transparent 54%);
  content: "";
  pointer-events: none;
}

.workforce-stage .workforce-copy {
  position: absolute;
  z-index: 1;
  bottom: clamp(38px, 5vw, 70px);
  left: clamp(32px, 5vw, 72px);
  width: min(620px, 51%);
}

.workforce-stage .workforce-copy h2 {
  max-width: 9ch;
  margin-bottom: clamp(24px, 3vw, 38px);
  color: var(--white);
  font-size: clamp(2.6rem, 5.2vw, 5.4rem);
  line-height: .96;
  letter-spacing: -.045em;
}

.workforce-stage .workforce-copy h2::after {
  display: block;
  width: 96px;
  height: 4px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--blue) 0 48%, var(--green) 48% 100%);
  content: "";
}

.workforce-stage .workforce-copy p {
  max-width: 58ch;
  margin-bottom: 24px;
  color: #e4eef2;
  font-size: clamp(.98rem, 1.35vw, 1.14rem);
  line-height: 1.6;
}

.workforce-stage .workforce-copy .text-link {
  color: var(--white);
}

.workforce-stage .workforce-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.workforce-metric {
  position: absolute;
  z-index: 1;
  top: clamp(30px, 4vw, 58px);
  right: clamp(30px, 4vw, 58px);
  display: grid;
  max-width: 180px;
  margin: 0;
  color: var(--white);
  text-align: right;
}

.workforce-metric strong {
  font-size: clamp(3.4rem, 6vw, 6.4rem);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  line-height: .86;
  letter-spacing: -.05em;
}

.workforce-metric span {
  margin-top: 14px;
  color: #d4e4eb;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.25;
}

.page-intro {
  padding: clamp(142px, 13vw, 196px) 24px clamp(65px, 8vw, 112px);
  color: var(--white);
  background: var(--navy);
}

.page-intro > div {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.page-intro h1 {
  max-width: 13ch;
  margin-bottom: 24px;
}

.page-intro h1::after {
  display: block;
  width: 100px;
  height: 5px;
  margin-top: 28px;
  background: var(--green);
  content: "";
}

.page-intro p {
  max-width: 62ch;
  margin-bottom: 0;
  color: #d4e4eb;
  font-size: 1.16rem;
}

.page-about .about-section {
  padding-top: clamp(70px, 8vw, 120px);
}

.service-list {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 124px) 0;
}

.service-detail {
  display: grid;
  padding: clamp(60px, 8vw, 120px) 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.service-detail:first-child {
  padding-top: 0;
}

.service-detail:last-child {
  border-bottom: 0;
}

.service-detail:nth-child(even) .service-copy {
  order: 2;
}

.service-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(1.7rem, 3.1vw, 3.2rem);
}

.service-copy p,
.service-copy li {
  color: var(--ink-soft);
}

.service-copy ul {
  padding-left: 1.2em;
}

.service-copy li + li {
  margin-top: 8px;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-gallery img {
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  object-fit: cover;
}

.service-gallery img:first-child:last-child,
.service-gallery img:nth-child(3) {
  grid-column: 1 / -1;
}

.category-nav {
  position: sticky;
  z-index: 20;
  top: 72px;
  display: flex;
  gap: clamp(22px, 3vw, 42px);
  overflow-x: auto;
  padding: 10px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .97);
}

.category-nav a {
  position: relative;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 11px 0;
  border: 0;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.category-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  opacity: 0;
  transform: scaleX(.45);
  transition: opacity 180ms var(--ease-out), transform 220ms var(--ease-out);
}

.category-nav a:focus-visible {
  color: var(--blue);
}

.vacancy-list {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 120px) 0;
}

.vacancy-group {
  padding: clamp(50px, 6vw, 90px) 0;
  scroll-margin-top: 150px;
  border-bottom: 1px solid var(--line);
}

.vacancy-group:first-child {
  padding-top: 0;
}

.vacancy-group > h2 {
  margin-bottom: 40px;
}

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

.vacancy:last-child {
  border-bottom: 1px solid var(--line);
}

.vacancy summary {
  position: relative;
  min-height: 76px;
  padding: 24px 68px 24px 0;
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.vacancy summary::before,
.vacancy summary::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 22px;
  height: 2px;
  background: var(--blue);
  content: "";
  transition: transform .25s var(--ease);
}

.vacancy summary::after {
  transform: rotate(90deg);
}

.vacancy[open] summary::after {
  transform: rotate(0);
}

.vacancy-body {
  max-width: 74ch;
  padding: 0 0 46px;
  color: var(--ink-soft);
}

.vacancy-body p,
.vacancy-body ul,
.vacancy-body ol {
  margin-bottom: 18px;
}

.vacancy-body li + li {
  margin-top: 7px;
}

.job-contact {
  display: grid;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto clamp(80px, 10vw, 150px);
  padding: clamp(34px, 5vw, 64px);
  color: var(--white);
  background: var(--navy);
  grid-template-columns: 1.4fr repeat(3, auto);
  gap: 24px;
  align-items: center;
}

.job-contact h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.job-contact a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.contact-layout {
  display: grid;
  width: min(var(--max), calc(100% - 48px));
  margin: clamp(70px, 8vw, 120px) auto;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-copy address {
  max-width: 34ch;
  font-style: normal;
}

.contact-copy a {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
}

.page-news .content-section {
  min-height: 620px;
}

.record-count {
  margin-top: 36px;
  color: var(--ink-soft);
  font-size: .86rem;
}

.article-page {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(132px, 12vw, 174px) 0 clamp(72px, 10vw, 150px);
}

.article-page > header {
  margin-bottom: 46px;
}

.article-page h1 {
  margin-bottom: 30px;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

.article-page header p {
  color: var(--ink-soft);
}

.article-image {
  width: 100%;
  margin-bottom: clamp(42px, 7vw, 78px);
  border-radius: var(--radius);
}

.article-body {
  max-width: 72ch;
  margin: 0 auto;
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
}

.article-body p {
  margin-bottom: 1.4em;
}

.status-page {
  display: grid;
  min-height: 62vh;
  padding: 132px 24px 80px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  text-align: center;
}

.status-page h1 {
  margin-bottom: 20px;
}

.site-footer {
  padding: clamp(68px, 9vw, 120px) 24px 34px;
  color: var(--white);
  background: var(--navy);
}

.footer-inner,
.footer-nav {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  padding-bottom: 56px;
  grid-template-columns: .7fr 1.3fr .8fr;
  gap: clamp(34px, 6vw, 90px);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand-lockup {
  display: inline-flex;
  min-height: 52px;
  margin-bottom: 22px;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  transition: opacity 160ms ease, transform 120ms var(--ease);
}

.footer-brand-lockup:hover {
  opacity: .84;
}

.footer-brand-lockup:active {
  transform: scale(.97);
}

.footer-brand-lockup img {
  display: block;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
}

.footer-brand-name {
  color: var(--white);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: .88;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.footer-brand p {
  color: #d4e4eb;
  font-weight: 700;
}

.footer-statement {
  max-width: 60ch;
  color: #d4e4eb;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-style: normal;
}

.footer-contacts a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
}

.footer-contacts span {
  color: #d4e4eb;
  font-size: .9rem;
}

.footer-nav {
  display: flex;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--white);
}

@media (max-width: 1024px) {
  :root {
    --header: 76px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-header {
    top: 12px;
    right: 12px;
    left: 12px;
    width: auto;
    min-height: 64px;
    padding: 0 14px;
    border-radius: 16px;
  }

  .brand,
  .brand img {
    width: auto;
  }

  .brand img {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-name {
    font-size: .92rem;
  }

  .presence-map__footer {
    grid-template-columns: 1fr;
  }

  .presence-map__hint {
    max-width: none;
  }

  .menu-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    border: 0;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: var(--ink);
    border-radius: 12px;
    background: transparent;
    font: inherit;
    font-size: .85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 160ms ease, transform 110ms var(--ease);
  }

  .menu-toggle:hover {
    background: rgba(255, 255, 255, .38);
  }

  .menu-toggle:active {
    transform: scale(.96);
  }

  .menu-mark {
    width: 28px;
    height: 28px;
  }

  .menu-mark svg {
    width: 28px;
    height: 28px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 0;
    display: flex;
    height: calc(100svh - 100px);
    max-height: calc(100svh - 100px);
    padding: clamp(28px, 6vw, 56px) clamp(24px, 6vw, 52px) max(28px, env(safe-area-inset-bottom));
    flex-direction: column;
    justify-content: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 16px;
    overflow-y: auto;
    background: rgba(247, 250, 251, .98);
    box-shadow: 0 24px 60px rgba(7, 30, 44, .22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    -webkit-backdrop-filter: blur(24px) saturate(145%);
    backdrop-filter: blur(24px) saturate(145%);
    transition: opacity 220ms var(--ease-out), transform 280ms var(--ease-out), visibility 220ms;
  }

  body.menu-keyboard .site-nav {
    transition: none;
  }

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

  .site-nav a {
    display: flex;
    width: 100%;
    min-height: 0;
    padding: clamp(15px, 2.5vh, 24px) 0;
    border: 0;
    border-radius: 0;
    align-items: center;
    color: var(--ink);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.025em;
    background: transparent;
    transition: color 160ms ease;
  }

  .site-nav a + a {
    border-top: 1px solid rgba(13, 32, 44, .14);
  }

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

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--blue);
    background: transparent;
  }

  .site-nav a:focus-visible {
    outline: 0;
    text-decoration: underline;
    text-decoration-color: var(--blue);
    text-decoration-thickness: 2px;
    text-underline-offset: .22em;
  }

  .site-nav a:active {
    transform: none;
  }

  body.menu-open::before {
    opacity: 0;
  }

  .hero-content {
    width: min(100% - 48px, 820px);
  }

  .about-layout,
  .workforce-layout {
    grid-template-columns: 1fr;
  }

  .workforce-stage {
    min-height: 660px;
  }

  .workforce-stage .workforce-copy {
    width: min(540px, 64%);
  }

  .about-media {
    min-height: 540px;
  }

  .page-home .about-section .section-heading {
    margin-bottom: 30px;
  }

  .page-home .about-section .lead-copy {
    line-height: 1.58;
  }

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

  .partner-list li:nth-child(4n + 1) {
    border-left: 0;
  }

  .partner-list li:nth-child(2n + 1) {
    border-left: 1px solid var(--line);
  }

  .js .logistics-story {
    height: 570svh;
  }

  .story-about,
  .story-partners {
    right: 32px;
    left: 32px;
  }

  .story-about {
    width: min(520px, 58vw);
  }

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

  .service-teaser-1,
  .service-teaser-2,
  .service-teaser-4,
  .service-teaser-5 {
    grid-column: span 6;
  }

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

  .metric:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, .16);
  }

  .metric:nth-child(2n) {
    border-right: 0;
  }

  .metric:nth-last-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .metric:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .service-detail,
  .service-detail:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) .service-copy {
    order: 0;
  }

  .job-contact {
    grid-template-columns: 1fr 1fr;
  }

  .job-contact h2 {
    grid-column: 1 / -1;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .footer-statement {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 1024px) and (max-height: 620px) {
  .site-nav {
    justify-content: flex-start;
    padding-block: 20px;
  }

  .site-nav a {
    padding-block: 12px;
    font-size: clamp(1.4rem, 4.5vw, 2rem);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .brand {
    width: auto;
  }

  .brand img {
    width: 44px;
  }

  .menu-toggle span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .menu-toggle {
    min-width: 48px;
    padding-left: 0;
  }

  .hero,
  .hero-content {
    min-height: calc(100svh - var(--header));
  }

  .hero {
    background: var(--navy) url("/assets/media/2025/02/Airbrush-Image-Enhancer-2.jpg") center / cover no-repeat;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(3, 18, 28, .38), rgba(3, 18, 28, .9));
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 72px 0 72px;
  }

  .hero h1 {
    margin-bottom: 20px;
  }

  .hero h1::after {
    height: 4px;
    margin-top: 18px;
  }

  .hero p br {
    display: none;
  }

  .logistics-story {
    margin-top: 0;
    border-radius: 20px 20px 0 0;
  }

  .js .logistics-story {
    height: 540svh;
  }

  .story-sticky {
    min-height: 100svh;
  }

  .story-media {
    background-size: cover;
    background-repeat: no-repeat;
  }

  .story-video {
    object-fit: cover;
    object-position: 50% center;
  }

  .story-video:nth-child(2) {
    object-position: 42% center;
  }

  .story-wash {
    background:
      linear-gradient(180deg, rgba(247, 250, 251, .98) 0%, rgba(247, 250, 251, .86) 34%, rgba(247, 250, 251, .08) 54%, rgba(247, 250, 251, .78) 80%, rgba(247, 250, 251, .98) 100%);
  }

  .story-about,
  .story-partners {
    right: 18px;
    left: 18px;
  }

  .story-about {
    top: 88px;
    width: auto;
  }

  .story-about h2,
  .story-partners h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .story-about h2::after,
  .story-partners h2::after {
    width: 72px;
    height: 3px;
    margin-top: 14px;
  }

  .story-about p {
    font-size: .91rem;
    line-height: 1.48;
  }

  .story-partners {
    top: 78px;
  }

  .story-partners ul {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 18px;
  }

  .story-partners li {
    min-height: 62px;
    padding: 12px 8px 12px 0;
    font-size: .76rem;
  }

  .story-progress {
    right: 18px;
    bottom: 18px;
    width: 112px;
  }

  .content-section {
    padding: 72px 18px;
  }

  .section-heading {
    display: block;
    margin-bottom: 38px;
  }

  .section-heading h2::after {
    width: 72px;
    height: 3px;
    margin-top: 16px;
  }

  .section-intro {
    margin-top: 22px;
  }

  .about-media {
    min-height: 420px;
    grid-template-columns: 1.2fr .8fr;
  }

  .page-home .about-section {
    padding: 56px 18px;
    background-image:
      linear-gradient(rgba(247, 250, 251, .94), rgba(247, 250, 251, .94)),
      url("/assets/media/2025/03/Сотрудничество-1.jpeg");
  }

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

  .partner-list li,
  .partner-list li:nth-child(4n + 1),
  .partner-list li:nth-child(2n + 1) {
    min-height: 76px;
    padding: 20px 0;
    border-right: 0;
    border-left: 0;
  }

  .presence-map {
    margin-right: -8px;
    margin-left: -8px;
    padding-top: 4px;
  }

  .presence-point {
    width: 28px;
    height: 28px;
  }

  .presence-point::before {
    width: 11px;
    height: 11px;
  }

  .presence-point::after {
    width: 19px;
    height: 19px;
  }

  .presence-map__hint {
    margin-top: 0;
    font-size: .76rem;
    text-align: left;
  }

  .presence-map__stage {
    width: calc(100% - 20px);
  }

  .presence-map__footer {
    width: calc(100% - 20px);
    margin-top: 28px;
    gap: 20px;
  }

  .presence-summary {
    grid-template-columns: 1fr;
  }

  .presence-summary li {
    min-height: 0;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-left: 0;
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 22px;
  }

  .presence-summary li:first-child {
    border-top: 0;
  }

  .presence-summary li:last-child {
    border-right: 0;
  }

  .presence-summary strong {
    width: 4.7ch;
    flex: 0 0 4.7ch;
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .presence-summary li > span {
    max-width: 24ch;
  }

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

  .news-image {
    grid-row: 1;
  }

  .service-teasers {
    display: block;
  }

  .service-teaser {
    min-height: 360px;
    margin-bottom: 14px;
  }

  .service-teaser-3 {
    min-height: 400px;
  }

  .resource-summary {
    padding: 30px 22px;
  }

  .progress-label {
    align-items: flex-end;
  }

  .progress-label span {
    max-width: 24ch;
  }

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

  .metric,
  .metric:nth-child(3n),
  .metric:nth-child(2n),
  .metric:nth-last-child(-n + 3),
  .metric:nth-last-child(-n + 2) {
    min-height: 0;
    padding: 26px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

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

  .page-intro {
    padding: 112px 18px 64px;
  }

  .service-list,
  .vacancy-list,
  .job-contact,
  .contact-layout,
  .article-page {
    width: calc(100% - 36px);
  }

  .service-detail {
    padding: 66px 0;
  }

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

  .service-gallery img,
  .service-gallery img:nth-child(3) {
    height: 240px;
    grid-column: auto;
  }

  .category-nav {
    top: 68px;
    padding-inline: 18px;
  }

  .vacancy summary {
    padding-right: 52px;
  }

  .job-contact {
    padding: 28px 22px;
    grid-template-columns: 1fr;
  }

  .job-contact h2 {
    grid-column: auto;
  }

  .site-footer {
    padding: 88px 18px 30px;
  }

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

  .footer-statement {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 24px;
  }
}

.story-sticky .story-partners {
  inset: 0;
  display: grid;
  width: 100%;
  padding: clamp(88px, 11vh, 126px) max(24px, calc((100vw - var(--max)) / 2)) 72px;
  align-content: start;
  color: var(--ink);
  background: #fff;
  will-change: opacity, transform;
}

.story-sticky .story-partners::before {
  display: none;
}

.story-sticky .story-partners h2,
.story-sticky .story-partners ul {
  width: 100%;
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 720px) {
  .page-home .map-section {
    margin-top: -100svh;
    border-radius: 0;
  }

  .story-sticky .story-partners {
    inset: 0;
    padding: 78px 18px 44px;
  }

  .story-sticky .story-partners h2 {
    margin-bottom: 20px;
  }

  .story-sticky .story-partners li {
    min-height: 58px;
    padding: 10px 8px 10px 0;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .page-home .map-section {
    margin-top: -105svh;
  }
}

@media (max-width: 980px) {
  .story-services > h2 {
    top: 92px;
    right: 32px;
    left: 32px;
  }

  .story-service {
    top: 190px;
    right: 32px;
    bottom: 54px;
    left: 32px;
    display: flex;
    align-items: center;
  }

  .story-service > div {
    width: min(600px, 72vw);
    margin: 0;
    padding: 28px;
  }
}

/* Services catalogue and individual service dossiers */
.service-catalog-intro {
  position: relative;
  min-height: min(760px, 82svh);
  display: flex;
  overflow: hidden;
  padding: clamp(150px, 15vw, 220px) 24px 88px;
  align-items: flex-end;
  color: var(--white);
  background: var(--navy);
  isolation: isolate;
}

.service-catalog-intro::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(5, 26, 39, .7);
  content: "";
  pointer-events: none;
}

.service-catalog-intro__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--navy);
}

.service-catalog-intro__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  object-position: var(--service-hero-position, 50% 50%);
  transition: opacity 1100ms var(--ease-in-out);
  will-change: opacity;
}

.service-catalog-intro__media img.is-active {
  opacity: 1;
}

.service-catalog-intro__inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.service-catalog-intro h1 {
  max-width: 10ch;
  margin-bottom: clamp(26px, 4vw, 50px);
}

.service-catalog-intro h1::after {
  display: block;
  width: 112px;
  height: 5px;
  margin-top: 30px;
  background: linear-gradient(90deg, var(--blue) 0 48%, var(--green) 48% 100%);
  content: "";
}

.service-catalog-intro p {
  max-width: 64ch;
  margin: 0;
  color: #d4e4eb;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.service-catalog-intro__jump {
  display: inline-block;
  margin-top: 34px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--green);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.service-catalog {
  width: min(var(--max), calc(100% - 48px));
  display: grid;
  margin-inline: auto;
  padding-block: clamp(80px, 10vw, 150px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-catalog-card {
  position: relative;
  min-height: clamp(420px, 43vw, 600px);
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  text-decoration: none;
  isolation: isolate;
}

.service-catalog-card--wide {
  min-height: clamp(500px, 55vw, 720px);
  grid-column: 1 / -1;
}

.service-catalog-card::after {
  position: absolute;
  z-index: -1;
  inset: 30% 0 0;
  background: linear-gradient(180deg, transparent, rgba(3, 20, 30, .92));
  content: "";
}

.service-catalog-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms var(--ease-out), filter 220ms var(--ease-out);
}

.service-catalog-card__index {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(7, 30, 44, .78);
  font-size: .82rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.service-catalog-card__body {
  position: absolute;
  right: clamp(24px, 4vw, 52px);
  bottom: clamp(24px, 4vw, 52px);
  left: clamp(24px, 4vw, 52px);
  display: grid;
  gap: 14px;
}

.service-catalog-card__body strong {
  max-width: 23ch;
  color: var(--white);
  font-size: clamp(1.55rem, 2.7vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.service-catalog-card__body small {
  max-width: 58ch;
  color: #dce8ed;
  font-size: 1rem;
  line-height: 1.5;
}

.service-catalog-card:focus-visible img {
  filter: saturate(1.05) contrast(1.02);
}

@media (hover: hover) and (pointer: fine) {
  .hero-link:hover span,
  .text-link:hover span,
  .list-link:hover span {
    transform: translateX(6px);
  }

  .presence-point:hover {
    z-index: 10;
  }

  .presence-point:hover::before {
    background: var(--blue);
    transform: translate(-50%, -50%) scale(1.18);
  }

  .presence-point:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.28);
  }

  .presence-point:hover span {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .presence-point--east:hover span {
    transform: translate(0, 0);
  }

  .news-image:hover img {
    transform: scale(1.025);
  }

  .service-teaser:hover img {
    opacity: .72;
    transform: scale(1.03);
  }

  .service-catalog-card:hover img {
    filter: saturate(1.05) contrast(1.02);
    transform: scale(1.025);
  }

  .category-nav a:hover {
    color: var(--blue);
  }

  .category-nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
  }
}

.service-catalog-card:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.service-page-hero {
  position: relative;
  min-height: min(860px, 90svh);
  display: flex;
  overflow: hidden;
  padding: clamp(150px, 15vw, 220px) 24px clamp(60px, 8vw, 110px);
  align-items: flex-end;
  color: var(--white);
  background: var(--navy);
  isolation: isolate;
}

.service-page-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 24, 36, .94) 0, rgba(4, 24, 36, .72) 48%, rgba(4, 24, 36, .18) 100%);
  content: "";
}

.service-page-hero > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-page-hero__inner {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.service-breadcrumbs {
  display: flex;
  margin-bottom: clamp(28px, 4vw, 52px);
  align-items: center;
  gap: 10px;
  color: #d4e4eb;
  font-size: .88rem;
}

.service-breadcrumbs a {
  color: inherit;
  text-underline-offset: 4px;
}

.service-page-hero h1 {
  max-width: 18ch;
  margin-bottom: 28px;
  font-size: clamp(2.55rem, 6vw, 5.5rem);
}

.service-page-hero p {
  max-width: 62ch;
  margin: 0;
  color: #e0ebef;
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
}

.service-page-main {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  padding-block: clamp(80px, 10vw, 150px);
}

.service-page-summary {
  display: grid;
  margin-bottom: clamp(80px, 10vw, 150px);
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.service-page-summary > p {
  max-width: 30ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
}

.service-work {
  padding: clamp(34px, 5vw, 64px);
  color: var(--white);
  background: var(--navy);
}

.service-work h2 {
  margin-bottom: 30px;
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
}

.service-work ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-work li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
  color: #dce8ed;
}

.service-work li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.service-evidence {
  display: grid;
  margin-bottom: clamp(80px, 10vw, 150px);
  padding: clamp(32px, 5vw, 66px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(220px, .6fr) minmax(0, 1.4fr);
  gap: clamp(36px, 8vw, 120px);
}

.service-evidence h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.service-evidence__copy p {
  max-width: 68ch;
  color: var(--ink-soft);
}

.service-evidence__copy p:first-child {
  margin-top: 0;
}

.service-evidence__copy p:last-child {
  margin-bottom: 0;
}

.service-page-gallery {
  display: grid;
  margin-bottom: clamp(80px, 10vw, 150px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-page-gallery img {
  width: 100%;
  height: clamp(320px, 42vw, 600px);
  border-radius: var(--radius);
  object-fit: cover;
}

.service-page-gallery img:first-child:nth-last-child(3) {
  grid-column: 1 / -1;
}

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

.service-related a {
  display: grid;
  min-height: 180px;
  padding: 34px 0;
  align-content: space-between;
  gap: 24px;
  color: var(--ink);
  text-decoration: none;
}

.service-related a + a {
  padding-left: clamp(28px, 5vw, 70px);
  border-left: 1px solid var(--line);
}

.service-related small {
  color: var(--ink-soft);
}

.service-related strong {
  max-width: 26ch;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.2;
}

@media (max-width: 820px) {
  .service-catalog-intro,
  .service-page-hero {
    min-height: 720px;
  }

  .service-catalog,
  .service-page-gallery,
  .service-page-summary,
  .service-evidence,
  .service-related {
    grid-template-columns: 1fr;
  }

  .service-catalog-card--wide {
    grid-column: auto;
  }

  .service-page-summary > p {
    max-width: 38ch;
  }

  .service-evidence {
    gap: 26px;
  }

  .service-page-gallery img:first-child:nth-last-child(3) {
    grid-column: auto;
  }

  .service-related a + a {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .service-catalog-intro,
  .service-page-hero {
    min-height: 660px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .service-catalog {
    width: calc(100% - 36px);
    gap: 16px;
  }

  .service-catalog-card,
  .service-catalog-card--wide {
    min-height: 440px;
  }

  .service-catalog-card__body {
    right: 22px;
    bottom: 24px;
    left: 22px;
  }

  .service-page-main {
    width: calc(100% - 36px);
  }

  .service-page-hero::after {
    background: rgba(4, 24, 36, .7);
  }

  .service-page-gallery img {
    height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-catalog-card img {
    transition: none;
  }
}

@media (max-width: 720px) {
  .workforce-section {
    padding: 56px 18px;
  }

  .workforce-stage {
    display: grid;
    min-height: clamp(620px, 82svh, 820px);
    grid-template-rows: 1fr;
    align-items: end;
    background: transparent;
    border-radius: 14px;
  }

  .workforce-stage::after {
    right: 0;
    bottom: 0;
    height: 100%;
    min-height: 0;
    border-radius: 14px;
    background:
      radial-gradient(ellipse at 96% 0%, rgba(4, 24, 36, .72), transparent 43%),
      linear-gradient(180deg, rgba(4, 24, 36, .08) 35%, rgba(4, 24, 36, .78) 100%),
      linear-gradient(90deg, rgba(4, 24, 36, .32), transparent 62%);
  }

  .workforce-stage .workforce-image {
    position: absolute;
    height: 100%;
    min-height: 0;
    object-position: 61% center;
    border-radius: 14px;
  }

  .workforce-stage .workforce-copy {
    position: relative;
    bottom: auto;
    left: auto;
    width: auto;
    padding: 320px 24px 28px;
    background: transparent;
    color: var(--white);
  }

  .workforce-stage .workforce-copy p,
  .workforce-stage .workforce-copy .text-link { color: var(--white); }

  .workforce-stage .workforce-copy h2 {
    margin-bottom: 24px;
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .workforce-stage .workforce-copy h2::after {
    width: 72px;
    height: 3px;
    margin-top: 16px;
  }

  .workforce-stage .workforce-copy p {
    font-size: .94rem;
    line-height: 1.55;
  }

  .workforce-metric {
    top: 88px;
    right: 20px;
    left: 20px;
    max-width: none;
    justify-items: end;
  }

  .workforce-metric strong {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 4.15rem);
  }

  .workforce-metric span {
    max-width: 18ch;
    margin-top: 9px;
    font-size: .72rem;
  }

  .story-services > h2 {
    top: 82px;
    right: 18px;
    left: 18px;
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .story-services > h2::after {
    width: 72px;
    height: 3px;
    margin-top: 14px;
  }

  .story-service {
    top: 158px;
    right: 18px;
    bottom: 42px;
    left: 18px;
  }

  .story-service > div {
    width: 100%;
    margin: 0;
    padding: 20px;
  }

  .story-service p {
    margin-bottom: 10px;
    font-size: .68rem;
  }

  .story-service h3 {
    margin-bottom: 14px;
    font-size: clamp(1.05rem, 5.1vw, 1.4rem);
    line-height: 1.16;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .site-header.is-scrolled,
  .site-nav {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-nav {
    background: rgba(247, 250, 251, .98);
  }

}

@media (prefers-contrast: more) {
  .site-header,
  .site-nav {
    border-color: var(--navy);
    background: var(--white);
  }

}

@media (max-width: 1024px) {
  .js .transport-story {
    height: 270svh;
  }

  .js .transport-sticky {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr);
    align-items: stretch;
    gap: 8px;
    padding: 96px 22px 52px;
  }

  .transport-heading {
    max-width: none;
  }

  .transport-heading h2 {
    max-width: none;
    font-size: clamp(2.25rem, 10vw, 4.25rem);
  }

  .transport-heading h2::after {
    width: 76px;
    margin-top: 18px;
  }

  .transport-kicker {
    margin-bottom: 8px;
  }

  .transport-total {
    position: static;
    max-width: none;
    margin: 14px 0 0;
    text-align: left;
    font-size: .88rem;
  }

  .js .transport-sequence {
    min-height: 0;
    align-self: stretch;
    height: auto;
    margin-top: 0;
  }

  .js .transport-slide figure {
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .js .transport-slide img,
  .js .transport-slide .vehicle-art {
    height: 100%;
    min-height: 0;
    max-height: 40svh;
  }

  .js .transport-slide figcaption {
    min-height: 0;
    padding: 0 6px 24px;
  }

  .transport-slide figcaption strong {
    font-size: clamp(3.8rem, 18vw, 6rem);
  }

  .transport-slide figcaption span {
    max-width: 15rem;
    font-size: .92rem;
  }

  .js .transport-progress {
    right: 22px;
    bottom: 20px;
    left: 22px;
    grid-template-columns: auto minmax(80px, 1fr) auto;
  }
}

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

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

  .story-about,
  .story-partners {
    transform: none !important;
  }

  .story-partners li {
    transform: none !important;
  }

  .story-service {
    transform: none !important;
  }

  .resource-slideshow img,
  .resource-slideshow img.is-active,
  .service-catalog-intro__media img,
  .service-catalog-intro__media img.is-active {
    transform: none !important;
    transition: opacity 200ms ease !important;
  }

  .js .transport-slide,
  .js .transport-slide.is-active,
  .js .transport-slide.is-before {
    transform: none;
    transition: opacity 200ms var(--ease-out) !important;
  }
}


/* Audit hardening: each page owns its layout; shared navigation stays consistent. */
.workforce-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 5vw, 80px); align-items: center; }
.workforce-layout > .workforce-copy { position: static; width: auto; color: var(--ink-soft); }
.workforce-layout > .workforce-image { position: static; width: 100%; height: auto; border-radius: var(--radius); }
.workforce-layout .workforce-copy p { color: var(--ink-soft); }
.service-catalog-intro h1 { max-width: 16ch; font-size: clamp(2.5rem, 5.5vw, 5.6rem); line-height: 1.05; }
.story-services h2 { max-width: 20ch; font-size: clamp(1.8rem, 3.5vw, 3.6rem); }
.site-nav { gap: clamp(14px, 1.6vw, 28px); }
.site-nav a { white-space: nowrap; }
.hero-jumps { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 20px; }
.hero-jumps a { color: var(--white); font-size: .9rem; text-underline-offset: 5px; padding-block: 8px; }
.estimate-note small { font-size: .8rem; line-height: 1.5; font-weight: 400; }
.publication-note { color: var(--ink-soft); font-size: .85rem; }
.presence-picker { display: grid; gap: 8px; width: min(100% - 40px, 400px); margin: 12px auto 24px; color: var(--white); font-size: .85rem; }
.presence-picker select { min-height: 48px; width: 100%; padding: 10px 14px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: var(--white); font: inherit; font-size: 16px; }
.contact-layout .map-frame { min-width: 0; }
.contact-layout iframe { display: block; width: 100%; height: clamp(300px, 38vw, 480px); border: 0; }
.contact-map-consent { display: grid; align-content: center; gap: 18px; min-height: clamp(300px, 38vw, 480px); padding: clamp(24px, 4vw, 48px); background: var(--snow); }
.contact-map-consent p { max-width: 54ch; margin: 0; }
.contact-map-consent button { width: fit-content; min-height: 48px; padding: 10px 20px; border: 0; border-radius: 4px; background: var(--green); color: var(--navy); font: inherit; font-weight: 700; cursor: pointer; }
.contact-map-consent button:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.map-external-link { display: block; padding: 16px; background: var(--snow); color: var(--ink); text-underline-offset: 4px; }
#geography, #fleet, #team { scroll-margin-top: 90px; }
@media (min-width: 1025px) { .presence-picker { margin: 0 0 10px auto; } .presence-map__stage { width: min(var(--max), calc(62svh * 1.6), calc(100% - 48px)); } }
@media (max-width: 1100px) and (min-width: 1025px) { .site-header { padding-inline: 20px; } .site-nav a { font-size: .75rem; } }
@media (max-width: 1024px) { .workforce-layout { grid-template-columns: minmax(0, 1fr); } .site-nav a { white-space: normal; } }
@media (max-width: 640px) {
  .page-home .hero-content { padding-bottom: max(16px, env(safe-area-inset-bottom)); }
  .hero-jumps { gap: 4px 16px; margin-top: 12px; }
  .hero-jumps a { font-size: .82rem; }
  .site-nav a { font-size: clamp(1.35rem, 5.8vw, 1.8rem); }
}
html.motion-paused { scroll-behavior: auto; }
html.motion-paused .transport-story { height: auto; }
html.motion-paused .transport-sticky { position: relative; display: block; height: auto; min-height: 0; overflow: visible; }
html.motion-paused .transport-sequence { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); height: auto; margin-top: 32px; }
html.motion-paused .transport-slide { position: relative; opacity: 1 !important; transform: none !important; pointer-events: auto !important; }
html.motion-paused .transport-slide img, html.motion-paused .transport-slide .vehicle-art { height: 260px; max-height: none; }
html.motion-paused .transport-slide figcaption { padding-left: 0; }
html.motion-paused .transport-progress { display: none; }
@media (max-width: 720px) { html.motion-paused .transport-sequence { grid-template-columns: minmax(0, 1fr); } }

html.motion-paused .hero { background: var(--navy) url("/assets/media/2025/02/Airbrush-Image-Enhancer-2.jpg") center / cover no-repeat; }

/* Shared section-heading role, based on the established partners heading.
   Page titles and article/card headings retain their own hierarchy. */
main :is(.section-heading, .press-heading, .story-about, .story-partners, .story-services, .transport-heading) > h2 {
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.03em;
  text-wrap: balance;
}
main :is(.section-heading, .press-heading, .story-about, .story-partners, .story-services, .transport-heading) > h2::after {
  display: block;
  width: 96px;
  height: 4px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--blue) 0 48%, var(--green) 48% 100%);
  content: "";
}
#team > .section-inner > .section-heading { display: block; }
/* Keep desktop lettering outside the filtered glass layer. */
@media (min-width: 1025px) {
  .site-header, .site-header.is-scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .site-header::before {
    -webkit-backdrop-filter: blur(22px) saturate(180%) contrast(105%);
    backdrop-filter: blur(22px) saturate(180%) contrast(105%);
  }
  .site-header.is-scrolled::before {
    -webkit-backdrop-filter: blur(22px) saturate(180%) contrast(105%);
    backdrop-filter: blur(22px) saturate(180%) contrast(105%);
  }
  .site-header .site-nav a { font-size: 15px; line-height: 24px; }
  .site-header .site-nav a[aria-current="page"] { color: #0067a6; }
  .site-header .site-nav a::after {
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 200ms var(--ease-out);
  }
  .site-header .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
}
@media (min-width: 1025px) and (max-width: 1300px) {
  .site-header .site-nav a { font-size: 13px; line-height: 22px; }
}
@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
  .site-header .site-nav a:hover::after { transform: scaleX(1); }
}
@media (min-width: 1025px) and (prefers-reduced-motion: reduce) {
  .site-header .site-nav a::after { transition: none; }
}
/* Adjacent content sections share one gap: 48 + 48 desktop, 32 + 32 mobile.
   Keep the pinned ship story and geography section geometry untouched. */
.page-home :is(.home-press, #team, #fleet) {
  padding-block: 48px;
}
.page-home :is(.home-press, #team, #fleet) :is(.section-heading, .press-heading) {
  margin-bottom: 40px;
}
.page-home > .site-footer { padding-top: 48px; }
@media (max-width: 720px) {
  .page-home :is(.home-press, #team, #fleet) {
    padding-block: 32px;
  }
  .page-home :is(.home-press, #team, #fleet) :is(.section-heading, .press-heading) {
    margin-bottom: 28px;
  }
  .page-home > .site-footer { padding-top: 32px; }
  main :is(.section-heading, .press-heading, .story-about, .story-partners, .story-services, .transport-heading) > h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }
  main :is(.section-heading, .press-heading, .story-about, .story-partners, .story-services, .transport-heading) > h2::after {
    width: 72px;
    height: 3px;
    margin-top: 14px;
  }
}
