* {
  box-sizing: border-box;
}

:root {
  --ink: #132238;
  --muted: #5b6677;
  --line: #dbe2ea;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --navy: #0d2a4d;
  --blue: #1769aa;
  --teal: #0f8b8d;
  --amber: #d9902f;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.market-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.header-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
}

.header-contact a {
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--blue);
  background: #eef6ff;
  text-decoration: none;
  font-weight: 800;
}

.market-nav a {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  background: #fff;
}

.market-nav a:hover,
.market-nav a[aria-current="page"] {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.hero {
  position: relative;
  min-height: 580px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.index-hero {
  min-height: 560px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("../images/hero-cargo.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 20, 36, 0.9) 0%, rgba(7, 20, 36, 0.68) 42%, rgba(7, 20, 36, 0.3) 100%),
    linear-gradient(0deg, rgba(7, 20, 36, 0.52) 0%, rgba(7, 20, 36, 0) 46%);
}

.hero-inner {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 72px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(38px, 7vw, 74px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 780px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.hero-copy p {
  margin: 0 0 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}

.button.primary {
  color: #fff;
  background: var(--teal);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.button.full {
  width: 100%;
  margin-top: 10px;
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.media-strip figure {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.media-strip img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
}

.media-strip figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 10px;
  border-radius: 6px;
  color: #fff;
  background: rgba(13, 42, 77, 0.78);
  font-weight: 800;
}

.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  width: min(1120px, calc(100% - 40px));
  margin: 54px auto 70px;
  align-items: start;
}

.article {
  min-width: 0;
}

.content-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.content-section:first-child {
  padding-top: 0;
}

.content-section h2 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.18;
}

.content-section h3 {
  margin: 24px 0 8px;
  font-size: 20px;
}

.content-section p,
.content-section li {
  color: var(--muted);
}

.content-section ul,
.content-section ol {
  padding-left: 22px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: #fff;
}

th,
td {
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  color: var(--navy);
  background: var(--soft);
}

.quote-panel {
  position: sticky;
  top: 92px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.quote-panel h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.quote-panel p,
.quote-panel li {
  color: var(--muted);
  font-size: 14px;
}

.quote-panel ul {
  padding-left: 20px;
}

.contact-card {
  display: grid;
  gap: 6px;
  margin: 18px 0 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-card strong {
  color: var(--navy);
}

.contact-card a,
.contact-card span {
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.market-grid-section {
  width: min(1120px, calc(100% - 40px));
  margin: 54px auto 72px;
}

.section-heading h2 {
  margin: 0 0 22px;
  font-size: 34px;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.region-stack {
  display: grid;
  gap: 22px;
}

.region-block {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #f8fbff);
  box-shadow: 0 14px 34px rgba(13, 42, 77, 0.08);
}

.region-heading {
  margin-bottom: 16px;
}

.region-heading p {
  margin: 0 0 4px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.region-heading h3 {
  margin: 0;
  font-size: 26px;
}

.region-heading small {
  display: block;
  max-width: 760px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.market-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

.market-card:hover {
  border-color: var(--blue);
  box-shadow: 0 18px 36px rgba(18, 36, 58, 0.12);
}

.market-card span {
  color: var(--teal);
  font-weight: 800;
}

.market-card strong {
  font-size: 21px;
  line-height: 1.2;
}

.market-card small {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 34px 28px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy);
  text-align: center;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.site-footer p {
  margin: 4px 0;
}

.market-suggest {
  position: sticky;
  top: 71px;
  z-index: 19;
  display: none;
  border-bottom: 1px solid rgba(219, 226, 234, 0.92);
  background: #f7fbff;
  box-shadow: 0 14px 30px rgba(18, 36, 58, 0.08);
}

.market-suggest.is-visible {
  display: block;
}

.market-suggest__inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

.market-suggest__text {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
}

.market-suggest__text strong {
  color: var(--blue);
}

.market-suggest__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.market-suggest__link,
.market-suggest__dismiss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.market-suggest__link {
  color: #fff;
  background: var(--blue);
}

.market-suggest__dismiss {
  color: var(--muted);
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    display: block;
  }

  .market-suggest {
    top: 0;
  }

  .market-nav {
    justify-content: flex-start;
    margin-top: 14px;
  }

  .header-contact {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .hero {
    min-height: 620px;
  }

  .page-shell {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    position: static;
  }

  .media-strip,
  .market-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 18px;
  }

  .hero-inner,
  .page-shell,
  .market-grid-section {
    width: min(100% - 28px, 1120px);
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .content-section h2 {
    font-size: 25px;
  }

  .market-suggest__inner {
    width: min(100% - 28px, 1120px);
    display: block;
  }

  .market-suggest__actions {
    margin-top: 10px;
  }
}
