/* Self-hosted so the site does not depend on fonts.googleapis.com, which is
   unreachable from mainland China. Chinese text falls back to the system CJK
   stack rather than shipping a multi-megabyte webfont. */
@font-face {
  font-family: "DM Sans";
  src: url("./assets/fonts/dm-sans-variable.woff2") format("woff2-variations");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-950: #04111d;
  --navy-900: #071a2b;
  --navy-800: #0d2940;
  --navy-700: #16415f;
  --gold-500: #f1c62c;
  --gold-400: #f7d85a;
  --ink: #10202c;
  --muted: #5e6b74;
  --line: #dce2e5;
  --paper: #f5f7f7;
  --white: #ffffff;
  --shell: min(1180px, calc(100vw - 48px));
  --shadow: 0 24px 70px rgba(4, 17, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    "Noto Sans CJK SC", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--gold-500);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 88px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-500);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  padding-top: 9px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  color: var(--white);
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1.12rem;
  letter-spacing: 0.22em;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.primary-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(20px, 2.8vw, 42px);
}

.primary-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 600;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.language-current {
  color: var(--gold-400);
}

.language-divider {
  color: rgba(255, 255, 255, 0.35);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  height: 96vh;
  max-height: 980px;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}

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

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 17, 29, 0.94) 0%, rgba(4, 17, 29, 0.78) 34%, rgba(4, 17, 29, 0.2) 72%),
    linear-gradient(0deg, rgba(4, 17, 29, 0.55) 0%, transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 110px;
  padding-bottom: 110px;
}

.hero-copy {
  width: min(700px, 67vw);
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: #8c9ba6;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.eyebrow {
  color: var(--gold-400);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.9rem, 7.2vw, 7.25rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

html[lang^="zh"] .hero h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 5.6vw, 5.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-lead {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  gap: 16px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--navy-950);
  background: var(--gold-500);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-400);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(4, 17, 29, 0.18);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts {
  position: absolute;
  right: 0;
  bottom: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  width: min(650px, 58vw);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-facts > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 18px 22px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-facts > div:first-child {
  border-left: 0;
}

.fact-number {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 41px;
  left: max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  width: 34px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 999px;
  animation: scroll-cue 1.8s infinite;
}

@keyframes scroll-cue {
  0%, 100% { transform: translateY(-5px); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}

.section {
  padding: 120px 0;
}

.section h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.2vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
}

.intro-copy {
  padding-top: 56px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy p {
  margin: 0 0 22px;
}

.section-services {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 66px;
}

.section-heading .section-kicker {
  margin: 0 0 12px;
}

.section-heading h2 {
  max-width: 790px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-card {
  position: relative;
  min-height: 430px;
  padding: 42px 38px;
  background: var(--white);
  overflow: hidden;
}

.service-card-featured {
  background: var(--navy-900);
  color: var(--white);
}

.service-index {
  color: #8e9ba4;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 70px 0 30px;
  color: var(--gold-500);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.64);
}

.section-trade-scope {
  background: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  padding: 34px 36px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
}

.portfolio-card-gold {
  background: var(--gold-500);
  border-color: var(--gold-500);
}

.portfolio-card-navy {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.portfolio-number {
  color: #7c8992;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.portfolio-card-gold .portfolio-number,
.portfolio-card-navy .portfolio-number {
  color: currentColor;
  opacity: 0.55;
}

.portfolio-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.portfolio-card p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
}

.portfolio-card-gold p {
  color: rgba(4, 17, 29, 0.7);
}

.portfolio-card-navy p {
  color: rgba(255, 255, 255, 0.66);
}

.section-markets {
  color: var(--white);
  background: var(--navy-900);
}

.markets-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.7fr);
  align-items: end;
  gap: clamp(60px, 10vw, 150px);
  margin-bottom: 68px;
}

.markets-heading .section-kicker {
  color: var(--gold-400);
}

.markets-heading > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.03rem;
}

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

.market-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: 30px 32px;
  background: #0b2236;
}

.market-card-gold {
  color: var(--navy-950);
  background: var(--gold-500);
}

.market-code {
  color: var(--gold-400);
  font-size: 2.9rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.055em;
}

.market-card-gold .market-code {
  color: var(--navy-950);
}

.market-card h3 {
  margin: 0 0 5px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.market-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.market-card-gold p {
  color: rgba(4, 17, 29, 0.64);
}

.markets-note {
  max-width: 760px;
  margin: 28px 0 0 auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  text-align: right;
}

.section-buyers {
  background: var(--paper);
}

.buyers-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
}

.buyer-copy > p {
  margin: 56px 0 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.buyer-highlight {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 30px;
  color: var(--white);
  background: var(--navy-900);
  border-left: 5px solid var(--gold-500);
}

.buyer-highlight span,
.buyer-highlight small {
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.76rem;
}

.buyer-highlight strong {
  font-size: 1.12rem;
  line-height: 1.4;
}

.section-focus {
  background: var(--white);
}

.focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
}

.focus-panel,
.focus-note {
  min-height: 470px;
  padding: clamp(42px, 6vw, 76px);
}

.focus-panel {
  color: var(--white);
  background: var(--navy-900);
}

.focus-panel .section-kicker {
  color: var(--gold-400);
}

.focus-panel p:not(.section-kicker) {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 40px;
}

.focus-tags span {
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  font-weight: 600;
}

.focus-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--gold-500);
}

.quote-mark {
  color: var(--navy-950);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 0.7;
}

.focus-note p {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.section-process {
  color: var(--white);
  background: var(--navy-950);
}

.section-heading-light .section-kicker {
  color: var(--gold-400);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.process-list li {
  position: relative;
  min-height: 255px;
  padding: 28px 28px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.process-list li:first-child {
  border-left: 0;
}

.process-list li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 28px;
  width: 9px;
  height: 9px;
  background: var(--gold-500);
  border-radius: 50%;
}

.process-number {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.75rem;
  font-weight: 700;
}

.process-list h3 {
  margin: 52px 0 12px;
  font-size: 1.18rem;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.section-company {
  background: var(--paper);
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 10vw, 150px);
}

.company-title p:last-child {
  max-width: 360px;
  margin-top: 24px;
  color: var(--muted);
}

.company-details {
  margin: 0;
  border-top: 1px solid #c9d1d5;
}

.company-details > div {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) 1fr;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid #c9d1d5;
}

.company-details dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.company-details dd {
  margin: 0;
  font-weight: 600;
}

.section-contact {
  color: var(--white);
  background: var(--navy-800);
}

.section-contact .section-kicker {
  color: var(--gold-400);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.85fr);
  align-items: end;
  gap: 80px;
}

.contact-links {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-links a {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: color 180ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  color: var(--gold-400);
}

.contact-links span:first-child {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  font-weight: 600;
}

.contact-links strong {
  font-size: 1rem;
}

.site-footer {
  padding: 32px 0;
  color: rgba(255, 255, 255, 0.62);
  background: var(--navy-950);
  font-size: 0.78rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.footer-brand .brand-mark {
  width: 34px;
  height: 34px;
  padding-top: 7px;
  font-size: 1rem;
}

.footer-brand .brand-copy strong {
  font-size: 0.9rem;
}

.footer-brand .brand-copy small {
  font-size: 0.56rem;
}

.footer-inner p {
  margin: 0;
  text-align: center;
}

.footer-inner > a {
  color: var(--white);
  font-weight: 600;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 900px);
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    position: relative;
    z-index: 31;
    display: block;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.24);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 1px;
    background: var(--white);
    transition: transform 180ms ease, top 180ms ease;
  }

  .menu-toggle span:nth-child(2) { top: 17px; }
  .menu-toggle span:nth-child(3) { top: 25px; }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    top: 21px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 30;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding: 80px 11vw;
    background: rgba(4, 17, 29, 0.98);
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .primary-nav a {
    font-size: clamp(2rem, 7vw, 3.5rem);
  }

  .language-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .hero {
    min-height: 760px;
  }

  .hero-copy {
    width: min(720px, 92%);
  }

  .hero-facts {
    right: auto;
    left: 0;
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .intro-grid,
  .focus-grid,
  .buyers-grid,
  .markets-heading,
  .company-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    max-width: 740px;
    padding-top: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

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

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

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

  .markets-heading > p {
    max-width: 720px;
  }

  .buyer-copy > p {
    margin-top: 0;
  }

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

  .service-icon {
    margin-top: 42px;
  }

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

  .process-list li:nth-child(3) {
    border-left: 0;
  }

  .contact-grid {
    gap: 54px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .site-header {
    position: absolute;
  }

  .header-inner {
    min-height: 74px;
    gap: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    padding-top: 8px;
    font-size: 1.05rem;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy small {
    display: none;
  }

  .language-toggle {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.75rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    height: auto;
    min-height: 820px;
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 17, 29, 0.92) 0%, rgba(4, 17, 29, 0.7) 100%),
      linear-gradient(0deg, rgba(4, 17, 29, 0.76) 0%, transparent 60%);
  }

  .hero-inner {
    justify-content: flex-start;
    padding-top: 158px;
    padding-bottom: 250px;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 4.7rem);
  }

  .hero-lead {
    margin-top: 28px;
    font-size: 1rem;
  }

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

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    bottom: 22px;
    border-top: 0;
  }

  .hero-facts > div {
    display: grid;
    grid-template-columns: 94px 1fr;
    align-items: center;
    gap: 8px;
    padding: 9px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .fact-number {
    font-size: 0.92rem;
  }

  .section {
    padding: 82px 0;
  }

  .section h2 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .service-card {
    padding: 34px 28px;
  }

  .portfolio-card {
    min-height: 280px;
    padding: 30px 28px;
  }

  .markets-grid {
    grid-template-columns: 1fr;
  }

  .market-card {
    min-height: 220px;
    padding: 28px;
  }

  .markets-note {
    text-align: left;
  }

  .focus-panel,
  .focus-note {
    min-height: 410px;
    padding: 36px 28px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 215px;
    padding-inline: 0;
    border-left: 0;
  }

  .process-list li::before {
    left: 0;
  }

  .process-list h3 {
    margin-top: 40px;
  }

  .company-details > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-grid {
    gap: 42px;
  }

  .contact-links a {
    grid-template-columns: 1fr auto;
  }

  .contact-links a span:first-child {
    grid-column: 1 / -1;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-inner p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

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

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