:root {
  --bg: #fff;
  --panel: #f1f4f8;
  --ink: #101724;
  --muted: #5d6878;
  --line: rgba(16, 23, 36, .15);
  --red: #e84042;
  --blue: #145ae2;
  --lime: #a8e84d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  z-index: 10;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  height: 86px;
  padding: 0 clamp(24px, 5vw, 78px);
  display: flex;
  align-items: center;
  gap: 44px;
  border-bottom: 1px solid var(--line);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
}

.brand {
  color: var(--ink);
  text-decoration: none;
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 230px;
}

.brand-mark {
  width: 51px;
  height: 31px;
  background: linear-gradient(145deg, #f4f7fb, #76808f);
  transform: skew(-16deg);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.brand-mark:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 7px;
  left: 0;
  top: 6px;
  background: var(--red);
  box-shadow: 0 8px var(--blue);
}

.brand-mark i {
  display: none;
}

.brand-mark b {
  font-size: 24px;
  font-style: italic;
  letter-spacing: -4px;
  color: #101620;
  z-index: 1;
  transform: skew(16deg);
  padding-right: 4px;
}

.brand strong {
  font-size: 19px;
  letter-spacing: .12em;
  display: block;
}

.brand small {
  font: 10px/1.3 'DM Mono', monospace;
  color: var(--muted);
  display: block;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
}

.nav a, footer a {
  color: var(--muted);
  text-decoration: none;
  font: 12px 'DM Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: .25s;
}

.nav a:hover, .nav a.active, footer a:hover {
  color: var(--red);
}

.language {
  height: 36px;
  border: 1px solid var(--line);
  padding: 0 7px;
  color: var(--ink);
  background: transparent;
  font: 11px 'DM Mono', monospace;
  cursor: pointer;
}

.theme-toggle, .menu-toggle {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.theme-toggle {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}

.theme-toggle .moon {
  display: none;
}

.menu-toggle {
  display: none;
}

/* Hide theme toggle on About and Contact pages */
.page-about .theme-toggle,
.contact-page .theme-toggle {
  display: none !important;
}

.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  padding: 150px clamp(24px, 10vw, 160px) 90px;
  overflow: hidden;
  color: #fff;
  background: #101a2b;
  isolation: isolate;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .47;
  filter: saturate(.75) contrast(1.1);
  z-index: -2;
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 12, 23, .93) 0%, rgba(6, 12, 23, .66) 44%, rgba(6, 12, 23, .13));
  z-index: -1;
}

.hero-grid, .network-map:before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent);
  opacity: .33;
}

.hero-grid {
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .8;
}

.orb-one {
  height: 520px;
  width: 520px;
  background: radial-gradient(circle, rgba(20, 90, 226, .38), transparent 65%);
  right: 4%;
  top: 80px;
}

.orb-two {
  height: 390px;
  width: 390px;
  background: radial-gradient(circle, rgba(232, 64, 66, .15), transparent 67%);
  left: -140px;
  bottom: -100px;
}

.hero-copy, .hero-art {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font: 11px 'DM Mono', monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
}

.hero .eyebrow {
  color: #d5dce7;
}

.eyebrow span {
  height: 7px;
  width: 7px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(232, 64, 66, .13);
}

h1, h2 {
  font-size: clamp(52px, 7vw, 108px);
  letter-spacing: -.075em;
  line-height: .91;
  margin: 0;
  font-weight: 800;
}

em {
  font-style: normal;
  color: var(--red);
}

.hero-text {
  line-height: 1.75;
  max-width: 430px;
  color: #d5dce7;
  font-size: 16px;
  margin: 31px 0;
}

.hero-actions {
  display: flex;
  gap: 27px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  padding: 16px 19px;
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: .2s;
}

.button b {
  font-size: 20px;
}

.button.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 7px 7px 0 var(--blue);
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--blue);
}

.text-link {
  font: 12px 'DM Mono', monospace;
  text-decoration: none;
  color: #fff;
}

.text-link b {
  margin-left: 8px;
}

.hero-art {
  height: 480px;
}

.globe {
  position: absolute;
  right: 3%;
  top: 10px;
  width: min(35vw, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 34% 29%, #1e3970, #0b1324 65%);
  box-shadow: inset -35px -25px 70px #03060c, 0 0 80px rgba(20, 90, 226, .25);
  animation: float 8s ease-in-out infinite;
}

.latitude, .longitude {
  position: absolute;
  border: 1px solid rgba(168, 232, 77, .25);
  border-radius: 50%;
}

.latitude {
  left: 0;
  width: 100%;
  height: 30%;
}

.lat-1 { top: 19%; }
.lat-2 { bottom: 19%; }

.longitude {
  height: 100%;
  width: 38%;
  top: 0;
}

.long-1 { left: 13%; }
.long-2 { right: 13%; }

.globe svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1;
  stroke-dasharray: 5 6;
}

.pin {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(232, 64, 66, .2), 0 0 25px var(--red);
}

.pin-a { left: 27%; top: 43%; }
.pin-b { left: 64%; top: 36%; background: var(--lime); box-shadow: 0 0 0 6px rgba(168, 232, 77, .15), 0 0 25px var(--lime); }
.pin-c { left: 75%; top: 58%; }

.cargo-card, .metric-card {
  position: absolute;
  background: rgba(14, 20, 32, .82);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  padding: 18px 20px;
  color: #fff;
}

.cargo-card {
  width: 230px;
  top: 243px;
  left: 0;
  box-shadow: 17px 17px 40px #02050b;
}

.cargo-card small, .metric-card small {
  font: 10px 'DM Mono', monospace;
  color: var(--muted);
  display: block;
}

.cargo-card strong {
  display: block;
  margin: 9px 0 16px;
  font-size: 14px;
}

.cargo-card > div {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted);
}

.cargo-card > div b {
  color: var(--lime);
}

.cargo-card > i {
  display: block;
  margin-top: 8px;
  height: 3px;
  background: #39404b;
}

.cargo-card > i i {
  display: block;
  width: 78%;
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--blue));
}

.status-dot {
  float: right;
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--lime);
}

.metric-card {
  right: 0;
  bottom: 10px;
}

.metric-card b {
  font-size: 30px;
  display: block;
}

.metric-card b span {
  font-size: 15px;
  color: var(--red);
}

.scroll-note {
  position: absolute;
  bottom: 28px;
  left: clamp(24px, 5vw, 78px);
  font: 10px 'DM Mono', monospace;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroll-note span {
  width: 38px;
  height: 1px;
  background: var(--red);
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
  background: var(--red);
  padding: 12px 0;
  transform: rotate(-1deg) scale(1.02);
  position: relative;
  z-index: 2;
}

.ticker div {
  font: 15px 'DM Mono', monospace;
  letter-spacing: .06em;
  animation: ticker 20s linear infinite;
  color: #fff;
}

.ticker b {
  color: #07101d;
  margin: 0 22px;
}

.section {
  padding: 150px clamp(24px, 10vw, 160px);
}

.services {
  background: #fff;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 100px;
}

.section h2 {
  font-size: clamp(42px, 5.4vw, 78px);
}

.intro-copy {
  color: var(--muted);
  line-height: 1.7;
  max-width: 230px;
}

.service-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.photo-service {
  height: 280px;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #14203a;
}

.photo-service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
  filter: brightness(.72) saturate(.78);
}

.photo-service:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 10, 20, .82), transparent 65%);
}

.photo-service:hover img {
  transform: scale(1.08);
  filter: brightness(.86) saturate(1);
}

.photo-service span {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 20px;
  right: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
}

.photo-service small {
  font: 10px 'DM Mono', monospace;
  letter-spacing: .1em;
  grid-column: 1/-1;
  margin-bottom: 8px;
  color: #d5dce7;
}

.photo-service strong {
  font-size: 20px;
  letter-spacing: -.04em;
}

.photo-service b {
  font-size: 24px;
}

.photo-service.sea, .photo-service.warehouse {
  margin-top: 45px;
}

.network {
  background: #131b29;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.network-map {
  height: 100%;
  position: absolute;
  inset: 0 42% 0 0;
  background: radial-gradient(ellipse at 40% 50%, #162b53, transparent 60%);
}

.network-map svg {
  position: absolute;
  inset: 15% 0;
  width: 100%;
  height: 70%;
  fill: none;
  stroke: rgba(168, 232, 77, .55);
  stroke-width: 1.5;
  stroke-dasharray: 6 8;
}

.map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(232, 64, 66, .2), 0 0 20px var(--red);
}

.d1 { top: 48%; left: 18%; }
.d2 { top: 33%; left: 49%; }
.d3 { top: 55%; left: 65%; }
.d4 { top: 40%; left: 84%; }

.network-copy {
  grid-column: 2;
  position: relative;
}

.network-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  max-width: 400px;
  margin: 27px 0 37px;
}

.network-stats {
  display: flex;
  gap: 32px;
}

.network-stats b {
  font-size: 28px;
  display: block;
}

.network-stats small {
  font: 10px 'DM Mono', monospace;
  color: var(--muted);
  display: block;
  max-width: 75px;
}

.georgia-card {
  grid-column: 1/-1;
  z-index: 2;
  background: rgba(5, 11, 21, .68);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(14px);
  padding: 22px 26px;
  margin-top: 55px;
}

.georgia-card-title {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
}

.georgia-card-title span {
  height: 7px;
  width: 7px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red);
}

.georgia-card-title b {
  font: 11px 'DM Mono', monospace;
  letter-spacing: .12em;
}

.georgia-card-title small {
  margin-left: auto;
  font: 9px 'DM Mono', monospace;
  color: #aeb8c8;
}

.georgia-svg {
  width: 100%;
  height: 170px;
  display: block;
  margin: 7px 0;
}

.georgia-shape {
  fill: rgba(20, 90, 226, .16);
  stroke: rgba(255, 255, 255, .48);
  stroke-width: 1.5;
}

.georgia-route {
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.6;
  stroke-dasharray: 5 5;
}

.georgia-route.secondary {
  stroke: var(--red);
}

.map-place circle {
  fill: var(--red);
  stroke: #fff;
  stroke-width: 2;
  filter: drop-shadow(0 0 5px var(--red));
}

.map-place.tbilisi circle {
  fill: var(--lime);
  filter: drop-shadow(0 0 6px var(--lime));
}

.map-place text {
  fill: #fff;
  font: 11px 'DM Mono', monospace;
  letter-spacing: .04em;
}

.georgia-card > p {
  margin: 0;
  color: #b6c0ce;
  font: 10px 'DM Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.about {
  background: #fff;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.about-card {
  background: #172540;
  padding: 0;
  min-height: 540px;
  position: relative;
  overflow: hidden;
}

.about-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.35) saturate(.7);
}

.about-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 13, 23, .87), rgba(8, 13, 23, .24));
}

.about-content {
  position: relative;
  z-index: 1;
  padding: clamp(35px, 5vw, 74px);
  color: #fff;
}

.about-content > p:not(.eyebrow) {
  color: #d4dce7;
  max-width: 380px;
  line-height: 1.75;
  margin: 28px 0;
}

.ghost {
  border: 1px solid var(--line);
  margin-top: 8px;
  color: #fff;
}

.quote {
  padding: 30px;
  color: var(--ink);
}

.quote > span {
  color: var(--red);
  font-size: 90px;
  line-height: .2;
}

.quote p {
  font-size: clamp(23px, 2.5vw, 36px);
  line-height: 1.3;
  letter-spacing: -.04em;
}

.quote small {
  font: 10px 'DM Mono', monospace;
  color: var(--muted);
}

.contact {
  background: #101724;
  color: #fff;
  border: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding: 150px clamp(24px, 10vw, 160px) 60px;
}

.contact .eyebrow, .contact-details > * {
  color: #adb8c8;
}

.contact h2 em {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 10px;
}

.contact-cta {
  background: #fff;
  color: #101724;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px 28px;
  font-size: clamp(19px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -.04em;
  transition: .25s;
}

.contact-cta:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-4px);
}

.contact-cta b {
  font-size: 32px;
}

.contact-details {
  grid-column: 2;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-details > * {
  font: 11px 'DM Mono', monospace;
  color: #c4cedc;
  text-decoration: none;
}

.real-georgia-map {
  padding: 0 clamp(24px, 10vw, 160px) 120px;
  background: #101724;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.real-georgia-map .eyebrow {
  color: #adb8c8;
}

.real-georgia-map p {
  color: #c4cedc;
  line-height: 1.7;
}

.corridors {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

.corridors span {
  font: 11px 'DM Mono', monospace;
  padding: 8px 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 4px;
  color: #fff;
}

.real-georgia-map iframe {
  width: 100%;
  height: 380px;
  border-radius: 6px;
}

footer {
  background: #101724;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .13);
  min-height: 110px;
  padding: 25px clamp(24px, 5vw, 78px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

footer .brand {
  min-width: 0;
  color: #fff;
}

footer p {
  color: #9da9ba;
  font-size: 11px;
}

footer div {
  display: flex;
  gap: 20px;
}

footer a {
  color: #c4cedc;
}

.subpage .site-header {
  position: fixed;
}

.page-hero {
  height: 570px;
  position: relative;
  display: flex;
  align-items: end;
  padding: 120px clamp(24px, 10vw, 160px) 75px;
  color: #fff;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.42) saturate(.65);
}

.page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 10, 19, .8), rgba(5, 10, 19, .1));
}

.page-hero div {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: #d2d9e4;
}

.story {
  max-width: 1100px;
}

.story-lead {
  font-size: 22px;
  line-height: 1.55;
  max-width: 670px;
  margin: 35px 0 55px;
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 720px;
}

.contact-page {
  background: #101724;
  color: #fff;
}

.contact-page .site-header {
  background: #101724;
  border-color: rgba(255, 255, 255, .12);
}

.contact-page .brand {
  color: #fff;
}

.contact-page .nav a {
  color: #b5c0d0;
}

.contact-page-hero {
  min-height: 600px;
  padding: 160px clamp(24px, 10vw, 160px) 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  background: radial-gradient(circle at 76% 35%, #1e4b9e, transparent 25%), radial-gradient(circle at 70% 50%, #451b37, transparent 37%);
}

.contact-page-hero > div > p:not(.eyebrow) {
  max-width: 420px;
  color: #c4cfdf;
  line-height: 1.75;
  margin-top: 30px;
}

.contact-page-hero .eyebrow {
  color: #bac5d4;
}

.contact-info {
  display: grid;
  gap: 24px;
}

.contact-info > * {
  color: #fff;
  text-decoration: none;
  font-size: clamp(17px, 2vw, 25px);
  letter-spacing: -.04em;
}

.contact-info small {
  display: block;
  color: #9eabba;
  font: 10px 'DM Mono', monospace;
  letter-spacing: .1em;
  margin-bottom: 6px;
}

.contact-form-wrap {
  background: #fff;
  color: var(--ink);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  padding: 100px clamp(24px, 10vw, 160px);
}

.contact-form-wrap form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-wrap label {
  font: 11px 'DM Mono', monospace;
  color: var(--muted);
}

.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
  display: block;
  width: 100%;
  margin-top: 9px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: 15px Manrope, Arial;
}

.contact-form-wrap label:nth-of-type(4),
.contact-form-wrap button {
  grid-column: 1/-1;
}

.contact-form-wrap .button {
  justify-self: start;
  border: 0;
  cursor: pointer;
  margin-top: 12px;
}

@keyframes float {
  50% { transform: translateY(-14px) rotate(3deg); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@media(max-width: 800px) {
  .site-header {
    height: 70px;
    padding: 0 20px;
    gap: 15px;
  }
  .brand {
    min-width: 0;
  }
  .brand small {
    display: none;
  }
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .nav.open {
    display: flex;
  }
  .menu-toggle {
    display: grid;
    margin-left: auto;
    width: 37px;
    height: 37px;
    place-content: center;
    gap: 5px;
  }
  .menu-toggle span {
    width: 16px;
    height: 1px;
    background: var(--ink);
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 790px;
    padding: 120px 25px 70px;
  }
  .hero:after {
    background: linear-gradient(90deg, rgba(6, 12, 23, .89), rgba(6, 12, 23, .48));
  }
  .hero-art {
    height: 330px;
    margin-top: 18px;
  }
  .globe {
    width: 270px;
    right: 0;
  }
  .cargo-card {
    top: 195px;
  }
  .metric-card {
    bottom: 0;
  }
  .scroll-note {
    left: 25px;
  }
  .services, .about, .contact, .real-georgia-map {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .section {
    padding: 90px 25px;
  }
  .service-gallery {
    gap: 12px;
  }
  .photo-service {
    height: 210px;
  }
  .photo-service.sea, .photo-service.warehouse {
    margin-top: 24px;
  }
  .photo-service span {
    bottom: 14px;
    left: 14px;
  }
  .photo-service strong {
    font-size: 16px;
  }
  .network {
    min-height: 780px;
  }
  .network-map {
    inset: 0 0 45%;
  }
  .network-copy {
    grid-column: 1;
    align-self: end;
  }
  .network-stats {
    gap: 20px;
  }
  .about-card {
    min-height: 510px;
  }
  .contact-details, .contact-cta {
    grid-column: 1;
  }
  .georgia-card {
    margin-top: 25px;
    padding: 17px 13px;
  }
  .georgia-card-title small {
    display: none;
  }
  .georgia-svg {
    height: 130px;
  }
  .map-place text {
    font-size: 9px;
  }
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
  footer p {
    margin: 0;
  }
  h1 {
    font-size: 62px;
  }
  .page-hero {
    height: 470px;
    padding: 100px 25px 55px;
  }
  .story-grid, .contact-page-hero, .contact-form-wrap {
    grid-template-columns: 1fr;
  }
  .contact-page-hero {
    padding: 130px 25px 70px;
    gap: 50px;
  }
  .contact-form-wrap {
    gap: 50px;
    padding: 70px 25px;
  }
  .language {
    order: 1;
  }
}