:root {
  --navy-950: #06121f;
  --navy-900: #071421;
  --navy-850: #081b2e;
  --navy-800: #0b2238;
  --navy-700: #123858;
  --navy-600: #1d4c72;
  --gold-600: #c9964a;
  --gold-500: #d6ad66;
  --gold-300: #f0d69b;
  --ink: #0c1726;
  --muted: #5b6675;
  --line: #dfe5eb;
  --surface: #ffffff;
  --surface-soft: #f5f7f9;
  --shadow: 0 24px 70px rgba(4, 19, 32, 0.12);
  --shadow-soft: 0 14px 38px rgba(4, 19, 32, 0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 18, 31, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(214, 173, 102, 0.32);
}

.nav-shell {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 210px;
}

.brand img {
  width: min(220px, 42vw);
  max-height: 44px;
  object-fit: contain;
}

.brand-wordmark {
  display: none;
  color: #fff;
  font-family: "Source Serif 4", "Times New Roman", serif;
  font-size: 30px;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

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

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-300);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  font-weight: 850;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color: #071421;
  box-shadow: 0 14px 32px rgba(214, 173, 102, 0.2);
}

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

.button-ghost {
  color: #fff;
  border-color: rgba(214, 173, 102, 0.7);
  background: rgba(7, 20, 33, 0.28);
}

.button-ghost:hover {
  background: rgba(214, 173, 102, 0.12);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  padding: 0;
  place-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 680px;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
  background: var(--navy-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 18, 31, 0.98) 0%, rgba(6, 18, 31, 0.86) 38%, rgba(6, 18, 31, 0.22) 75%, rgba(6, 18, 31, 0.55) 100%),
    url("../images/hero-global-trade.jpg") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  z-index: -1;
  background: linear-gradient(0deg, rgba(6, 18, 31, 0.68), transparent);
}

.hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  align-items: center;
  gap: 60px;
  padding-block: 92px 86px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-500);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

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

h1,
h2 {
  font-family: "Source Serif 4", "Times New Roman", serif;
  letter-spacing: -0.049em;
  line-height: 0.78;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(46px, 3vw, 104px);
}

.hero-lead {
  max-width: 540px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.65vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel {
  min-height: 420px;
  position: relative;
}

.hero-card {
  position: absolute;
  right: 0;
  width: 260px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 18, 31, 0.74);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.hero-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-card strong {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}

.hero-card-top {
  top: 50px;
}

.hero-card-bottom {
  right: 110px;
  bottom: 34px;
}

.intro-strip {
  position: relative;
  padding: 58px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  align-items: center;
  gap: 54px;
}

.intro-copy {
  border-right: 1px solid var(--line);
  padding-right: 52px;
}

.intro-copy h2,
.section-heading h2,
.contact-copy h2 {
  margin-bottom: 14px;
  color: var(--navy-900);
  font-size: clamp(36px, 4vw, 58px);
}

.intro-copy p:not(.section-kicker),
.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.audience-item {
  min-height: 160px;
  display: grid;
  place-items: center;
  gap: 12px;
  background: #fff;
  padding: 26px 14px;
}

.audience-item svg,
.card-icon svg,
.proof-item svg,
.email-icon svg,
.contact-card-icon svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

.audience-item {
  color: var(--navy-800);
}

.audience-item span {
  position: relative;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-item span::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin: 10px auto 0;
  background: var(--gold-500);
}

.section {
  padding: 92px 0;
}

.services-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 247, 249, 0.96)),
    repeating-linear-gradient(135deg, transparent 0 11px, rgba(7, 20, 33, 0.04) 12px 13px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

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

.service-card {
  position: relative;
  min-height: 230px;
  padding: 32px 30px 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 34, 56, 0.12);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(var(--gold-500), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--navy-900);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.card-icon svg {
  width: 31px;
  height: 31px;
}

.card-number {
  position: absolute;
  top: 32px;
  right: 30px;
  color: var(--gold-600);
  font-size: 26px;
  font-weight: 850;
  line-height: 1;
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: 20px;
  line-height: 1.2;
}

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

.sectors-section {
  background: #fff;
}

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

.sector-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: var(--shadow-soft);
}

.sector-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.sector-card:hover img {
  transform: scale(1.035);
}

.sector-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(6, 18, 31, 0.15) 52%, rgba(6, 18, 31, 0.94));
}

.sector-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px;
  color: #fff;
}

.sector-card h3 {
  margin-bottom: 7px;
  font-size: 20px;
  line-height: 1.2;
}

.sector-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.proof-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.proof-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 26px 30px;
  color: var(--navy-800);
}

.proof-item + .proof-item {
  border-left: 1px solid var(--line);
}

.proof-item svg {
  width: 46px;
  height: 46px;
}

.proof-icon {
  display: block;
  width: 52px;
  height: 52px;
  min-width: 52px;
  max-width: 52px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
}

.proof-item h3 {
  margin-bottom: 4px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.approach-section {
  background:
    linear-gradient(180deg, var(--surface-soft), #fff),
    radial-gradient(circle at 15% 20%, rgba(214, 173, 102, 0.12), transparent 32%);
  border-top: 1px solid var(--line);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.process-step {
  position: relative;
  padding: 74px 24px 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 34, 56, 0.12);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.step-number {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 36px;
  background: var(--navy-900);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.process-step h3 {
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: 20px;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--navy-900) 0%, var(--navy-900) 50%, var(--surface-soft) 50%, var(--surface-soft) 100%);
}

.contact-section::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 560px;
  height: 360px;
  opacity: 0.08;
  background: url("../images/hero-global-trade.jpg") center / cover no-repeat;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-copy {
  padding: 78px 72px 78px 0;
  color: #fff;
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy .contact-lead {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--gold-300);
  font-size: 23px;
  line-height: 1.35;
}

.email-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 600px;
  padding: 24px 0;
  border-top: 1px solid rgba(214, 173, 102, 0.7);
  border-bottom: 1px solid rgba(214, 173, 102, 0.7);
}

.email-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: var(--gold-500);
}

.email-icon svg {
  width: 30px;
  height: 30px;
}

.email-callout span:not(.email-icon) {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.email-callout a {
  display: inline-block;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.website-line {
  margin-top: 22px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.86) !important;
}

.website-line a {
  color: #fff;
  font-weight: 800;
}

.contact-note {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78) !important;
}

.contact-actions {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 78px 0 78px 72px;
}

.contact-card {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  min-height: 92px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(11, 34, 56, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.contact-card-icon {
  width: 64px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  color: #fff;
}

.contact-card-icon svg {
  width: 31px;
  height: 31px;
}

.contact-card strong {
  display: block;
  color: var(--navy-900);
  font-size: 18px;
  line-height: 1.2;
}

.contact-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.contact-card em {
  color: var(--gold-600);
  font-style: normal;
  font-size: 32px;
  line-height: 1;
}

.mailto-hint {
  margin: 10px 0 0;
  color: var(--gold-600);
  font-weight: 750;
  text-align: center;
}

.site-footer {
  padding: 26px 0;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  border-top: 1px solid rgba(214, 173, 102, 0.25);
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: #fff;
  font-weight: 850;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .js .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .header-cta {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

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

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

  .intro-copy {
    border-right: 0;
    padding-right: 0;
  }

  .contact-section {
    background: var(--navy-900);
  }

  .contact-copy {
    padding-right: 0;
    padding-bottom: 30px;
  }

  .contact-actions {
    padding: 0 0 78px;
  }

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

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    position: sticky;
  }

  .nav-shell {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    max-width: 210px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    grid-column: 1 / -1;
    padding: 18px;
    background: var(--navy-950);
    border: 1px solid rgba(214, 173, 102, 0.28);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 0;
  }

  .site-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 82px 68px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(6, 18, 31, 0.60), rgba(6, 18, 31, 0.50)),
      url("../images/hero-global-trade.jpg") center right / cover no-repeat;
  }

  .hero-panel {
    display: none;
  }

  .audience-grid,
  .proof-strip,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .audience-item {
    min-height: 118px;
  }

  .proof-item + .proof-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 72px 0;
  }

  .contact-copy,
  .contact-actions {
    padding-block: 64px 0;
  }

  .contact-actions {
    padding-bottom: 64px;
  }
}

@media (max-width: 620px) {
  .brand img {
    max-width: 180px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    justify-content: center;
  }

  .service-grid,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .sector-card,
  .sector-card img {
    min-height: 320px;
  }

  .service-card {
    min-height: auto;
  }

  .contact-card {
    grid-template-columns: 52px 1fr;
  }

  .contact-card em {
    display: none;
  }

  .contact-card-icon {
    width: 52px;
    height: 52px;
  }

  .email-callout {
    align-items: flex-start;
  }

  .email-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }
}
