:root {
  --ink: #14202b;
  --muted: #5c6874;
  --navy: #082f49;
  --navy-2: #0f415c;
  --brand-blue: #004f9e;
  --teal: #0f766e;
  --red: #b4232a;
  --amber: #d99a25;
  --surface: #ffffff;
  --soft: #f3f6f8;
  --line: #dfe7ee;
  --shadow: 0 20px 60px rgba(20, 32, 43, 0.14);
  --font-body: "Manrope", Arial, Helvetica, sans-serif;
  --font-display: "Sora", "Manrope", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.55;
}

@keyframes heroImageSettle {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1);
  }
}

@keyframes heroContentRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

img,
svg {
  display: block;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 12px clamp(18px, 4vw, 64px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
  animation: heroContentRise 520ms ease both;
}

.site-header.is-scrolled,
.site-header.is-open,
.site-header.page-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(10, 28, 40, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo-panel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(170px, 18vw, 230px);
  height: 62px;
  padding: 7px 11px;
  background: rgba(7, 28, 43, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 180ms ease;
}

.site-header.is-scrolled .brand-logo-panel,
.site-header.is-open .brand-logo-panel,
.site-header.page-header .brand-logo-panel {
  background: var(--brand-blue);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 32px rgba(0, 79, 158, 0.24);
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo,
.site-header.page-header .brand-logo {
  filter: drop-shadow(0 1px 1px rgba(7, 28, 43, 0.65)) drop-shadow(0 0 1px rgba(7, 28, 43, 0.85));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-family: var(--font-display);
  font-size: 0.93rem;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.86;
  transition: color 150ms ease, opacity 150ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--amber);
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-open .menu-toggle {
  background: var(--soft);
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 99px;
}

.logistics-loader {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(3, 17, 28, 0.36);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(5px);
  transition: opacity 220ms ease, visibility 220ms ease;
}

.logistics-loader.is-active {
  opacity: 1;
  visibility: visible;
}

.logistics-loader.is-leaving {
  opacity: 0;
}

.logistics-loader__panel {
  width: min(430px, 100%);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, rgba(8, 47, 73, 0.95), rgba(7, 28, 43, 0.96));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.logistics-loader__panel p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.logistics-loader__stage {
  position: relative;
  height: 132px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 8%, rgba(217, 154, 37, 0.28), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.logistics-route,
.logistics-vehicle {
  position: absolute;
  display: block;
}

.logistics-route {
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
}

.logistics-route--air {
  top: 32px;
}

.logistics-route--road {
  top: 68px;
}

.logistics-route--sea {
  top: 104px;
}

.logistics-vehicle {
  left: -70px;
  width: 50px;
  height: 50px;
  color: #fff;
  opacity: 0;
}

.logistics-vehicle svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.25));
  fill: currentColor;
}

.logistics-vehicle--plane {
  top: 9px;
  color: #f8fafc;
}

.logistics-loader.is-active .logistics-vehicle--plane {
  animation: logisticsRun 1400ms linear 20ms both;
}

.logistics-vehicle--plane svg {
  transform: rotate(-10deg);
}

.logistics-vehicle--truck {
  top: 46px;
  color: var(--amber);
}

.logistics-loader.is-active .logistics-vehicle--truck {
  animation: logisticsRun 1400ms linear 180ms both;
}

.logistics-vehicle--ship {
  top: 80px;
  color: #60a5fa;
}

.logistics-loader.is-active .logistics-vehicle--ship {
  animation: logisticsRun 1400ms linear 340ms both;
}

@keyframes logisticsRun {
  0% {
    left: -72px;
    opacity: 0;
    transform: translateY(4px) scale(0.92);
  }

  14% {
    opacity: 1;
  }

  86% {
    opacity: 1;
  }

  100% {
    left: calc(100% + 72px);
    opacity: 0;
    transform: translateY(0) scale(1);
  }
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  animation: heroImageSettle 1300ms ease-out both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 17, 28, 0.9) 0%, rgba(7, 27, 41, 0.72) 38%, rgba(7, 27, 41, 0.12) 76%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.36));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 88px);
  padding-top: 112px;
  padding-bottom: 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker,
.hero h1,
.hero-copy,
.hero-actions {
  opacity: 0;
  animation: heroContentRise 620ms ease both;
}

.hero h1 {
  animation-delay: 120ms;
}

.hero-copy {
  animation-delay: 230ms;
}

.hero-actions {
  animation-delay: 340ms;
}

.js [data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.js [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: var(--font-display);
  font-weight: 800;
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  font-weight: 600;
}

.hero-actions,
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--red);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #941d23;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.16);
}

.button.secondary.dark {
  color: var(--navy);
  border-color: rgba(8, 47, 73, 0.18);
  background: #fff;
}

.button.secondary.dark:hover,
.button.secondary.dark:focus-visible {
  border-color: rgba(8, 47, 73, 0.32);
  background: #eef3f6;
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: #128c4a;
  box-shadow: 0 18px 40px rgba(7, 28, 43, 0.24);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #0f7d42;
  box-shadow: 0 22px 46px rgba(7, 28, 43, 0.3);
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: 0 0 auto;
}

.quick-facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - clamp(36px, 8vw, 128px)));
  margin: 0 auto clamp(22px, 3vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.quick-facts article {
  padding: clamp(22px, 4vw, 38px);
  background: rgba(7, 28, 43, 0.72);
}

.quick-facts strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1;
}

.quick-facts span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.section,
.contact-band {
  padding: clamp(68px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

h2 {
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.section-heading p:not(.eyebrow),
.company-copy p,
.contact-copy p,
.service-card p,
.info-card p,
.customs-panel p,
.values-list p,
.timeline p {
  color: var(--muted);
}

.services {
  background: var(--soft);
}

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

.service-card {
  min-height: 285px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(20, 32, 43, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 18px 44px rgba(20, 32, 43, 0.1);
}

.js .service-card[data-animate].is-visible:hover {
  transform: translateY(-4px);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover .service-icon {
  background: var(--teal);
  transform: translateY(-2px);
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.logistics-overview {
  margin-top: 18px;
}

.info-card,
.customs-panel {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(20, 32, 43, 0.06);
}

.info-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.chip-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-list li {
  padding: 7px 10px;
  border: 1px solid rgba(8, 47, 73, 0.14);
  border-radius: 999px;
  color: var(--navy);
  background: #f3f6f8;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.86rem;
}

.customs {
  background: #fff;
}

.customs-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.customs-panel {
  background: #f9fbfc;
}

.customs-panel.highlight {
  color: #fff;
  border-color: rgba(8, 47, 73, 0.08);
  background: linear-gradient(135deg, var(--navy), var(--teal));
}

.customs-panel.highlight p {
  color: rgba(255, 255, 255, 0.82);
}

.check-list {
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--teal);
}

.company {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.company-copy {
  position: sticky;
  top: 108px;
}

.values-list {
  display: grid;
  gap: 16px;
}

.values-list article {
  padding: 26px;
  border-left: 4px solid var(--teal);
  background: #f8fafb;
}

.value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-tags li {
  padding: 7px 10px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 999px;
  color: var(--teal);
  background: #fff;
  font-size: 0.88rem;
  font-weight: 800;
}

.values-list span,
.timeline span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-family: var(--font-display);
  font-weight: 800;
}

.process {
  background: #eef3f6;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.timeline article {
  min-height: 245px;
  padding: 26px;
  background: #fff;
}

.timeline article:nth-child(even) span {
  background: var(--navy-2);
}

.transit-section {
  background: #fff;
}

.transit-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(20, 32, 43, 0.06);
}

.transit-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.transit-table th,
.transit-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.transit-table th {
  font-family: var(--font-display);
  color: var(--navy);
  background: #f3f6f8;
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.transit-table td:first-child {
  color: var(--teal);
  font-weight: 900;
}

.transit-table tr:last-child td {
  border-bottom: 0;
}

.faq {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 930px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfc;
  box-shadow: 0 12px 30px rgba(20, 32, 43, 0.05);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--teal);
  font-size: 1.15rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.location-section {
  background: var(--soft);
}

.location-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 34px);
  align-items: stretch;
}

.location-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(20, 32, 43, 0.06);
}

.location-card span {
  margin-bottom: 14px;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.location-card h3 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.location-card p {
  margin-bottom: 24px;
  color: var(--muted);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.location-actions .button {
  width: fit-content;
}

.location-map {
  grid-column: 1 / -1;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #dfe7ee;
  box-shadow: 0 14px 38px rgba(20, 32, 43, 0.06);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 47, 73, 0.97), rgba(12, 82, 87, 0.94)),
    var(--navy);
}

.contact-copy h2 {
  max-width: 620px;
}

.contact-copy,
.contact-form {
  min-width: 0;
}

.contact-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-details {
  margin-top: 26px;
}

.contact-details a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid #cfdbe5;
  border-radius: 8px;
  color: var(--ink);
  background: #f9fbfc;
  font: inherit;
  font-weight: 600;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(15, 118, 110, 0.18);
  border-color: var(--teal);
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  display: grid;
  gap: 22px;
  padding: 32px clamp(18px, 5vw, 72px) 22px;
  color: rgba(255, 255, 255, 0.74);
  background: #071c2b;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  display: grid;
  gap: 12px;
  width: min(340px, 100%);
}

.footer-brand img {
  max-width: min(245px, 68vw);
  width: 100%;
  height: auto;
}

.footer-brand p,
.footer-credit {
  margin: 0;
}

.footer-info {
  display: grid;
  gap: 9px;
  min-width: min(280px, 100%);
}

.footer-info a,
.footer-info span {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer-info a:hover,
.footer-info a:focus-visible {
  color: #fff;
}

.footer-credit {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.site-header.page-header + main {
  padding-top: 86px;
}

.post-shell {
  padding: clamp(44px, 6vw, 68px) clamp(18px, 5vw, 72px) clamp(42px, 6vw, 64px);
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  min-height: 360px;
  padding: clamp(54px, 7vw, 86px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 4%, rgba(217, 154, 37, 0.2), transparent 34%),
    linear-gradient(135deg, #f8fafc 0%, #eef4f8 54%, #e6eef4 100%);
  border-bottom: 1px solid var(--line);
}

.blog-hero-copy {
  width: min(780px, 100%);
}

.blog-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.6vw, 4.75rem);
  line-height: 0.98;
}

.blog-hero p:not(.eyebrow) {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 600;
}

.blog-hero-media {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(8, 47, 73, 0.18);
}

.blog-hero-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.blog-list-section {
  min-height: 380px;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 72px) clamp(62px, 8vw, 92px);
  background: var(--soft);
}

.blog-status {
  min-height: 22px;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 800;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(20, 32, 43, 0.06);
  animation: heroContentRise 420ms ease both;
}

.blog-card-media {
  position: relative;
  display: grid;
  place-items: center;
  height: clamp(300px, 24vw, 360px);
  padding: 16px;
  overflow: hidden;
  background: #e7eef3;
}

.blog-card-media::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: var(--card-image, linear-gradient(135deg, #e7eef3, #fff)) center/cover;
  filter: blur(18px);
  opacity: 0.32;
  transform: scale(1.06);
}

.blog-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(232, 240, 246, 0.18));
}

.blog-card-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.blog-card-body {
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 24px;
}

.blog-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 1.75vw, 1.55rem);
  line-height: 1.1;
}

.blog-card p:not(.eyebrow),
.blog-empty {
  color: var(--muted);
}

.blog-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(20, 32, 43, 0.06);
  font-weight: 700;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 700;
}

.blog-meta a,
.back-link {
  font-family: var(--font-display);
  color: var(--brand-blue);
  font-weight: 800;
}

.post-shell {
  background: #fff;
}

.post-article {
  width: min(880px, 100%);
  margin: 0 auto;
}

.post-article h1 {
  max-width: 850px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.post-excerpt {
  color: var(--muted);
  font-size: 1.14rem;
}

.post-date {
  color: var(--muted);
  font-weight: 800;
}

.post-cover {
  width: 100%;
  max-height: min(78vh, 920px);
  margin: 28px 0;
  border-radius: 8px;
  background: #f3f6f8;
  object-fit: contain;
}

.post-body {
  color: var(--ink);
  font-size: 1.05rem;
}

.post-body h2,
.post-body h3 {
  margin-top: 30px;
}

.post-body p {
  color: var(--muted);
}

.blog-bullet::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--teal);
  vertical-align: middle;
}

.post-video {
  aspect-ratio: 16 / 9;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 8px;
  background: #071c2b;
}

.post-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.post-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.post-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: #f3f6f8;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .js [data-animate],
  .hero-kicker,
  .hero h1,
  .hero-copy,
  .hero-actions,
  .logistics-loader {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: 86px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 12px;
    border-radius: 8px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    color: var(--navy);
    background: var(--soft);
  }

  .hero {
    min-height: 100vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 17, 28, 0.92), rgba(7, 27, 41, 0.56)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45));
  }

  .quick-facts,
  .service-grid,
  .info-grid,
  .customs-layout,
  .timeline,
  .company,
  .location-layout,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .company-copy {
    position: static;
  }

  .timeline {
    border-radius: 8px;
  }

  .timeline article {
    min-height: auto;
  }

  .blog-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .blog-hero-media {
    min-height: 280px;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    left: 12px;
    right: 12px;
    min-height: 58px;
    padding: 7px 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(7, 28, 43, 0.76);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
  }

  .site-header.is-scrolled,
  .site-header.is-open,
  .site-header.page-header {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(8, 47, 73, 0.1);
    box-shadow: 0 14px 34px rgba(10, 28, 40, 0.16);
  }

  .brand-logo-panel {
    width: min(138px, 42vw);
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header.is-scrolled .brand-logo-panel,
  .site-header.is-open .brand-logo-panel,
  .site-header.page-header .brand-logo-panel {
    width: min(152px, 46vw);
    height: 42px;
    padding: 4px 9px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: var(--brand-blue);
    box-shadow: 0 10px 24px rgba(0, 79, 158, 0.22);
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-open .menu-toggle {
    border-color: rgba(8, 47, 73, 0.1);
    background: #eef3f6;
  }

  .main-nav {
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    border-radius: 16px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-image {
    object-position: center center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 17, 28, 0.76), rgba(7, 27, 41, 0.22)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.3));
  }

  .hero-content {
    width: min(100% - 32px, 560px);
    margin: 0 auto;
    padding-top: 104px;
    padding-bottom: 24px;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quick-facts article,
  .service-card,
  .info-card,
  .customs-panel,
  .values-list article,
  .timeline article {
    padding: 22px;
  }

  .quick-facts {
    width: calc(100% - 32px);
    margin-bottom: 16px;
  }

  .quick-facts article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .quick-facts strong {
    font-size: clamp(1.85rem, 10vw, 2.7rem);
  }

  .quick-facts span {
    text-align: right;
  }

  .contact-band {
    padding-bottom: 74px;
  }

  .contact-details a {
    width: 100%;
  }

  .location-card {
    min-height: 0;
  }

  .location-actions .button {
    width: 100%;
  }

  .blog-grid,
  .post-gallery {
    grid-template-columns: 1fr;
  }

  .blog-card-media {
    height: min(420px, 86vw);
  }

  .site-header.page-header + main {
    padding-top: 82px;
  }

  .blog-hero {
    padding: 36px 18px 30px;
  }

  .blog-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.35rem);
  }

  .blog-hero-media {
    min-height: 330px;
  }

  .blog-hero-media img {
    object-position: center top;
  }
}
