:root {
  --ink: #171819;
  --charcoal: #242528;
  --panel: #2d302f;
  --sage: #6f8b75;
  --deep-green: #183f35;
  --moss: #99ad82;
  --clay: #9a6d55;
  --cream: #f2eadc;
  --paper: #f8f4eb;
  --muted: #b9b8b0;
  --line: rgba(248, 244, 235, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100vw;
  min-height: 76px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(23, 24, 25, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--cream);
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0;
}

.brand-name {
  font-size: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--cream);
}

.menu-toggle {
  display: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: var(--cream);
}

.hero {
  min-height: calc(100vh - 76px);
  padding: clamp(42px, 7vw, 96px) clamp(20px, 5vw, 72px) 40px;
  background:
    linear-gradient(135deg, rgba(24, 63, 53, 0.52), transparent 38%),
    radial-gradient(circle at 82% 18%, rgba(154, 109, 85, 0.24), transparent 34%),
    var(--ink);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--moss);
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 8vw, 6.9rem);
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 32px;
  color: #ded8ca;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--cream);
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

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

.button.primary {
  background: var(--cream);
  color: var(--ink);
}

.button.secondary {
  color: var(--cream);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.trade-panel {
  display: grid;
  align-content: end;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(24, 63, 53, 0.92), rgba(23, 24, 25, 0.96)),
    var(--panel);
}

.hero-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 22px;
  background: rgba(23, 24, 25, 0.84);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.hero-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--moss);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.28;
}

.trade-map {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(242, 234, 220, 0.08) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(242, 234, 220, 0.08) 50%, transparent 50.2%);
}

.map-node {
  position: absolute;
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  border: 1px solid rgba(242, 234, 220, 0.42);
  border-radius: 999px;
  background: rgba(23, 24, 25, 0.72);
  color: var(--cream);
  font-weight: 900;
}

.map-node.korea {
  top: 18%;
  left: 48%;
  background: rgba(153, 173, 130, 0.2);
}

.map-node.asia {
  top: 42%;
  left: 18%;
}

.map-node.global {
  top: 48%;
  right: 13%;
}

.map-line {
  position: absolute;
  height: 1px;
  background: rgba(242, 234, 220, 0.34);
  transform-origin: left center;
}

.line-one {
  top: 36%;
  left: 31%;
  width: 260px;
  transform: rotate(-17deg);
}

.line-two {
  top: 45%;
  left: 55%;
  width: 210px;
  transform: rotate(18deg);
}

.trade-doc {
  position: absolute;
  top: 30px;
  left: 30px;
  width: min(320px, calc(100% - 60px));
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(248, 244, 235, 0.94);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.trade-doc span {
  display: block;
  margin-bottom: 30px;
  color: var(--deep-green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trade-doc strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.trade-doc p {
  margin-bottom: 0;
  color: #4b4b45;
}

.trade-card {
  position: relative;
  z-index: 1;
  padding: 24px;
  background: rgba(23, 24, 25, 0.86);
  border: 1px solid var(--line);
}

.trade-card span {
  display: block;
  margin-bottom: 9px;
  color: var(--moss);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trade-card strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1.22;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: 126px;
  padding: 28px clamp(20px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.trust-strip span,
.intro-copy,
.service-card p,
.steps p,
.contact p,
.site-footer,
.market-grid span {
  color: var(--muted);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 42px;
}

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

.intro-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 820px;
  margin-left: auto;
  font-size: 1.08rem;
}

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

.service-card,
.blog-grid article {
  min-height: 270px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(111, 139, 117, 0.16), rgba(45, 48, 47, 0.88));
  border: 1px solid var(--line);
}

.card-number,
.blog-grid span {
  display: block;
  margin-bottom: 72px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 900;
}

.process {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.process-board {
  display: grid;
  gap: 0;
  overflow: hidden;
  min-height: 540px;
  border: 1px solid var(--line);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.board-header,
.board-row {
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.board-header {
  align-content: center;
  background: rgba(111, 139, 117, 0.2);
}

.board-header span,
.board-row span {
  display: block;
  margin-bottom: 12px;
  color: var(--moss);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.board-header strong {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
}

.board-row {
  display: grid;
  align-content: center;
}

.board-row strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.38rem;
}

.board-row em {
  color: var(--muted);
  font-style: normal;
}

.steps {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.steps span {
  color: var(--moss);
  font-weight: 900;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.market-grid div {
  min-height: 180px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.market-grid div:last-child {
  border-right: 0;
}

.market-grid strong,
.market-grid span {
  display: block;
}

.market-grid strong {
  margin-bottom: 10px;
  color: var(--cream);
  font-size: 1.25rem;
}

.blog-preview {
  background: linear-gradient(180deg, transparent, rgba(24, 63, 53, 0.16));
}

.blog-grid article {
  min-height: 310px;
}

.blog-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--moss);
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto clamp(48px, 8vw, 92px);
  padding: clamp(38px, 6vw, 64px);
  background:
    linear-gradient(135deg, rgba(111, 139, 117, 0.22), transparent),
    var(--charcoal);
  border: 1px solid var(--line);
}

.contact h2 {
  margin-bottom: 18px;
}

.contact p {
  max-width: 620px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.site-footer strong {
  color: var(--cream);
  font-weight: 900;
}

.page-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(80px, 12vw, 150px) clamp(20px, 5vw, 72px) clamp(44px, 8vw, 84px);
  background:
    linear-gradient(135deg, rgba(24, 63, 53, 0.36), transparent 46%),
    var(--ink);
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 26px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #ded8ca;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.pricing-card,
.contact-grid article,
.blog-list article,
.timeline article {
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(111, 139, 117, 0.14), rgba(45, 48, 47, 0.9));
}

.pricing-card.featured {
  background: linear-gradient(145deg, rgba(153, 173, 130, 0.24), rgba(45, 48, 47, 0.92));
}

.pricing-card span,
.contact-grid span,
.blog-list span,
.timeline span {
  display: block;
  margin-bottom: 30px;
  color: var(--moss);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card h2,
.contact-grid h2,
.blog-list h2,
.timeline h2 {
  margin-bottom: 16px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.pricing-card p,
.pricing-card li,
.contact-grid p,
.blog-list p,
.timeline p {
  color: var(--muted);
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 24px 0 0;
}

.timeline,
.blog-list {
  display: grid;
  gap: 18px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 20;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(23, 24, 25, 0.97);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 18px 24px;
    border-top: 1px solid var(--line);
  }

  .hero-grid,
  .section-heading,
  .process,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .hero-panel img {
    min-height: 420px;
  }

  .line-one {
    width: 150px;
  }

  .line-two {
    width: 120px;
  }

  .map-node {
    display: none;
  }

  .trade-doc {
    top: 18px;
    left: 18px;
    width: calc(100% - 36px);
    padding: 18px;
  }

  .trade-card {
    margin-top: 180px;
  }

  .trust-strip,
  .intro-copy,
  .service-grid,
  .blog-grid,
  .market-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div,
  .market-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child,
  .market-grid div:last-child {
    border-bottom: 0;
  }

  .contact .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 16px;
  }

  h1 {
    font-size: 2.74rem;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .eyebrow {
    max-width: 320px;
    font-size: 1rem;
    line-height: 1.35;
  }

  .hero {
    padding-inline: 16px;
  }

  .hero-copy,
  .hero-grid,
  .hero-panel,
  .section,
  .contact {
    max-width: min(358px, calc(100vw - 32px));
  }

  .hero-copy {
    overflow-wrap: break-word;
  }

  .hero-grid,
  .section,
  .contact {
    margin-left: 0;
    margin-right: 0;
  }

  .section,
  .contact {
    padding-inline: 18px;
  }

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

  .site-footer {
    flex-direction: column;
  }
}
