:root {
  --red: #b5121b;
  --red-dark: #850a12;
  --red-deep: #5f070d;
  --charcoal: #151719;
  --graphite: #2c3033;
  --steel: #858d92;
  --silver: #c9ced1;
  --silver-light: #f4f6f7;
  --metal-light:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(214, 220, 224, 0.94)),
    linear-gradient(115deg, rgba(255, 255, 255, 0.62), rgba(140, 150, 156, 0.18) 42%, rgba(255, 255, 255, 0.42) 64%, rgba(118, 128, 135, 0.16)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, rgba(31, 36, 39, 0.04) 1px 4px);
  --metal-mid:
    linear-gradient(180deg, rgba(238, 242, 244, 0.92), rgba(190, 198, 203, 0.92)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.48), rgba(121, 131, 138, 0.2) 48%, rgba(255, 255, 255, 0.36) 70%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, rgba(25, 31, 35, 0.05) 1px 4px);
  --metal-dark:
    linear-gradient(180deg, rgba(77, 84, 89, 0.96), rgba(32, 37, 40, 0.98)),
    linear-gradient(118deg, rgba(255, 255, 255, 0.13), rgba(115, 126, 133, 0.16) 42%, rgba(255, 255, 255, 0.08) 66%, rgba(0, 0, 0, 0.16)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, rgba(0, 0, 0, 0.08) 1px 4px);
  --white: #ffffff;
  --line: rgba(21, 23, 25, 0.14);
  --shadow: 0 18px 45px rgba(11, 13, 15, 0.18);
  --container: min(1120px, calc(100% - 40px));
  --top-container: min(1268px, calc(100% - 12px));
  --header-logo-zone: clamp(390px, 34vw, 530px);
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    var(--metal-light),
    #d9dee1;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--red);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: var(--header-height);
  overflow: hidden;
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: calc(100% - var(--header-logo-zone));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 242, 244, 0.86) 18%, rgba(203, 211, 216, 0.98) 58%, rgba(142, 151, 157, 0.98) 100%),
    linear-gradient(112deg, rgba(255, 255, 255, 0.72) 0%, rgba(125, 135, 142, 0.16) 42%, rgba(255, 255, 255, 0.5) 62%, rgba(92, 101, 108, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.05) 48%, rgba(0, 0, 0, 0.16)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, rgba(0, 0, 0, 0.05) 1px 4px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -2px 0 var(--red), inset 0 -16px 22px rgba(25, 31, 35, 0.08), 0 8px 24px rgba(8, 10, 12, 0.14);
  clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: calc(100% - var(--header-logo-zone) - 41px);
  bottom: 0;
  width: 2px;
  height: calc(var(--header-height) + 10px);
  background: var(--red);
  transform: rotate(28deg);
  transform-origin: bottom center;
  pointer-events: none;
}

.header-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(140px, 0.8fr) auto minmax(330px, 1fr);
  align-items: center;
  width: var(--top-container);
  min-height: var(--header-height);
  margin: 0 auto;
}

.header-language {
  grid-column: 1;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-self: start;
}

.header-language .language-card {
  min-width: 62px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(21, 23, 25, 0.12);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 3px 10px rgba(8, 10, 12, 0.12);
}

.primary-nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  color: #181a1c;
  background: transparent;
  border: 0;
}

.primary-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 34px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  transition: background 160ms ease, color 160ms ease;
}

.primary-nav a + a {
  border-left: 1px solid rgba(21, 23, 25, 0.26);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--white);
  background: rgba(181, 18, 27, 0.88);
  outline: none;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand {
  grid-column: 3;
  justify-self: end;
  position: relative;
  z-index: 2;
  min-height: 62px;
  padding: 7px 0 7px 32px;
  margin-right: clamp(28px, 3vw, 42px);
  transform: translateY(10px);
}

.brand-logo {
  display: block;
  width: clamp(232px, 19.5vw, 250px);
  max-height: 46px;
  object-fit: contain;
}

.brand-icon {
  position: relative;
  width: 34px;
  height: 28px;
  border: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.62);
  clip-path: polygon(0 0, 78% 0, 100% 50%, 78% 100%, 0 100%, 16% 50%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.72);
}

.brand-icon::after {
  content: "";
  position: absolute;
  inset: 7px 8px;
  background: var(--red);
}

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

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(21, 23, 25, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--charcoal);
}

.hero {
  --hero-image: none;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 680px;
  height: calc(100svh - 44px);
  max-height: 780px;
  overflow: hidden;
  background-color: #25292c;
  background-image:
    linear-gradient(90deg, rgba(10, 12, 14, 0.86) 0%, rgba(10, 12, 14, 0.7) 34%, rgba(10, 12, 14, 0.18) 62%, rgba(10, 12, 14, 0.02) 100%),
    var(--hero-image),
    linear-gradient(120deg, #171b1f 0%, #586167 56%, #c5c9ca 100%);
  background-repeat: no-repeat;
  background-size: cover, cover, cover;
  background-position: center, center right, center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 10px;
  background: linear-gradient(90deg, var(--red), rgba(181, 18, 27, 0.15), transparent);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

.hero.is-day::before {
  opacity: 0.2;
  background-image:
    radial-gradient(ellipse at 74% 20%, rgba(255, 255, 255, 0.34) 0 10%, transparent 34%),
    radial-gradient(ellipse at 92% 30%, rgba(255, 255, 255, 0.22) 0 12%, transparent 36%),
    radial-gradient(ellipse at 58% 16%, rgba(255, 255, 255, 0.18) 0 9%, transparent 32%);
  background-position: 0 0, 0 0, 0 0;
  background-repeat: repeat-x;
  background-size: 860px 260px, 720px 230px, 980px 220px;
  animation: hero-cloud-drift 96s linear infinite;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.22) 34%, #000000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.22) 34%, #000000 100%);
}

.hero.is-night::before {
  opacity: 0.24;
  background-image:
    radial-gradient(circle at 64% 18%, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.8px),
    radial-gradient(circle at 78% 31%, rgba(255, 255, 255, 0.46) 0 1px, transparent 1.7px),
    radial-gradient(circle at 91% 17%, rgba(255, 255, 255, 0.56) 0 1px, transparent 1.8px),
    radial-gradient(circle at 72% 46%, rgba(255, 255, 255, 0.4) 0 1px, transparent 1.7px),
    radial-gradient(circle at 86% 56%, rgba(255, 255, 255, 0.34) 0 1px, transparent 1.7px);
  background-repeat: repeat;
  background-size: 520px 310px;
  animation: hero-star-twinkle 7.5s ease-in-out infinite alternate;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 40%, #000000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 40%, #000000 100%);
}

.hero-bright-star {
  position: absolute;
  top: 8%;
  right: 10%;
  z-index: 1;
  display: none;
  width: 124px;
  height: 76px;
  pointer-events: none;
}

.hero.is-night .hero-bright-star {
  display: block;
}

.hero-bright-star span {
  position: absolute;
  display: block;
  width: 4.25px;
  height: 4.25px;
  opacity: 0.45;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: hero-bright-star-pulse 8s ease-in-out infinite;
}

.hero-bright-star span:nth-child(1) {
  top: 8%;
  left: 8%;
  animation-delay: -1.2s;
}

.hero-bright-star span:nth-child(2) {
  top: 26%;
  left: 22%;
  animation-delay: -3.6s;
}

.hero-bright-star span:nth-child(3) {
  top: 45%;
  left: 36%;
  animation-delay: -0.5s;
}

.hero-bright-star span:nth-child(4) {
  top: 64%;
  left: 50%;
  animation-delay: -4.8s;
}

.hero-bright-star span:nth-child(5) {
  top: 45%;
  left: 64%;
  animation-delay: -2.4s;
}

.hero-bright-star span:nth-child(6) {
  top: 26%;
  left: 78%;
  animation-delay: -5.6s;
}

.hero-bright-star span:nth-child(7) {
  top: 8%;
  left: 92%;
  animation-delay: -0.9s;
}

.hero-bright-star span::before,
.hero-bright-star span::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bright-star span::before {
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 0.45px, rgba(236, 245, 255, 0.42) 0.65px 1.35px, transparent 2.05px);
  filter: drop-shadow(0 0 0.5px rgba(232, 244, 255, 0.24));
}

.hero-bright-star span::after {
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(255, 255, 255, 0.12) 48%, rgba(255, 255, 255, 0.34) 50%, rgba(255, 255, 255, 0.12) 52%, transparent 58% 100%),
    linear-gradient(0deg, transparent 0 43%, rgba(255, 255, 255, 0.08) 49%, rgba(255, 255, 255, 0.24) 50%, rgba(255, 255, 255, 0.08) 51%, transparent 57% 100%);
  opacity: 0.04;
  transform: scale(0.38);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 80px));
  max-width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 46px) 0 70px;
  color: var(--white);
}

.hero h1,
.section h2 {
  margin: 0;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11ch;
  font-size: 4.25rem;
}

.hero p {
  max-width: 460px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .section-kicker {
  color: var(--silver-light);
}

@keyframes hero-cloud-drift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 170px 0, 110px 0, 220px 0;
  }
}

@keyframes hero-star-twinkle {
  from {
    opacity: 0.14;
  }

  to {
    opacity: 0.26;
  }
}

@keyframes hero-bright-star-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(1);
  }

  48% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.is-day::before,
  .hero.is-night::before,
  .hero.is-night .hero-bright-star span {
    animation: none;
  }

  .hero.is-night .hero-bright-star span {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(1);
  }
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 32px;
  padding: 13px 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  color: #eef1f2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 12px 24px rgba(95, 7, 13, 0.24);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.primary-cta:hover,
.primary-cta:focus-visible,
.secondary-cta:hover,
.secondary-cta:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 48%),
    linear-gradient(135deg, var(--red-dark), var(--red-deep));
  box-shadow: 0 14px 28px rgba(95, 7, 13, 0.34);
  outline: none;
  transform: translateY(-1px);
}

.section {
  scroll-margin-top: calc(var(--header-height) + 32px);
  padding: 88px 0;
  border-top: 1px solid rgba(181, 18, 27, 0.16);
}

.section-inner {
  width: var(--container);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: center;
}

.section h2 {
  color: var(--charcoal);
  font-size: 2.25rem;
}

.section p {
  color: #4a5155;
}

.section-copy p:last-child,
.section-heading p:last-child,
.trade-info p:last-of-type {
  margin-bottom: 0;
}

.red-accent {
  display: block;
  width: 72px;
  height: 4px;
  margin: 18px 0 24px;
  background: var(--red);
}

.section-about {
  background:
    var(--metal-light),
    #dce1e4;
}

.image-frame {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(21, 23, 25, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(133, 141, 146, 0.16)),
    repeating-linear-gradient(135deg, #d6dbde 0 12px, #eef1f2 12px 24px);
  box-shadow: var(--shadow);
}

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

.image-fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px;
  color: #30363a;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(117, 126, 132, 0.2)),
    repeating-linear-gradient(135deg, #d5dade 0 14px, #eef0f1 14px 28px);
}

.image-fallback strong {
  color: var(--charcoal);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.image-fallback span {
  color: #5e666b;
  font-size: 0.86rem;
  word-break: break-word;
}

.image-frame.is-missing img {
  display: none;
}

.image-frame.is-missing .image-fallback {
  display: flex;
}

.about-image {
  aspect-ratio: 4 / 3;
}

.section-fleet {
  color: var(--white);
  background:
    var(--metal-dark),
    #24292c;
}

.section-fleet .section-heading {
  max-width: 640px;
}

.section-fleet h2,
.section-fleet p {
  color: var(--white);
}

.section-fleet .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.fleet-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 18px;
  align-items: center;
  margin-top: 38px;
}

.fleet-window {
  overflow: hidden;
  border: 1px solid rgba(218, 224, 228, 0.2);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(17, 20, 22, 0.14)),
    rgba(198, 205, 209, 0.08);
}

.fleet-track {
  display: flex;
  transition: transform 260ms ease;
}

.fleet-slide {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(62, 69, 73, 0.96), rgba(31, 36, 39, 0.98)),
    #252b2f;
}

.fleet-image {
  aspect-ratio: 16 / 9;
  min-height: 360px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.fleet-caption {
  min-height: 56px;
  padding: 16px 20px;
  border-top: 3px solid var(--red);
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  text-transform: uppercase;
}

.carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.carousel-button span {
  font-size: 2.35rem;
  line-height: 1;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: var(--red);
  outline: none;
}

.carousel-dots {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
  min-height: 14px;
  margin-top: 4px;
}

.carousel-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--red);
}

.section-routes {
  background:
    var(--metal-mid),
    #d3d9dd;
}

.routes-layout {
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1.28fr);
}

.route-map {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(21, 23, 25, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(214, 219, 222, 0.88)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(89, 101, 108, 0.08) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(89, 101, 108, 0.08) 39px 40px);
  box-shadow: var(--shadow);
}

.route-map svg {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
}

.map-land {
  fill: #d1d7da;
  stroke: #a5aeb4;
  stroke-width: 2;
}

.map-land-soft {
  fill: #e1e5e7;
}

.route-line {
  fill: none;
  stroke: var(--red);
  stroke-linecap: square;
  stroke-width: 5;
}

.route-line-secondary {
  stroke-width: 4;
  opacity: 0.72;
}

.route-point {
  fill: var(--red);
  stroke: var(--white);
  stroke-width: 4;
}

.map-label {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 8px 12px;
  color: #3b4246;
  background: rgba(255, 255, 255, 0.82);
  border-left: 4px solid var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-trade {
  background:
    var(--metal-light),
    #dce1e4;
}

.trade-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  gap: 54px;
  align-items: start;
}

.grain-visual {
  position: relative;
  min-height: 260px;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid rgba(21, 23, 25, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(21, 23, 25, 0.14)),
    #b9a965;
  box-shadow: var(--shadow);
}

.grain-field {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(155deg, transparent 0 34%, rgba(99, 111, 79, 0.8) 34% 41%, transparent 41%),
    repeating-linear-gradient(165deg, rgba(255, 255, 255, 0.22) 0 10px, rgba(103, 82, 38, 0.26) 10px 18px);
}

.grain-stack {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: grid;
  grid-template-columns: repeat(3, 58px);
  gap: 8px;
  align-items: end;
}

.grain-stack span {
  display: block;
  height: 74px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 5px 5px 14px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 44%),
    #d7c77b;
  box-shadow: 0 8px 18px rgba(21, 23, 25, 0.18);
}

.grain-stack span:nth-child(2) {
  height: 96px;
}

.grain-visual strong {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: 220px;
  color: var(--white);
  text-transform: uppercase;
}

.request-form {
  padding: 28px;
  border: 1px solid rgba(76, 86, 92, 0.22);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(213, 219, 223, 0.9)),
    linear-gradient(112deg, rgba(255, 255, 255, 0.62), rgba(126, 137, 144, 0.12) 55%, rgba(255, 255, 255, 0.38)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, rgba(21, 27, 31, 0.035) 1px 4px),
    #dce1e4;
  box-shadow: var(--shadow);
}

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

.request-form label {
  display: grid;
  gap: 8px;
  color: #30363a;
  font-size: 0.9rem;
  font-weight: 800;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(21, 23, 25, 0.22);
  border-radius: 4px;
  color: var(--charcoal);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 243, 244, 0.98)),
    #ffffff;
}

.request-form input,
.request-form select {
  padding: 0 12px;
}

.request-form textarea {
  min-height: 132px;
  padding: 12px;
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(181, 18, 27, 0.14);
  outline: none;
}

.request-form ::placeholder {
  color: #8a9297;
}

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

.secondary-cta,
.form-submit {
  margin-top: 24px;
}

.section-transport {
  background:
    var(--metal-dark),
    #252a2d;
}

.section-transport h2,
.section-transport .section-heading p {
  color: var(--white);
}

.section-transport .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.transport-form {
  margin-top: 34px;
}

.site-footer {
  padding: 42px 0;
  color: rgba(246, 248, 249, 0.78);
  background:
    linear-gradient(180deg, rgba(63, 70, 75, 0.98), rgba(25, 29, 32, 0.98)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(118, 129, 136, 0.16) 48%, rgba(0, 0, 0, 0.16)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, rgba(0, 0, 0, 0.08) 1px 4px),
    #262c30;
  border-top: 3px solid var(--red);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 28px;
  align-items: center;
  width: var(--container);
  margin: 0 auto;
}

.footer-brand .brand-icon {
  background: rgba(255, 255, 255, 0.1);
}

.footer-contact {
  display: grid;
  gap: 4px;
  font-size: 0.92rem;
}

.footer-contact strong {
  color: var(--white);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--white);
  outline: none;
}

.copyright {
  margin: 0;
  font-size: 0.9rem;
}

.language-selector {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  gap: 8px;
}

.language-card {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-width: 76px;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid rgba(21, 23, 25, 0.12);
  border-radius: 6px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(8, 10, 12, 0.16);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 900;
}

.language-card.is-active {
  border-left: 4px solid var(--red);
}

.flag {
  font-size: 1rem;
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
    --container: min(100% - 32px, 920px);
    --top-container: min(100% - 32px, 960px);
    --header-logo-zone: clamp(300px, 34vw, 410px);
  }

  .header-shell {
    grid-template-columns: minmax(108px, 0.7fr) auto minmax(190px, 0.9fr);
  }

  .header-language .language-card {
    min-width: 55px;
    padding-inline: 8px;
  }

  .primary-nav a {
    padding: 0 18px;
    font-size: 0.86rem;
  }

  .brand-logo {
    width: clamp(214px, 25vw, 236px);
    max-height: 43px;
  }

  .hero {
    min-height: 590px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .two-column,
  .routes-layout,
  .trade-layout {
    grid-template-columns: 1fr;
  }

  .routes-layout .section-copy {
    max-width: 640px;
  }

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

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

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 680px);
    --top-container: min(100% - 28px, 680px);
    --header-logo-zone: 36vw;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    overflow: visible;
  }

  .site-header::before {
    width: 40%;
    clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
  }

  .site-header::after {
    left: calc(40% - 19px);
    right: auto;
    width: 2px;
    height: calc(var(--header-height) + 3px);
    transform: rotate(15deg);
  }

  .header-shell {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 8px 0;
  }

  .header-language {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    gap: 6px;
  }

  .header-language .language-card {
    min-width: 54px;
    min-height: 30px;
    padding: 5px 8px;
    font-size: 0.78rem;
  }

  .mobile-menu-toggle {
    display: inline-block;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .brand {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    padding-left: 0;
    margin-right: 0;
    transform: translateY(8px);
  }

  .brand-logo {
    width: clamp(138px, 37vw, 178px);
    max-height: 34px;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    right: 0;
    grid-column: 1 / -1;
    grid-row: 3;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(21, 23, 25, 0.18);
    background:
      linear-gradient(180deg, #f7f8f8, #c4c9cc),
      var(--silver);
    box-shadow: 0 18px 32px rgba(8, 10, 12, 0.28);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    justify-content: center;
    min-height: 50px;
    border-left: 0;
  }

  .primary-nav a + a {
    border-top: 1px solid rgba(21, 23, 25, 0.16);
    border-left: 0;
  }

  .hero {
    align-items: flex-end;
    min-height: 500px;
    height: 100svh;
    background-position: center, 68% center, center;
  }

  .hero-content {
    width: var(--container);
    max-width: var(--container);
    padding: calc(var(--header-height) + 86px) 0 58px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero.is-day::before {
    opacity: 0.1;
    animation-duration: 130s;
  }

  .hero.is-night::before {
    opacity: 0.12;
    animation-duration: 10s;
  }

  .hero.is-night .hero-bright-star {
    top: 7%;
    right: 7%;
    width: 82px;
    height: 52px;
  }

  .hero-bright-star span {
    width: 2.75px;
    height: 2.75px;
    animation-duration: 8.5s;
  }

  .hero-bright-star span::before {
    opacity: 0.58;
  }

  .hero-bright-star span::after {
    opacity: 0.03;
  }

  .section {
    scroll-margin-top: 150px;
    padding: 66px 0;
  }

  .section h2 {
    font-size: 1.85rem;
  }

  .fleet-carousel {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 10px;
  }

  .carousel-button {
    width: 44px;
    height: 44px;
  }

  .fleet-image {
    min-height: 0;
  }

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

  .request-form {
    padding: 22px;
  }

  .grain-stack {
    right: 18px;
    grid-template-columns: repeat(3, 42px);
  }

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

  .language-selector {
    left: 12px;
    bottom: 12px;
  }
}

@media (max-width: 480px) {
  .brand-icon {
    width: 30px;
    height: 25px;
  }

  .hero {
    min-height: 470px;
  }

  .hero h1 {
    font-size: 2.05rem;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

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

  .fleet-window {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .carousel-prev {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
  }

  .carousel-next {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .carousel-dots {
    grid-column: 1 / -1;
    grid-row: 3;
  }

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

  .map-label {
    left: 14px;
    right: 14px;
    text-align: center;
  }

  .language-card {
    min-width: 62px;
    min-height: 34px;
    padding: 6px 8px;
  }
}
