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

*,
*::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 320ms var(--ease),
    border-color 320ms var(--ease),
    box-shadow 320ms var(--ease),
    backdrop-filter 320ms var(--ease);
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, .92);
  background: rgba(236, 245, 249, .76);
  box-shadow:
    0 20px 48px rgba(7, 30, 44, .2),
    inset 0 1px 0 rgba(255, 255, 255, .95);
  -webkit-backdrop-filter: blur(28px) saturate(185%) contrast(106%);
  backdrop-filter: blur(28px) saturate(185%) contrast(106%);
}

.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, .56);
  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 h1::after {
  display: block;
  width: 86px;
  height: 6px;
  margin-top: 24px;
  background: var(--green);
  content: "";
}

.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:hover span,
.text-link:hover span,
.list-link:hover span {
  transform: translateX(6px);
}

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

.video-control {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 24px;
  min-height: 44px;
  display: inline-flex;
  padding: 8px 14px 8px 12px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 12px;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: rgba(7, 30, 44, .52);
  box-shadow: 0 12px 28px rgba(1, 14, 22, .18), inset 0 1px 0 rgba(255, 255, 255, .24);
  font: inherit;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 120ms var(--ease);
}

.video-control:hover {
  background: rgba(7, 30, 44, .7);
  box-shadow: 0 16px 34px rgba(1, 14, 22, .24), inset 0 1px 0 rgba(255, 255, 255, .3);
}

.video-control:active {
  transform: scale(.97);
}

.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: 800svh;
}

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

.story-video {
  width: 100%;
  height: 100%;
  max-width: none;
  opacity: 0;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  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(205px, 26vh, 270px);
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: clamp(54px, 7vh, 82px);
  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(28px, 4vw, 48px);
  border-radius: 16px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 24px 70px rgba(4, 24, 36, .16);
}

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

.story-service h3 {
  margin-bottom: 24px;
  font-size: clamp(1.35rem, 2.15vw, 2.35rem);
  line-height: 1.12;
}

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

.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: -100svh;
  border-radius: 0;
  box-shadow: none;
}

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

.map-section .section-heading,
.presence-map__hint {
  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;
  aspect-ratio: 8 / 5;
  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:hover::before,
.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:hover,
.presence-point:focus-visible,
.presence-point.is-active {
  z-index: 10;
}

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

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

.presence-point--east:hover span,
.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 {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: .84rem;
  text-align: right;
}

.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 .7s var(--ease);
}

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

.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 .4s var(--ease), transform .8s var(--ease);
}

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

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

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

.workforce-section {
  padding-top: 0;
  background: var(--white);
}

.workforce-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.workforce-copy {
  max-width: 66ch;
}

.workforce-copy p {
  color: var(--ink-soft);
}

.workforce-image {
  width: 100%;
  max-height: 620px;
  border-radius: var(--radius);
  object-fit: cover;
}

.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: 8px;
  overflow-x: auto;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .97);
}

.category-nav a {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
}

.category-nav a:hover {
  border-color: var(--blue);
  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 img {
  width: 176px;
  margin-bottom: 22px;
  box-sizing: content-box;
  padding: 10px 12px;
  background: var(--white);
}

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

  .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: fixed;
    inset: var(--header) 0 0;
    display: grid;
    align-content: start;
    padding: 34px 24px 60px;
    background: var(--white);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    bottom: auto;
    left: 0;
    max-height: calc(100svh - 100px);
    padding: 20px 22px;
    justify-content: stretch;
    grid-auto-rows: min-content;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 16px;
    overflow-y: auto;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 44px rgba(7, 30, 44, .18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(.985);
    transform-origin: top right;
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    backdrop-filter: blur(18px) saturate(140%);
    transition: opacity 220ms ease, transform 320ms var(--ease), visibility 220ms;
  }

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

  .site-nav a {
    display: flex;
    width: 100%;
    min-height: 58px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    border-radius: 10px;
    align-items: center;
    font-size: 1.12rem;
  }

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

  .site-nav a:hover,
  .site-nav a:focus-visible {
    padding-right: 12px;
    padding-left: 12px;
    background: rgba(228, 237, 241, .7);
  }

  .site-nav a:active {
    transform: scale(.985);
  }

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

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

  .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: 720svh;
  }

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

  .video-control {
    display: none;
  }

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

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

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

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

  .story-video {
    object-fit: contain;
  }

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

  .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: 66px 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(104px, 14vh, 160px) max(24px, calc((100vw - var(--max)) / 2)) 72px;
  align-content: center;
  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: 86px 18px 44px;
  }

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

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

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

@media (max-width: 720px) {
  .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,
  .video-control {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

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

  .video-control {
    background: rgba(7, 30, 44, .92);
  }
}

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

  .video-control {
    border-color: var(--white);
    background: var(--navy);
  }
}

@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 {
    transform: none !important;
    transition: opacity 200ms ease !important;
  }
}
