:root {
  --background: #f5f3f1;
  --surface: #eee9df;
  --text: #151515;
  --muted: #67635d;
  --line: rgba(21, 21, 21, 0.14);
  --accent: #a28c6e;
  --container: 1520px;
  --page-gutter: clamp(40px, 4.2vw, 80px);
  --header-height: 96px;
  --compact-header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--background);
  color: var(--text);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/site-bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  pointer-events: none;
}

body > * {
  position: relative;
  z-index: 1;
}

body.menu-open {
  overflow: hidden;
}

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

section {
  width: 100%;
  max-width: none;
}

.fullscreen-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

@supports not (height: 100dvh) {
  .fullscreen-section {
    height: 100vh;
    min-height: 100vh;
  }
}

@media (max-width: 1024px) {
  html:has(body.home-page) {
    scroll-snap-type: none;
  }

  .home-page .fullscreen-section {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }
}

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

button {
  font: inherit;
}

::selection {
  background: rgba(162, 140, 110, 0.28);
}

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

.reveal-section {
  opacity: 1;
  transform: none;
}

.js .reveal-section {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal-section.is-visible {
  opacity: 1;
  transform: translateY(1px);
}

.js .fullscreen-section {
  opacity: 1;
  transform: none;
}

.container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  margin-inline: auto;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: #151515;
  backdrop-filter: none;
  color: #f5f3f1;
  transition: padding 260ms ease;
}

.header-inner {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: min-height 260ms ease;
}

.site-header.is-compact .header-inner {
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(36px, 2.2vw, 40px);
  filter: brightness(0) invert(1);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 44px;
  font-size: 15px;
  font-weight: 600;
}

.desktop-nav a,
.text-link {
  transition: color 180ms ease, border-color 180ms ease;
}

.desktop-nav a:hover,
.text-link:hover {
  color: var(--accent);
}

.desktop-nav a.is-active,
.mobile-nav a.is-active {
  color: var(--accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid #fff;
  border-radius: 3px;
  background: #fff;
  padding: 0 22px;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}

.header-cta::before,
.header-cta::after {
  display: none;
  content: none;
}

.header-cta:hover {
  border-color: #a28c6e;
  background: #a28c6e;
  color: #111;
  text-decoration: none;
}

.header-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  text-decoration: none;
}

.menu-button {
  display: none;
}

.mobile-nav {
  display: none;
}

.contacts-page-main {
  min-height: calc(100vh - var(--header-height));
  padding-top: var(--header-height);
}

.contacts-page-main .request-section,
.contacts-page-main .request-layout {
  min-height: calc(100dvh - var(--header-height));
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 0;
  background: transparent;
}

.hero-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center bottom;
  pointer-events: none;
}

.hero-image-frame {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 100vh;
}

.hero-copy {
  width: min(950px, 64vw);
  max-width: 950px;
  padding-top: clamp(150px, 15.7vh, 174px);
}

.hero-descriptor {
  max-width: 560px;
  margin: 0 0 20px;
  color: #242321;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  font-size: clamp(4.6rem, 5.45vw, 6.15rem);
  line-height: 0.92;
}

.hero-copy h1 {
  max-width: 950px;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-text {
  max-width: 535px;
  margin: 24px 0 0;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 38px;
  margin-top: 38px;
}

.primary-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--text);
  padding: 0 30px;
  color: #fff;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  transition: background 180ms ease;
}

.hero-primary {
  min-width: 250px;
  min-height: 58px;
  justify-content: space-between;
  padding: 0 31px 0 36px;
}

.hero-primary span:last-child {
  color: #c59a22;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.primary-button:hover {
  background: var(--accent);
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid var(--text);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}

.hero-secondary {
  gap: 12px;
  min-height: 36px;
}

.hero-secondary span:last-child {
  font-size: 20px;
  font-weight: 400;
}

.primary-button,
.header-cta,
.text-link,
.menu-button,
.faq-question,
.file-control span {
  -webkit-tap-highlight-color: transparent;
}

.task-section {
  max-height: none;
  border-top: 1px solid var(--line);
  background: transparent;
}

.task-image,
.section-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: center bottom;
}

.task-content,
.how-content {
  position: absolute;
  z-index: 2;
  top: clamp(86px, 10vh, 112px);
  left: 0;
  right: 0;
}

.task-intro {
  max-width: 880px;
}

.task-intro h2,
.how-title {
  margin: 0;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(4.6rem, 5.45vw, 6.15rem);
  font-weight: 500;
  line-height: 0.92;
}

.how-title {
  width: max-content;
  max-width: none;
}

.how-title span {
  display: block;
  white-space: nowrap;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h2 {
  max-width: 1000px;
  font-size: clamp(3.1rem, 5.8vw, 7rem);
  line-height: 0.95;
}

.task-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 880px;
  margin-top: 22px;
}

.task-copy p {
  margin: 0;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
}

.service-line {
  max-width: none;
  margin: 30px 0 0;
  color: #242321;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.8;
  text-transform: uppercase;
  white-space: nowrap;
}

.process-section {
  border-top: 1px solid var(--line);
  padding: 124px 0 132px;
}

.route-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  border-top: 0;
  background: transparent;
  overflow: hidden;
  scroll-snap-stop: always;
}

.route-container {
  position: relative;
  display: grid;
  height: 100%;
  grid-template-rows: auto minmax(300px, 1fr) auto;
  padding-top: clamp(102px, 11.8vh, 126px);
  padding-bottom: clamp(38px, 4.8vh, 54px);
}

.categories-section {
  background-image: url("assets/block3-cargo-bg-bw.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.categories-image,
.section-3-image {
  display: none;
}

.categories-section::after {
  display: none;
  content: none;
}

.categories-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(82px, 9.4vh, 106px);
}

.categories-heading {
  display: block;
  max-width: 950px;
}

.categories-title {
  max-width: 950px;
  margin: 0;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(4.6rem, 5.45vw, 6.15rem);
  font-weight: 500;
  line-height: 0.92;
}

.categories-title span {
  display: block;
  white-space: nowrap;
}

.categories-heading p {
  max-width: 520px;
  margin: 14px 0 0;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
}

.category-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.category-overlay.is-active {
  opacity: 1;
}

.category-overlay[data-highlight-segment="1"] {
  clip-path: polygon(24.2% 70.8%, 35.9% 70.8%, 36% 88.4%, 24.2% 88.4%);
}

.category-overlay[data-highlight-segment="2"] {
  clip-path: polygon(36.7% 70.8%, 48.3% 70.8%, 48.3% 88.4%, 36.7% 88.4%);
}

.category-overlay[data-highlight-segment="3"] {
  clip-path: polygon(49.1% 70.8%, 60.6% 70.8%, 60.6% 88.3%, 49.1% 88.3%);
}

.category-overlay[data-highlight-segment="4"] {
  clip-path: polygon(61.4% 70.8%, 72.7% 70.8%, 72.7% 88.3%, 61.4% 88.3%);
}

.category-list {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 26px);
  margin-top: clamp(38px, 5.2vh, 54px);
}

.category-item {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(146, 122, 93, 0.28);
  border-radius: 999px;
  background: rgba(244, 241, 234, 0.72);
  padding: 14px 22px;
  color: var(--text);
  cursor: pointer;
  text-align: center;
}

.category-item::before {
  display: none;
  content: none;
}

.category-item span,
.timeline span {
  color: var(--accent);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 32px;
  line-height: 1;
}

.category-item span {
  display: none;
}

.category-item strong {
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}

.category-item:hover,
.category-item:focus-visible,
.category-item.is-active {
  color: #0f0f0f;
}

.category-item:hover::before,
.category-item:focus-visible::before,
.category-item.is-active::before {
  opacity: 1;
}

.category-note {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 14px;
  margin: clamp(24px, 3.2vh, 36px) 0 0;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
}

.category-note strong {
  font-weight: 500;
}

.category-note-icon {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: rgba(146, 122, 93, 0.14);
  color: #927a5d;
  font-size: 0;
  font-weight: 600;
  line-height: 1;
}

.category-note-icon::before {
  content: "→";
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 18px;
  line-height: 1;
  transform: translate(-50%, -52%);
}

.category-note-link {
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.category-note-link:hover,
.category-note-link:focus-visible {
  color: #927a5d;
}

.categories-link {
  display: none;
  width: fit-content;
  margin-top: clamp(20px, 2.8vh, 32px);
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}

.process-copy p,
.section-text {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.route-top {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(360px, 0.34fr);
  gap: clamp(110px, 12vw, 220px);
  align-items: start;
}

.route-heading {
  max-width: 760px;
  margin: 0;
  color: #171717;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(44px, 3.8vw, 66px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.route-heading span {
  display: block;
  white-space: nowrap;
}

.route-main-text,
.route-bottom p {
  margin: 0;
  color: #55514b;
  font-size: clamp(17px, 1.14vw, 21px);
  line-height: 1.62;
}

.route-main-text {
  max-width: 560px;
}

.route-main-text p {
  margin: 0;
}

.route-main-text p + p {
  margin-top: 16px;
}

.route-scheme {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 23.5%) minmax(380px, 47%) minmax(320px, 29.5%);
  align-items: center;
  min-height: 0;
  padding: clamp(44px, 5.2vh, 68px) 0 clamp(30px, 3.2vh, 42px);
}

.route-factors {
  display: grid;
  gap: clamp(16px, 2.1vh, 26px);
  align-self: center;
}

.route-factor {
  display: grid;
  grid-template-columns: 62px 18px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: clamp(36px, 5vh, 52px);
  color: #292724;
  outline: none;
  transition: color 240ms ease;
}

.route-factor::before {
  grid-column: 2;
  grid-row: 1;
  width: 5px;
  height: 5px;
  justify-self: center;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.route-factor span {
  grid-column: 1;
  grid-row: 1;
  color: rgba(162, 140, 110, 0.82);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(29px, 2.2vw, 38px);
  font-weight: 400;
  line-height: 1;
  transition: color 240ms ease;
}

.route-factor p {
  grid-column: 3;
  grid-row: 1;
  margin: 0;
  font-size: clamp(16px, 1.02vw, 19px);
  font-weight: 600;
  line-height: 1.35;
  transition: color 240ms ease, font-weight 240ms ease;
}

.route-factor:hover,
.route-factor:focus-visible {
  color: #111;
}

.route-factor:hover span,
.route-factor:focus-visible span {
  color: var(--accent);
}

.route-factor:hover p,
.route-factor:focus-visible p {
  font-weight: 600;
}

.route-flow {
  width: 100%;
  height: clamp(250px, 33vh, 330px);
  color: var(--accent);
  overflow: visible;
}

.route-flow-line,
.route-flow-result {
  fill: none !important;
  stroke: rgba(162, 140, 110, 0.76);
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  transition: opacity 240ms ease, stroke 240ms ease;
}

.route-flow-result {
  marker-end: url("#route-arrow");
  opacity: 0.9;
}

.route-line-dot {
  fill: var(--accent);
  transition: opacity 240ms ease, fill 240ms ease;
}

.route-node-halo {
  fill: none;
  stroke: rgba(162, 140, 110, 0.22);
  stroke-width: 1;
  stroke-dasharray: 1 4;
  vector-effect: non-scaling-stroke;
}

.route-node-outer {
  fill: var(--background);
  stroke: rgba(162, 140, 110, 0.82);
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.route-node-inner {
  fill: var(--accent);
}

.route-result {
  display: block;
  align-self: center;
  padding-left: clamp(22px, 2vw, 36px);
}

.route-result strong {
  display: block;
  margin: 0 0 clamp(20px, 2.3vh, 28px);
  color: #171717;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.transport-line {
  display: flex;
  flex-wrap: nowrap;
  gap: 7px;
  margin: 0;
  max-width: none;
  color: #2f2d2a !important;
  font-size: clamp(14px, 0.94vw, 17px) !important;
  font-weight: 600;
  line-height: 1.55 !important;
  white-space: nowrap;
}

.transport-dot {
  color: var(--accent);
}

.transport-line::first-letter {
  color: inherit;
}

.route-scheme:has(.route-factor:hover) .route-flow-line,
.route-scheme:has(.route-factor:focus-visible) .route-flow-line,
.route-scheme:has(.route-factor:hover) .route-line-dot,
.route-scheme:has(.route-factor:focus-visible) .route-line-dot {
  opacity: 0.34;
}

.route-scheme:has([data-route-factor="1"]:hover) .route-flow-line[data-line="1"],
.route-scheme:has([data-route-factor="1"]:focus-visible) .route-flow-line[data-line="1"],
.route-scheme:has([data-route-factor="1"]:hover) .route-line-dot[data-line="1"],
.route-scheme:has([data-route-factor="1"]:focus-visible) .route-line-dot[data-line="1"],
.route-scheme:has([data-route-factor="2"]:hover) .route-flow-line[data-line="2"],
.route-scheme:has([data-route-factor="2"]:focus-visible) .route-flow-line[data-line="2"],
.route-scheme:has([data-route-factor="2"]:hover) .route-line-dot[data-line="2"],
.route-scheme:has([data-route-factor="2"]:focus-visible) .route-line-dot[data-line="2"],
.route-scheme:has([data-route-factor="3"]:hover) .route-flow-line[data-line="3"],
.route-scheme:has([data-route-factor="3"]:focus-visible) .route-flow-line[data-line="3"],
.route-scheme:has([data-route-factor="3"]:hover) .route-line-dot[data-line="3"],
.route-scheme:has([data-route-factor="3"]:focus-visible) .route-line-dot[data-line="3"],
.route-scheme:has([data-route-factor="4"]:hover) .route-flow-line[data-line="4"],
.route-scheme:has([data-route-factor="4"]:focus-visible) .route-flow-line[data-line="4"],
.route-scheme:has([data-route-factor="4"]:hover) .route-line-dot[data-line="4"],
.route-scheme:has([data-route-factor="4"]:focus-visible) .route-line-dot[data-line="4"],
.route-scheme:has([data-route-factor="5"]:hover) .route-flow-line[data-line="5"],
.route-scheme:has([data-route-factor="5"]:focus-visible) .route-flow-line[data-line="5"],
.route-scheme:has([data-route-factor="5"]:hover) .route-line-dot[data-line="5"],
.route-scheme:has([data-route-factor="5"]:focus-visible) .route-line-dot[data-line="5"] {
  opacity: 1;
  stroke: var(--accent);
}

.route-scheme:has([data-route-factor="1"]:hover) .route-line-dot[data-line="1"],
.route-scheme:has([data-route-factor="1"]:focus-visible) .route-line-dot[data-line="1"],
.route-scheme:has([data-route-factor="2"]:hover) .route-line-dot[data-line="2"],
.route-scheme:has([data-route-factor="2"]:focus-visible) .route-line-dot[data-line="2"],
.route-scheme:has([data-route-factor="3"]:hover) .route-line-dot[data-line="3"],
.route-scheme:has([data-route-factor="3"]:focus-visible) .route-line-dot[data-line="3"],
.route-scheme:has([data-route-factor="4"]:hover) .route-line-dot[data-line="4"],
.route-scheme:has([data-route-factor="4"]:focus-visible) .route-line-dot[data-line="4"],
.route-scheme:has([data-route-factor="5"]:hover) .route-line-dot[data-line="5"],
.route-scheme:has([data-route-factor="5"]:focus-visible) .route-line-dot[data-line="5"] {
  fill: var(--accent);
}

.route-scheme[data-active-factor]:not([data-active-factor=""]) .route-flow-line,
.route-scheme[data-active-factor]:not([data-active-factor=""]) .route-line-dot {
  opacity: 0.34;
}

.route-scheme[data-active-factor="1"] .route-flow-line[data-line="1"],
.route-scheme[data-active-factor="2"] .route-flow-line[data-line="2"],
.route-scheme[data-active-factor="3"] .route-flow-line[data-line="3"],
.route-scheme[data-active-factor="4"] .route-flow-line[data-line="4"],
.route-scheme[data-active-factor="5"] .route-flow-line[data-line="5"],
.route-scheme[data-active-factor="1"] .route-line-dot[data-line="1"],
.route-scheme[data-active-factor="2"] .route-line-dot[data-line="2"],
.route-scheme[data-active-factor="3"] .route-line-dot[data-line="3"],
.route-scheme[data-active-factor="4"] .route-line-dot[data-line="4"],
.route-scheme[data-active-factor="5"] .route-line-dot[data-line="5"] {
  opacity: 1;
  stroke: var(--accent);
}

.route-scheme[data-active-factor="1"] .route-line-dot[data-line="1"],
.route-scheme[data-active-factor="2"] .route-line-dot[data-line="2"],
.route-scheme[data-active-factor="3"] .route-line-dot[data-line="3"],
.route-scheme[data-active-factor="4"] .route-line-dot[data-line="4"],
.route-scheme[data-active-factor="5"] .route-line-dot[data-line="5"] {
  fill: var(--accent);
}

.route-bottom {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(250px, 0.42fr) minmax(280px, 0.46fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
  border-top: 1px solid rgba(162, 140, 110, 0.66);
  padding-top: clamp(28px, 3.4vh, 42px);
}

.route-bottom-note,
.route-bottom-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.route-bottom-item {
  position: relative;
  grid-template-columns: 52px minmax(0, 1fr);
  padding-left: clamp(22px, 2.6vw, 42px);
}

.route-bottom-item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(162, 140, 110, 0.34);
  content: "";
}

.route-bottom-icon {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-bottom p {
  max-width: 720px;
}

.route-bottom-item span {
  color: #2f2d2a;
  font-size: clamp(14px, 0.96vw, 17px);
  font-weight: 500;
  line-height: 1.45;
}

.section-label {
  margin: 0 0 28px;
  font-size: 22px;
  line-height: 1.4;
}

.process-section {
  border-top: 1px solid var(--line);
  background: transparent;
  padding: 0;
  overflow: hidden;
}

.process-section .container {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding-top: clamp(126px, 15vh, 168px);
  padding-bottom: clamp(58px, 6.4vh, 76px);
}

.process-section .section-label {
  margin: 0;
  color: var(--accent);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.process-section h2 {
  max-width: 1010px;
  margin: clamp(28px, 3.5vh, 42px) 0 0;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(46px, 4vw, 68px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.process-copy {
  display: block;
  max-width: 820px;
  margin-top: clamp(28px, 3.2vh, 38px);
}

.process-copy > p:first-child {
  color: #25282c;
}

.accent-quote {
  border-left: 0;
  padding-left: 0;
  margin-top: clamp(20px, 2.6vh, 30px) !important;
  color: var(--accent) !important;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(17px, 1.3vw, 22px) !important;
  font-weight: 400;
  line-height: 1.42 !important;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 100px);
  margin-top: auto;
  padding-top: 0;
}

.timeline::before {
  position: absolute;
  top: calc(clamp(65px, 6.5vh, 89px) + 19px);
  left: 24px;
  right: calc((100% - (3 * clamp(36px, 6vw, 100px))) / 4 - 19px);
  height: 1px;
  background: rgba(162, 140, 110, 0.78);
  content: "";
}

.timeline article {
  position: relative;
  padding-top: clamp(112px, 10.8vh, 138px);
  text-align: left;
}

.timeline article::before {
  position: absolute;
  top: clamp(65px, 6.5vh, 89px);
  left: 0;
  width: 38px;
  height: 38px;
  transform: none;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--accent) 0 6px, transparent 7px),
    var(--background);
  content: "";
  box-shadow: 0 0 0 5px var(--background);
}

.timeline span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: auto;
  height: auto;
  transform: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(39px, 3.15vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.timeline h3 {
  margin: 0;
  font-size: clamp(17px, 1.18vw, 22px);
  font-weight: 700;
  line-height: 1.35;
}

.timeline p {
  max-width: 270px;
  margin: 8px 0 0;
  color: #3f454c;
  font-size: clamp(14px, 0.96vw, 18px);
  line-height: 1.36;
}

.section-text {
  max-width: 780px;
  margin-top: 36px;
}

.deal-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  overflow: hidden;
}

.deal-section .container {
  position: relative;
  height: 100%;
  padding-top: clamp(82px, 9.2vh, 112px);
  padding-bottom: 0;
}

.deal-copy {
  position: relative;
  z-index: 4;
  max-width: 720px;
}

.deal-copy .eyebrow {
  display: inline-flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: clamp(28px, 3.4vh, 42px);
  color: var(--accent);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(13px, 0.92vw, 16px);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.deal-copy .eyebrow::after {
  width: 58px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.deal-copy h2 {
  max-width: 760px;
  margin: 0;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(28px, 1.9vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.deal-copy h2 span {
  display: block;
  white-space: nowrap;
}

.deal-copy .section-text {
  max-width: 470px;
  margin-top: clamp(24px, 3vh, 36px);
  color: #202020;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 500;
  line-height: 1.56;
}

.deal-stack {
  position: absolute;
  right: clamp(88px, 8vw, 136px);
  bottom: clamp(74px, 8vh, 112px);
  width: min(43vw, 690px);
  height: min(58vh, 540px);
  z-index: 2;
}

.deal-layer,
.deal-front-card {
  position: absolute;
  display: block;
  width: 100%;
  border: 1px solid rgba(120, 110, 96, 0.22);
  border-radius: 8px;
  background: rgba(248, 245, 238, 0.96);
  box-shadow: 0 14px 34px rgba(47, 42, 34, 0.08);
}

.deal-layer {
  height: 76px;
  min-height: 76px;
  padding: 11px 30px 0;
  color: #202020;
  cursor: pointer;
  line-height: 1;
  text-align: left;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.deal-layer::before {
  content: none;
}

.deal-layer-number {
  display: inline-block;
  position: static;
  min-width: 42px;
  margin-right: 18px;
  color: var(--accent);
  font-size: clamp(18px, 1.28vw, 22px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.deal-layer strong {
  display: inline;
  max-width: 78%;
  font-size: clamp(17px, 1.25vw, 21px);
  font-weight: 700;
  line-height: 1;
}

.deal-layer small {
  display: block;
  max-width: 430px;
  margin: 14px 0 0 64px;
  color: #4a4845;
  font-size: clamp(12px, 0.82vw, 14px);
  font-weight: 500;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.deal-layer:hover,
.deal-layer:focus-visible {
  border-color: rgba(162, 140, 110, 0.44);
  box-shadow: 0 19px 44px rgba(47, 42, 34, 0.12);
  transform: translateY(-8px);
  z-index: 8;
  clip-path: none;
}

.deal-layer:hover .deal-layer-number,
.deal-layer:focus-visible .deal-layer-number {
  color: var(--accent);
}

.deal-layer:hover small,
.deal-layer:focus-visible small {
  opacity: 1;
  transform: translateY(0);
}

.deal-layer-6 {
  top: 0;
  left: 0;
  z-index: 1;
  clip-path: inset(0 0 42px 0);
}

.deal-layer-5 {
  top: 42px;
  left: 0;
  z-index: 2;
  clip-path: inset(0 0 42px 0);
}

.deal-layer-4 {
  top: 84px;
  left: 0;
  z-index: 3;
  clip-path: inset(0 0 42px 0);
}

.deal-layer-3 {
  top: 126px;
  left: 0;
  z-index: 4;
  clip-path: inset(0 0 42px 0);
}

.deal-layer-2 {
  top: 168px;
  left: 0;
  z-index: 5;
  clip-path: inset(0 0 42px 0);
}

.deal-layer-1 {
  top: 210px;
  left: 0;
  z-index: 6;
  clip-path: inset(0 0 28px 0);
}

.deal-front-card {
  top: 258px;
  left: 0;
  z-index: 7;
  width: 100%;
  min-height: clamp(260px, 32vh, 350px);
  padding: clamp(42px, 4.8vh, 58px) clamp(46px, 4vw, 64px);
  background: #f6f2eb;
  box-shadow: 0 26px 72px rgba(47, 42, 34, 0.16);
}

.deal-front-card p {
  position: relative;
  margin: 0 0 clamp(34px, 4.2vh, 48px);
  color: #202020;
  font-size: clamp(28px, 2.2vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.deal-front-card p::before {
  display: block;
  width: 70px;
  height: 1px;
  margin-bottom: clamp(26px, 3.3vh, 36px);
  background: var(--accent);
  content: "";
}

.deal-front-card ul {
  display: grid;
  gap: clamp(22px, 3vh, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.deal-front-card li {
  display: block;
  color: #202020;
  font-size: clamp(15px, 1.08vw, 19px);
  font-weight: 500;
  line-height: 1.35;
}

#international-infrastructure,
.infrastructure-section {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--background);
}

.infrastructure-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.infrastructure-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding-top: clamp(34px, 4vh, 52px);
  padding-bottom: clamp(46px, 6vh, 74px);
}

.infrastructure-kicker {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #a28c6e;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(15px, 1.08vw, 20px);
  font-weight: 500;
  line-height: 1.2;
}

.kicker-line {
  display: block;
  width: 52px;
  height: 2px;
  background: #a28c6e;
}

.infrastructure-title {
  max-width: 840px;
  margin: clamp(52px, 6vh, 72px) 0 0;
  color: #090909;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(32px, 2.28vw, 43px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.infrastructure-title span {
  display: block;
  white-space: nowrap;
}

.infrastructure-text {
  max-width: 610px;
  margin: clamp(50px, 5.8vh, 68px) 0 0;
  color: #202020;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(17px, 1.18vw, 21px);
  font-weight: 500;
  line-height: 1.56;
}

@supports not (height: 100dvh) {
  #international-infrastructure,
  .infrastructure-section {
    height: 100vh;
    min-height: 100vh;
  }
}

.complex-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background-color: var(--background);
  background-image: url("assets/site-bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  scroll-margin-top: var(--compact-header-height);
}

.nonstandard-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.nonstandard-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: clamp(78px, 8.2vh, 98px);
  padding-bottom: 0;
}

.nonstandard-kicker {
  margin: 0;
  color: #927a5d;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nonstandard-title {
  max-width: min(58vw, 1120px);
  margin: clamp(22px, 2.8vh, 34px) 0 0;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(58px, 3.65vw, 68px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.03;
  text-transform: none;
}

.nonstandard-title span {
  display: block;
  white-space: nowrap;
}

.nonstandard-intro {
  max-width: 560px;
  margin: clamp(20px, 2.55vh, 30px) 0 0;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
}

.nonstandard-list {
  display: grid;
  width: min(48vw, 780px);
  margin-top: clamp(26px, 3.2vh, 34px);
}

.nonstandard-item {
  display: grid;
  grid-template-columns: 48px 54px minmax(0, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(162, 140, 110, 0.28);
  padding: clamp(12px, 1.45vh, 16px) 0;
}

.nonstandard-item:first-child {
  padding-top: 0;
}

.nonstandard-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.item-index {
  color: #927a5d;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(22px, 1.45vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.item-index::after {
  display: block;
  width: 34px;
  height: 1px;
  margin: -13px 0 0 48px;
  background: #a28c6e;
  content: "";
}

.item-copy h3 {
  margin: 0;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.item-copy {
  grid-column: 3;
}

.item-copy p {
  max-width: 650px;
  margin: 7px 0 0;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
}

@supports not (height: 100dvh) {
  .complex-section {
    height: 100vh;
    min-height: 100vh;
  }
}

.cases-section {
  width: 100%;
  height: auto;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
}

.cases-placeholder {
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  padding-top: clamp(178px, 20vh, 220px);
}

.cases-placeholder h2 {
  margin: 0;
  color: #202020;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(4.6rem, 5.45vw, 6.15rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

.cases-intro {
  max-width: 650px;
  margin: clamp(14px, 1.7vh, 22px) 0 0;
  color: rgba(36, 35, 33, 0.72);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.58;
}

.cases-showcase {
  display: grid;
  flex: 1;
  min-height: 0;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(48px, 5.5vw, 96px);
  align-items: center;
  margin-top: clamp(30px, 4.8vh, 54px);
}

.cases-list {
  border-bottom: 1px solid rgba(36, 35, 33, 0.14);
}

.cases-row {
  display: grid;
  width: 100%;
  min-height: clamp(112px, 14vh, 140px);
  grid-template-columns: clamp(66px, 5.5vw, 92px) minmax(0, 1fr) 24px;
  gap: clamp(24px, 3.5vw, 54px);
  align-items: center;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(36, 35, 33, 0.14);
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: border-color 220ms ease, opacity 220ms ease;
  appearance: none;
}

.cases-row::after {
  display: block;
  justify-self: end;
  color: rgba(36, 35, 33, 0.42);
  font-size: 20px;
  line-height: 1;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease, color 220ms ease;
  content: "→";
}

.cases-number {
  color: rgba(36, 35, 33, 0.28);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(38px, 2.5vw, 48px);
  font-weight: 300;
  line-height: 1;
  transition: color 220ms ease, font-weight 220ms ease;
}

.cases-row h3 {
  max-width: 560px;
  margin: 0;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(21px, 1.34vw, 28px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.18;
  transition: color 220ms ease, font-weight 220ms ease, transform 220ms ease;
  overflow-wrap: anywhere;
}

.cases-title-stack span {
  display: block;
}

.cases-row:hover,
.cases-row:focus-visible,
.cases-row.is-active {
  border-color: rgba(36, 35, 33, 0.34);
  opacity: 1;
}

.cases-list:hover .cases-row:not(:hover):not(.is-active) {
  opacity: 0.48;
}

.cases-row:hover .cases-number,
.cases-row:focus-visible .cases-number,
.cases-row.is-active .cases-number {
  color: var(--accent);
  font-weight: 400;
}

.cases-row:hover h3,
.cases-row:focus-visible h3,
.cases-row.is-active h3 {
  color: #151515;
  font-weight: 650;
  transform: translateX(4px);
}

.cases-row:hover::after,
.cases-row:focus-visible::after,
.cases-row.is-active::after {
  color: var(--accent);
  opacity: 1;
  transform: translateX(0);
}

.case-preview {
  position: relative;
  justify-self: end;
  width: auto;
  height: clamp(500px, 66vh, 760px);
  aspect-ratio: 7 / 8;
  overflow: hidden;
  background: #151515;
  isolation: isolate;
}

.case-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 260ms ease, transform 420ms ease;
}

.case-preview::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.05) 0%, rgba(12, 12, 12, 0.16) 40%, rgba(12, 12, 12, 0.78) 100%);
  content: "";
  pointer-events: none;
}

.case-preview-overlay {
  position: absolute;
  z-index: 2;
  inset: auto clamp(22px, 2.4vw, 36px) clamp(22px, 2.4vw, 36px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.38fr);
  gap: clamp(18px, 2.4vw, 32px);
  align-items: end;
  color: #fff;
  transition: opacity 240ms ease, transform 240ms ease;
}

.case-preview-copy h3 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(22px, 1.65vw, 32px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.case-preview-copy p {
  max-width: 520px;
  margin: clamp(14px, 1.5vh, 18px) 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 500;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.case-preview-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(18px, 2.5vh, 26px);
  text-align: right;
}

.case-preview-action p {
  max-width: 240px;
  margin: 0;
  color: var(--accent);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.case-preview-action a,
.cases-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  color: #927a5d;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: color 180ms ease;
}

.case-preview-action a {
  color: #fff;
  font-weight: 650;
}

.case-preview-action a span:last-child,
.cases-more-link span:last-child {
  transition: transform 180ms ease;
}

.case-preview-action a:hover,
.cases-more-link:hover {
  color: var(--accent);
}

.case-preview-action a:hover span:last-child,
.cases-more-link:hover span:last-child {
  transform: translateX(4px);
}

.case-preview.is-changing .case-preview-image,
.case-preview.is-changing .case-preview-overlay {
  opacity: 0;
}

.case-preview.is-changing .case-preview-image {
  transform: scale(1.015);
}

@media (max-width: 1100px) {
  .cases-placeholder h2 {
    font-size: clamp(34px, 2.95vw, 46px);
  }

  .cases-showcase {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: 42px;
  }

  .case-preview {
    height: clamp(470px, 59vh, 640px);
  }
}

@media (max-width: 900px) {
  .cases-section {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  .cases-placeholder {
    height: auto;
    min-height: 100svh;
    padding-top: 124px;
  }

  .cases-showcase {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .cases-list {
    width: 100%;
  }

  .cases-row {
    min-height: 104px;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px 28px;
    padding: 18px 0;
  }

  .cases-row::after {
    display: none;
  }

  .case-preview {
    justify-self: start;
    width: min(100%, 520px);
    height: auto;
  }

  .case-preview-overlay {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .case-preview-action {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .cases-section {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  .cases-placeholder {
    height: auto;
    min-height: 100svh;
    padding-top: 96px;
  }

  .cases-placeholder h2 {
    font-size: clamp(33px, 10.2vw, 48px);
  }

  .cases-intro {
    max-width: 100%;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.52;
  }

  .cases-showcase {
    margin-top: 28px;
    gap: 28px;
  }

  .cases-row {
    display: grid;
    min-height: 0;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 0 26px;
  }

  .cases-number {
    font-size: 34px;
  }

  .cases-row h3 {
    max-width: 100%;
    font-size: clamp(21px, 6vw, 25px);
    line-height: 1.2;
  }

  .cases-row:hover h3,
  .cases-row:focus-visible h3,
  .cases-row.is-active h3 {
    transform: none;
  }

  .case-preview {
    width: 100%;
  }

  .case-preview-overlay {
    inset: auto 20px 20px;
  }

  .case-preview-copy h3 {
    font-size: clamp(24px, 7vw, 31px);
  }

  .case-preview-copy p {
    font-size: 15px;
  }

  .case-preview-action {
    gap: 18px;
  }

  .case-preview-action p {
    max-width: 100%;
    font-size: 11px;
  }

  .case-preview-action a {
    gap: 18px;
    font-size: 15px;
  }
}

.cases-placeholder {
  min-height: 100dvh;
  padding-top: clamp(108px, 12vh, 132px);
}

.cases-intro {
  max-width: 610px;
}

.cases-showcase {
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(34px, 4.2vw, 68px);
  align-items: start;
  margin-top: clamp(28px, 3.5vh, 42px);
}

.cases-list {
  align-self: start;
}

.cases-row {
  position: relative;
  min-height: clamp(82px, 9.2vh, 104px);
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: clamp(18px, 2vw, 28px);
  align-items: center;
}

.cases-row::after {
  content: none;
}

.cases-row.is-active::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: -34px;
  width: 2px;
  background: var(--accent);
  content: "";
}

.cases-case-button {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: clamp(58px, 5vw, 78px) minmax(0, 1fr);
  gap: clamp(18px, 2.2vw, 30px);
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
  appearance: none;
}

.cases-row-link {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(162, 140, 110, 0.34);
  border-radius: 50%;
  color: var(--accent);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.cases-row-link:hover,
.cases-row-link:focus-visible {
  border-color: var(--accent);
  background: rgba(162, 140, 110, 0.08);
  color: #6f563a;
  transform: translateX(2px);
}

.cases-number {
  font-size: clamp(32px, 2.25vw, 42px);
}

.cases-row h3 {
  max-width: 420px;
  font-size: clamp(18px, 1.08vw, 21px);
  font-weight: 650;
  line-height: 1.16;
}

.cases-row:hover h3,
.cases-row:focus-within h3,
.cases-row.is-active h3 {
  transform: none;
}

.case-preview {
  width: min(100%, clamp(560px, 43vw, 700px));
  height: auto;
  border-radius: 8px;
  box-shadow: none;
}

.case-preview-top {
  position: absolute;
  z-index: 3;
  top: clamp(18px, 2vw, 28px);
  right: clamp(18px, 2vw, 28px);
  left: clamp(18px, 2vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.86);
}

.case-preview-top p {
  margin: 0;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
  line-height: 1;
}

.case-preview-nav {
  display: flex;
  gap: 8px;
}

.case-preview-nav button {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 0;
  line-height: 0;
  transition: color 180ms ease, transform 180ms ease;
}

.case-preview-nav button::before {
  display: block;
  color: currentColor;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(0);
}

.case-preview-nav button[data-case-image-prev]::before {
  content: "←";
}

.case-preview-nav button[data-case-image-next]::before {
  content: "→";
}

.case-preview-nav button:hover,
.case-preview-nav button:focus-visible {
  color: var(--accent);
}

.case-preview-overlay {
  inset: auto clamp(22px, 2.2vw, 34px) clamp(22px, 2.2vw, 34px);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  grid-template-areas:
    "meta description"
    "link link";
  gap: clamp(16px, 1.8vw, 26px) clamp(20px, 2.4vw, 34px);
  align-items: end;
}

.case-preview-description {
  grid-area: description;
  max-width: 300px;
  margin: 0 0 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: 600;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.case-preview-link {
  grid-area: link;
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 18px;
  color: #fff;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease;
}

.case-preview-link span:last-child {
  color: var(--accent);
  transition: transform 180ms ease;
}

.case-preview-link:hover {
  color: var(--accent);
}

.case-preview-link:hover span:last-child {
  transform: translateX(4px);
}

.case-preview.is-changing .case-preview-top {
  opacity: 0;
}

@media (max-width: 1100px) {
  .cases-showcase {
    grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
    gap: 34px;
  }

  .case-preview {
    width: min(100%, 620px);
  }
}

@media (max-width: 900px) {
  .cases-placeholder {
    padding-top: 104px;
  }

  .cases-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cases-row {
    grid-template-columns: minmax(0, 1fr) 40px;
    min-height: 94px;
    padding: 0;
  }

  .cases-row.is-active::before {
    left: -18px;
  }

  .case-preview {
    width: min(100%, 620px);
  }
}

@media (max-width: 760px) {
  .cases-placeholder {
    padding-top: 96px;
  }

  .cases-showcase {
    margin-top: 24px;
    gap: 26px;
  }

  .cases-case-button {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
  }

  .cases-row {
    min-height: 92px;
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 12px;
    padding: 0;
  }

  .cases-row-link {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .cases-number {
    font-size: 32px;
  }

  .cases-row h3 {
    font-size: clamp(18px, 5.1vw, 22px);
  }

  .case-preview {
    width: 100%;
  }

  .case-preview-top {
    top: 16px;
    right: 16px;
    left: 16px;
  }

  .case-preview-nav button {
    width: 30px;
    height: 30px;
  }

  .case-preview-overlay {
    inset: auto 18px 20px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "meta"
      "description"
      "link";
    gap: 14px;
  }

  .case-preview-description {
    max-width: 100%;
    margin: 0;
    font-size: 14px;
  }

  .case-preview-link {
    justify-self: start;
  }
}

.cases-placeholder {
  padding-top: clamp(112px, 12vh, 140px);
  padding-bottom: 0;
}

.cases-section {
  height: auto;
  min-height: 0;
  overflow: visible;
}

.cases-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(380px, 0.48fr);
  grid-template-areas: "left preview";
  column-gap: clamp(44px, 5vw, 92px);
  align-items: stretch;
}

.cases-left {
  display: flex;
  min-height: 0;
  flex-direction: column;
  grid-area: left;
}

.cases-layout > .case-preview {
  grid-area: preview;
}

.cases-left > h2 {
  margin-top: 0;
}

.cases-intro {
  max-width: 610px;
  margin-top: clamp(14px, 1.6vh, 20px);
}

.cases-list {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  margin-top: clamp(34px, 4vh, 48px);
}

.cases-row {
  flex: 1 1 0;
  min-height: clamp(98px, 10vh, 168px);
}

.cases-case-button {
  grid-template-columns: clamp(58px, 4.8vw, 76px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: clamp(18px, 2.2vw, 30px);
  row-gap: clamp(10px, 1.2vh, 16px);
}

.cases-number {
  grid-row: 1 / span 2;
}

.cases-row h3 {
  max-width: 620px;
  font-size: clamp(25px, 1.55vw, 34px);
  font-weight: 700;
  line-height: 1.12;
}

.cases-row-meta {
  display: block;
  max-width: 620px;
  color: var(--accent);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(12px, 0.82vw, 14px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.case-preview {
  align-self: start;
  justify-self: end;
  width: min(100%, clamp(560px, 43vw, 720px));
  height: auto;
  max-height: none;
  aspect-ratio: 7 / 8;
}

.case-preview-overlay {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas: "description link";
  gap: clamp(14px, 1.8vw, 22px);
}

.case-preview-description {
  grid-area: description;
  justify-self: start;
  max-width: 330px;
  margin: 0;
}

.case-preview-link {
  grid-area: link;
  justify-self: end;
}

.cases-more {
  position: relative;
  display: flex;
  width: 100vw;
  min-height: clamp(128px, 15vh, 170px);
  align-items: center;
  margin-top: 12px;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: var(--background);
  background-image: none;
}

.cases-more-link {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  margin-inline: auto;
  padding-left: 0;
  justify-content: flex-start;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
}

.cases-more-link span:last-child {
  color: #a28c6e;
}

.partners-section {
  width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  height: 50vh;
  height: 50dvh;
  padding: 0;
  overflow: hidden;
  background: #111;
}

.partners-inner {
  display: flex;
  width: min(calc(100% - (var(--page-gutter) * 2)), 1000px);
  height: 100%;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  overflow: hidden;
}

.partners-logo-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .cases-layout {
    grid-template-columns: minmax(0, 0.51fr) minmax(350px, 0.49fr);
    column-gap: 34px;
  }

  .cases-row h3 {
    font-size: clamp(20px, 1.55vw, 24px);
  }
}

@media (max-width: 900px) {
  .cases-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "intro"
      "list"
      "preview";
  }

  .cases-left {
    display: contents;
  }

  .cases-left > h2 {
    grid-area: title;
  }

  .cases-left > .cases-intro {
    grid-area: intro;
  }

  .cases-left > .cases-list {
    grid-area: list;
  }

  .cases-list {
    display: block;
    flex: none;
    margin-top: 28px;
  }

  .cases-row {
    min-height: auto;
    padding: 22px 0;
  }

  .cases-case-button {
    align-items: start;
  }

  .case-preview {
    width: 100%;
    height: auto;
    max-height: none;
    margin-top: 28px;
  }

  .cases-more {
    margin-top: 12px;
    width: 100vw;
    min-height: 110px;
  }

  .partners-section {
    height: auto;
    min-height: 0;
    padding: 64px 0;
  }

  .partners-inner {
    width: min(calc(100% - (var(--page-gutter) * 2)), 720px);
    height: auto;
  }

  .partners-logo-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 760px) {
  .cases-placeholder {
    padding-bottom: 0;
  }

  .cases-row h3 {
    font-size: clamp(20px, 5.4vw, 23px);
  }

  .cases-row-meta {
    font-size: 10px;
  }

  .cases-more {
    min-height: 100px;
  }

  .cases-more-link {
    font-size: 17px;
  }

  .partners-section {
    padding: 56px 0 60px;
  }

}

.cases-page {
  --header-height: 78px;
  --compact-header-height: 66px;
  color: #242321;
}

.cases-page .header-inner {
  min-height: var(--header-height);
}

.cases-page .site-header.is-compact .header-inner {
  min-height: var(--compact-header-height);
}

.cases-page-main {
  padding-top: var(--header-height);
}

.cases-page-main section {
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

.cases-page-hero {
  min-height: auto;
}

.cases-page-hero-inner {
  display: flex;
  min-height: auto;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(42px, 5.5vh, 64px);
  padding-bottom: clamp(28px, 4vh, 44px);
}

.cases-page-kicker {
  width: fit-content;
  margin: 0;
  border-bottom: 1px solid rgba(146, 122, 93, 0.72);
  padding-bottom: 12px;
  color: #927a5d;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cases-page-title {
  max-width: 980px;
  margin: clamp(30px, 4vh, 44px) 0 0;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(4rem, 5vw, 5.8rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
}

.cases-page-title span,
.cases-page-case-title span,
.cases-page-meta span {
  display: block;
}

.cases-page-lead {
  max-width: 650px;
  margin: clamp(28px, 3.5vh, 32px) 0 0;
  color: rgba(36, 35, 33, 0.72);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
}

.cases-page-list-inner {
  border-top: 1px solid rgba(36, 35, 33, 0.14);
}

.cases-page-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1.6fr) minmax(260px, 0.65fr) 160px;
  gap: clamp(28px, 3.5vw, 60px);
  align-items: center;
  border-bottom: 1px solid rgba(36, 35, 33, 0.14);
  padding: clamp(34px, 5vh, 56px) 0;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 220ms ease;
}

.cases-page-number {
  color: #a28c6e;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(42px, 2.8vw, 52px);
  font-weight: 300;
  line-height: 1;
}

.cases-page-case-title {
  margin: 0;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(28px, 2.1vw, 38px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  transition: color 180ms ease, transform 180ms ease;
}

.cases-page-meta {
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
}

.cases-page-meta p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.cases-page-meta p + p {
  margin-top: 10px;
  color: rgba(36, 35, 33, 0.5);
  font-size: 14px;
  line-height: 1.4;
}

.case-read-more,
.cases-page-cta-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: #927a5d;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: color 180ms ease;
}

.case-read-more span:last-child,
.cases-page-cta-copy a span:last-child {
  transition: transform 180ms ease;
}

.cases-page-row:hover .cases-page-case-title {
  color: #201f1d;
  transform: translateX(4px);
}

.cases-page-row:hover {
  background-color: rgba(162, 140, 110, 0.045);
}

.cases-page-row:focus-visible {
  background-color: rgba(162, 140, 110, 0.055);
  outline: 1px solid rgba(146, 122, 93, 0.48);
  outline-offset: -1px;
}

.cases-page-row:hover .case-read-more,
.cases-page-row:focus-visible .case-read-more,
.cases-page-cta-copy a:hover {
  color: #a28c6e;
}

.cases-page-row:hover .case-read-more span:last-child,
.cases-page-row:focus-visible .case-read-more span:last-child,
.cases-page-cta-copy a:hover span:last-child {
  transform: translateX(4px);
}

.cases-page-cta {
  padding: clamp(100px, 14vh, 160px) 0;
}

.cases-page-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.55fr);
  gap: clamp(42px, 6vw, 92px);
  border-top: 1px solid rgba(36, 35, 33, 0.14);
  padding-top: clamp(42px, 6vh, 70px);
}

.cases-page-cta h2 {
  max-width: 720px;
  margin: 0;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(42px, 4vw, 68px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.cases-page-cta-copy {
  align-self: start;
}

.cases-page-cta-copy p {
  max-width: 440px;
  margin: 0;
  color: rgba(36, 35, 33, 0.72);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}

.cases-page-cta-copy a {
  justify-content: flex-start;
  margin-top: 28px;
  font-weight: 600;
}

.case-page {
  --header-height: 78px;
  --compact-header-height: 66px;
  color: #242321;
}

.case-page-root {
  scroll-snap-type: none;
}

.case-page .header-inner {
  min-height: var(--header-height);
}

.case-page .site-header.is-compact .header-inner {
  min-height: var(--compact-header-height);
}

.case-page-main {
  padding-top: var(--header-height);
}

.case-page-main section {
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

.case-hero-image {
  width: 100vw;
  height: 50vh;
  height: 50dvh;
  margin: 0;
  overflow: hidden;
}

.case-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.case-intro {
  padding: clamp(70px, 9vh, 110px) 0 clamp(54px, 8vh, 96px);
}

.case-heading {
  max-width: 1120px;
  margin: 0;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(3.8rem, 5vw, 5.7rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

.case-heading span {
  display: block;
  white-space: nowrap;
}

.case-page-paint .case-heading span {
  white-space: nowrap;
}

.case-heading-packaging {
  max-width: 1380px;
  font-size: clamp(3.55rem, 4.65vw, 5.2rem);
}

.case-heading-packaging span {
  white-space: nowrap;
}

.case-page-paint .case-section-final {
  padding-bottom: clamp(26px, 4vh, 44px);
}

.case-page-paint .case-back-nav {
  padding-top: 0;
}

.case-meta {
  max-width: 850px;
  margin: clamp(26px, 3vh, 32px) 0 0;
  color: #927a5d;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.case-section {
  padding: clamp(48px, 7vh, 86px) 0;
}

.case-section-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 0.9fr);
  gap: clamp(42px, 7vw, 120px);
  align-items: start;
}

.case-section h2,
.case-route h2 {
  max-width: 420px;
  margin: 0;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(27px, 2vw, 36px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
}

.case-copy {
  max-width: 840px;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
}

.case-copy p {
  margin: 0;
}

.case-copy p + p {
  margin-top: 24px;
}

.case-real-photo {
  margin-top: clamp(70px, 10vh, 120px);
  margin-bottom: clamp(70px, 10vh, 120px);
}

.case-real-photo-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.case-real-photo img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
}

.case-real-photo-pair img {
  max-height: none;
}

.case-dorin-photo-pair img:nth-child(2) {
  width: 75%;
  justify-self: center;
}

.case-flour-photo-pair img {
  width: auto;
  max-width: 100%;
  height: clamp(520px, 43vw, 640px);
  object-fit: contain;
}

.case-flour-photo-pair {
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 8px;
}

.case-route {
  padding: clamp(48px, 7vh, 86px) 0;
}

.case-route-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 0.9fr);
  gap: clamp(42px, 7vw, 120px);
  align-items: start;
}

.case-route-steps {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(var(--route-count, 5), minmax(0, 1fr));
  width: 100%;
  max-width: 840px;
  margin: 0;
  padding: 0;
  color: #927a5d;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
  list-style: none;
  text-transform: uppercase;
}

.case-route-steps li {
  position: relative;
  min-width: 0;
  padding-top: 34px;
}

.case-route-steps li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #a28c6e;
  background: #a28c6e;
  border-radius: 50%;
  content: "";
}

.case-route-steps li::after {
  position: absolute;
  top: 12px;
  right: 10px;
  left: 10px;
  height: 1px;
  background: rgba(162, 140, 110, 0.64);
  content: "";
}

.case-route-steps li:last-child::after {
  content: none;
}

.case-route-steps span {
  display: block;
  padding-right: 14px;
}

.case-route-inner > p {
  grid-column: 2;
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(36, 35, 33, 0.72);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
}

.case-back-nav {
  padding: clamp(74px, 10vh, 120px) 0 clamp(92px, 12vh, 150px);
}

.case-back-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(36, 35, 33, 0.14);
  padding-top: clamp(28px, 4vh, 42px);
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 500;
  line-height: 1;
  transition: color 180ms ease;
}

.case-back-link span:last-child {
  color: #927a5d;
  transition: transform 180ms ease;
}

.case-back-link:hover {
  color: #a28c6e;
}

.case-back-link:hover span:last-child {
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .cases-page-row {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 22px 36px;
  }

  .cases-page-meta,
  .case-read-more {
    grid-column: 2;
  }

  .case-read-more {
    justify-content: flex-start;
  }

  .case-section-inner,
  .case-route-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .case-heading {
    max-width: 100%;
    font-size: clamp(48px, 5.4vw, 68px);
    line-height: 1.02;
  }

  .case-heading span,
  .case-heading-packaging span {
    white-space: normal;
  }

  .case-route-steps,
  .case-route-inner > p {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .case-page {
    --header-height: 76px;
    --compact-header-height: 76px;
  }

  .case-page .header-inner,
  .case-page .site-header.is-compact .header-inner {
    min-height: 76px;
  }

  .case-page-main {
    padding-top: var(--compact-header-height);
  }

  .case-hero-image {
    height: 40vh;
    height: 40dvh;
  }

  .case-intro {
    padding: 58px 0 42px;
  }

  .case-heading {
    max-width: 100%;
    font-size: clamp(20px, 6.5vw, 58px);
    line-height: 0.98;
  }

  .case-page-cedar .case-heading span {
    white-space: normal;
  }

  .case-page-paint .case-heading span {
    white-space: nowrap;
  }

  .case-page-paint .case-heading {
    font-size: clamp(18px, 5.65vw, 43px);
  }

  .case-heading-packaging {
    font-size: clamp(17px, 4.5vw, 40px);
  }

  .case-heading-packaging span {
    white-space: nowrap;
  }

  .case-page-paint .case-section-final {
    padding-bottom: 28px;
  }

  .case-meta {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.5;
  }

  .case-section {
    padding: 42px 0;
  }

  .case-section h2,
  .case-route h2 {
    font-size: clamp(26px, 7vw, 32px);
  }

  .case-copy,
  .case-route-inner > p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.58;
  }

  .case-copy p + p {
    margin-top: 20px;
  }

  .case-real-photo {
    margin-top: 58px;
    margin-bottom: 58px;
  }

  .case-real-photo-pair {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .case-real-photo img {
    max-height: none;
  }

  .case-flour-photo-pair img {
    width: 100%;
    height: auto;
  }

  .case-flour-photo-pair {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .case-route {
    padding: 42px 0;
  }

  .case-route-steps {
    display: block;
    max-width: 100%;
    font-size: 13px;
  }

  .case-route-steps li {
    min-height: 62px;
    padding: 0 0 0 30px;
  }

  .case-route-steps li::before {
    top: 2px;
    left: 0;
  }

  .case-route-steps li::after {
    top: 14px;
    right: auto;
    bottom: 10px;
    left: 4px;
    width: 1px;
    height: auto;
  }

  .case-route-steps span {
    padding-right: 0;
  }

  .case-back-nav {
    padding: 58px 0 86px;
  }

  .case-back-link {
    font-size: clamp(30px, 9vw, 42px);
  }

  .cases-page {
    --header-height: 76px;
    --compact-header-height: 76px;
  }

  .cases-page .header-inner,
  .cases-page .site-header.is-compact .header-inner {
    min-height: 76px;
  }

  .cases-page-main {
    padding-top: var(--compact-header-height);
  }

  .cases-page-hero,
  .cases-page-hero-inner {
    min-height: auto;
  }

  .cases-page-hero-inner {
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .cases-page-kicker {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .cases-page-title {
    max-width: 100%;
    margin-top: 28px;
    font-size: clamp(42px, 12.4vw, 58px);
    line-height: 0.98;
  }

  .cases-page-lead {
    max-width: 100%;
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.55;
  }

  .cases-page-row {
    display: block;
    padding: 36px 0 38px;
  }

  .cases-page-number {
    display: block;
    margin-bottom: 24px;
    font-size: 40px;
  }

  .cases-page-case-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(21.5px, 5.8vw, 25px);
    line-height: 1.12;
    letter-spacing: -0.02em;
  }

  .cases-page-case-title span {
    display: inline;
    white-space: normal;
  }

  .cases-page-list-inner .cases-page-row:first-child .cases-page-case-title span {
    display: block;
    white-space: nowrap;
  }

  .cases-page-meta {
    margin-top: 22px;
  }

  .cases-page-meta p {
    font-size: 15px;
  }

  .cases-page-meta p + p {
    margin-top: 9px;
    font-size: 14px;
  }

  .case-read-more {
    justify-content: flex-start;
    margin-top: 24px;
    font-size: 15px;
  }

  .cases-page-row:hover .cases-page-case-title {
    transform: none;
  }

  .cases-page-cta {
    padding: 82px 0 96px;
  }

  .cases-page-cta-inner {
    display: block;
    padding-top: 38px;
  }

  .cases-page-cta h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .cases-page-cta-copy {
    margin-top: 26px;
  }

  .cases-page-cta-copy p {
    max-width: 100%;
    font-size: 15px;
  }
}

.trust-section {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.trust-frame {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding-top: clamp(86px, 10vh, 116px);
  padding-bottom: clamp(28px, 4vh, 48px);
}

.trust-frame h2 {
  margin: 0;
  color: #202020;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(36px, 3.8vw, 64px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.trust-logos {
  width: 100%;
  max-width: 100%;
  height: min(76vh, 760px);
  margin-top: clamp(16px, 2.5vh, 30px);
  object-fit: contain;
  object-position: center center;
}

.faq-section {
  border-top: 0;
  background: transparent;
  color: #1e1e1e;
}

#faq-section {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
}

@supports not (height: 100dvh) {
  #faq-section {
    height: auto;
    min-height: 0;
  }
}

.faq-layout {
  display: grid;
  height: auto;
  grid-template-columns: minmax(190px, 0.72fr) minmax(470px, 1.35fr) minmax(300px, 1fr);
  gap: clamp(34px, 4.4vw, 78px);
  align-items: start;
  padding-top: clamp(116px, 12.8vh, 148px);
  padding-bottom: clamp(56px, 6.2vh, 76px);
}

.faq-heading h2 {
  max-width: 320px;
  color: #1e1e1e;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(40px, 3.75vw, 64px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.faq-counter {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: clamp(24px, 4vh, 44px);
  color: #55514b;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.faq-counter span:first-child,
.faq-index,
.faq-answer-label span:first-child {
  color: var(--accent);
}

.faq-counter span:first-child {
  font-size: clamp(30px, 2.4vw, 42px);
  line-height: 0.9;
}

.faq-questions {
  border-top: 1px solid rgba(30, 30, 30, 0.16);
}

.faq-question {
  position: relative;
  display: grid;
  width: 100%;
  min-height: clamp(52px, 6vh, 68px);
  grid-template-columns: 46px minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(30, 30, 30, 0.16);
  background: transparent;
  padding: clamp(10px, 1.35vh, 16px) 0;
  color: #2b2b2b;
  cursor: pointer;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(15px, 1.02vw, 18px);
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  transition: color 220ms ease;
}

.faq-question::before {
  position: absolute;
  left: -18px;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: translateY(-50%);
  transition: width 220ms ease;
}

.faq-question:hover,
.faq-question.is-active {
  color: #111;
}

.faq-question:hover .faq-index,
.faq-question.is-active .faq-index {
  color: var(--accent);
}

.faq-question.is-active {
  font-weight: 650;
}

.faq-question.is-active::before {
  width: 12px;
}

.faq-index {
  color: #8a867f;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 220ms ease;
}

.faq-answer {
  align-self: start;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: flex-start;
  border-left: 1px solid rgba(162, 140, 110, 0.36);
  padding: clamp(6px, 0.8vh, 10px) 0 0 clamp(24px, 3vw, 46px);
}

.faq-answer-label {
  display: flex;
  gap: 8px;
  color: #55514b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.faq-answer-text {
  max-width: 430px;
  margin: 28px 0 0;
  color: #1e1e1e;
  font-size: clamp(22px, 1.55vw, 29px);
  font-weight: 500;
  line-height: 1.42;
}

.faq-answer.is-changing .faq-answer-text,
.faq-answer.is-changing .faq-answer-label {
  animation: faqAnswerFade 220ms ease both;
}

@keyframes faqAnswerFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.request-section {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  overflow: visible;
  border-top: 0;
  background: transparent;
}

@supports not (height: 100dvh) {
  #contacts.request-section {
    height: 100vh;
    min-height: 100vh;
  }
}

.request-layout {
  display: grid;
  min-height: 100dvh;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1fr);
  gap: clamp(80px, 9vw, 170px);
  align-items: center;
  padding-top: clamp(74px, 8vh, 98px);
  padding-bottom: clamp(36px, 5vh, 66px);
}

.request-copy h2 {
  max-width: 600px;
  color: #202020;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(54px, 4.2vw, 78px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.03;
}

.request-copy h2 span,
.request-copy p span {
  display: block;
}

.request-copy p {
  max-width: 500px;
  margin: clamp(34px, 4vh, 48px) 0 0;
  color: #3f3c38;
  font-size: clamp(20px, 1.45vw, 24px);
  font-weight: 400;
  line-height: 1.45;
}

.request-form {
  display: grid;
  gap: clamp(14px, 1.7vh, 18px);
  width: 100%;
  max-width: 650px;
  justify-self: end;
  border: 1px solid rgba(30, 30, 30, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 40px rgba(30, 30, 30, 0.025);
  padding: clamp(28px, 2.2vw, 42px);
}

.request-form label {
  display: grid;
  gap: 8px;
}

.request-form input,
.request-form textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid rgba(30, 30, 30, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.22);
  color: #202020;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 400;
  line-height: 1.45;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: #77736e;
  opacity: 1;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(162, 140, 110, 0.08);
}

.request-form input {
  min-height: clamp(58px, 6.4vh, 68px);
  padding: 0 clamp(18px, 1.6vw, 24px);
}

.request-form textarea {
  min-height: clamp(124px, 15vh, 154px);
  resize: vertical;
  padding: clamp(16px, 1.5vw, 20px) clamp(18px, 1.6vw, 24px);
}

.request-form small {
  margin-top: -2px;
  color: #74706b;
  font-size: 14px;
  line-height: 1.45;
}

.file-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-control span {
  position: relative;
  display: flex;
  min-height: clamp(58px, 6.2vh, 66px);
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(30, 30, 30, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  padding: 0 clamp(18px, 1.6vw, 24px);
  color: #68645f !important;
  cursor: pointer;
  font-size: clamp(18px, 1.35vw, 22px) !important;
  font-weight: 400 !important;
  transition: border-color 180ms ease, color 180ms ease;
}

.file-control span::before {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.5 10.8 12.2 20.1a6.2 6.2 0 0 1-8.8-8.8l9.5-9.5a4.2 4.2 0 0 1 5.9 5.9l-9.4 9.4a2.15 2.15 0 0 1-3-3l8.6-8.6' fill='none' stroke='black' stroke-width='2.55' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.5 10.8 12.2 20.1a6.2 6.2 0 0 1-8.8-8.8l9.5-9.5a4.2 4.2 0 0 1 5.9 5.9l-9.4 9.4a2.15 2.15 0 0 1-3-3l8.6-8.6' fill='none' stroke='black' stroke-width='2.55' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.file-control:hover span {
  border-color: var(--accent);
  color: var(--accent) !important;
}

.form-submit {
  width: 100%;
  min-height: clamp(64px, 7.2vh, 76px);
  border: 0;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-size: clamp(20px, 1.55vw, 26px);
  font-weight: 500;
  transition: background 180ms ease;
}

.form-submit:hover {
  background: #917c61;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--accent);
  font-size: 14px;
  line-height: 1.5;
}

.site-footer {
  border-top: 1px solid rgba(30, 30, 30, 0.12);
  background: transparent;
  padding: 64px 0 28px;
  color: #202020;
  font-family: "IBM Plex Sans", Arial, sans-serif;
}

.footer-container {
  display: grid;
  gap: 46px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(60px, 8vw, 140px);
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.footer-logo img {
  display: block;
  width: clamp(220px, 14vw, 260px);
  max-width: 100%;
  height: auto;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  color: rgba(36, 35, 33, 0.65);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-details,
.footer-contacts {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-label {
  margin: 0 0 2px;
  color: #927a5d;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-contacts span,
.footer-details span {
  width: fit-content;
  color: #242321;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-contact-item {
  display: grid;
  gap: 3px;
}

.footer-contact-label {
  color: rgba(36, 35, 33, 0.54);
}

.footer-contacts a {
  width: fit-content;
  color: #242321;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-contacts a:hover,
.footer-contacts a:focus-visible {
  color: #a28c6e;
}

@media (max-width: 1100px) {
  .site-header {
    width: 100%;
    max-width: 100vw;
  }

  .header-inner {
    width: min(calc(100vw - (var(--page-gutter) * 2)), var(--container));
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 243, 241, 0.32);
    border-radius: 999px;
    background: transparent;
    color: #f5f3f1;
    cursor: pointer;
  }

  .menu-button:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  .menu-button span {
    position: absolute;
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

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

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

  .menu-button.is-open span:first-child {
    transform: rotate(45deg);
  }

  .menu-button.is-open span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-nav {
    display: grid;
    width: 100vw;
    max-width: 100vw;
    max-height: 0;
    overflow: hidden;
    box-sizing: border-box;
    padding-inline: 20px;
    background: #151515;
    color: #f5f3f1;
    transition: max-height 260ms ease, padding-bottom 260ms ease;
  }

  .mobile-nav.is-open {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 420px;
    padding-bottom: 26px;
  }

  .mobile-nav a {
    width: 100%;
    max-width: min(calc(100vw - 40px), var(--container));
    margin-inline: auto;
    padding: 11px 0;
    font-size: 18px;
    font-weight: 600;
  }

  .mobile-nav a:hover {
    color: var(--accent);
  }

  .mobile-nav .mobile-cta {
    display: inline-flex;
    width: min(100%, 260px);
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    border: 1px solid #fff;
    border-radius: 3px;
    background: #fff;
    padding: 0 22px;
    color: #111;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
  }

  .mobile-nav .mobile-cta:hover {
    border-color: #a28c6e;
    background: #a28c6e;
    color: #111;
    text-decoration: none;
  }

  .mobile-nav .mobile-cta::before,
  .mobile-nav .mobile-cta::after {
    display: none;
    content: none;
  }

  .mobile-nav .mobile-cta:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
    text-decoration: none;
  }

  .task-content {
    top: clamp(72px, 8vh, 92px);
  }

  .task-intro {
    max-width: 740px;
  }

  .task-intro h2 {
    max-width: 820px;
    font-size: clamp(3.2rem, 5.8vw, 4.9rem);
  }

  .task-copy {
    max-width: 700px;
    margin-top: 20px;
  }

  .task-copy p {
    font-size: 16px;
    line-height: 1.65;
  }

  .service-line {
    margin-top: 18px;
  }

  .faq-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .process-section .container {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .process-section h2 {
    max-width: 860px;
    font-size: clamp(40px, 5.2vw, 58px);
  }

  .process-copy {
    max-width: 720px;
  }

  .timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    padding-top: 0;
  }

  .timeline::before {
    top: 76px;
    bottom: auto;
    left: 20px;
    right: calc((100% - (3 * 28px)) / 4 - 19px);
    width: auto;
    height: 1px;
  }

  .timeline article {
    min-height: 0;
    padding: 102px 0 0;
  }

  .timeline article::before {
    top: 57px;
    left: 0;
  }

  .timeline span {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    font-size: clamp(32px, 3.8vw, 42px);
  }

  .timeline h3 {
    font-size: 15px;
  }

  .timeline p {
    margin-inline: 0;
    font-size: 12px;
  }

  .infrastructure-title span {
    white-space: normal;
  }

  .footer-main {
    gap: 32px;
  }
}

@media (max-height: 800px) and (min-width: 1024px) {
  .task-content {
    top: 96px;
  }

  .task-intro h2,
  .how-title {
    font-size: clamp(48px, 4vw, 70px);
  }

  .task-copy {
    margin-top: 18px;
  }

  .task-copy p {
    font-size: 16px;
    line-height: 1.52;
  }

  .service-line {
    margin-top: 14px;
    line-height: 1.55;
  }

  .route-section {
    padding: 0;
  }

  .route-container {
    grid-template-rows: auto minmax(250px, 1fr) auto;
    padding-top: 78px;
    padding-bottom: 24px;
  }

  .route-top {
    grid-template-columns: minmax(0, 0.56fr) minmax(340px, 0.36fr);
    gap: 58px;
  }

  .route-heading {
    font-size: clamp(42px, 4.45vw, 58px);
  }

  .route-main-text,
  .route-bottom p {
    font-size: 15px;
    line-height: 1.48;
  }

  .route-scheme {
    grid-template-columns: minmax(250px, 23%) minmax(330px, 47%) minmax(260px, 30%);
    padding: 24px 0 20px;
  }

  .route-factor {
    min-height: 40px;
    grid-template-columns: 48px 14px minmax(0, 1fr);
    gap: 12px;
  }

  .route-factor span {
    font-size: 25px;
  }

  .route-factor p {
    font-size: 14px;
  }

  .route-flow {
    height: 228px;
  }

  .route-result strong {
    font-size: clamp(28px, 2.7vw, 40px);
  }

  .transport-line {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  .route-bottom {
    grid-template-columns: minmax(350px, 1fr) minmax(210px, 0.42fr) minmax(230px, 0.46fr);
    gap: 24px;
    padding-top: 18px;
  }

  .route-bottom-note,
  .route-bottom-item {
    gap: 14px;
  }

  .route-bottom p,
  .route-bottom-item span {
    font-size: 13px;
    line-height: 1.38;
  }

  .route-bottom-icon {
    width: 34px;
    height: 34px;
  }

  .infrastructure-content {
    padding-top: 58px;
    padding-bottom: 42px;
  }

  .infrastructure-kicker {
    font-size: 15px;
  }

  .infrastructure-title {
    margin-top: 42px;
    font-size: clamp(28px, 2vw, 36px);
  }

  .infrastructure-text {
    max-width: 560px;
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.5;
  }

  .nonstandard-content {
    padding-top: 66px;
    padding-bottom: 34px;
  }

  .nonstandard-title {
    margin-top: 20px;
    font-size: clamp(42px, 4.8vw, 54px);
    line-height: 1.04;
  }

  .nonstandard-intro {
    max-width: 520px;
    margin-top: 16px;
    font-size: 15px;
  }

  .nonstandard-list {
    width: min(53vw, 700px);
    margin-top: 18px;
  }

  .nonstandard-item {
    grid-template-columns: 40px 46px minmax(0, 1fr);
    padding: 8px 0;
  }

  .item-index {
    font-size: 23px;
  }

  .item-index::after {
    width: 28px;
    margin-top: -12px;
    margin-left: 40px;
  }

  .item-copy h3 {
    font-size: 12px;
  }

  .item-copy p {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.26;
  }

  .trust-frame {
    padding-top: 72px;
    padding-bottom: 28px;
  }

  .trust-frame h2 {
    font-size: clamp(30px, 3.2vw, 44px);
  }

  .trust-logos {
    height: min(76vh, 650px);
    margin-top: 14px;
  }

  .deal-section .container {
    padding-top: 76px;
    padding-bottom: 0;
  }

  .deal-copy h2 {
    max-width: 800px;
    font-size: clamp(26px, 2.8vw, 34px);
  }

  .deal-copy .section-text {
    max-width: 460px;
    font-size: 13px;
    line-height: 1.44;
  }

  .deal-stack {
    right: clamp(54px, 6vw, 82px);
    bottom: 52px;
    width: min(49vw, 620px);
    height: 460px;
  }

  .deal-layer,
  .deal-front-card {
    width: 100%;
  }

  .deal-layer {
    height: 66px;
    min-height: 66px;
    padding: 9px 24px 0;
  }

  .deal-layer strong,
  .deal-layer-number {
    font-size: clamp(14px, 1.45vw, 18px);
  }

  .deal-layer small {
    margin-top: 10px;
    margin-left: 55px;
    font-size: 11px;
  }

  .deal-layer-6 { top: 0; left: 0; }
  .deal-layer-5 { top: 36px; left: 0; }
  .deal-layer-4 { top: 72px; left: 0; }
  .deal-layer-3 { top: 108px; left: 0; }
  .deal-layer-2 { top: 144px; left: 0; }
  .deal-layer-1 { top: 180px; left: 0; }

  .deal-layer-6,
  .deal-layer-5,
  .deal-layer-4,
  .deal-layer-3,
  .deal-layer-2 {
    clip-path: inset(0 0 30px 0);
  }

  .deal-layer-1 {
    clip-path: inset(0 0 18px 0);
  }

  .deal-front-card {
    top: 224px;
    width: 100%;
    min-height: 238px;
    padding: 34px 42px;
  }

  .deal-front-card p {
    margin-bottom: 30px;
    font-size: clamp(24px, 2.7vw, 32px);
  }

  .deal-front-card li {
    font-size: clamp(13px, 1.25vw, 16px);
  }

  .deal-front-card ul {
    gap: 20px;
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 22px;
    --header-height: 76px;
    --compact-header-height: 76px;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-logo {
    height: 34px;
  }

  .footer-logo img {
    width: clamp(190px, 56vw, 220px);
  }

  .hero {
    min-height: 100svh;
  }

  .hero-inner {
    min-height: 100svh;
  }

  .hero-copy {
    width: auto;
    max-width: none;
    margin-left: 0;
    padding-top: 112px;
  }

  .hero-descriptor {
    margin-bottom: 24px;
    font-size: 14px;
  }

  h1 {
    font-size: clamp(3.4rem, 15vw, 5.2rem);
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(3rem, 15vw, 4.6rem);
    overflow-wrap: anywhere;
  }

  .hero-text,
  .task-copy p {
    font-size: 16px;
    line-height: 1.72;
  }

  .hero-text {
    max-width: 520px;
    line-height: 1.5;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
  }

  .primary-button {
    width: 100%;
  }

  .hero-primary {
    width: min(100%, 285px);
  }

  .hero-secondary {
    width: fit-content;
  }

  .task-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }

  .task-content {
    top: 58px;
  }

  .infrastructure-bg {
    object-position: 66% center;
  }

  .infrastructure-content {
    justify-content: flex-start;
    padding-top: 128px;
    padding-bottom: 32px;
  }

  .infrastructure-kicker {
    gap: 14px;
    font-size: 13px;
  }

  .kicker-line {
    width: 38px;
  }

  .infrastructure-title {
    max-width: min(92vw, 620px);
    margin-top: 34px;
    font-size: clamp(25px, 6.3vw, 38px);
    line-height: 1.13;
    overflow-wrap: normal;
  }

  .infrastructure-title span {
    white-space: normal;
  }

  .infrastructure-text {
    max-width: min(86vw, 520px);
    margin-top: 30px;
    font-size: clamp(14px, 3.8vw, 17px);
    line-height: 1.52;
  }

  .nonstandard-bg {
    object-position: 68% center;
  }

  .nonstandard-content {
    justify-content: flex-start;
    padding-top: 116px;
    padding-bottom: 28px;
  }

  .nonstandard-kicker {
    max-width: 76vw;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .nonstandard-title {
    max-width: 92vw;
    margin-top: 24px;
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1;
    overflow-wrap: normal;
  }

  .nonstandard-title span {
    white-space: normal;
  }

  .nonstandard-intro {
    max-width: 78vw;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.45;
  }

  .nonstandard-list {
    width: min(88vw, 560px);
    margin-top: 26px;
  }

  .nonstandard-item {
    grid-template-columns: 36px 30px minmax(0, 1fr);
    padding: 12px 0;
  }

  .item-index {
    font-size: 20px;
  }

  .item-index::after {
    width: 22px;
    margin-top: -10px;
    margin-left: 36px;
  }

  .item-copy h3 {
    font-size: 14px;
    line-height: 1.28;
  }

  .item-copy p {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.32;
  }

  .trust-frame {
    padding-top: 92px;
    padding-bottom: 24px;
  }

  .trust-frame h2 {
    font-size: 32px;
  }

  .trust-logos {
    height: min(72vh, 560px);
    margin-top: 18px;
  }

  .task-intro {
    max-width: none;
  }

  .task-intro h2,
  .how-title {
    font-size: clamp(28px, 8.2vw, 44px);
  }

  .how-title {
    width: auto;
    max-width: 100%;
  }

  .how-title span {
    white-space: normal;
  }

  .route-section,
  .complex-section,
  .faq-section {
    padding: 86px 0 94px;
  }

  .categories-content {
    padding-top: 62px;
  }

  .categories-heading {
    display: block;
  }

  .categories-heading h2 {
    max-width: 560px;
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }

  .categories-title span {
    white-space: normal;
  }

  .categories-heading p {
    max-width: 520px;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.5;
  }

  .category-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin-top: 22px;
  }

  .category-item {
    min-height: 46px;
    justify-content: flex-start;
    padding: 12px 16px;
    text-align: left;
  }

  .task-copy {
    gap: 22px;
    max-width: 520px;
    margin-top: 26px;
  }

  .service-line {
    max-width: 430px;
    margin-top: 24px;
    font-size: 11px;
    line-height: 1.6;
  }

  .faq-layout,
  .request-layout {
    gap: 30px;
  }

  .route-section {
    padding: 0;
  }

  .route-container {
    grid-template-rows: auto minmax(270px, 1fr) auto;
    padding-top: 74px;
    padding-bottom: 24px;
  }

  .route-top {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .route-heading {
    font-size: clamp(31px, 9.2vw, 44px);
  }

  .route-heading span {
    white-space: normal;
  }

  .route-main-text,
  .route-bottom p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.42;
  }

  .route-scheme {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 18px 0 14px;
  }

  .route-factor {
    min-height: 34px;
    grid-template-columns: 34px 10px minmax(0, 1fr);
    gap: 10px;
  }

  .route-factor span {
    font-size: 18px;
  }

  .route-factor p {
    font-size: 13px;
    line-height: 1.25;
  }

  .route-flow {
    width: 100%;
    height: 70px;
    transform: rotate(90deg) scaleX(0.52);
    transform-origin: center;
  }

  .route-result {
    display: block;
    padding-left: 0;
    text-align: left;
  }

  .route-result strong {
    margin-bottom: 10px;
    font-size: 26px;
  }

  .transport-line {
    max-width: 100%;
    font-size: 12px !important;
    line-height: 1.35 !important;
    white-space: normal;
  }

  .route-bottom {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 14px;
  }

  .route-bottom-note,
  .route-bottom-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .route-bottom-item {
    padding-left: 0;
  }

  .route-bottom-item::before {
    display: none;
  }

  .route-bottom-icon {
    width: 32px;
    height: 32px;
  }

  .deal-section {
    padding: 0;
  }

  .deal-section .container {
    padding-top: 84px;
    padding-bottom: 0;
  }

  .deal-copy .eyebrow {
    gap: 12px;
    margin-bottom: 22px;
    font-size: 13px;
  }

  .deal-copy h2 {
    max-width: 100%;
    margin-top: 0;
    font-size: clamp(21px, 5.7vw, 27px);
    line-height: 1.12;
  }

  .deal-copy h2 span {
    white-space: normal;
  }

  .deal-copy .section-text {
    max-width: 96%;
    margin-top: 18px;
    font-size: 10px;
    line-height: 1.4;
  }

  .deal-stack {
    right: auto;
    bottom: 34px;
    left: 10px;
    width: calc(100% - 20px);
    height: 330px;
  }

  .deal-layer,
  .deal-front-card {
    width: 100%;
    border-radius: 7px;
  }

  .deal-layer {
    height: 46px;
    min-height: 46px;
    padding: 8px 14px 0;
  }

  .deal-layer strong {
    max-width: 78%;
    font-size: 12px;
  }

  .deal-layer-number {
    min-width: 26px;
    margin-right: 10px;
    font-size: 12px;
  }

  .deal-layer small {
    display: block;
    margin-top: 8px;
    margin-left: 36px;
    font-size: 9px;
    line-height: 1.25;
  }

  .deal-layer:hover,
  .deal-layer:focus-visible {
    transform: translateY(-6px);
  }

  .deal-layer-6 { top: 0; left: 0; }
  .deal-layer-5 { top: 27px; left: 0; }
  .deal-layer-4 { top: 54px; left: 0; }
  .deal-layer-3 { top: 81px; left: 0; }
  .deal-layer-2 { top: 108px; left: 0; }
  .deal-layer-1 { top: 135px; left: 0; }

  .deal-layer-6,
  .deal-layer-5,
  .deal-layer-4,
  .deal-layer-3,
  .deal-layer-2 {
    clip-path: inset(0 0 19px 0);
  }

  .deal-layer-1 {
    clip-path: inset(0 0 10px 0);
  }

  .deal-front-card {
    top: 170px;
    left: 0;
    width: 100%;
    min-height: 142px;
    padding: 20px 22px 22px;
  }

  .deal-front-card p {
    margin-bottom: 16px;
    font-size: 21px;
  }

  .deal-front-card p::before {
    width: 46px;
    margin-bottom: 18px;
  }

  .deal-front-card li {
    font-size: 11px;
  }

  .deal-front-card ul {
    gap: 12px;
  }

  .section-label {
    font-size: 18px;
  }

  .process-section {
    padding: 0;
  }

  .process-section .container {
    padding-top: 84px;
    padding-bottom: 22px;
  }

  .process-section .section-label {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .process-section h2 {
    max-width: 100%;
    margin-top: 18px;
    font-size: clamp(27px, 8.2vw, 39px);
    line-height: 1.12;
  }

  .process-copy {
    max-width: 100%;
    margin-top: 16px;
  }

  .process-copy p,
  .accent-quote {
    font-size: 12px !important;
    line-height: 1.38 !important;
  }

  .accent-quote {
    margin-top: 10px !important;
    padding-left: 0;
  }

  .timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: auto;
    padding-top: 0;
  }

  .timeline::before {
    top: 49px;
    left: 14px;
    right: calc((100% - (3 * 10px)) / 4 - 13px);
  }

  .timeline article {
    padding: 74px 0 0;
  }

  .timeline article::before {
    top: 36px;
    width: 26px;
    height: 26px;
    background:
      radial-gradient(circle, var(--accent) 0 4px, transparent 5px),
      var(--background);
    box-shadow: 0 0 0 4px var(--background);
  }

  .timeline span {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    margin: 0;
    font-size: clamp(21px, 6.2vw, 30px);
  }

  .timeline h3 {
    font-size: 11px;
    line-height: 1.25;
  }

  .timeline p {
    max-width: none;
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.25;
  }

  .form-submit {
    width: 100%;
  }

  .site-footer {
    padding: 44px 0;
  }

  .footer-container {
    gap: 32px;
  }

  .footer-main {
    gap: 28px;
  }

  .faq-question,
  .request-form input,
  .request-form textarea,
  .primary-button,
  .header-cta,
  .mobile-nav a {
    min-height: 44px;
  }

}

@media (max-width: 430px) {
  .brand-logo {
    height: 32px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.7rem, 14vw, 3.8rem);
  }

  .hero-copy {
    padding-top: 96px;
  }

  .hero-descriptor {
    max-width: 310px;
  }

}

@media (max-width: 1100px) {
  .request-section {
    padding: 0;
  }

  .request-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1fr);
    gap: clamp(34px, 5vw, 60px);
    padding-top: 88px;
    padding-bottom: 30px;
  }

  .request-copy h2 {
    font-size: clamp(40px, 5vw, 56px);
  }

  .request-copy p {
    margin-top: 28px;
    font-size: 18px;
  }

  .request-form {
    max-width: 560px;
    gap: 13px;
    padding: 28px;
  }

  .request-form input {
    min-height: 54px;
  }

  .request-form textarea {
    min-height: 112px;
  }

  .file-control span {
    min-height: 54px;
  }

  .form-submit {
    min-height: 58px;
  }
}

@media (max-width: 760px) {
  .request-section {
    height: auto;
    min-height: 100dvh;
    overflow: visible;
    padding: 0;
  }

  .request-layout {
    height: auto;
    min-height: 100dvh;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
    padding-top: 92px;
    padding-bottom: 36px;
  }

  .request-layout > * {
    min-width: 0;
  }

  .request-copy h2 {
    max-width: 420px;
    font-size: clamp(38px, 10vw, 52px);
  }

  .request-copy p {
    max-width: 420px;
    margin-top: 24px;
    font-size: 17px;
  }

  .request-form {
    min-width: 0;
    max-width: none;
    justify-self: stretch;
    border-radius: 16px;
    padding: 20px;
  }

  .request-form input,
  .request-form textarea {
    width: 100%;
    min-width: 0;
  }

  .request-form input,
  .file-control span {
    min-height: 50px;
  }

  .request-form textarea {
    min-height: 104px;
  }
}

@media (max-width: 1100px) {
  .faq-section,
  #faq-section {
    padding: 0;
  }

  .faq-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: clamp(22px, 4vw, 38px);
    padding-top: 92px;
    padding-bottom: 28px;
  }

  .faq-heading {
    grid-column: 1 / -1;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
  }

  .faq-heading h2 {
    max-width: none;
    font-size: clamp(34px, 5.6vw, 50px);
  }

  .faq-counter {
    margin-top: 0;
  }

  .faq-question {
    min-height: 48px;
    grid-template-columns: 38px minmax(0, 1fr);
    font-size: 14px;
  }

  .faq-answer {
    min-height: 260px;
    padding-left: 26px;
  }

  .faq-answer-text {
    font-size: clamp(18px, 2.6vw, 24px);
  }
}

@media (max-width: 760px) {
  .faq-section,
  #faq-section {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 0;
  }

  .faq-layout {
    display: grid;
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 86px;
    padding-bottom: 52px;
  }

  .faq-heading {
    display: block;
  }

  .faq-counter {
    margin-top: 16px;
  }

  .faq-question {
    min-height: auto;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    padding: 13px 0;
    font-size: 14px;
    line-height: 1.28;
  }

  .faq-question::before {
    left: -12px;
  }

  .faq-question.is-active::before {
    width: 8px;
  }

  .faq-answer {
    min-height: 0;
    justify-content: flex-start;
    border-left: 0;
    border-top: 1px solid rgba(162, 140, 110, 0.42);
    padding: 22px 0 0;
  }

  .faq-answer-text {
    max-width: none;
    margin-top: 18px;
    font-size: 19px;
    line-height: 1.38;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-section {
    opacity: 1;
    transform: none;
  }

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

/* Rebuilt Block 4: delivery conditions converge into one route. */
.route-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  border-top: 0;
  background: transparent;
  overflow: hidden;
  scroll-snap-stop: always;
}

.route-container {
  position: relative;
  display: grid;
  height: 100%;
  grid-template-rows: auto minmax(260px, 1fr) auto;
  row-gap: clamp(36px, 5.2vh, 62px);
  padding-top: clamp(92px, 10vh, 116px);
  padding-bottom: clamp(60px, 7vh, 90px);
}

.route-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3.2vh, 34px);
  align-items: start;
}

.route-heading {
  max-width: 1120px;
  margin: 0;
  color: #171717;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(4.6rem, 5.45vw, 6.15rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
}

.route-heading span {
  display: block;
  white-space: nowrap;
}

.route-main-text {
  width: min(100%, 560px);
  max-width: 560px;
}

.route-main-text,
.route-bottom p {
  margin: 0;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
}

.route-main-text p {
  margin: 0;
}

.route-main-text p + p {
  margin-top: 18px;
}

.route-scheme {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(420px, 560px) minmax(280px, 380px);
  gap: 0;
  align-items: center;
  align-self: center;
  min-height: 0;
  padding: 0;
}

.route-factors {
  display: grid;
  gap: 0;
  align-self: center;
}

.route-factor {
  display: grid;
  min-height: 50px;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  color: #242321;
  outline: none;
  transition: none;
}

.route-factor::before {
  display: none;
  content: none;
}

.route-factor span {
  grid-column: 1;
  grid-row: 1;
  color: #927a5d;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(24px, 1.65vw, 30px);
  font-weight: 400;
  line-height: 1;
  transition: none;
}

.route-factor p {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  transition: none;
}

.route-factor:hover,
.route-factor:focus-visible {
  color: #242321;
}

.route-factor:hover span,
.route-factor:focus-visible span {
  color: #927a5d;
}

.route-factor:hover p,
.route-factor:focus-visible p {
  font-weight: 500;
}

.route-flow {
  width: 100%;
  height: 260px;
  color: #a28c6e;
  overflow: visible;
}

.route-flow-line,
.route-flow-result {
  fill: none !important;
  stroke: rgba(162, 140, 110, 0.72);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  marker-end: none;
  vector-effect: non-scaling-stroke;
  transition: none;
}

.route-line-dot {
  fill: rgba(162, 140, 110, 0.78);
  transition: none;
}

.route-node-outer {
  fill: rgba(244, 241, 234, 0.48);
  stroke: rgba(162, 140, 110, 0.78);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.route-node-inner {
  fill: #927a5d;
}

.route-scheme:has(.route-factor:hover) .route-flow-line,
.route-scheme:has(.route-factor:focus-visible) .route-flow-line,
.route-scheme:has(.route-factor:hover) .route-line-dot,
.route-scheme:has(.route-factor:focus-visible) .route-line-dot,
.route-scheme[data-active-factor]:not([data-active-factor=""]) .route-flow-line,
.route-scheme[data-active-factor]:not([data-active-factor=""]) .route-line-dot {
  opacity: 1;
  stroke: rgba(162, 140, 110, 0.72);
}

.route-scheme[data-active-factor]:not([data-active-factor=""]) .route-line-dot {
  fill: rgba(162, 140, 110, 0.78);
}

.route-result {
  display: block;
  align-self: center;
  padding-left: clamp(6px, 0.8vw, 12px);
}

.route-result strong {
  display: block;
  margin: 0 0 14px;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.transport-line {
  display: flex;
  flex-wrap: nowrap;
  gap: 7px;
  margin: 0;
  max-width: none;
  color: #242321 !important;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px !important;
  font-weight: 500;
  line-height: 1.4 !important;
  white-space: nowrap;
}

.transport-dot {
  color: #927a5d;
}

.route-bottom {
  display: block;
  width: min(100%, 1300px);
  border-top: 1px solid rgba(162, 140, 110, 0.42);
  padding-top: clamp(20px, 2.6vh, 30px);
}

.route-bottom p {
  max-width: 820px;
}

@media (max-width: 1500px) and (min-width: 1101px) {
  .route-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .route-heading {
    font-size: clamp(4.3rem, 5.1vw, 5.75rem);
  }

  .route-main-text {
    width: min(100%, 540px);
    max-width: 540px;
  }

  .transport-line {
    flex-wrap: wrap;
    max-width: 100%;
    white-space: normal;
  }
}

@media (max-height: 800px) and (min-width: 1024px) {
  .route-container {
    grid-template-rows: auto minmax(220px, 1fr) auto;
    row-gap: 28px;
    padding-top: 76px;
    padding-bottom: 26px;
  }

  .route-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .route-heading {
    font-size: clamp(50px, 4.7vw, 70px);
  }

  .route-main-text,
  .route-bottom p {
    font-size: 15px;
    line-height: 1.5;
  }

  .route-main-text {
    width: min(100%, 520px);
    max-width: 520px;
  }

  .route-scheme {
    grid-template-columns: minmax(280px, 340px) minmax(360px, 500px) minmax(260px, 340px);
  }

  .route-factor {
    min-height: 43px;
  }

  .route-factor span {
    font-size: 24px;
  }

  .route-factor p {
    font-size: 15px;
  }

  .route-flow {
    height: 226px;
  }

  .route-result strong {
    font-size: clamp(31px, 2.7vw, 42px);
  }

  .transport-line {
    font-size: 14px !important;
  }

  .route-bottom {
    padding-top: 18px;
  }

  .route-bottom p {
    max-width: 780px;
  }
}

@media (max-width: 1100px) {
  .route-container {
    grid-template-rows: auto minmax(240px, 1fr) auto;
    row-gap: 30px;
    padding-top: 86px;
    padding-bottom: 28px;
  }

  .route-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .route-heading {
    font-size: clamp(42px, 5.5vw, 64px);
  }

  .route-heading span {
    white-space: normal;
  }

  .route-main-text {
    width: min(100%, 420px);
    max-width: 420px;
  }

  .route-main-text,
  .route-bottom p {
    font-size: 15px;
    line-height: 1.5;
  }

  .route-scheme {
    grid-template-columns: minmax(260px, 310px) minmax(300px, 1fr) minmax(230px, 300px);
  }

  .route-factor {
    min-height: 42px;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 12px;
  }

  .route-factor span {
    font-size: 23px;
  }

  .route-factor p {
    font-size: 14px;
  }

  .route-flow {
    height: 220px;
  }

  .route-result strong {
    font-size: clamp(30px, 3.2vw, 42px);
  }

  .transport-line {
    flex-wrap: wrap;
    max-width: 100%;
    font-size: 13px !important;
    white-space: normal;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .route-section {
    height: auto;
    min-height: 100dvh;
    overflow: visible;
  }

  .route-container {
    height: auto;
    min-height: 100dvh;
    grid-template-rows: auto auto auto;
  }

  .route-scheme {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }

  .route-flow {
    display: none;
  }

  .route-result {
    padding-left: 0;
  }

  .transport-line {
    flex-wrap: wrap;
    max-width: 100%;
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .route-section {
    height: auto;
    min-height: 100dvh;
    overflow: visible;
    padding: 0;
  }

  .route-container {
    height: auto;
    min-height: 100dvh;
    grid-template-rows: auto auto auto;
    row-gap: 28px;
    padding-top: 86px;
    padding-bottom: 34px;
  }

  .route-top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .route-heading {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1;
  }

  .route-heading span {
    white-space: normal;
  }

  .route-main-text,
  .route-bottom p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.46;
  }

  .route-scheme {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }

  .route-factor {
    min-height: 36px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .route-factor span {
    font-size: 20px;
  }

  .route-factor p {
    font-size: 14px;
  }

  .route-flow {
    display: none;
  }

  .route-result {
    padding-left: 0;
  }

  .route-result strong {
    margin-bottom: 10px;
    font-size: 30px;
  }

  .transport-line {
    max-width: 100%;
    font-size: 14px !important;
    line-height: 1.4 !important;
    white-space: normal;
  }

  .route-bottom {
    padding-top: 18px;
  }
}

.route-section .route-main-text,
.route-section .route-bottom p {
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
}

.route-section .route-factor p {
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
}

.route-section .transport-line {
  color: #242321 !important;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px !important;
  font-weight: 500;
  line-height: 1.4 !important;
}

.process-section .section-label {
  margin: 0;
  color: #927a5d;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.process-section h2 {
  max-width: 1160px;
  margin: clamp(24px, 3vh, 32px) 0 0;
  color: #171717;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(4.6rem, 5.45vw, 6.15rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
}

.process-copy {
  max-width: 820px;
  margin-top: clamp(36px, 4.2vh, 48px);
}

.process-copy > p:first-child {
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px !important;
  font-weight: 500;
  line-height: 1.62 !important;
}

.process-copy .accent-quote {
  margin-top: clamp(24px, 3vh, 32px) !important;
  color: #927a5d !important;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px !important;
  font-weight: 500;
  line-height: 1.5 !important;
}

.process-section .section-label {
  color: #927a5d;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.process-section h2 {
  width: 100%;
  max-width: 1450px;
  margin: clamp(24px, 3vh, 30px) auto 0;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(3.5rem, 4.2vw, 4.8rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  text-align: center;
}

.process-section h2 span {
  display: block;
}

.process-copy {
  max-width: 820px;
  margin-top: clamp(32px, 3.8vh, 40px);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.process-copy > p:first-child,
.process-copy .accent-quote {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.process-copy .accent-quote {
  margin-top: clamp(20px, 2.8vh, 28px) !important;
}

@media (min-width: 900px) {
  .process-copy,
  .process-copy > p:first-child,
  .process-copy .accent-quote {
    max-width: 1080px;
  }

  .process-copy-nowrap {
    display: block;
    white-space: nowrap;
  }

  .process-copy .accent-quote {
    white-space: nowrap;
  }
}

@media (max-width: 899px) {
  .process-copy-nowrap {
    display: inline;
    white-space: normal;
  }
}

@media (min-width: 761px) {
  .process-section h2 span {
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .process-section h2 span {
    white-space: normal;
  }
}

.process-section .timeline h3 {
  color: #000000;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
}

.process-section .timeline p {
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.process-section .timeline {
  margin-top: clamp(54px, 6.4vh, 74px);
}

.process-section .timeline::before {
  height: 1.5px;
  background: rgba(146, 122, 93, 0.92);
}

.process-section .timeline article::before {
  border-color: rgba(146, 122, 93, 0.92);
  border-width: 1.5px;
  background:
    radial-gradient(circle, rgba(146, 122, 93, 0.95) 0 6px, transparent 7px),
    var(--background);
}

.js .process-section .timeline[data-process-timeline]::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.js .process-section .timeline[data-process-timeline].is-animated::before {
  transform: scaleX(1);
}

.js .process-section .timeline[data-process-timeline] article::before {
  opacity: 0.48;
  transition: opacity 220ms ease;
}

.js .process-section .timeline[data-process-timeline].is-animated article:nth-child(1)::before {
  opacity: 1;
  transition-delay: 120ms;
}

.js .process-section .timeline[data-process-timeline].is-animated article:nth-child(2)::before {
  opacity: 1;
  transition-delay: 340ms;
}

.js .process-section .timeline[data-process-timeline].is-animated article:nth-child(3)::before {
  opacity: 1;
  transition-delay: 560ms;
}

.js .process-section .timeline[data-process-timeline].is-animated article:nth-child(4)::before {
  opacity: 1;
  transition-delay: 780ms;
}

@media (max-width: 1024px) {
  .process-section .timeline {
    margin-top: clamp(42px, 5.2vh, 56px);
  }
}

@media (max-width: 760px) {
  .process-section .timeline {
    margin-top: clamp(24px, 3.2vh, 32px);
  }

  .process-section .timeline article::before {
    background:
      radial-gradient(circle, rgba(146, 122, 93, 0.95) 0 4px, transparent 5px),
      var(--background);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .process-section .timeline[data-process-timeline]::before {
    transform: scaleX(1);
    transition: none;
  }

  .js .process-section .timeline[data-process-timeline] article::before {
    opacity: 1;
    transition: none;
  }
}

#international-infrastructure.infrastructure-deal-section {
  position: relative;
  width: 100%;
  height: auto;
  min-height: clamp(520px, 50vh, 580px);
  padding: clamp(72px, 7vh, 88px) 0 clamp(68px, 6.6vh, 86px);
  overflow: hidden;
  background-color: #111111;
  background-image: url("assets/infrastructure-map-bg.png?v=20260911-infrastructure-bg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  color: #f2f2f0;
  scroll-snap-align: start;
  scroll-margin-top: var(--compact-header-height);
}

.infrastructure-deal-content {
  position: relative;
  z-index: 1;
  max-width: none;
}

.infrastructure-deal-kicker {
  margin: 0;
  color: var(--accent);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(13px, 0.86vw, 16px);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.2;
}

#international-infrastructure.infrastructure-deal-section h2 {
  max-width: 900px;
  margin: clamp(22px, 2.6vh, 30px) 0 0;
  color: #f2f2f0;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(39.06px, 2.325vw, 44.64px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.08;
}

#international-infrastructure.infrastructure-deal-section h2 span {
  display: block;
  white-space: nowrap;
}

#international-infrastructure.infrastructure-deal-section p:not(.infrastructure-deal-kicker) {
  max-width: 620px;
  margin: clamp(24px, 2.8vh, 30px) 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(17px, 0.95vw, 18px);
  font-weight: 400;
  line-height: 1.55;
}

.infrastructure-deal-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(26px, 3vh, 32px);
  border: 1px solid rgba(162, 140, 110, 0.82);
  padding: 15px 25px 16px;
  color: var(--accent);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.infrastructure-deal-link:hover,
.infrastructure-deal-link:focus-visible {
  border-color: #c0aa8a;
  background-color: rgba(162, 140, 110, 0.12);
  color: #c0aa8a;
}

@media (max-width: 1280px) {
  #international-infrastructure.infrastructure-deal-section {
    background-position: right center;
  }

  #international-infrastructure.infrastructure-deal-section h2 {
    max-width: 840px;
    font-size: clamp(37.2px, 3.069vw, 42.78px);
  }

  #international-infrastructure.infrastructure-deal-section p:not(.infrastructure-deal-kicker) {
    max-width: 560px;
  }
}

@media (max-width: 1024px) {
  #international-infrastructure.infrastructure-deal-section {
    min-height: 520px;
    padding: 72px 0;
    background-position: right center;
    background-size: auto 78%;
  }

  #international-infrastructure.infrastructure-deal-section h2 {
    max-width: 760px;
    font-size: clamp(31.62px, 3.72vw, 37.2px);
  }

  #international-infrastructure.infrastructure-deal-section p:not(.infrastructure-deal-kicker) {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  #international-infrastructure.infrastructure-deal-section {
    min-height: auto;
    padding: 86px 0 clamp(192px, 58vw, 252px);
    background-position: center bottom 24px;
    background-size: calc(100% - (var(--page-gutter) * 2)) auto;
  }

  #international-infrastructure.infrastructure-deal-section h2,
  #international-infrastructure.infrastructure-deal-section p:not(.infrastructure-deal-kicker) {
    max-width: 100%;
  }

  .infrastructure-deal-kicker {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  #international-infrastructure.infrastructure-deal-section h2 {
    margin-top: 22px;
    font-size: clamp(29.76px, 8.37vw, 35.34px);
    line-height: 1.1;
  }

  #international-infrastructure.infrastructure-deal-section h2 span {
    white-space: normal;
  }

  #international-infrastructure.infrastructure-deal-section p:not(.infrastructure-deal-kicker) {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.55;
  }

  .infrastructure-deal-link {
    margin-top: 26px;
    padding: 14px 22px 15px;
    font-size: 15px;
  }
}

@media (max-width: 430px) {
  #international-infrastructure.infrastructure-deal-section {
    background-position: center bottom 24px;
    background-size: calc(100% - (var(--page-gutter) * 2)) auto;
  }
}

.deal-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  border-top: 0;
  background: transparent;
  overflow: hidden;
}

.deal-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.deal-section .container {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  align-items: center;
  padding-top: clamp(84px, 8vh, 116px);
  padding-bottom: clamp(58px, 7vh, 88px);
}

.deal-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.deal-copy .eyebrow {
  display: block;
  margin: 0 0 clamp(28px, 3.4vh, 36px);
  color: #927a5d;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.deal-copy .eyebrow::after {
  content: none;
}

.deal-copy h2 {
  width: min(900px, calc(100vw - (var(--page-gutter) * 2)));
  max-width: 900px;
  margin: 0;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(3.5rem, 4.2vw, 4.8rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  text-align: left;
}

.deal-copy h2 span {
  display: block;
  white-space: normal;
}

.deal-copy .section-text {
  max-width: 620px;
  margin-top: clamp(36px, 4.4vh, 44px);
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
}

.deal-stack,
.deal-layer,
.deal-front-card {
  display: none;
}

@media (max-width: 1100px) {
  .deal-bg {
    object-position: 62% center;
  }

  .deal-copy {
    max-width: min(70vw, 680px);
  }

  .deal-copy h2 {
    max-width: 680px;
    font-size: clamp(3rem, 5.2vw, 4.1rem);
  }

  .deal-copy .section-text {
    max-width: 560px;
  }
}

@media (max-width: 760px) {
  .deal-section {
    min-height: 100dvh;
  }

  .deal-bg {
    object-position: 74% center;
  }

  .deal-section .container {
    align-items: flex-start;
    padding-top: 104px;
    padding-bottom: 38px;
  }

  .deal-copy {
    max-width: 100%;
  }

  .deal-copy .eyebrow {
    margin-bottom: 24px;
    font-size: 13px;
  }

  .deal-copy h2 {
    max-width: min(100%, 520px);
    font-size: clamp(36px, 10vw, 52px);
    line-height: 1.04;
  }

  .deal-copy h2 span {
    white-space: normal;
  }

  .deal-copy .section-text {
    max-width: min(100%, 480px);
    margin-top: 28px;
    font-size: 15px;
    line-height: 1.5;
  }
}

.infrastructure-kicker {
  color: #927a5d;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.infrastructure-title {
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(4.6rem, 5.45vw, 6.15rem);
  font-weight: 500;
  line-height: 0.92;
}

.infrastructure-text {
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
}

.infrastructure-content {
  justify-content: flex-start;
}

.infrastructure-kicker {
  gap: 0;
}

.infrastructure-kicker .kicker-line {
  display: none;
}

.infrastructure-title {
  max-width: 1120px;
  margin-top: 0;
}

.infrastructure-title span {
  display: block;
  white-space: nowrap;
}

.infrastructure-lead {
  max-width: 610px;
  margin: clamp(34px, 4vh, 48px) 0 0;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
}

.infrastructure-bg {
  object-position: 76% center;
}

@media (max-width: 760px) {
  .infrastructure-title span {
    white-space: normal;
  }
}

:root {
  --section-kicker-top: 128px;
  --section-kicker-top-tablet: 104px;
  --section-kicker-top-mobile: 84px;
}

.section-kicker {
  display: inline-block;
  width: fit-content;
  padding-bottom: 6px;
  border-bottom: 1px solid #927a5d;
  color: #927a5d;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.section-kicker::before,
.section-kicker::after {
  content: none !important;
}

.process-section .section-label.section-kicker {
  margin-right: auto;
  margin-left: auto;
  text-decoration: none;
  text-decoration-thickness: initial;
  text-underline-offset: initial;
}

.process-section .container,
.infrastructure-content,
.nonstandard-content {
  padding-top: var(--section-kicker-top);
}

.deal-section .container {
  align-items: flex-start;
  padding-top: var(--section-kicker-top);
}

.infrastructure-kicker.section-kicker,
.nonstandard-kicker.section-kicker {
  margin: 0;
}

@media (max-width: 1024px) {
  .process-section .container,
  .infrastructure-content,
  .nonstandard-content {
    padding-top: var(--section-kicker-top-tablet);
  }

  .deal-section .container {
    padding-top: var(--section-kicker-top-tablet);
  }
}

@media (max-width: 760px) {
  .process-section .container,
  .infrastructure-content,
  .nonstandard-content {
    padding-top: var(--section-kicker-top-mobile);
  }

  .deal-section .container {
    padding-top: var(--section-kicker-top-mobile);
  }

  .section-kicker {
    font-size: 16px;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 1024px) {
  .infrastructure-content {
    padding-top: var(--section-kicker-top-tablet);
  }
}

@media (max-width: 760px) {
  .infrastructure-content {
    padding-top: var(--section-kicker-top-mobile);
  }
}

@media (max-width: 1024px) and (min-width: 761px) {
  .nonstandard-title {
    max-width: min(92vw, 940px);
    font-size: clamp(34px, 4.3vw, 48px);
    line-height: 1.04;
  }

  .nonstandard-title span {
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  #nonstandard-schemes.complex-section {
    height: auto;
    min-height: 100dvh;
  }

  #nonstandard-schemes .nonstandard-bg {
    object-fit: contain;
    object-position: right bottom;
  }

  #nonstandard-schemes .nonstandard-content {
    height: auto;
    min-height: 100dvh;
    padding-top: 148px;
    padding-bottom: clamp(230px, 58vw, 310px);
  }

  #nonstandard-schemes .nonstandard-title {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.06;
  }
}

#nonstandard-schemes.complex-section {
  width: 100%;
  min-width: 100%;
  height: 100vh;
  min-height: 100vh;
  box-sizing: border-box;
}

#nonstandard-schemes .nonstandard-content {
  height: 100%;
  justify-content: center;
  padding-top: var(--compact-header-height);
  padding-bottom: clamp(48px, 6vh, 72px);
}

#nonstandard-schemes .nonstandard-title {
  max-width: min(54vw, 980px);
  margin-top: 0;
  font-size: clamp(64px, 4vw, 76px);
  line-height: 1.04;
}

#nonstandard-schemes .nonstandard-intro {
  margin-top: clamp(22px, 2.8vh, 30px);
}

#nonstandard-schemes .nonstandard-list {
  margin-top: clamp(28px, 3.4vh, 36px);
}

@media (max-width: 1024px) and (min-width: 761px) {
  #nonstandard-schemes .nonstandard-title {
    max-width: min(70vw, 720px);
    font-size: clamp(44px, 5.1vw, 56px);
    line-height: 1.05;
  }
}

@media (max-width: 760px) {
  #nonstandard-schemes.complex-section {
    height: auto;
    min-height: 100dvh;
    overflow: hidden;
  }

  #nonstandard-schemes .nonstandard-content {
    height: auto;
    min-height: 100dvh;
    justify-content: flex-start;
    padding-top: 118px;
    padding-bottom: clamp(230px, 58vw, 310px);
  }

  #nonstandard-schemes .nonstandard-title {
    max-width: 92vw;
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.06;
  }
}

.trust-frame h2 {
  position: relative;
  z-index: 2;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(4.6rem, 5.45vw, 6.15rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
}

.trust-logos {
  position: relative;
  z-index: 1;
  transform: scale(1.12);
  transform-origin: center center;
}

@media (min-width: 761px) {
  .request-copy h2 span {
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .request-copy h2 span {
    white-space: normal;
  }
}

@media (min-width: 1101px) {
  .request-copy {
    align-self: start;
    margin-top: calc(var(--section-kicker-top) - clamp(74px, 8vh, 98px));
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .request-copy {
    align-self: start;
    margin-top: calc(var(--section-kicker-top-tablet) - 88px);
  }
}

.request-copy h2 {
  color: #242321;
  font-weight: 500;
}

.request-copy p {
  max-width: 540px;
  color: #4d4944;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
}

.request-form {
  gap: clamp(24px, 2.7vh, 28px);
  grid-template-columns: minmax(0, 1fr);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: clamp(14px, 1.4vw, 22px) 0 0;
}

.request-form.has-attachments {
  gap: clamp(12px, 1.6vh, 18px);
}

.request-form .form-field {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  gap: 10px;
}

.request-form .field-label {
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.request-form input,
.request-form textarea {
  width: 100%;
  min-width: 0;
  border-radius: 0;
  background: transparent;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  box-shadow: none;
}

.request-form input {
  min-height: 0;
  border: 0;
  border-bottom: 1px solid rgba(36, 35, 33, 0.24);
  padding: 0 0 14px;
}

.request-form textarea {
  min-height: clamp(152px, 17vh, 182px);
  border: 1px solid rgba(36, 35, 33, 0.14);
  border-radius: 6px;
  padding: 18px 20px;
  resize: vertical;
}

.request-form.has-attachments textarea {
  min-height: clamp(112px, 12vh, 138px);
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: rgba(36, 35, 33, 0.48);
}

.request-form input:focus {
  border-bottom-color: #927a5d;
  box-shadow: none;
}

.request-form textarea:focus {
  border-color: #927a5d;
  box-shadow: none;
}

.request-form small {
  color: rgba(36, 35, 33, 0.46);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.file-control {
  width: fit-content;
  margin-bottom: 10px;
}

.request-form.has-attachments .file-control {
  margin-bottom: 4px;
}

.file-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-control span {
  display: inline-flex;
  width: fit-content;
  min-height: 0;
  align-items: center;
  gap: 10px;
  border: 0;
  border-bottom: 1px solid rgba(36, 35, 33, 0.36);
  border-radius: 0;
  background: transparent;
  padding: 0 0 7px;
  color: rgba(36, 35, 33, 0.82) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

.file-control span::before {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.5 10.8 12.2 20.1a6.2 6.2 0 0 1-8.8-8.8l9.5-9.5a4.2 4.2 0 0 1 5.9 5.9l-9.4 9.4a2.15 2.15 0 0 1-3-3l8.6-8.6' fill='none' stroke='black' stroke-width='1.85' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.5 10.8 12.2 20.1a6.2 6.2 0 0 1-8.8-8.8l9.5-9.5a4.2 4.2 0 0 1 5.9 5.9l-9.4 9.4a2.15 2.15 0 0 1-3-3l8.6-8.6' fill='none' stroke='black' stroke-width='1.85' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.file-control:hover span {
  border-color: #927a5d;
  color: #927a5d !important;
}

.file-control.is-limit-reached {
  display: none;
}

.file-limit {
  margin: -4px 0 4px;
  color: rgba(36, 35, 33, 0.58);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
}

.file-list {
  display: grid;
  gap: 2px;
  margin: -2px 0 2px;
  padding: 0;
  color: rgba(36, 35, 33, 0.72);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  list-style: none;
}

.file-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 18px;
}

.file-list li span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.file-remove {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  padding: 0;
  color: #927a5d;
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
}

.file-remove:hover {
  background: rgba(146, 122, 93, 0.1);
  color: #6f5c46;
}

.file-list:empty {
  display: none;
}

.form-submit {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  border-radius: 6px;
  background: #a28c6e;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: none;
  transition: background-color 180ms ease;
}

.form-submit:hover {
  background-color: #927a5d;
}

.form-status {
  min-height: 22px;
  color: #927a5d;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 760px) {
  .request-form {
    gap: 18px;
    padding-top: 0;
  }

  .request-form textarea {
    min-height: 132px;
  }
}

/* Separate "What we supply" page. */
.supply-document {
  scroll-snap-type: none;
}

.supply-page {
  --supply-display-size: clamp(54px, 4.05vw, 72px);
  --supply-display-line: 0.98;
  --supply-lead-size: clamp(20px, 1.22vw, 22px);
  --supply-lead-line: 1.52;
  color: #242321;
}

.supply-page .site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: #151515;
  backdrop-filter: none;
  color: #f5f3f1;
}

.supply-page .site-header.is-compact {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.supply-main {
  overflow: hidden;
}

.supply-page .section-kicker {
  margin: 0;
  color: #927a5d;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.supply-hero {
  position: relative;
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  padding: clamp(116px, 12.5vh, 148px) 0 clamp(150px, 15vh, 190px);
}

.supply-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(410px, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(54px, 7vw, 120px);
  align-items: center;
}

.supply-hero-copy {
  max-width: min(640px, 43vw);
}

.supply-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #242321;
  font-size: var(--supply-display-size);
  font-weight: 500;
  line-height: var(--supply-display-line);
}

.supply-hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.supply-hero-copy > p:not(.section-kicker) {
  max-width: 620px;
  margin: clamp(28px, 3.4vw, 42px) 0 0;
  color: #242321;
  font-size: var(--supply-lead-size);
  font-weight: 500;
  line-height: var(--supply-lead-line);
}

.supply-hero-link {
  display: inline-flex;
  margin-top: clamp(40px, 4vw, 55px);
  color: var(--accent);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(16px, 1vw, 18px);
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  transition: color 180ms ease;
}

.supply-hero-link:hover,
.supply-hero-link:focus-visible {
  color: #7f684d;
}

.supply-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
  transform: translateY(clamp(22px, 2.8vh, 32px));
}

.supply-row-graphic path,
.supply-row-graphic circle,
.supply-row-graphic rect,
.supply-network path,
.supply-network circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.supply-row-graphic circle,
.supply-network circle {
  fill: currentColor;
}

.supply-directions {
  scroll-margin-top: calc(var(--compact-header-height) + 26px);
  padding: clamp(20px, 2.8vw, 38px) 0 clamp(70px, 7vw, 116px);
}

.supply-direction-list {
  border-top: 1px solid rgba(146, 122, 93, 0.42);
  border-bottom: 1px solid rgba(36, 35, 33, 0.12);
}

.supply-direction {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) minmax(240px, 360px);
  gap: clamp(24px, 3.6vw, 62px);
  align-items: center;
  min-height: 166px;
  border-top: 1px solid rgba(36, 35, 33, 0.12);
  padding: clamp(26px, 3vw, 38px) 0;
  transition: background 180ms ease, border-color 180ms ease;
}

.supply-direction:first-child {
  border-top: 0;
}

.supply-direction:hover {
  border-color: rgba(146, 122, 93, 0.48);
  background: rgba(255, 255, 255, 0.16);
}

.supply-direction-number {
  color: #927a5d;
  font-size: clamp(36px, 3.1vw, 54px);
  font-weight: 400;
  line-height: 1;
}

.supply-direction-content {
  min-width: 0;
}

.supply-direction h3 {
  max-width: 820px;
  color: #242321;
  font-size: clamp(28px, 2.35vw, 42px);
  font-weight: 500;
  line-height: 1.06;
}

.supply-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: clamp(18px, 2vw, 24px) 0 0;
  padding: 0;
  list-style: none;
}

.supply-tags li {
  min-height: 32px;
  border: 1px solid rgba(146, 122, 93, 0.28);
  border-radius: 999px;
  background: rgba(245, 243, 241, 0.58);
  padding: 7px 13px 8px;
  color: #4d4944;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.supply-row-graphic {
  width: min(100%, 260px);
  height: 150px;
  justify-self: end;
  color: rgba(146, 122, 93, 0.45);
  overflow: visible;
  transition: color 180ms ease, opacity 180ms ease;
}

img.supply-row-graphic {
  width: min(100%, 360px);
  height: 220px;
  object-fit: contain;
}

.supply-row-graphic circle {
  opacity: 0.8;
}

.supply-row-graphic rect {
  fill: rgba(245, 243, 241, 0.2);
}

.supply-row-graphic .graphic-guide {
  opacity: 0.34;
}

.supply-row-graphic .graphic-line,
.supply-row-graphic .graphic-ring,
.supply-row-graphic .graphic-tick {
  fill: none;
}

.supply-row-graphic .graphic-tick {
  opacity: 0.48;
}

.supply-row-graphic .graphic-dot {
  fill: currentColor;
  opacity: 0.34;
}

.supply-row-graphic .graphic-ring {
  opacity: 0.64;
}

.supply-direction:hover .supply-row-graphic {
  color: rgba(146, 122, 93, 0.72);
}

.supply-sanctions {
  position: relative;
  background: #20201f;
  padding: clamp(74px, 8vw, 116px) 0;
  color: #f5f3f1;
}

.supply-sanctions-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.86fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
}

.supply-sanctions .section-kicker {
  border-color: rgba(162, 140, 110, 0.8);
  color: #a28c6e;
}

.supply-sanctions h2 {
  max-width: 760px;
  margin: 0;
  color: #f5f3f1;
  font-size: var(--supply-display-size);
  font-weight: 500;
  line-height: var(--supply-display-line);
}

.supply-sanctions h2 span {
  display: block;
}

.supply-sanctions-copy > p:not(.section-kicker) {
  max-width: 720px;
  margin: clamp(28px, 3vw, 42px) 0 0;
  color: rgba(245, 243, 241, 0.82);
  font-size: var(--supply-lead-size);
  font-weight: 500;
  line-height: var(--supply-lead-line);
}

.supply-sanctions-copy .supply-sanctions-accent {
  max-width: 640px;
  margin-top: clamp(22px, 2.4vw, 30px);
  color: #d6c4aa;
}

.supply-network {
  min-height: 370px;
  color: rgba(162, 140, 110, 0.62);
}

.supply-network svg {
  width: 100%;
  height: 100%;
  min-height: 370px;
}

.supply-network path:nth-child(n + 4) {
  opacity: 0.22;
}

.supply-network circle {
  opacity: 0.86;
}

.supply-request {
  height: auto;
  min-height: auto;
  padding: clamp(72px, 7.4vw, 108px) 0 clamp(74px, 8vw, 120px);
  overflow: visible;
}

.supply-request-layout {
  height: auto;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1fr);
  gap: clamp(80px, 9vw, 170px);
  align-items: center;
  padding: 0;
}

.supply-request-copy {
  margin-top: 0;
}

.supply-request-copy h2 {
  max-width: 560px;
  margin: 0;
  color: #242321;
  font-size: var(--supply-display-size);
  font-weight: 500;
  line-height: var(--supply-display-line);
}

.supply-request-copy p:not(.section-kicker) {
  max-width: 430px;
  margin: clamp(20px, 2vw, 26px) 0 0;
  color: #4d4944;
  font-size: var(--supply-lead-size);
  font-weight: 500;
  line-height: var(--supply-lead-line);
}

@media (max-width: 1240px) {
  .supply-page {
    --supply-display-size: clamp(48px, 4.65vw, 58px);
  }

  .supply-hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  }

  .supply-direction {
    grid-template-columns: 78px minmax(0, 1fr) 240px;
  }

  img.supply-row-graphic {
    width: min(100%, 280px);
    height: 170px;
  }
}

@media (max-width: 1100px) {
  .supply-hero {
    min-height: 0;
    padding: 108px 0 58px;
  }

  .supply-hero-grid,
  .supply-sanctions-grid,
  .supply-request-layout {
    grid-template-columns: 1fr;
  }

  .supply-hero-copy {
    max-width: 680px;
  }

  .supply-hero-image {
    position: relative;
    height: auto;
    margin-top: 38px;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .supply-direction {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 20px 30px;
    min-height: 0;
  }

  .supply-row-graphic {
    grid-column: 2;
    width: 210px;
    height: 118px;
    justify-self: start;
  }

  .supply-network,
  .supply-network svg {
    min-height: 320px;
  }

}

@media (max-width: 760px) {
  .supply-page {
    --supply-display-size: clamp(32px, 9.4vw, 50px);
    --supply-display-line: 1.04;
    --supply-lead-size: 15px;
    --supply-lead-line: 1.52;
  }

  .supply-page .site-header {
    background: #151515;
  }

  .supply-page .section-kicker {
    font-size: 12px;
  }

  .supply-hero {
    padding: 96px 0 44px;
  }

  .supply-hero-grid {
    gap: 34px;
  }

  .supply-hero-copy {
    max-width: 100%;
  }

  .supply-hero-link {
    margin-top: 28px;
  }

  .supply-hero-image {
    margin-top: 30px;
  }

  .supply-directions {
    padding-bottom: 58px;
  }

  .supply-direction {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0;
  }

  .supply-direction-number {
    font-size: 32px;
  }

  .supply-direction h3 {
    font-size: clamp(24px, 7.2vw, 34px);
    line-height: 1.08;
  }

  .supply-tags {
    gap: 7px;
    align-items: flex-start;
  }

  .supply-tags li {
    display: inline-block;
    flex: 0 1 auto;
    flex-grow: 0;
    width: fit-content;
    max-width: min(100%, 34ch);
    min-height: 0;
    height: auto;
    padding: 3px 10px 4px;
    font-size: 13px;
    line-height: 1.12;
  }

  .supply-row-graphic {
    grid-column: auto;
    width: min(220px, 78vw);
    height: 112px;
    opacity: 0.72;
  }

  .supply-sanctions {
    padding: 58px 0;
  }

  .supply-sanctions-grid {
    gap: 32px;
  }

  .supply-sanctions h2 span {
    display: inline;
  }

  .supply-network,
  .supply-network svg {
    min-height: 240px;
  }

  .supply-request {
    padding: 58px 0 66px;
  }

  .supply-request-layout {
    gap: 30px;
  }

}

@media (max-width: 430px) {
  .supply-hero-copy h1 span {
    white-space: normal;
  }

  .supply-page .supply-tags li {
    max-width: min(100%, 34ch);
  }
}

/* Separate "About company" page. */
.about-document {
  scroll-snap-type: none;
}

.about-page {
  --about-display-size: clamp(44px, 3.7vw, 66px);
  --about-display-line: 1.02;
  --about-heading-size: clamp(28px, 2.1vw, 40px);
  --about-body-size: 17px;
  background-color: var(--background);
  color: #242321;
}

.about-page .site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: #151515;
  backdrop-filter: none;
  color: #f5f3f1;
}

.about-main {
  background: transparent;
  overflow: hidden;
}

.about-kicker {
  display: inline-block;
  width: fit-content;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #927a5d;
  color: #927a5d;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.about-section-title {
  max-width: 1000px;
  margin: 0;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(38px, 3.2vw, 56px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
}

.about-timeline-section .about-section-title {
  max-width: none;
  white-space: nowrap;
}

.about-hero {
  position: relative;
  height: clamp(520px, 78dvh, 840px);
  min-height: 0;
  padding: 0;
}

.about-hero::before {
  position: absolute;
  inset: 0;
  background-image: url("assets/deal-section-bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  pointer-events: none;
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(60px, 8vw, 140px);
  align-items: center;
}

.about-hero-copy {
  transform: translateY(3vh);
}

.about-hero-copy h1 {
  max-width: 760px;
  margin: clamp(28px, 3vw, 40px) 0 0;
  color: #242321;
  font-size: var(--about-display-size);
  font-weight: 500;
  line-height: var(--about-display-line);
}

.about-hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.about-hero-copy > p:not(.about-kicker) {
  max-width: 560px;
  margin: clamp(28px, 3vw, 38px) 0 0;
  color: #4d4944;
  font-size: clamp(18px, 1.25vw, 22px);
  font-weight: 500;
  line-height: 1.56;
}

.about-map {
  min-height: clamp(330px, 36vw, 520px);
  color: #927a5d;
}

.about-map svg {
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: visible;
}

.about-map path,
.about-map circle,
.about-map rect {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.about-map-grid {
  opacity: 0.14;
  stroke-width: 1;
}

.about-map-dots {
  opacity: 0.22;
  stroke-width: 1;
  stroke-dasharray: 1 7;
}

.about-map-line {
  opacity: 0.48;
  stroke-width: 1.1;
}

.about-map-node {
  fill: rgba(245, 243, 241, 0.72);
  opacity: 0.84;
  stroke-width: 1.1;
}

.about-map-core,
.about-map-small {
  fill: currentColor;
  opacity: 0.5;
}

.about-map-small-square {
  fill: currentColor;
  opacity: 0.42;
}

.about-map-icon {
  color: #242321;
  opacity: 0.68;
  stroke-width: 1.3;
}

.about-timeline-section {
  border-top: 0;
  padding: clamp(58px, 6vw, 90px) 0;
}

.about-principles {
  border-top: 0;
  padding: clamp(58px, 6vw, 90px) 0;
}

.about-timeline {
  position: relative;
  margin-top: clamp(42px, 4.6vw, 64px);
}

.about-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(120px, 8.8vw, 150px);
  width: 1px;
  background: rgba(146, 122, 93, 0.55);
  content: "";
}

.about-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: clamp(92px, 7vw, 120px) 56px minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 34px);
  border-top: 1px solid rgba(36, 35, 33, 0.12);
  padding: clamp(32px, 3.8vw, 52px) 0;
}

.about-timeline-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.about-year {
  color: #927a5d;
  font-size: clamp(38px, 3.2vw, 56px);
  font-weight: 400;
  line-height: 1;
}

.about-point {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  margin-top: 5px;
  justify-self: center;
  border: 1px solid rgba(146, 122, 93, 0.82);
  border-radius: 50%;
  background: var(--background);
}

.about-event h2 {
  margin: 0;
  color: #242321;
  font-size: var(--about-heading-size);
  font-weight: 500;
  line-height: 1.12;
}

.about-event-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 7vw, 130px);
  margin-top: clamp(22px, 2.6vw, 32px);
}

.about-event h3 {
  margin: 0 0 12px;
  color: #242321;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.about-event p,
.about-principle p {
  margin: 0;
  color: #242321;
  font-size: var(--about-body-size);
  font-weight: 500;
  line-height: 1.58;
}

.about-principle-list {
  margin-top: clamp(38px, 4.2vw, 60px);
  border-top: 1px solid rgba(36, 35, 33, 0.12);
}

.about-principle {
  display: grid;
  grid-template-columns: 150px minmax(250px, 0.62fr) minmax(320px, 1fr);
  gap: clamp(26px, 4vw, 70px);
  align-items: center;
  border-bottom: 1px solid rgba(36, 35, 33, 0.12);
  padding: clamp(24px, 2.8vw, 36px) 0;
  transition: background 180ms ease;
}

.about-principle:hover {
  background: rgba(255, 255, 255, 0.14);
}

.about-principle-icon {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(146, 122, 93, 0.56);
  border-radius: 50%;
  color: #927a5d;
}

.about-principle-icon span {
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.about-principle h3 {
  margin: 0;
  color: #242321;
  font-size: clamp(22px, 1.45vw, 28px);
  font-weight: 500;
  line-height: 1.12;
}

@media (max-width: 1240px) {
  .about-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
    gap: 52px;
  }

  .about-principle {
    grid-template-columns: 110px minmax(220px, 0.7fr) minmax(280px, 1fr);
    gap: 34px;
  }
}

@media (max-width: 1100px) {
  .about-page {
    --about-display-size: clamp(38px, 5.2vw, 54px);
  }

  .about-hero-grid,
  .about-event-columns {
    grid-template-columns: 1fr;
  }

  .about-map {
    min-height: 320px;
  }

  .about-principle {
    grid-template-columns: 90px minmax(0, 1fr);
    align-items: start;
  }

  .about-principle p {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .about-page {
    --about-display-size: clamp(30px, 8.7vw, 42px);
    --about-heading-size: clamp(24px, 7vw, 32px);
    --about-body-size: 15px;
  }

  .about-page .site-header {
    background: #151515;
  }

  .about-kicker {
    font-size: 14px;
  }

  .about-section-title {
    font-size: clamp(28px, 7.5vw, 38px);
    line-height: 1.08;
  }

  .about-timeline-section .about-section-title {
    white-space: normal;
  }

  .about-hero {
    height: clamp(430px, 70dvh, 620px);
    min-height: 0;
    padding: 0;
  }

  .about-hero-grid {
    gap: 34px;
  }

  .about-hero-copy {
    transform: none;
  }

  .about-hero-copy > p:not(.about-kicker) {
    font-size: 16px;
    line-height: 1.5;
  }

  .about-map {
    min-height: 250px;
  }

  .about-timeline-section,
  .about-principles {
    padding: 48px 0;
  }

  .about-timeline {
    margin-top: 34px;
  }

  .about-timeline::before {
    left: 12px;
  }

  .about-timeline-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px 18px;
    padding: 30px 0;
  }

  .about-year {
    grid-column: 2;
    font-size: 34px;
  }

  .about-point {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 20px;
    height: 20px;
    margin-top: 8px;
    justify-self: start;
  }

  .about-event {
    grid-column: 2;
  }

  .about-event-columns {
    gap: 22px;
  }

  .about-principle-list {
    margin-top: 34px;
  }

  .about-principle {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px 0;
  }

  .about-principle p {
    grid-column: auto;
  }

  .about-principle-icon {
    width: 66px;
    height: 66px;
  }
}

/* Separate "Solutions" page. */
.solutions-document {
  scroll-snap-type: none;
}

.solutions-page {
  color: #242321;
  background: var(--background);
}

.solutions-page .site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: #151515;
  backdrop-filter: none;
  color: #f5f3f1;
}

.solutions-page .site-header.is-compact {
  background: #151515;
}

.solutions-main,
.solutions-hero,
.solutions-scenarios,
.solutions-final {
  background: transparent;
}

.solutions-main {
  overflow: hidden;
}

.solutions-hero {
  position: relative;
  height: auto;
  min-height: 0;
  overflow: visible;
  padding: var(--header-height) 0 0;
}

.solutions-hero-visual {
  position: relative;
  width: 100%;
  margin: 0;
  background: transparent;
}

.solutions-hero-image {
  display: block;
  width: 100%;
  height: calc((100vw * 810 / 1942) * 0.8);
  object-fit: cover;
  object-position: center top;
}

.solutions-hero-title-wrap {
  margin-top: clamp(4px, 0.65vw, 10px);
  padding-bottom: clamp(58px, 6vw, 96px);
}

.solutions-hero-title {
  max-width: none;
  margin: 0;
  color: #242321;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(52px, 4vw, 72px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
}

.solutions-hero-title span {
  display: block;
  white-space: nowrap;
}

.solutions-scenarios {
  padding: clamp(18px, 2.5vw, 34px) 0 clamp(72px, 8vw, 118px);
}

.solutions-scenario {
  display: grid;
  grid-template-columns: 120px minmax(320px, 0.8fr) minmax(420px, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  border-top: 1px solid rgba(36, 35, 33, 0.12);
  padding: clamp(50px, 5vw, 72px) 0;
}

.solutions-scenario:last-child {
  border-bottom: 1px solid rgba(36, 35, 33, 0.12);
}

.solutions-number {
  color: #a28c6e;
  font-size: clamp(38px, 3vw, 54px);
  font-weight: 400;
  line-height: 1;
}

.solutions-scenario h2 {
  margin: 0;
  color: #242321;
  font-size: clamp(28px, 2.2vw, 40px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.solutions-scenario p {
  margin: 0;
  color: #3f3d3a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
}

.solutions-final {
  padding: clamp(28px, 2.8vw, 44px) 0;
}

.solutions-final-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(420px, 1fr);
  gap: clamp(54px, 8vw, 136px);
  align-items: start;
}

.solutions-final h2 {
  max-width: 700px;
  margin: 0;
  color: #242321;
  font-size: clamp(42px, 3.6vw, 62px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.solutions-final-copy p {
  max-width: 680px;
  margin: 0;
  color: #3f3d3a;
  font-size: clamp(18px, 1.25vw, 21px);
  font-weight: 500;
  line-height: 1.62;
}

.solutions-cases-link {
  display: inline-flex;
  margin-top: 32px;
  border-bottom: 1px solid #242321;
  color: #242321;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease;
}

.solutions-cases-link:hover {
  border-color: #a28c6e;
  color: #a28c6e;
}

@media (max-width: 1180px) {
  .solutions-scenario {
    grid-template-columns: 94px minmax(260px, 0.72fr) minmax(340px, 1fr);
    gap: 34px;
  }
}

@media (max-width: 900px) {
  .solutions-final-grid {
    grid-template-columns: 1fr;
  }

  .solutions-scenario {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .solutions-scenario p {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .solutions-page .site-header {
    background: #151515;
  }

  .solutions-hero {
    height: auto;
    min-height: 0;
    padding: var(--compact-header-height) 0 0;
  }

  .solutions-hero-title-wrap {
    position: static;
    margin-top: clamp(18px, 5.4vw, 30px);
    transform: none;
  }

  .solutions-hero-title {
    font-size: clamp(31px, 8.2vw, 44px);
    line-height: 1.08;
  }

  .solutions-hero-title span {
    white-space: normal;
  }

  .solutions-final-copy p,
  .solutions-scenario p {
    font-size: 15.5px;
    line-height: 1.58;
  }

  .solutions-scenarios {
    padding: 18px 0 58px;
  }

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

  .solutions-number {
    font-size: clamp(28px, 8vw, 34px);
  }

  .solutions-scenario h2 {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.14;
  }

  .solutions-scenario p {
    grid-column: auto;
  }

  .solutions-final {
    padding: 42px 0 54px;
  }

  .solutions-final-grid {
    gap: 30px;
  }

  .solutions-final h2 {
    font-size: clamp(30px, 8.5vw, 42px);
    line-height: 1.08;
  }
}


/* Mobile/tablet rebuild */
@media (max-width: 1024px) {
  html {
    scroll-snap-type: none;
  }

  .fullscreen-section,
  .cases-page-main section,
  .case-page section {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .home-page .fullscreen-section,
  .route-section,
  .process-section,
  .deal-section,
  .complex-section,
  .request-section,
  .faq-section {
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .home-page h1 span,
  .home-page h2 span,
  .route-heading span,
  .process-section h2 span,
  .infrastructure-title span,
  #international-infrastructure.infrastructure-deal-section h2 span,
  .nonstandard-title span,
  .deal-copy h2 span,
  .about-hero-copy h1 span,
  .about-timeline-section .about-section-title,
  .solutions-hero-title span,
  .supply-hero-copy h1 span,
  .case-heading span,
  .case-heading-packaging span,
  .cases-page-title span {
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero,
  .task-section,
  .categories-section,
  #nonstandard-schemes.complex-section {
    display: flex;
    flex-direction: column;
  }

  .hero {
    padding-top: var(--compact-header-height);
  }

  .hero-inner,
  .task-content,
  .how-content,
  .categories-content,
  .nonstandard-content,
  .process-section .container,
  .route-container,
  .deal-section .container,
  .faq-layout,
  .request-layout {
    height: auto;
    min-height: auto;
  }

  .hero-inner,
  .task-content,
  .how-content,
  .categories-content,
  .nonstandard-content {
    position: relative;
    inset: auto;
    order: 1;
  }

  .hero-copy {
    width: 100%;
    max-width: 720px;
    padding-top: clamp(34px, 7vw, 58px);
  }

  .home-page .hero-image-frame {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1672 / 941;
    margin: clamp(30px, 6vw, 48px) 0 0;
    overflow: hidden;
  }

  .hero-image,
  .task-image,
  .section-image,
  .categories-image,
  .section-3-image,
  #nonstandard-schemes .nonstandard-bg {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: clamp(30px, 6vw, 48px) 0 0;
    object-fit: contain;
    object-position: center bottom;
  }

  .task-image,
  .section-image,
  .categories-image,
  .section-3-image,
  #nonstandard-schemes .nonstandard-bg {
    display: block;
  }

  .category-overlay,
  .highlight-segment {
    display: none;
  }

  .task-section,
  .categories-section {
    padding: clamp(72px, 9vw, 96px) 0 0;
    background-image: none;
  }

  .task-copy,
  .categories-heading,
  .route-top,
  .route-scheme,
  .route-bottom,
  .faq-layout,
  .request-layout,
  .solutions-scenario,
  .solutions-final-grid,
  .supply-hero-grid,
  .supply-sanctions-grid,
  .supply-request-layout,
  .about-hero-grid,
  .about-event-columns,
  .about-principle,
  .case-section-inner,
  .case-route,
  .cases-page-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .task-copy,
  .route-top,
  .faq-layout,
  .request-layout {
    gap: clamp(22px, 4vw, 36px);
  }

  .service-line,
  .transport-line {
    max-width: 100%;
    white-space: normal;
    flex-wrap: wrap;
  }

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

  .categories-content {
    padding-top: 0;
  }

  .categories-link {
    display: inline-flex;
  }

  .cases-placeholder {
    min-height: auto;
    padding-top: clamp(86px, 10vw, 108px);
  }

  .cases-layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "title"
      "intro"
      "list"
      "preview";
  }

  .cases-left {
    display: contents;
  }

  .cases-left > h2 {
    grid-area: title;
  }

  .cases-left > .cases-intro {
    grid-area: intro;
  }

  .cases-left > .cases-list {
    grid-area: list;
  }

  .case-preview {
    width: min(100%, 620px);
    justify-self: start;
    margin-top: clamp(26px, 4vw, 34px);
  }

  .case-preview-image {
    position: relative;
  }

  .route-section {
    padding: clamp(70px, 9vw, 96px) 0;
  }

  .route-container {
    grid-template-rows: none;
    row-gap: clamp(28px, 5vw, 44px);
    padding-top: 0;
    padding-bottom: 0;
  }

  .route-flow {
    display: none;
  }

  .route-result {
    padding-left: 0;
  }

  .process-section {
    padding: clamp(70px, 9vw, 96px) 0;
  }

  .process-section .container {
    display: block;
    padding-top: 0;
    padding-bottom: 0;
  }

  .process-section .section-label.section-kicker {
    margin-left: 0;
  }

  .process-section h2,
  .process-copy {
    max-width: 760px;
  }

  .timeline {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin-top: clamp(34px, 5vw, 46px);
    padding-top: 0;
  }

  .timeline::before {
    top: 12px;
    bottom: 12px;
    left: 11px;
    right: auto;
    width: 1.5px;
    height: auto;
  }

  .timeline article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 6px 18px;
    padding: 0 0 30px;
    text-align: left;
  }

  .timeline article:last-child {
    padding-bottom: 0;
  }

  .timeline article::before {
    top: 3px;
    left: 0;
    width: 24px;
    height: 24px;
    box-shadow: 0 0 0 4px var(--background);
  }

  .timeline span {
    position: static;
    grid-column: 2;
    font-size: 26px;
  }

  .timeline h3,
  .timeline p {
    grid-column: 2;
  }

  .js .process-section .timeline[data-process-timeline]::before {
    transform: scaleY(0);
    transform-origin: center top;
  }

  .js .process-section .timeline[data-process-timeline].is-animated::before {
    transform: scaleY(1);
  }

  #international-infrastructure.infrastructure-deal-section {
    min-height: auto;
    padding: clamp(68px, 9vw, 92px) 0 clamp(290px, 36vw, 360px);
    background-position: center bottom 28px;
    background-size: auto clamp(220px, 32vw, 300px);
  }

  #nonstandard-schemes.complex-section {
    background-image: none;
    padding: clamp(68px, 9vw, 92px) 0 0;
  }

  #nonstandard-schemes .nonstandard-content {
    height: auto;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nonstandard-list {
    width: 100%;
    max-width: 760px;
  }

  .nonstandard-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
  }

  .item-index::after {
    display: none;
  }

  .item-copy {
    grid-column: 2;
  }

  .faq-section {
    padding: clamp(66px, 9vw, 92px) 0;
  }

  .faq-layout {
    display: grid;
    padding-top: 0;
    padding-bottom: 0;
  }

  .faq-heading,
  .faq-questions,
  .faq-answer {
    grid-column: auto;
  }

  .request-section {
    padding: clamp(66px, 9vw, 92px) 0;
  }

  .request-layout {
    padding-top: 0;
    padding-bottom: 0;
  }

  .about-hero {
    display: flex;
    height: auto;
    min-height: auto;
    flex-direction: column;
    padding-top: var(--compact-header-height);
  }

  .about-hero::before {
    position: relative;
    display: block;
    height: clamp(260px, 38vw, 390px);
    inset: auto;
    flex: 0 0 auto;
    background-position: center center;
  }

  .about-hero-grid {
    display: grid;
    padding-top: clamp(34px, 6vw, 54px);
    padding-bottom: clamp(58px, 8vw, 82px);
  }

  .about-hero-copy {
    transform: none;
  }

  .solutions-hero-title span,
  .cases-page-title span,
  .case-heading span,
  .case-heading-packaging span {
    display: inline;
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 22px;
  }

  h1,
  .hero-copy h1,
  .about-hero-copy h1,
  .supply-hero-copy h1,
  .cases-page-title,
  .case-heading,
  .case-heading-packaging {
    max-width: 100%;
    font-size: clamp(40px, 11vw, 48px);
    line-height: 1.02;
    letter-spacing: 0;
  }

  .supply-page .supply-hero-copy h1 {
    font-size: clamp(29px, 8.5vw, 38px);
    line-height: 1.04;
  }

  .supply-page .supply-hero-copy h1 span {
    display: block;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
  }

  .cases-page .cases-page-title {
    font-size: clamp(30px, 9.4vw, 42px);
    line-height: 1.02;
  }

  .cases-page .cases-page-title span {
    display: block;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
  }

  .home-page .hero-copy h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(30.5px, 8.7vw, 42px);
    line-height: 1.04;
  }

  .home-page .hero-copy h1 span {
    display: block;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
  }

  .solutions-page .solutions-hero-title {
    width: max-content;
    max-width: none;
    font-size: clamp(19px, 5.8vw, 34px);
    line-height: 1.08;
  }

  .solutions-page .solutions-hero-title-wrap {
    padding-bottom: clamp(22px, 6vw, 30px);
  }

  .solutions-page .solutions-hero-title span {
    display: block;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
  }

  .solutions-page .solutions-scenarios {
    padding-top: 0;
  }

  .js .solutions-page .solutions-scenarios.reveal-section {
    opacity: 1;
    transform: none;
  }

  h2,
  .task-intro h2,
  .how-title,
  .categories-title,
  .route-heading,
  .process-section h2,
  #international-infrastructure.infrastructure-deal-section h2,
  .nonstandard-title,
  .deal-copy h2,
  .about-section-title,
  .solutions-final h2 {
    width: auto;
    max-width: 100%;
    font-size: clamp(34px, 9vw, 40px);
    line-height: 1.07;
    letter-spacing: 0;
  }

  .home-page .route-heading {
    width: 100%;
    max-width: 100%;
    font-size: clamp(26px, 7.4vw, 38px);
    line-height: 1.06;
  }

  .home-page .route-heading span {
    display: block;
    white-space: nowrap;
  }

  .home-page .route-heading span:first-child::after {
    content: ".";
  }

  .hero-text,
  .task-copy p,
  .categories-heading p,
  .category-note,
  .route-main-text,
  .route-bottom p,
  .process-copy p,
  .process-section .timeline h3,
  .process-section .timeline p,
  #international-infrastructure.infrastructure-deal-section p:not(.infrastructure-deal-kicker),
  .nonstandard-intro,
  .item-copy p,
  .faq-answer-text,
  .request-copy p,
  .about-event p,
  .about-principle p,
  .solutions-scenario p,
  .supply-hero-copy > p:not(.section-kicker),
  .supply-sanctions-copy > p:not(.section-kicker),
  .case-body p,
  .case-section p,
  .cases-page-lead {
    font-size: 16px;
    line-height: 1.56;
  }

  .hero-actions {
    --hero-primary-text-inset: 36px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 28px;
  }

  .primary-button,
  .text-link,
  .header-cta,
  .mobile-nav a,
  .faq-question,
  .form-submit,
  .file-control span {
    min-height: 44px;
  }

  .hero-primary {
    width: 100%;
    min-width: 0;
  }

  .hero-secondary {
    width: fit-content;
    margin-left: var(--hero-primary-text-inset);
  }

  .task-section,
  .categories-section,
  .route-section,
  .process-section,
  .faq-section,
  .request-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .task-section,
  .categories-section,
  #nonstandard-schemes.complex-section {
    padding-bottom: 0;
  }

  .home-page .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    object-fit: cover;
    object-position: 72% 100%;
    transform: scale(1.48);
    transform-origin: 72% 100%;
  }

  .home-page .hero-image-frame {
    height: clamp(165px, 42vw, 205px);
    aspect-ratio: auto;
    margin-top: 18px;
  }

  .home-page .task-image {
    height: clamp(160px, 42vw, 230px);
    object-fit: cover;
    object-position: center bottom;
  }

  .task-copy {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 22px;
  }

  .service-line {
    margin-top: 24px;
    font-size: 13px;
    letter-spacing: 0.08em;
    line-height: 1.65;
  }

  .category-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin-top: 24px;
  }

  .category-item {
    justify-content: flex-start;
    min-height: 48px;
    padding: 12px 16px;
    text-align: left;
  }

  .category-note {
    align-items: flex-start;
    margin-top: 22px;
  }

  .home-page .categories-link {
    display: none;
  }

  .cases-placeholder h2 {
    font-size: clamp(34px, 9vw, 40px);
  }

  .cases-row {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) 38px;
    padding: 22px 0;
  }

  .cases-case-button {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .cases-number {
    grid-row: auto;
    font-size: 28px;
  }

  .cases-row h3 {
    font-size: clamp(20px, 6vw, 25px);
    overflow-wrap: normal;
    word-break: normal;
  }

  .cases-row-meta {
    font-size: 13px;
    line-height: 1.35;
  }

  .case-preview-overlay {
    position: static;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "description"
      "link";
    gap: 16px;
    margin-top: 16px;
    color: var(--text-color);
  }

  .case-preview-description,
  .case-preview-link {
    justify-self: start;
    color: var(--text-color);
  }

  .case-preview::after {
    display: none;
  }

  .cases-more {
    min-height: 100px;
  }

  .partners-section {
    height: auto;
    min-height: 0;
    padding: 24px 0 26px;
  }

  .partners-inner {
    width: min(calc(100% - (var(--page-gutter) * 2)), 720px);
    height: clamp(106px, 33vw, 252px);
    align-items: flex-start;
    overflow: hidden;
  }

  .partners-logo-image {
    display: block;
    width: 100%;
    height: auto;
    transform: translateY(-10.6%);
  }

  .route-factor {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .route-factor::before {
    display: none;
  }

  .route-factor p {
    grid-column: 2;
    font-size: 16px;
  }

  .route-result strong {
    font-size: clamp(26px, 7vw, 32px);
  }

  .process-copy .accent-quote {
    white-space: normal;
    font-size: 16px !important;
  }

  #international-infrastructure.infrastructure-deal-section {
    padding-top: 64px;
    padding-bottom: clamp(192px, 58vw, 252px);
    background-image: none;
    background-position: center center;
    background-size: contain;
  }

  #international-infrastructure.infrastructure-deal-section::after {
    content: "";
    position: absolute;
    right: var(--page-gutter);
    bottom: 28px;
    left: var(--page-gutter);
    z-index: 0;
    height: clamp(132px, 47.5vw, 204px);
    background-image: url("assets/infrastructure-map-bg.png?v=20260911-infrastructure-bg");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    pointer-events: none;
  }

  #nonstandard-schemes .nonstandard-bg {
    margin-top: 34px;
  }

  .nonstandard-item {
    padding: 18px 0;
  }

  .item-copy h3,
  .solutions-scenario h2,
  .supply-direction h3 {
    font-size: clamp(22px, 6.5vw, 28px);
    line-height: 1.12;
  }

  .cases-page-case-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(21.5px, 5.8vw, 25px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    white-space: normal;
  }

  .cases-page-case-title span {
    display: inline;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .cases-page-list-inner .cases-page-row:first-child .cases-page-case-title span {
    display: block;
    white-space: nowrap;
  }

  .faq-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .faq-question {
    width: 100%;
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .request-form,
  .request-form .form-field,
  .request-form input,
  .request-form textarea,
  .form-submit {
    width: 100%;
    min-width: 0;
  }

  .request-form textarea {
    min-height: 124px;
  }

  .request-form .file-control input {
    width: 1px;
    min-width: 0;
    min-height: 0;
    height: 1px;
    border: 0;
    padding: 0;
  }

  .footer-main,
  .footer-meta {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-map,
  .supply-network,
  .supply-network svg {
    min-height: 220px;
  }

  .about-timeline-item,
  .about-principle,
  .solutions-scenario,
  .supply-direction,
  .cases-page-row,
  .case-section-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-point,
  .about-year,
  .about-event,
  .about-principle p,
  .solutions-scenario p,
  .supply-row-graphic,
  .case-section-copy {
    grid-column: auto;
  }

  .about-timeline::before {
    display: none;
  }

  .supply-hero,
  .supply-directions,
  .supply-sanctions,
  .supply-request,
  .solutions-scenarios,
  .solutions-final,
  .cases-page-hero-inner,
  .cases-page-cta,
  .case-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .solutions-final {
    padding-top: clamp(26px, 6.5vw, 40px);
    padding-bottom: clamp(26px, 6.5vw, 40px);
  }

  .supply-hero {
    padding-top: calc(var(--compact-header-height) + 28px);
  }

  .supply-hero-image {
    position: relative;
    height: auto;
    margin-top: 30px;
    object-fit: contain;
    transform: none;
  }
}

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

.case-page .case-heading .case-heading-desktop-word {
  display: inline;
}

@media (max-width: 760px) {
  .case-page .case-heading,
  .case-page .case-heading.case-heading-packaging {
    font-size: clamp(18px, 5.65vw, 43px);
    line-height: 1.02;
  }

  .case-page .case-heading-epiroc > span,
  .case-page .case-heading-flour > span {
    display: block;
    white-space: nowrap;
  }

  .case-page .case-heading-flour .case-heading-desktop-word {
    display: none;
  }

  .case-page .case-heading-flour > span:nth-child(2)::before {
    content: "которые ";
  }
}

/* Cloudflare Turnstile */
.turnstile-wrap {
  width: 100%;
  margin-top: 2px;
}

.turnstile-wrap .cf-turnstile {
  width: 100%;
}

@media (max-width: 360px) {
  .turnstile-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  .turnstile-wrap .cf-turnstile,
  .turnstile-wrap iframe {
    max-width: 100%;
  }
}
