:root {
  --ink: #18201d;
  --muted: #66706b;
  --surface: #fffaf0;
  --surface-2: #f3fbf2;
  --panel: #ffffff;
  --line: #dfe7dc;
  --brand: #153d34;
  --signal: #d9ff4f;
  --teal: #18b6a7;
  --copper: #c4632d;
  --violet: #4950c8;
  --shadow: 0 24px 70px rgba(24, 32, 29, 0.13);
  --radius: 8px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(24, 182, 167, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 14px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

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

.page-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 10px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(223, 231, 220, 0.82);
  background: rgba(255, 250, 240, 0.9);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 45px rgba(24, 32, 29, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: var(--brand);
  background: var(--signal);
  box-shadow: inset 0 0 0 1px rgba(24, 32, 29, 0.12);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
  line-height: 1;
}

.brand strong {
  font-size: 0.98rem;
  font-weight: 900;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-nav a,
.language-switch button {
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 800;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--muted);
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--brand);
  background: #edf6e9;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.language-switch button {
  min-width: 48px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.language-switch button.is-active {
  color: var(--brand);
  background: var(--signal);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--brand);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: min(790px, calc(100dvh - 72px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  align-items: end;
  gap: clamp(22px, 4vw, 42px);
  overflow: hidden;
  padding: clamp(80px, 12vw, 150px) clamp(18px, 5vw, 64px) clamp(46px, 8vw, 82px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(0deg, rgba(255, 250, 240, 0.92), rgba(255, 250, 240, 0));
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 250, 240, 0.96) 0%, rgba(255, 250, 240, 0.88) 34%, rgba(255, 250, 240, 0.46) 58%, rgba(255, 250, 240, 0) 82%);
  pointer-events: none;
}

.hero-map {
  position: absolute;
  inset: 0;
}

.hero-map svg {
  width: 100%;
  height: 100%;
}

.chart-grid {
  fill: none;
  stroke: rgba(21, 61, 52, 0.09);
  stroke-width: 1;
}

.shore {
  fill: rgba(21, 61, 52, 0.07);
}

.shore-b {
  fill: rgba(196, 99, 45, 0.08);
}

.route {
  fill: none;
  stroke-linecap: round;
  stroke-width: 4.2;
  stroke-dasharray: 13 16;
  animation: route-dash 11s linear infinite;
}

.route-sea {
  stroke: var(--teal);
}

.route-rail {
  stroke: var(--copper);
  animation-duration: 14s;
}

.route-air {
  stroke: var(--violet);
  animation-duration: 9s;
}

.map-node {
  fill: var(--brand);
  color: var(--brand);
  font-weight: 900;
}

.map-node text {
  fill: currentColor;
  font-size: 22px;
}

.node-pulse {
  animation: pulse 2.8s ease-in-out infinite;
}

.vessel {
  fill: #fff;
  stroke: var(--brand);
  stroke-linejoin: round;
  stroke-width: 3;
  filter: drop-shadow(0 12px 18px rgba(24, 32, 29, 0.15));
}

.vessel-sea {
  offset-path: path("M115 505C263 392 376 367 516 376c169 11 254-104 412-112 106-6 178 36 252 89");
  animation: travel 10s linear infinite;
}

.vessel-road {
  offset-path: path("M820 248c74-16 142-12 205 2 68 15 122 40 174 77");
  animation: travel 12s linear infinite;
}

.vessel-air {
  offset-path: path("M138 356c178-141 360-194 543-159 159 31 251 116 409 103");
  animation: travel 8s linear infinite;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 790px;
}

.hero-content h1 {
  margin-top: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--brand);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: normal;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.5rem, 5.2vw, 4.8rem);
}

.hero-title-brand {
  display: block;
  color: var(--copper);
}

.hero-title-rest {
  display: block;
  max-width: 760px;
}

html[lang="en"] .hero-title-rest {
  max-width: 620px;
}

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

h3 {
  font-size: 1.16rem;
}

.hero-lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: #34413b;
  font-size: clamp(1.03rem, 1.6vw, 1.24rem);
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 20px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #142018;
  background: var(--signal);
  box-shadow: 0 14px 30px rgba(91, 112, 24, 0.2);
}

.button.secondary {
  color: var(--brand);
  border-color: rgba(21, 61, 52, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.hero-panel {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(21, 61, 52, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.hero-panel p,
.hero-panel span {
  margin: 0;
  color: var(--muted);
}

.hero-panel strong {
  display: block;
  margin: 8px 0;
  color: var(--brand);
  font-size: 1.42rem;
  line-height: 1.1;
}

.facts,
.section,
.contact,
.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  transform: translateY(-18px);
  border-radius: var(--radius);
  background: transparent;
}

.facts article {
  position: relative;
  min-height: 96px;
  padding: 18px 18px 17px;
  border: 1px solid rgba(21, 61, 52, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 38px rgba(24, 32, 29, 0.08);
}

.facts article::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 4px;
  height: calc(100% - 36px);
  border-radius: 99px;
  background: var(--copper);
}

.facts span {
  display: block;
  margin: 0 0 8px 14px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
}

.profile-card span {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-card span {
  color: var(--copper);
  letter-spacing: 0.02em;
}

.facts strong {
  display: block;
  margin: 0 0 0 14px;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.34;
}

.profile-card strong {
  display: block;
  margin-top: 8px;
  color: var(--brand);
  font-size: 1.08rem;
  line-height: 1.25;
}

.section {
  padding: clamp(68px, 10vw, 120px) 0;
}

.section-kicker {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.section-kicker .eyebrow {
  margin: 0 0 14px;
}

.section-kicker h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  line-height: 1.08;
}

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

.service-card {
  min-height: 250px;
  display: grid;
  grid-template-columns: minmax(210px, 0.92fr) 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px 22px 18px 18px;
  border: 1px solid rgba(21, 61, 52, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    var(--panel);
  box-shadow: 0 18px 44px rgba(24, 32, 29, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 99, 45, 0.28);
  box-shadow: 0 24px 62px rgba(24, 32, 29, 0.12);
}

.service-card img {
  grid-row: 1 / span 2;
  width: 100%;
  aspect-ratio: 1.46;
  object-fit: contain;
  border-radius: var(--radius);
  background: transparent;
}

.service-card h3 {
  max-width: 18ch;
  align-self: end;
  color: var(--brand);
  font-size: clamp(1.2rem, 1.8vw, 1.48rem);
  line-height: 1.02;
}

.service-card p {
  align-self: start;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.activity {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.activity-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  color: var(--brand);
  background: var(--signal);
  font-weight: 900;
}

.timeline p {
  margin: 0;
  color: #34413b;
  font-weight: 700;
}

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

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

.profile-card {
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.profile-card.wide {
  grid-column: 1 / -1;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin-bottom: 86px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(21, 61, 52, 0.96), rgba(24, 32, 29, 0.95)),
    repeating-linear-gradient(90deg, transparent 0 56px, rgba(217, 255, 79, 0.08) 56px 57px);
}

.contact h2,
.contact .eyebrow {
  color: #fff;
}

.contact p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  transition: background 180ms ease, transform 180ms ease;
}

.contact-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.13);
}

.contact-links span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-links strong {
  color: #fff;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 0 42px;
  color: var(--muted);
  font-weight: 800;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
}

.footer-brand strong,
.footer-brand small {
  display: block;
  letter-spacing: 0;
  line-height: 1;
}

.footer-brand strong {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
}

.footer-brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px 20px;
  text-align: right;
}

.footer-meta p {
  margin: 0;
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
}

.footer-contacts a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-color: rgba(21, 61, 52, 0.25);
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.site-footer a {
  color: var(--brand);
}

@keyframes route-dash {
  to {
    stroke-dashoffset: -180;
  }
}

@keyframes travel {
  from {
    offset-distance: 0%;
  }
  to {
    offset-distance: 100%;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.78);
    transform-origin: 760px 334px;
  }
  50% {
    opacity: 1;
    transform: scale(1);
    transform-origin: 760px 334px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    inset: 72px 14px auto;
    display: none;
    grid-auto-rows: 54px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    justify-content: center;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero,
  .activity,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
  }

  .hero-panel {
    max-width: 420px;
  }

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

}

@media (max-width: 700px) {
  .site-header {
    gap: 9px;
    padding-inline: 12px;
  }

  .brand span:not(.brand-mark) {
    display: none;
  }

  .language-switch button {
    min-width: 42px;
  }

  .hero {
    padding-inline: 18px;
  }

  .map-node {
    display: none;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3.15rem);
  }

  .facts,
  .service-grid,
  .section-kicker,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px 16px 20px;
  }

  .service-card img {
    grid-row: auto;
  }

  .service-card h3 {
    max-width: 16ch;
    align-self: auto;
  }

  .service-card p {
    align-self: auto;
  }

  .profile-card.wide {
    grid-column: auto;
  }

  .facts {
    transform: none;
    margin-top: 18px;
  }

  .facts article {
    min-height: auto;
    padding: 17px 18px 16px;
  }

  .contact {
    width: calc(100% - 24px);
    padding: 24px;
  }

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

  .footer-meta {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .footer-contacts {
    width: 100%;
    justify-content: flex-start;
  }
}
