:root {
  --ink: #122019;
  --muted: #5a6a60;
  --line: #dce3de;
  --panel: #ffffff;
  --wash: #f4f7f5;
  --brand: #0b6b3a;
  --brand-dark: #064d2a;
  --accent: #d4a017;
  --steel: #29343d;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--wash);
  line-height: 1.5;
}

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

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 70px;
  height: 35px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 4px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  background: #e6f1eb;
  color: var(--brand-dark);
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0d1712;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 12, 8, 0.76), rgba(5, 12, 8, 0.42) 52%, rgba(5, 12, 8, 0.18));
  z-index: -1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 72px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: #d7efe1;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3 { letter-spacing: 0; line-height: 1.08; }

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(44px, 8vw, 96px);
  font-weight: 900;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: #edf6f1;
  font-size: clamp(18px, 2vw, 23px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--brand);
  border-radius: 4px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.1);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

.section.compact { padding-top: 38px; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.54fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 26px;
}

.section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
}

.section-head p,
.lede {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.service-card {
  display: grid;
  grid-template-rows: 1fr;
  aspect-ratio: 4 / 3;
  min-height: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(18, 32, 25, 0.18);
  border-radius: 6px;
  background: #0d1712;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(18, 32, 25, 0.12);
}

.service-card::after {
  content: "";
  grid-area: 1 / 1;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 12, 8, 0.08), rgba(5, 12, 8, 0.52));
  pointer-events: none;
}

.service-card img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.service-card:hover img { transform: scale(1.03); }

.service-card-body {
  grid-area: 1 / 1;
  align-self: end;
  justify-self: stretch;
  position: relative;
  z-index: 2;
  min-height: 112px;
  display: grid;
  align-content: center;
  padding: 18px;
  background: rgba(7, 14, 10, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-card--freight-forwarding {
  grid-template-rows: minmax(0, 1fr) auto;
}

.service-card--freight-forwarding::after {
  display: none;
}

.service-card--freight-forwarding img {
  grid-area: 1 / 1;
  min-height: 0;
  object-position: 62% 72%;
}

.service-card--freight-forwarding .service-card-body {
  grid-area: 2 / 1;
  align-self: stretch;
  min-height: 112px;
  background: #07100b;
}

.service-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 21px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.service-card p {
  margin: 0;
  color: #edf6f1;
}

.band {
  background: var(--steel);
  color: #fff;
}

.band .section-head p { color: #dce7e1; }

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.16);
}

.metric {
  padding: 22px;
  background: rgba(255,255,255,0.06);
}

.metric strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: #fff;
}

.metric span { color: #dce7e1; }

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: center;
}

.split-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 24px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  background: var(--accent);
}

.page-hero {
  background: var(--steel);
  color: #fff;
}

.page-hero .section {
  padding: 56px 0;
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.page-hero p { color: #dce7e1; }

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

.contact-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.contact-item h2,
.contact-item h3 { margin: 0 0 8px; font-size: 20px; }

.contact-item p { margin: 0; color: var(--muted); }

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .section-head,
  .split,
  .contact-grid { grid-template-columns: 1fr; }

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

  .metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 12px 0; gap: 10px; }
  .nav-links { width: 100%; }
  .nav-links a { padding: 7px 8px; }
  .hero { min-height: 680px; }
  .hero-inner { padding: 60px 0 48px; }
  .service-grid,
  .metrics { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 4 / 3; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
