:root {
  --red: #9b1b23;
  --red-bright: #b21f29;
  --oxblood: #641018;
  --gold: #c6a15a;
  --gold-light: #ddc68e;
  --ink: #17191d;
  --muted: #686b70;
  --paper: #ffffff;
  --warm: #f7f5f1;
  --line: #dedbd4;
  --navy: #102c4a;
  --font-sans: "Microsoft YaHei", "Noto Sans SC", "PingFang SC", sans-serif;
  --header-height: 82px;
  --container: 1280px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: clip;
}

body.menu-open,
body.overlay-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

button {
  border: 0;
  color: inherit;
  background: none;
  cursor: pointer;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 3000;
  padding: 10px 16px;
  color: #fff;
  background: var(--red);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-top: 3px solid var(--red);
  border-bottom: 1px solid rgba(255, 255, 255, .48);
  color: #fff;
  background: rgba(13, 24, 35, .12);
  backdrop-filter: blur(7px);
  transition: height .35s var(--ease), color .35s, background .35s, box-shadow .35s;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border-bottom-color: rgba(18, 21, 25, .08);
  box-shadow: 0 12px 38px rgba(20, 18, 15, .08);
}

.header-inner {
  width: min(calc(100% - 56px), 1460px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  width: clamp(245px, 20vw, 326px);
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-image {
  height: auto;
  transition: filter .35s, opacity .35s;
}

.site-header:not(.is-scrolled):not(.menu-active) .brand-image--gold {
  filter: brightness(0) invert(1);
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 100%;
  margin-left: auto;
  gap: clamp(8px, 1.25vw, 24px);
}

.nav-group {
  position: relative;
  height: 100%;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 3px;
  font-size: 15px;
  white-space: nowrap;
  transition: color .25s;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 17px;
  left: 50%;
  height: 2px;
  background: var(--red);
  transition: right .3s var(--ease), left .3s var(--ease);
}

.nav-link:hover,
.nav-link.is-active,
.nav-group:hover > .nav-link {
  color: var(--gold-light);
}

.is-scrolled .nav-link:hover,
.is-scrolled .nav-link.is-active,
.is-scrolled .nav-group:hover > .nav-link,
.menu-active .nav-link:hover {
  color: var(--red);
}

.nav-link:hover::after,
.nav-link.is-active::after,
.nav-group:hover > .nav-link::after {
  right: 0;
  left: 0;
}

.nav-button {
  gap: 6px;
}

.nav-button svg {
  width: 10px;
  height: auto;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform .25s;
}

.nav-group:hover .nav-button svg,
.nav-button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  width: 168px;
  padding: 12px 0;
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  border-top: 3px solid var(--red);
  box-shadow: 0 22px 54px rgba(28, 22, 15, .16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .25s, visibility .25s, transform .25s;
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu,
.nav-button[aria-expanded="true"] + .submenu,
.nav-group.is-open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-group.is-open .nav-button svg {
  transform: rotate(180deg);
}

.submenu a,
.submenu button {
  display: block;
  width: 100%;
  padding: 9px 22px;
  text-align: center;
  font-size: 14px;
  transition: color .2s, background .2s;
}

.submenu a:hover,
.submenu button:hover {
  color: var(--red);
  background: #f8f4ee;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 10px;
}

.language-link {
  padding: 4px;
  font-family: Georgia, serif;
  font-size: 14px;
}

.icon-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
}

.icon-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .25s, opacity .25s;
}

.menu-active .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-active .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-active .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  height: 100svh;
  color: #fff;
  overflow: hidden;
}

.hero-media,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1s ease, transform 7s linear;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide:nth-child(2) {
  background-position: center 56%;
}

.hero-slide:nth-child(3) {
  background-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 19, 31, .74) 0%, rgba(6, 19, 31, .42) 34%, rgba(6, 19, 31, .08) 68%, rgba(6, 19, 31, .12) 100%),
    linear-gradient(0deg, rgba(5, 16, 27, .28) 0%, transparent 40%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 96px), var(--container));
  height: 100%;
  margin: 0 auto;
}

.hero-copy {
  position: absolute;
  top: 50%;
  max-width: 850px;
  transform: translateY(-44%);
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(54px, 5.25vw, 84px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: .025em;
  text-shadow: 0 4px 22px rgba(0, 0, 0, .16);
}

.hero-copy h1 span {
  color: var(--gold-light);
}

.hero-copy > p {
  margin: 24px 0 38px;
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.5vw, 24px);
  letter-spacing: .18em;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  padding: 0 26px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid currentColor;
  font-size: 15px;
  letter-spacing: .08em;
  overflow: hidden;
  transition: color .3s, background .3s, border-color .3s, transform .3s, box-shadow .3s;
}

.button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 14px 34px rgba(115, 16, 24, .25);
}

.button--primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  box-shadow: 0 18px 42px rgba(115, 16, 24, .34);
}

.button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .62);
  backdrop-filter: blur(4px);
}

.button--ghost:hover {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.button--gold {
  color: #161616;
  background: var(--gold);
  border-color: var(--gold);
}

.button--gold:hover {
  background: #d7b870;
  border-color: #d7b870;
}

.hero-controls {
  position: absolute;
  bottom: 62px;
  left: 0;
  display: flex;
  gap: 9px;
}

.hero-dot {
  width: 28px;
  height: 3px;
  padding: 0;
  background: rgba(255, 255, 255, .64);
  transition: width .3s, background .3s;
}

.hero-dot.is-active {
  width: 54px;
  background: var(--red-bright);
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: .08em;
  transform: translateX(-50%);
}

.mouse {
  position: relative;
  display: block;
  width: 20px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 12px;
}

.mouse i {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 2px;
  height: 6px;
  background: #fff;
  transform: translateX(-50%);
  animation: scroll-wheel 1.8s infinite;
}

@keyframes scroll-wheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 10px); }
}

.section {
  padding: 112px 0;
}

.section-inner {
  width: min(calc(100% - 96px), var(--container));
  margin: 0 auto;
}

.about-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(198, 161, 90, .06) 1px, transparent 1px) 0 0 / 120px 120px,
    #fff;
}

.about-section::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -150px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(198, 161, 90, .14);
  transform: rotate(45deg);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 64px minmax(300px, .82fr) minmax(500px, 1.35fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
}

.section-marker {
  align-self: start;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
}

.marker-line {
  width: 3px;
  height: 58px;
  background: var(--red);
}

.marker-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-style: italic;
  line-height: 1;
}

.section-en {
  margin: 0 0 6px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
}

.section-en--light {
  color: var(--gold-light);
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(38px, 3.6vw, 54px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .025em;
}

.about-copy .lead {
  margin: 26px 0 16px;
  color: #2d3034;
  font-size: 19px;
  line-height: 1.8;
}

.about-copy > p:not(.lead) {
  margin: 0;
  color: var(--muted);
}

.text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.arrow-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  overflow: hidden;
  transition: color .25s;
}

.arrow-link::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: .45;
  transition: right .32s var(--ease);
}

.arrow-link > span {
  transition: transform .3s var(--ease);
}

.arrow-link:hover::after,
.arrow-link:focus-visible::after {
  right: 0;
}

.arrow-link:hover > span,
.arrow-link:focus-visible > span {
  transform: translateX(6px);
}

.text-links a,
.text-links button {
  color: var(--red);
  font-size: 14px;
}

.text-links span {
  color: var(--gold);
}

.about-proof {
  min-width: 0;
}

.about-photo {
  position: relative;
  height: 250px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(32, 27, 21, .14);
}

.about-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.about-photo:hover img {
  transform: scale(1.035);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 20, 28, .66), transparent 48%);
}

.about-photo span {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 18px;
  color: #fff;
  font-size: 13px;
  letter-spacing: .14em;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.stat {
  position: relative;
  min-height: 150px;
  padding: 8px 22px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.stat:first-child {
  border-left: 0;
}

.stat-icon {
  display: block;
  height: 28px;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 22px;
}

.stat strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.stat sup {
  color: var(--red);
  font-size: .55em;
}

.stat > span:last-child {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.business-story {
  display: grid;
  min-height: 620px;
  grid-template-columns: 38% 62%;
}

.business-story--trade {
  grid-template-columns: 62% 38%;
}

.business-copy {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 8vw, 120px) clamp(48px, 7vw, 116px);
}

.business-story--engineering .business-copy {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .06), transparent 45%),
    var(--navy);
}

.business-story--engineering .business-copy::after {
  content: "";
  position: absolute;
  top: 12%;
  right: -32px;
  width: 64px;
  height: 76%;
  background: var(--navy);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.business-story--trade .business-copy {
  background: var(--warm);
}

.business-number {
  margin-bottom: 12px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-style: italic;
  line-height: 1;
}

.business-number::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 54px;
  margin-right: 14px;
  vertical-align: -10px;
  background: var(--red);
}

.business-copy h3 {
  margin: 8px 0 24px;
  font-family: var(--font-sans);
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 600;
  line-height: 1.2;
}

.business-copy > p:not(.section-en) {
  max-width: 520px;
  margin: 0;
  color: inherit;
  opacity: .78;
  font-size: 17px;
}

.business-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  margin: 28px 0 34px;
  list-style: none;
}

.business-tags li {
  padding: 0 14px;
  border-left: 1px solid rgba(255, 255, 255, .38);
  font-size: 13px;
}

.business-tags li:first-child {
  padding-left: 0;
  border-left: 0;
}

.business-tags--dark li {
  border-color: rgba(23, 25, 29, .22);
}

.story-link {
  color: var(--gold-light);
  font-size: 14px;
}

.story-link--red {
  color: var(--red);
}

.business-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.business-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter .6s;
}

.business-story--engineering .business-media img {
  object-position: center;
}

.business-story--trade .business-media img {
  object-position: center;
}

.business-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 16, 24, .55), transparent 43%);
}

.business-media:hover img {
  filter: saturate(1.06);
  transform: scale(1.035);
}

.media-caption {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 36px;
  color: #fff;
  font-size: 14px;
  letter-spacing: .16em;
}

.media-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  color: #fff;
  background: var(--gold);
  font-size: 30px;
  transition: background .3s;
}

.business-media:hover .media-arrow {
  background: var(--red);
}

.news-section {
  background: #fff;
}

.section-top {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: end;
  gap: 24px;
}

.section-more {
  color: var(--muted);
  font-size: 14px;
}

.section-more span {
  margin-left: 0;
  color: var(--red);
}

.section-more:hover {
  color: var(--red);
}

.news-tabs {
  display: flex;
  gap: 42px;
  margin: 48px 0 0 96px;
  border-bottom: 1px solid var(--line);
}

.news-tab {
  position: relative;
  padding: 0 3px 14px;
  color: var(--muted);
  font-size: 15px;
}

.news-tab::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -1px;
  left: 50%;
  height: 3px;
  background: var(--red);
  transition: right .25s, left .25s;
}

.news-tab.is-active {
  color: var(--red);
  font-weight: 700;
}

.news-tab.is-active::after {
  right: 0;
  left: 0;
}

.news-layout {
  display: none;
  grid-template-columns: minmax(440px, .95fr) minmax(420px, 1.05fr);
  gap: clamp(48px, 6vw, 96px);
  margin: 42px 0 0 96px;
}

.news-layout.is-active {
  display: grid;
}

/* 首页新闻轮播 */
.news-feature[data-carousel] {
  position: relative;
  overflow: hidden;
}
.news-feature[data-carousel] .carousel-track {
  display: flex;
  transition: transform .6s ease;
}
.news-feature[data-carousel] .carousel-track .news-slide {
  flex: 0 0 100%;
}
.news-feature[data-carousel] .carousel-btn {
  position: absolute;
  top: 155px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(222, 219, 212, .6);
  color: rgba(85, 85, 85, .75);
  cursor: pointer;
  z-index: 2;
  opacity: .85;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: color .25s, background .25s, border-color .25s, opacity .25s;
}
.news-feature[data-carousel] .carousel-btn:hover {
  opacity: 1;
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}
.news-feature[data-carousel] .carousel-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.news-feature[data-carousel] .carousel-prev {
  left: 12px;
}
.news-feature[data-carousel] .carousel-next {
  right: 12px;
}
.news-feature[data-carousel] .carousel-dots {
  position: absolute;
  top: 270px;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}
.news-feature[data-carousel] .carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: background .25s, border-color .25s;
}
.news-feature[data-carousel] .carousel-dot.is-active {
  background: var(--red);
  border-color: var(--red);
}

.news-image {
  position: relative;
  display: block;
  height: 310px;
  overflow: hidden;
}

.news-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.news-image:hover img {
  transform: scale(1.035);
}

.news-image time {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 94px;
  height: 90px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(97, 15, 23, .94);
}

.news-image time strong {
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.news-image time span {
  margin-top: 5px;
  font-size: 10px;
}

.news-feature-copy h3 {
  margin: 22px 0 10px;
  font-family: "STSong", "Songti SC", "SimSun", serif;
  font-size: 26px;
  line-height: 1.45;
}

.news-feature-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.news-feature-copy a {
  color: var(--red);
  font-size: 13px;
}

.news-feature-copy a span {
  margin-left: 0;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-item {
  display: grid;
  grid-template-columns: 76px 1fr 28px;
  gap: 22px;
  min-height: 116px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: padding .3s, background .3s;
}

.news-item:hover {
  padding: 0 16px;
  background: var(--warm);
}

.news-item time {
  text-align: center;
}

.news-item time strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.news-item time span {
  color: var(--muted);
  font-size: 10px;
}

.news-item h3 {
  margin: 0 0 5px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}

.news-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-item > span {
  color: var(--red);
  font-size: 20px;
  transition: transform .25s;
}

.news-item:hover > span {
  transform: translateX(5px);
}

.footprint-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(198, 161, 90, .045) 1px, transparent 1px) 0 0 / 120px 120px,
    linear-gradient(rgba(198, 161, 90, .045) 1px, transparent 1px) 0 0 / 120px 120px,
    var(--warm);
  overflow: hidden;
}

.footprint-section::before {
  content: "GLOBAL FOOTPRINT";
  position: absolute;
  top: 100px;
  right: -8px;
  color: rgba(155, 27, 35, .035);
  font-family: Arial, sans-serif;
  font-size: clamp(84px, 10vw, 164px);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.footprint-section .section-top,
.footprint-layout {
  position: relative;
  z-index: 1;
}

.footprint-key {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
}

.footprint-key span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footprint-key i {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.key-line {
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.key-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 5px;
  height: 5px;
  background: #fff;
  border: 1px solid var(--red);
  border-radius: 50%;
  transform: translateY(-50%);
}

.key-point {
  width: 9px;
  height: 9px;
  background: var(--red);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(155, 27, 35, .18);
}

.footprint-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(34px, 4vw, 58px);
  margin-top: 50px;
  align-items: center;
}

.footprint-map {
  min-width: 0;
  margin: 0;
}

.map-stage {
  position: relative;
  aspect-ratio: 15 / 7;
  background:
    radial-gradient(circle at 79% 46%, rgba(155, 27, 35, .08), transparent 24%),
    rgba(255, 255, 255, .72);
  border-top: 1px solid rgba(198, 161, 90, .38);
  border-bottom: 1px solid rgba(198, 161, 90, .22);
  box-shadow: 0 24px 70px rgba(34, 27, 18, .09);
  overflow: hidden;
}

.map-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 245, 241, .3), transparent 22%, transparent 78%, rgba(247, 245, 241, .12));
  pointer-events: none;
}

.world-map,
.footprint-route-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.world-map {
  object-fit: cover;
  object-position: right center;
  opacity: .88;
}

.footprint-route-map {
  z-index: 1;
  overflow: visible;
}

.flight-route {
  fill: none;
  stroke: url("#routeGradient");
  stroke-width: 2.1;
  stroke-dasharray: 7 10;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  animation: flight-flow 2.3s linear infinite;
}

.flight-route--domestic {
  stroke-width: 1.6;
  stroke-dasharray: 4 7;
  opacity: .82;
}

.flight-particle {
  fill: #fff;
  stroke: var(--red);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.map-leaders path {
  fill: none;
  stroke: rgba(155, 27, 35, .56);
  stroke-width: 1;
  stroke-dasharray: 2 4;
  vector-effect: non-scaling-stroke;
}

.point-pulse {
  fill: rgba(155, 27, 35, .08);
  stroke: rgba(155, 27, 35, .38);
  stroke-width: 1.2;
  transform-box: fill-box;
  transform-origin: center;
  animation: map-pulse 2.4s ease-out infinite;
}

.point-core {
  fill: var(--red);
  stroke: #fff;
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
}

.map-point--origin .point-pulse {
  fill: rgba(198, 161, 90, .18);
  stroke: rgba(155, 27, 35, .62);
}

.map-point--origin .point-ring {
  fill: #fff;
  stroke: var(--red);
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
}

.map-point--origin .point-core {
  fill: var(--gold);
  stroke: var(--red);
}

.map-point--overseas .point-core {
  fill: var(--gold);
  stroke: #fff;
}

.map-label {
  fill: #45484d;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  paint-order: stroke;
  stroke: rgba(247, 245, 241, .94);
  stroke-width: 5px;
  stroke-linejoin: round;
}

.map-label--origin {
  fill: var(--red);
  font-size: 17px;
  font-weight: 700;
}

.footprint-map figcaption {
  margin-top: 12px;
  color: #878178;
  font-size: 11px;
  text-align: right;
}

.footprint-summary {
  padding: 10px 0 10px 34px;
  border-left: 1px solid rgba(155, 27, 35, .2);
}

.summary-kicker {
  margin: 0 0 6px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.summary-total {
  display: block;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 66px;
  font-weight: 400;
  line-height: 1;
}

.summary-total sup {
  margin-left: 5px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
}

.summary-label {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.summary-rule {
  width: 42px;
  height: 2px;
  margin: 25px 0;
  background: var(--gold);
}

.location-group + .location-group {
  margin-top: 23px;
}

.location-group h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
}

.location-group h3 span {
  margin-right: 9px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.location-group ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.location-group li {
  position: relative;
  padding-left: 11px;
}

.location-group li::before {
  content: "";
  position: absolute;
  top: .78em;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
}

.location-trigger {
  position: relative;
  padding: 2px 0;
  color: inherit;
  text-align: left;
  transition: color .25s, transform .25s;
}

.location-trigger::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--red);
  transition: right .25s var(--ease);
}

.location-trigger:hover,
.location-trigger:focus-visible,
.location-trigger.is-active {
  color: var(--red);
  transform: translateX(3px);
}

.location-trigger:hover::after,
.location-trigger:focus-visible::after,
.location-trigger.is-active::after {
  right: 0;
}

.location-preview {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 5;
  width: min(420px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 152px 1fr;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 20px 46px rgba(23, 25, 29, .16);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .3s, transform .3s var(--ease);
}

.location-preview.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.location-preview-media {
  min-height: 174px;
  overflow: hidden;
}

.location-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .18s, transform .55s var(--ease);
}

.location-preview:hover .location-preview-media img {
  transform: scale(1.035);
}

.location-preview-copy {
  padding: 22px 22px 20px;
}

.location-preview-copy span {
  color: var(--gold-light);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .19em;
}

.location-preview-copy h3 {
  margin: 2px 0 8px;
  font-size: 22px;
  font-weight: 600;
}

.location-preview-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  line-height: 1.72;
}

.location-preview-close {
  position: absolute;
  top: 7px;
  right: 8px;
  z-index: 2;
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, .68);
  font-family: Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
}

.flight-route.is-active {
  stroke-width: 4;
  filter: url("#routeGlow");
}

.map-point.is-active .point-pulse {
  fill: rgba(198, 161, 90, .55);
  animation-duration: .9s;
}

.map-point.is-active .point-core {
  fill: #fff;
  stroke: var(--gold);
  stroke-width: 3;
}

@keyframes flight-flow {
  to { stroke-dashoffset: -34; }
}

@keyframes map-pulse {
  0%, 100% { opacity: .28; transform: scale(.72); }
  55% { opacity: .85; transform: scale(1.35); }
}

.party-section {
  position: relative;
  color: #fff;
  background: linear-gradient(100deg, #741018 0%, #a11320 54%, #790e17 100%);
  overflow: hidden;
}

.party-pattern {
  position: absolute;
  inset: 0;
  opacity: .14;
  background:
    linear-gradient(30deg, transparent 12%, rgba(255, 215, 140, .6) 12.5%, transparent 13%) 0 0 / 110px 110px,
    linear-gradient(150deg, transparent 12%, rgba(255, 215, 140, .45) 12.5%, transparent 13%) 0 0 / 110px 110px;
}

.party-inner {
  position: relative;
  min-height: 290px;
  display: grid;
  grid-template-columns: 72px minmax(340px, 1fr) 180px auto;
  gap: 26px;
  align-items: center;
}

.section-marker--light .marker-line {
  background: var(--gold);
}

.party-copy h2 {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 600;
}

.party-copy p:last-child {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
}

.party-emblem img {
  width: 124px;
  height: 124px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(44, 0, 0, .22));
}

.party-link {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, .38);
  font-size: 14px;
  transition: color .3s, background .3s, border-color .3s;
}

.party-link:hover {
  color: var(--oxblood);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.careers-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.careers-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 22, 35, .88) 0%, rgba(8, 22, 35, .58) 52%, rgba(8, 22, 35, .2) 100%),
    url("../images/city.webp") center / cover no-repeat;
  transform: scale(1.01);
}

.careers-inner {
  position: relative;
  z-index: 1;
  padding: 90px 0;
}

.careers-inner h2 {
  max-width: 720px;
  margin: 10px 0 22px;
  font-family: var(--font-sans);
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 500;
  line-height: 1.35;
}

.careers-inner > p:not(.section-en) {
  max-width: 660px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
}

.site-footer {
  position: relative;
  color: rgba(255, 255, 255, .72);
  background: #17191b;
  overflow: hidden;
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 2fr);
  gap: clamp(36px, 5vw, 80px);
  padding-top: 78px;
  padding-bottom: 64px;
}

.footer-brand img {
  max-width: 420px;
  height: auto;
}

.footer-brand .footer-slogan {
  margin: 18px 0 0 3px;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: .25em;
}

.footer-brand .contact-list {
  margin-top: 34px;
  gap: 22px;
}

.footer-code {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-code img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
  padding: 5px;
}

.footer-code strong {
  color: #fff;
  font-size: 16px;
}

.footer-code .footer-visits {
  margin-top: 4px;
}

.footer-visits {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  line-height: 1.6;
}

.footer-visits em {
  color: #fff;
  font-style: normal;
  font-family: Georgia, serif;
  font-size: 14px;
}

.contact-list > div {
  display: flex;
  gap: 14px;
}

.contact-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
}

.contact-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: invert(70%) sepia(37%) saturate(640%) hue-rotate(358deg) brightness(89%) contrast(84%);
}

.contact-list p {
  margin: 0;
  line-height: 1.75;
  white-space: nowrap;
}

.contact-list small {
  display: block;
  color: rgba(255, 255, 255, .42);
  font-size: 11px;
  letter-spacing: .12em;
}

.contact-list a {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 18px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-nav > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-nav strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 16px;
}

.footer-nav a,
.footer-nav button {
  padding: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  transition: color .2s;
}

.footer-nav a:hover,
.footer-nav button:hover {
  color: var(--gold);
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom .section-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .8);
}

.footer-bottom a:not(.footer-icp) {
  margin-left: auto;
}

.footer-bottom .footer-icp {
  margin-left: 0 !important;
  flex: 0 0 auto;
}

.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 900;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(99, 15, 23, .28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s, visibility .3s, transform .3s, background .3s;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
}

.back-to-top svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: grid;
  place-items: start center;
  padding: 17vh 24px 50px;
  color: #fff;
  background: rgba(21, 19, 19, .96);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}

.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.search-close {
  position: absolute;
  top: 26px;
  right: 34px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 42px;
  font-weight: 200;
}

.search-panel {
  width: min(780px, 100%);
}

.search-panel > p {
  margin: 0 0 28px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .24em;
}

.search-form {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, .42);
}

.search-form input {
  width: 100%;
  padding: 12px 0 18px;
  color: #fff;
  background: none;
  border: 0;
  outline: 0;
  font-size: clamp(24px, 4vw, 44px);
}

.search-form input::placeholder {
  color: rgba(255, 255, 255, .28);
}

.search-form button {
  width: 58px;
  color: var(--gold);
}

.search-form svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  color: rgba(255, 255, 255, .56);
  font-size: 13px;
}

.search-suggestions span {
  color: rgba(255, 255, 255, .32);
}

.search-suggestions button {
  color: inherit;
}

.search-suggestions button:hover {
  color: var(--gold);
}

.search-results {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.search-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .82);
}

.search-result span:last-child {
  color: var(--gold);
}

.site-dialog {
  width: min(920px, calc(100% - 36px));
  max-height: calc(100vh - 44px);
  padding: 0;
  border: 0;
  background: #fff;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .3);
}

.site-dialog::backdrop {
  background: rgba(10, 12, 15, .78);
  backdrop-filter: blur(4px);
}

.dialog-shell {
  position: relative;
  padding: clamp(34px, 5vw, 66px);
  overflow: auto;
}

.dialog-shell--wide {
  padding: clamp(30px, 4vw, 52px);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 1;
  width: 42px;
  height: 42px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 32px;
  font-weight: 200;
}

.dialog-shell h2 {
  margin: 0 0 24px;
  font-family: "STSong", "Songti SC", "SimSun", serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.25;
}

.dialog-intro {
  max-width: 720px;
  margin: -10px 0 28px;
  color: var(--muted);
}

.profile-dialog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.profile-dialog-grid img {
  min-height: 350px;
  height: 100%;
  object-fit: cover;
}

.profile-dialog-grid p {
  margin: 0 0 16px;
  color: #52565b;
}

.organization-image {
  width: 100%;
  border: 1px solid var(--line);
}

.honor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.honor-grid figure {
  margin: 0;
  background: var(--warm);
  border: 1px solid var(--line);
}

.honor-grid img {
  height: 190px;
  object-fit: contain;
  background: #f1eee8;
}

.honor-grid figcaption {
  padding: 12px;
  text-align: center;
  font-size: 13px;
}

.career-list {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.career-list article {
  padding: 22px 24px;
  background: var(--warm);
  border-left: 3px solid var(--red);
}

.career-list span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .15em;
}

.career-list h3 {
  margin: 3px 0 6px;
  font-size: 21px;
}

.career-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1360px) {
  :root {
    --header-height: 76px;
  }

  .header-inner {
    width: min(calc(100% - 32px), 1320px);
    gap: 18px;
  }

  .brand {
    width: 250px;
  }

  .desktop-nav {
    gap: 10px;
  }

  .nav-link {
    font-size: 13px;
  }

  .header-tools {
    gap: 6px;
    margin-left: 2px;
  }
}

@media (max-width: 1120px) {
  .desktop-nav,
  .language-link {
    display: none;
  }

  .header-inner {
    width: calc(100% - 36px);
  }

  .header-tools {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-panel {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    height: calc(100svh - var(--header-height));
    display: block;
    padding: 28px 24px 60px;
    color: var(--ink);
    background: rgba(255, 255, 255, .99);
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity .3s, visibility .3s, transform .3s;
  }

  .menu-active .mobile-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav {
    width: min(720px, 100%);
    margin: 0 auto;
  }

  .mobile-nav > a,
  .mobile-nav summary {
    position: relative;
    display: block;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-family: "STSong", "Songti SC", "SimSun", serif;
    font-size: 23px;
    list-style: none;
    cursor: pointer;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary::after {
    content: "+";
    position: absolute;
    right: 6px;
    color: var(--red);
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 300;
  }

  .mobile-nav details[open] summary::after {
    content: "−";
  }

  .mobile-nav details > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 10px 0 16px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav details a,
  .mobile-nav details button {
    padding: 9px 5px;
    color: var(--muted);
    text-align: center;
    font-size: 14px;
  }

  .about-grid {
    grid-template-columns: 52px 1fr;
  }

  .about-proof {
    grid-column: 2;
  }

  .business-story,
  .business-story--trade {
    min-height: 560px;
    grid-template-columns: 45% 55%;
  }

  .business-story--trade {
    grid-template-columns: 55% 45%;
  }

  .business-copy {
    padding: 70px 44px;
  }

  .news-layout {
    gap: 44px;
  }

  .party-inner {
    grid-template-columns: 60px 1fr 120px;
  }

  .party-link {
    grid-column: 2;
    width: max-content;
    margin-bottom: 42px;
  }

  .party-emblem {
    grid-row: 1 / span 2;
    grid-column: 3;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

  .brand {
    width: min(260px, calc(100vw - 150px));
  }

  .icon-button {
    width: 34px;
  }

  .header-inner {
    width: calc(100% - 24px);
  }

  .hero {
    min-height: 660px;
    height: 92svh;
  }

  .hero-slide {
    background-position: 56% center;
  }

  .hero-slide:first-child {
    background-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(6, 19, 31, .78) 0%, rgba(6, 19, 31, .44) 78%, rgba(6, 19, 31, .25) 100%);
  }

  .hero-inner,
  .section-inner {
    width: calc(100% - 40px);
  }

  .hero-copy {
    top: 48%;
    max-width: 620px;
  }

  .hero-copy h1 {
    font-size: clamp(43px, 10vw, 64px);
  }

  .hero-copy > p {
    margin: 20px 0 30px;
    font-size: 17px;
    letter-spacing: .1em;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-grid > * {
    grid-column: 1;
  }

  .section-marker {
    gap: 8px;
  }

  .marker-line {
    height: 42px;
  }

  .marker-number {
    font-size: 27px;
  }

  .about-copy .lead {
    margin-top: 20px;
  }

  .about-photo {
    height: 240px;
  }

  .stat {
    padding: 8px 10px;
  }

  .business-story,
  .business-story--trade {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .business-story--trade .business-media {
    order: 2;
  }

  .business-story--trade .business-copy {
    order: 1;
  }

  .business-copy {
    padding: 65px 32px;
  }

  .business-story--engineering .business-copy::after {
    display: none;
  }

  .business-media {
    height: 430px;
  }

  .section-top {
    grid-template-columns: 54px 1fr;
    align-items: start;
  }

  .section-more {
    grid-column: 2;
    justify-self: start;
  }

  .news-tabs,
  .news-layout {
    margin-left: 0;
  }

  .news-layout {
    grid-template-columns: 1fr;
  }

  .footprint-key {
    grid-column: 2;
    justify-self: start;
    padding-bottom: 0;
  }

  .footprint-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 38px;
  }

  .footprint-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0 26px;
    align-items: flex-start;
    padding: 26px 0 0;
    border-top: 1px solid rgba(155, 27, 35, .18);
    border-left: 0;
  }

  .summary-kicker {
    width: 100%;
  }

  .summary-total {
    width: 82px;
    font-size: 54px;
  }

  .summary-label {
    width: 150px;
    margin-top: 15px;
  }

  .summary-rule {
    display: none;
  }

  .location-group {
    min-width: 185px;
    flex: 1;
  }

  .location-group + .location-group {
    margin-top: 0;
  }

  .location-preview {
    bottom: 18px;
    left: 18px;
    width: min(410px, calc(100% - 36px));
  }

  .party-inner {
    grid-template-columns: 52px 1fr;
    gap: 24px;
    padding: 62px 0;
  }

  .party-emblem {
    position: absolute;
    right: -22px;
    bottom: 16px;
    opacity: .18;
  }

  .party-link {
    grid-column: 2;
    margin-bottom: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .contact-list p {
    white-space: normal;
  }

  .footer-nav {
    grid-column: 1;
  }

  .profile-dialog-grid {
    grid-template-columns: 1fr;
  }

  .profile-dialog-grid img {
    min-height: 240px;
  }

  .honor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .search-trigger {
    display: none;
  }

  .hero-inner,
  .section-inner {
    width: calc(100% - 32px);
  }

  .hero {
    min-height: 640px;
  }

  .hero-slide:first-child {
    background-position: 68% center;
  }

  .hero-copy {
    top: 48%;
  }

  .hero-copy h1 {
    max-width: 330px;
    font-size: 44px;
    line-height: 1.24;
  }

  .hero-copy h1 span {
    display: none;
  }

  .hero-copy > p {
    max-width: 320px;
    font-size: 15px;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 50px;
    padding: 0 18px;
    gap: 12px;
    font-size: 13px;
  }

  .hero-controls {
    bottom: 28px;
  }

  .section-heading h2 {
    font-size: 37px;
  }

  .about-copy .lead {
    font-size: 17px;
  }

  .about-copy > p:not(.lead) {
    font-size: 14px;
  }

  .stat-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 26px;
  }

  .stat {
    min-height: 108px;
    display: grid;
    grid-template-columns: 50px 1fr 1fr;
    align-items: center;
    text-align: left;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .stat:first-child {
    border-top: 0;
  }

  .stat-icon {
    margin: 0;
  }

  .stat > span:last-child {
    margin: 0;
  }

  .business-copy {
    padding: 56px 24px;
  }

  .business-number {
    font-size: 34px;
  }

  .business-copy h3 {
    font-size: 42px;
  }

  .business-copy > p:not(.section-en) {
    font-size: 15px;
  }

  .business-tags {
    gap: 8px;
  }

  .business-tags li {
    width: 100%;
    padding: 3px 0;
    border: 0;
  }

  .business-media {
    height: 310px;
  }

  .media-caption {
    bottom: 22px;
    left: 20px;
    font-size: 11px;
  }

  .media-arrow {
    width: 64px;
    height: 64px;
  }

  .section-top {
    gap: 12px;
  }

  .news-tabs {
    gap: 22px;
    margin-top: 34px;
    overflow-x: auto;
  }

  .news-layout {
    gap: 34px;
  }

  .news-image {
    height: 250px;
  }

  .news-feature-copy h3 {
    font-size: 22px;
  }

  .news-item {
    grid-template-columns: 58px 1fr 18px;
    gap: 12px;
  }

  .news-item p {
    display: none;
  }

  .news-item h3 {
    font-size: 15px;
  }

  .footprint-key {
    gap: 16px;
    font-size: 11px;
  }

  .key-line {
    width: 26px;
  }

  .map-stage {
    aspect-ratio: 4 / 3;
  }

  .footprint-route-map .map-label,
  .footprint-route-map .map-leaders {
    display: none;
  }

  .footprint-map figcaption {
    text-align: left;
  }

  .footprint-summary {
    gap: 18px 22px;
  }

  .summary-total {
    width: 72px;
    font-size: 48px;
  }

  .summary-label {
    width: calc(100% - 94px);
    margin-top: 11px;
  }

  .location-group {
    min-width: 100%;
  }

  .location-group + .location-group {
    margin-top: 0;
  }

  .location-preview {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    display: block;
  }

  .location-preview-media {
    height: 112px;
    min-height: 0;
  }

  .location-preview-copy {
    padding: 14px 17px 16px;
  }

  .location-preview-copy p {
    display: none;
  }

  .party-inner {
    grid-template-columns: 1fr;
  }

  .party-inner .section-marker,
  .party-copy,
  .party-link {
    grid-column: 1;
  }

  .party-copy h2 {
    font-size: 41px;
  }

  .party-link {
    width: 100%;
    justify-content: space-between;
  }

  .careers-section {
    min-height: 500px;
  }

  .careers-inner h2 {
    font-size: 39px;
  }

  .footer-main {
    padding-top: 58px;
    padding-bottom: 48px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom .section-inner {
    min-height: 82px;
    flex-wrap: wrap;
    align-content: center;
    gap: 3px 18px;
  }

  .footer-bottom a {
    width: 100%;
    margin-left: 0;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }

  .mobile-nav details > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .honor-grid {
    grid-template-columns: 1fr;
  }

  .honor-grid img {
    height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .flight-route {
    animation: none;
  }

  .flight-particle {
    display: none;
  }

  .point-pulse {
    opacity: .42;
    animation: none;
  }
}
