@charset "UTF-8";

:root {
  --brand-orange: #e46c0a;
  --brand-orange-dark: #b94f00;
  --brand-orange-deep: #823300;
  --brand-orange-light: #f28a32;
  --brand-orange-pale: #fff3e8;
  --warm-white: #fffaf6;
  --white: #fff;
  --ink: #181818;
  --ink-soft: #252525;
  --muted: #6f6c69;
  --line: rgba(24, 24, 24, .12);
  --shadow: 0 24px 70px rgba(44, 24, 8, .14);
  --wrap: min(1440px, 91.5vw);
  --header-h: 96px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
main section[id] { scroll-margin-top: 78px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: var(--wrap); margin-inline: auto; }
.section { position: relative; padding: clamp(100px, 9vw, 176px) 0; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  color: #fff;
  background: var(--brand-orange);
  border-radius: 4px;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: height .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .3;
  background:
    linear-gradient(110deg, transparent 0 12%, rgba(255,255,255,.12) 12.1% 12.2%, transparent 12.3%),
    linear-gradient(90deg, rgba(130,51,0,.45), rgba(228,108,10,.15));
  transition: opacity .3s;
}
.site-header.scrolled,
.site-header.menu-open {
  height: 78px;
  color: var(--ink);
  background: rgba(255,255,255,.97);
  border-color: rgba(24,24,24,.08);
  box-shadow: 0 12px 40px rgba(38,25,15,.08);
  backdrop-filter: blur(16px);
}
.site-header.scrolled::after,
.site-header.menu-open::after { opacity: 0; }
.site-header.header-hidden { transform: translateY(-105%); }
.header-inner {
  position: relative;
  height: 100%;
  width: min(1600px, 96vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
}
.brand {
  min-width: 172px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo { width: 150px; height: 54px; object-fit: contain; object-position: left center; }
.site-header.scrolled .brand-logo,
.site-header.menu-open .brand-logo { filter: brightness(0) saturate(100%) invert(43%) sepia(95%) saturate(2285%) hue-rotate(359deg) brightness(93%) contrast(96%); }
.desktop-nav {
  height: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(15px, 2.2vw, 42px);
}
.nav-item { display: flex; align-items: stretch; }
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 2px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 15px;
  letter-spacing: .02em;
  white-space: nowrap;
  cursor: pointer;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s var(--ease);
}
.nav-link.active::after,
.nav-item:hover > .nav-link::after,
.nav-link:focus-visible::after { transform: scaleX(1); }
.site-header:not(.scrolled):not(.menu-open) > .header-inner > .desktop-nav > .nav-link.active::after { background: #fff; }
.nav-item:hover > .nav-link,
.site-header.scrolled .nav-link.active,
.site-header.menu-open .nav-link.active { color: var(--brand-orange); }
.chevron { font-size: 14px; transform: translateY(-2px); transition: transform .3s; }
.nav-item:hover .chevron { transform: translateY(1px) rotate(180deg); }
.header-actions { min-width: 172px; display: flex; justify-content: flex-end; align-items: center; }
.consult-button {
  min-height: 46px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255,255,255,.7);
  color: #fff;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  transition: .3s var(--ease);
}
.consult-button:hover { color: var(--brand-orange); background: #fff; }
.site-header.scrolled .consult-button,
.site-header.menu-open .consult-button { border-color: var(--brand-orange); color: #fff; background: var(--brand-orange); }
.site-header.scrolled .consult-button:hover,
.site-header.menu-open .consult-button:hover { background: var(--brand-orange-dark); }
.mobile-toggle { display: none; }

.dropdown {
  position: fixed;
  top: var(--header-h);
  left: 50%;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 12px);
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
  transition: opacity .25s, visibility .25s, transform .35s var(--ease), top .35s var(--ease);
}
.site-header.scrolled .dropdown,
.site-header.menu-open .dropdown { top: 78px; }
.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.dropdown-split {
  width: min(1000px, 88vw);
  padding: 38px;
  display: grid;
  grid-template-columns: .8fr 1.7fr;
  gap: 38px;
}
.dropdown-intro {
  padding: 8px 34px 8px 2px;
  border-right: 1px solid var(--line);
}
.menu-index { font: 700 15px/1 Arial; color: var(--brand-orange); }
.dropdown-intro h2,
.mega-heading h2 { margin: 16px 0 25px; font-size: 28px; line-height: 1.35; letter-spacing: -.03em; }
.text-link { display: inline-flex; gap: 18px; font-size: 14px; color: var(--brand-orange); }
.menu-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; align-content: center; }
.menu-card {
  min-height: 150px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid var(--line);
  transition: .3s var(--ease);
}
.menu-card:hover { border-color: rgba(228,108,10,.3); background: var(--brand-orange-pale); transform: translateY(-4px); }
.menu-icon { width: 30px; height: 30px; display: grid; place-items: center; color: #fff; background: var(--brand-orange); border-radius: 50%; }
.menu-card span:last-child { display: flex; flex-direction: column; gap: 8px; }
.menu-card b { font-size: 15px; }
.menu-card small { color: var(--muted); font-size: 12px; line-height: 1.5; }
.mega-menu {
  width: 100vw;
  padding: 50px max(4vw, calc((100vw - 1440px)/2));
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 0;
}
.mega-heading { padding: 4px 50px 4px 0; }
.mega-heading > p:last-child { max-width: 310px; color: var(--muted); line-height: 1.8; font-size: 14px; }
.mega-group { position: relative; min-height: 245px; padding: 10px 30px; border-left: 1px solid var(--line); }
.mega-number { position: absolute; right: 20px; top: -5px; font: 700 75px/.8 Arial; color: rgba(228,108,10,.08); }
.mega-group h3 { position: relative; margin: 8px 0 24px; padding-bottom: 15px; font-size: 18px; }
.mega-group h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--brand-orange); }
.mega-group a { display: block; padding: 8px 0; color: #555; font-size: 14px; transition: .2s; }
.mega-group a:hover { color: var(--brand-orange); transform: translateX(5px); }
.mega-group small { display: block; margin-top: 12px; color: var(--brand-orange); }
.dropdown-list { width: 365px; padding: 24px; }
.dropdown-label { margin: 0 0 12px; padding: 0 10px 15px; border-bottom: 1px solid var(--line); color: var(--muted); font: 11px/1 Arial; letter-spacing: .18em; }
.dropdown-list a,
.dropdown-list button {
  width: 100%;
  min-height: 52px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: .25s;
}
.dropdown-list a span,
.dropdown-list button span { color: #aaa; font: 11px/1 Arial; }
.dropdown-list a:hover,
.dropdown-list button:hover { color: var(--brand-orange); background: var(--brand-orange-pale); padding-left: 16px; }

.mobile-drawer, .drawer-scrim { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  color: #fff;
  overflow: hidden;
  background: #15110e;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(18,12,8,.92) 0%, rgba(73,28,0,.68) 44%, rgba(228,108,10,.14) 100%),
    linear-gradient(0deg, rgba(10,8,6,.62), transparent 50%),
    url("./assets/hero-headquarters.png") center/cover no-repeat;
  animation: heroZoom 18s ease-out both;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-liquid-ether {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: .78;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,.55), #000 38%, #000);
  mask-image: linear-gradient(90deg, rgba(0,0,0,.55), #000 38%, #000);
}
.liquid-ether-canvas {
  display: block;
  width: 100%;
  height: 100%;
  filter: saturate(1.18) contrast(1.06);
}
.hero-liquid-ether.no-webgl::before {
  content: "";
  position: absolute;
  inset: -15%;
  background:
    radial-gradient(ellipse at 62% 45%, rgba(230,182,35,.34), transparent 24%),
    radial-gradient(ellipse at 48% 65%, rgba(228,108,10,.28), transparent 30%);
  filter: blur(44px);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, #000, transparent 80%);
}
.hero-grid::after { content: ""; position: absolute; left: 51%; top: 0; width: 1px; height: 100%; background: rgba(255,255,255,.45); }
.hero-glow { position: absolute; z-index: 1; border: 1px solid rgba(255,148,62,.25); border-radius: 50%; }
.hero-glow-one { width: 520px; height: 520px; right: -160px; bottom: -150px; box-shadow: inset 0 0 80px rgba(228,108,10,.12); }
.hero-glow-two { width: 260px; height: 260px; right: 80px; bottom: -22px; }
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  padding: calc(var(--header-h) + 80px) 0 95px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.hero-copy { max-width: 880px; }
.eyebrow { margin: 0 0 24px; display: flex; align-items: center; gap: 12px; color: var(--brand-orange); font: 600 12px/1 Arial, sans-serif; letter-spacing: .17em; }
.eyebrow > span { width: 28px; height: 1px; background: currentColor; }
.eyebrow.light { color: #fff; }
.hero h1 { margin: 0; font-size: clamp(62px, 7.1vw, 122px); line-height: .98; letter-spacing: -.055em; font-weight: 600; }
.hero h1 em { color: var(--brand-orange-light); font-style: normal; }
.hero-summary { max-width: 690px; margin: 38px 0 0; color: rgba(255,255,255,.76); font-size: clamp(16px, 1.25vw, 20px); line-height: 1.9; }
.hero-buttons { margin-top: 42px; display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  min-height: 56px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: .35s var(--ease);
}
.button span { transition: transform .3s var(--ease); }
.button:hover span { transform: translate(3px, -3px); }
.button-primary { color: #fff; background: var(--brand-orange); }
.button-primary:hover { background: var(--brand-orange-dark); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.04); }
.button-ghost:hover { color: var(--ink); background: #fff; }
.hero-side { align-self: flex-end; width: 270px; margin-bottom: 28px; border-left: 1px solid rgba(255,255,255,.3); padding-left: 30px; }
.hero-year { display: flex; flex-direction: column; }
.hero-year span { color: rgba(255,255,255,.5); font: 11px/1 Arial; letter-spacing: .2em; }
.hero-year b { margin-top: 5px; color: var(--brand-orange-light); font: 300 58px/1 Arial; }
.hero-keywords { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px; }
.hero-keywords span { padding: 8px 10px; border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.7); font-size: 11px; }
.scroll-cue { position: absolute; z-index: 2; left: 4.2vw; bottom: 30px; display: flex; align-items: center; gap: 12px; }
.scroll-cue span { position: relative; width: 42px; height: 1px; background: rgba(255,255,255,.4); overflow: hidden; }
.scroll-cue span::after { content: ""; position: absolute; inset: 0; background: #fff; transform: translateX(-100%); animation: scrollCue 2s infinite; }
@keyframes scrollCue { 50%,100% { transform: translateX(100%); } }
.scroll-cue small { font: 9px/1 Arial; letter-spacing: .17em; color: rgba(255,255,255,.55); }
.hero-count { position: absolute; z-index: 2; right: 4.2vw; bottom: 30px; font: 12px/1 Arial; letter-spacing: .16em; }
.hero-count span { color: var(--brand-orange-light); margin: 0 8px; }

.strength { overflow: hidden; background: var(--warm-white); }
.orbit { position: absolute; pointer-events: none; border: 1px solid rgba(228,108,10,.12); border-radius: 50%; }
.orbit::before, .orbit::after { content: ""; position: absolute; border: 1px solid rgba(228,108,10,.1); border-radius: inherit; }
.orbit-one { width: 550px; height: 550px; right: -200px; top: -180px; }
.orbit-one::before { inset: 42px; }.orbit-one::after { inset: 90px; }
.orbit-two { width: 330px; height: 330px; left: -200px; bottom: -160px; }
.section-heading { position: relative; z-index: 2; margin-bottom: clamp(55px, 6vw, 92px); display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; }
.section-heading h2 { margin: 0; font-size: clamp(42px, 4.3vw, 72px); line-height: 1.17; letter-spacing: -.045em; font-weight: 560; }
.section-heading > p { max-width: 560px; margin: 0 0 6px; color: var(--muted); font-size: 16px; line-height: 2; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(228,108,10,.25); }
.metric-card { display: block; position: relative; min-height: 330px; padding: 46px 30px 34px; border-right: 1px solid var(--line); transition: .4s var(--ease); overflow: hidden; }
.metric-card:focus-visible { outline: 3px solid var(--brand-orange-light); outline-offset: -3px; }
.metric-card:first-child { border-left: 1px solid var(--line); }
.metric-card::before { content: ""; position: absolute; inset: auto 0 0; height: 0; background: var(--brand-orange); transition: height .45s var(--ease); }
.metric-card:hover::before { height: 100%; }
.metric-card > * { position: relative; z-index: 1; }
.metric-kicker { color: #9b948f; font: 10px/1.5 Arial; letter-spacing: .15em; }
.metric-value { margin-top: 65px; display: flex; align-items: flex-start; color: var(--brand-orange); }
.metric-value b { font: 300 clamp(58px, 5vw, 82px)/.95 Arial; letter-spacing: -.05em; }
.metric-value i { margin: 2px 0 0 6px; font: 300 30px/1 Arial; font-style: normal; }
.metric-value.formula b { font-size: clamp(52px, 4.2vw, 70px); }
.metric-card p { position: absolute; left: 30px; right: 28px; bottom: 32px; margin: 0; color: #5f5c59; line-height: 1.7; font-size: 14px; }
.metric-card:hover .metric-kicker,
.metric-card:hover .metric-value,
.metric-card:hover p { color: #fff; }
.metric-dark { color: #fff; background: var(--ink); border-color: var(--ink); }
.metric-dark p, .metric-dark .metric-kicker { color: rgba(255,255,255,.62); }

.business { color: #fff; background: #141312; overflow: hidden; }
.business::before { content: ""; position: absolute; width: 680px; height: 680px; right: -250px; top: -260px; background: radial-gradient(circle, rgba(228,108,10,.2), transparent 67%); }
.business-noise { position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),linear-gradient(90deg,rgba(255,255,255,.3) 1px,transparent 1px); background-size: 120px 120px; mask-image: linear-gradient(90deg, transparent, #000); }
.section-heading-light h2 { color: #fff; }
.section-heading-light > p { color: rgba(255,255,255,.6); }
.business-stage { position: relative; display: grid; grid-template-columns: 25% 75%; min-height: 680px; border-top: 1px solid rgba(255,255,255,.16); }
.business-formula { position: absolute; left: 0; top: 35px; width: 25%; display: flex; align-items: baseline; gap: 5px; color: rgba(255,255,255,.2); }
.business-formula span { font: 300 clamp(62px, 5.8vw, 94px)/1 Arial; letter-spacing: -.08em; transition: .35s; }
.business-formula i { color: rgba(255,255,255,.18); font: 300 25px/1 Arial; font-style: normal; }
.business-formula span.active { color: var(--brand-orange); }
.business-tabs { padding: 190px 35px 0 0; display: flex; flex-direction: column; }
.business-tab { position: relative; min-height: 82px; padding: 0 12px; display: flex; align-items: center; gap: 20px; border: 0; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55); background: transparent; text-align: left; cursor: pointer; transition: .3s; }
.business-tab span { font: 10px/1 Arial; color: rgba(255,255,255,.3); }
.business-tab::after { content: "↗"; margin-left: auto; opacity: 0; transform: translate(-8px,8px); transition: .3s; }
.business-tab.active { color: #fff; padding-left: 20px; background: rgba(255,255,255,.05); }
.business-tab.active span { color: var(--brand-orange-light); }
.business-tab.active::after { opacity: 1; transform: none; }
.business-visual { position: relative; min-height: 680px; overflow: hidden; }
.business-panel { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: scale(1.04); transition: opacity .65s var(--ease), visibility .65s, transform 1s var(--ease); }
.business-panel.active { opacity: 1; visibility: visible; transform: scale(1); }
.business-panel img { width: 100%; height: 100%; object-fit: cover; }
.business-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,14,12,.9), rgba(18,15,13,.28) 65%, rgba(228,108,10,.16)); }
.business-panel-copy { position: absolute; left: 8%; top: 50%; width: min(570px, 74%); transform: translateY(-50%); }
.business-panel-copy > span { color: var(--brand-orange-light); font: 11px/1 Arial; letter-spacing: .18em; }
.business-panel-copy h3 { margin: 22px 0 32px; font-size: clamp(36px, 3.2vw, 56px); line-height: 1.25; font-weight: 500; letter-spacing: -.035em; }
.business-panel-copy ul { margin: 0 0 36px; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.business-panel-copy li { padding: 10px 14px; border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.82); font-size: 13px; }
.business-panel-copy a { display: inline-flex; gap: 28px; align-items: center; font-size: 14px; }
.business-panel-copy a b { color: var(--brand-orange-light); }

@media (min-width: 768px) {
  .business-panel[data-panel="operation"] .business-panel-copy { width: min(680px, 84%); }
  .business-panel[data-panel="operation"] .business-panel-copy h3 { white-space: nowrap; }
}

.cases {
  padding-bottom: clamp(36px, 3.4vw, 58px);
  background: linear-gradient(180deg, #fff 0%, #fff 72%, var(--warm-white) 100%);
  overflow: hidden;
}
.case-controls { display: flex; gap: 10px; justify-self: end; }
.round-control { width: 58px; height: 58px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: #fff; font-size: 22px; cursor: pointer; transition: .3s; }
.round-control:hover { color: #fff; background: var(--brand-orange); border-color: var(--brand-orange); }
.case-viewport { width: calc(100vw - max(4.25vw, calc((100vw - 1440px)/2))); margin-left: max(4.25vw, calc((100vw - 1440px)/2)); overflow: hidden; }
.case-track { display: flex; gap: 24px; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; padding-right: 5vw; }
.case-track::-webkit-scrollbar { display: none; }
.case-card { flex: 0 0 min(620px, 65vw); scroll-snap-align: start; border-bottom: 1px solid var(--line); }
.case-image { position: relative; height: clamp(300px, 32vw, 510px); overflow: hidden; background: #ddd; }
.case-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.case-card:hover .case-image img { transform: scale(1.05); }
.case-image > span { position: absolute; right: 0; top: 0; width: 62px; height: 62px; display: grid; place-items: center; color: #fff; background: var(--brand-orange); font: 12px/1 Arial; }
.case-copy { position: relative; min-height: 260px; padding: 30px 90px 30px 0; }
.case-copy small { color: var(--brand-orange); }
.case-copy h3 { margin: 12px 0; font-size: 30px; font-weight: 550; letter-spacing: -.025em; }
.case-copy p { max-width: 470px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.85; }
.case-copy a { position: absolute; right: 0; top: 38px; display: flex; gap: 18px; font-size: 13px; }
.case-copy a span { color: var(--brand-orange); }

.news {
  padding-top: clamp(52px, 4.4vw, 74px);
  background: var(--warm-white);
}
.news-tabs { display: flex; gap: 34px; align-self: end; justify-self: end; }
.news-tab { padding: 10px 0; border: 0; border-bottom: 2px solid transparent; color: #8a8580; background: transparent; cursor: pointer; transition: .3s; }
.news-tab.active { color: var(--brand-orange); border-color: var(--brand-orange); }
.news-panel { display: none; grid-template-columns: 1.45fr .75fr; gap: 65px; }
.news-panel.active { display: grid; animation: fadePanel .45s var(--ease); }
@keyframes fadePanel { from { opacity: 0; transform: translateY(12px); } }
.lead-story { display: grid; grid-template-columns: 1.05fr .95fr; background: #fff; }
.lead-image { position: relative; min-height: 450px; overflow: hidden; }
.lead-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.lead-story:hover .lead-image img { transform: scale(1.04); }
.lead-image > span { position: absolute; left: 22px; top: 22px; padding: 8px 10px; color: #fff; background: var(--brand-orange); font: 9px/1 Arial; letter-spacing: .14em; }
.lead-copy { padding: clamp(32px, 3vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.lead-copy time { color: var(--brand-orange); font: 12px/1 Arial; }
.lead-copy h3 { margin: 24px 0 18px; font-size: clamp(24px, 2vw, 35px); line-height: 1.45; font-weight: 540; letter-spacing: -.025em; }
.lead-copy p { color: var(--muted); font-size: 14px; line-height: 1.9; }
.lead-copy a { margin-top: 25px; display: inline-flex; gap: 24px; font-size: 13px; }
.lead-copy a span { color: var(--brand-orange); }
.story-list { border-top: 1px solid var(--line); }
.story-list article { min-height: 150px; display: grid; grid-template-columns: 75px 1fr 25px; gap: 16px; align-items: center; border-bottom: 1px solid var(--line); transition: .3s; }
.story-list article:hover { padding-left: 12px; background: #fff; }
.story-list time { color: #99928d; font: 11px/1.4 Arial; }
.story-list div span { color: var(--brand-orange); font-size: 11px; }
.story-list h4 { margin: 8px 0 0; font-size: 17px; line-height: 1.55; font-weight: 500; }
.story-list b { color: var(--brand-orange); font-weight: 400; }
.media-image button { position: absolute; left: 50%; top: 50%; z-index: 2; width: 72px; height: 72px; transform: translate(-50%,-50%); border: 1px solid rgba(255,255,255,.7); border-radius: 50%; color: #fff; background: rgba(0,0,0,.2); cursor: pointer; backdrop-filter: blur(6px); }

.partners { padding-bottom: 0; color: #fff; background: #171615; overflow: hidden; }
.partners::before { content: ""; position: absolute; left: -10%; top: -30%; width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(228,108,10,.13), transparent 67%); }
.partners-cta-only { padding-top: clamp(72px, 7vw, 110px); }
.partners-cta-only .contact-cta { margin-top: 0; }
.logo-marquee { position: relative; z-index: 2; overflow: hidden; border-top: 1px solid rgba(255,255,255,.1); }
.logo-marquee.reverse { border-bottom: 1px solid rgba(255,255,255,.1); }
.logo-track { width: max-content; display: flex; animation: marquee 30s linear infinite; }
.logo-marquee.reverse .logo-track { animation-direction: reverse; animation-duration: 36s; }
.logo-track span { width: 230px; height: 116px; display: grid; place-items: center; border-right: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.48); font: 600 18px/1 Arial, sans-serif; letter-spacing: .03em; transition: .3s; }
.logo-track span:hover { color: var(--brand-orange-light); background: rgba(255,255,255,.04); }
@keyframes marquee { to { transform: translateX(-50%); } }
.contact-cta { position: relative; z-index: 2; margin-top: 120px; padding: clamp(55px, 6vw, 90px); display: flex; align-items: end; justify-content: space-between; gap: 50px; color: #fff; background: linear-gradient(115deg, var(--brand-orange-deep), var(--brand-orange) 62%, var(--brand-orange-light)); overflow: hidden; }
.contact-cta::after { content: ""; position: absolute; width: 420px; height: 420px; right: -100px; top: -190px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.04),0 0 0 100px rgba(255,255,255,.03); }
.contact-cta > * { position: relative; z-index: 1; }
.contact-cta small { font: 10px/1 Arial; letter-spacing: .18em; }
.contact-cta h2 { margin: 18px 0 12px; font-size: clamp(36px, 4.2vw, 66px); line-height: 1.15; font-weight: 550; letter-spacing: -.04em; }
.contact-cta p { margin: 0; color: rgba(255,255,255,.75); }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.button-white { color: var(--brand-orange-dark); background: #fff; }
.button-white:hover { color: #fff; background: var(--ink); }
.button-outline-white { color: #fff; border-color: rgba(255,255,255,.6); background: transparent; }
.button-outline-white:hover { color: var(--brand-orange); background: #fff; }

.footer { padding-top: 100px; color: #fff; background: #0f0f0f; }
.footer-main { padding-bottom: 80px; display: grid; grid-template-columns: .8fr 1.25fr .72fr; gap: 80px; }
.footer .brand { color: #fff; }
.footer-brand p { margin: 36px 0 0; color: rgba(255,255,255,.45); font-size: 14px; line-height: 1.9; }
.footer-nav { display: grid; grid-template-columns: repeat(3,1fr); gap: 35px; }
.footer-nav h3 { margin: 0 0 28px; font-size: 15px; font-weight: 500; }
.footer-nav a, .footer-nav button { display: block; margin: 15px 0; padding: 0; border: 0; color: rgba(255,255,255,.45); background: none; font-size: 13px; cursor: pointer; transition: .2s; }
.footer-nav a:hover, .footer-nav button:hover { color: var(--brand-orange-light); }
.footer-contact { border-left: 1px solid rgba(255,255,255,.12); padding-left: 45px; }
.footer-contact small { color: rgba(255,255,255,.4); }
.footer-phone { display: block; margin: 14px 0 28px; color: var(--brand-orange-light); font: 300 31px/1 Arial; }
.footer-contact p, .footer-contact > a:last-child { color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.9; }
.footer-bottom { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.32); font-size: 12px; }
.footer-bottom div { display: flex; gap: 30px; }
.footer-bottom a:hover { color: #fff; }

.modal { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 30px; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.modal.open { opacity: 1; visibility: visible; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(9,7,5,.76); backdrop-filter: blur(8px); }
.modal-card { position: relative; width: min(1050px, 96vw); max-height: 90vh; display: grid; grid-template-columns: .8fr 1.2fr; overflow: auto; background: #fff; box-shadow: 0 35px 100px rgba(0,0,0,.4); transform: translateY(20px) scale(.98); transition: transform .4s var(--ease); }
.modal.open .modal-card { transform: none; }
.modal-close { position: absolute; right: 16px; top: 16px; z-index: 3; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: #fff; font-size: 26px; cursor: pointer; }
.modal-side { position: relative; min-height: 620px; padding: 70px 50px; color: #fff; background: linear-gradient(150deg, rgba(31,16,7,.62), rgba(152,58,0,.78)),url("./assets/case-exhibition.webp") center/cover; }
.modal-side h2 { margin: 30px 0; font-size: 45px; line-height: 1.25; font-weight: 520; }
.modal-side > p:not(.eyebrow) { color: rgba(255,255,255,.7); line-height: 1.9; }
.modal-contact-line { position: absolute; left: 50px; bottom: 50px; display: flex; flex-direction: column; gap: 10px; }
.modal-contact-line small { color: rgba(255,255,255,.5); }
.modal-contact-line b { color: var(--brand-orange-light); font: 300 25px/1 Arial; }
.modal-form-wrap { padding: 70px 60px 50px; }
.modal-form-wrap h2 { margin: 0 0 25px; font-size: 36px; font-weight: 550; }
fieldset { margin: 0 0 26px; padding: 0; border: 0; display: flex; gap: 10px; }
fieldset legend { width: 100%; margin-bottom: 12px; color: var(--muted); font-size: 12px; }
fieldset label { cursor: pointer; }
fieldset input { position: absolute; opacity: 0; }
fieldset label span { min-height: 44px; padding: 0 18px; display: inline-flex; align-items: center; border: 1px solid var(--line); color: #666; font-size: 13px; transition: .25s; }
fieldset input:checked + span { color: #fff; border-color: var(--brand-orange); background: var(--brand-orange); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.form-grid label { display: flex; flex-direction: column; gap: 9px; }
.form-grid label > span { color: var(--muted); font-size: 12px; }
.form-grid .full { grid-column: 1/-1; }
.form-grid input, .form-grid textarea { width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid var(--line); outline: 0; resize: vertical; background: transparent; transition: border .2s; }
.form-grid input:focus, .form-grid textarea:focus { border-color: var(--brand-orange); }
.privacy-note { margin: 18px 0; color: #999; font-size: 11px; line-height: 1.6; }
.form-system-note { margin: -8px 0 18px; padding: 11px 13px; border-left: 2px solid var(--brand-orange); color: #775540; background: var(--brand-orange-pale); font-size: 11px; line-height: 1.65; }
.form-system-note[data-status="error"] { color: #8b321d; background: #fff0ec; }
.submit-button { width: 100%; min-height: 54px; display: flex; align-items: center; justify-content: center; gap: 26px; border: 0; color: #fff; background: var(--brand-orange); cursor: pointer; transition: .3s; }
.submit-button:hover { background: var(--brand-orange-dark); }
.submit-button:disabled { cursor: wait; opacity: .68; }
.toast { position: fixed; left: 50%; bottom: 35px; z-index: 3000; padding: 14px 22px; color: #fff; background: #181818; opacity: 0; pointer-events: none; transform: translate(-50%,20px); transition: .3s; }
.toast.show { opacity: 1; transform: translate(-50%,0); }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1280px) {
  :root { --header-h: 82px; }
  .header-inner { width: 95vw; }
  .desktop-nav { gap: 18px; }
  .nav-link { font-size: 14px; }
  .consult-button { padding: 0 14px; }
  .site-header.scrolled, .site-header.menu-open { height: 72px; }
  .site-header.scrolled .dropdown, .site-header.menu-open .dropdown { top: 72px; }
  .news-panel { gap: 35px; }
  .lead-story { grid-template-columns: 1fr; }
  .lead-image { min-height: 340px; }
}

@media (max-width: 1050px) {
  :root { --header-h: 68px; --wrap: min(100% - 40px, 900px); }
  .desktop-nav, .consult-button { display: none; }
  .site-header { height: var(--header-h); }
  .site-header.scrolled, .site-header.menu-open { height: var(--header-h); }
  .header-inner { justify-content: space-between; width: calc(100% - 34px); }
  .brand { min-width: 0; }
  .brand-logo { width: 128px; height: 46px; }
  .header-actions { min-width: 0; }
  .mobile-toggle { width: 46px; height: 46px; display: flex; flex-direction: column; justify-content: center; align-items: flex-end; gap: 6px; border: 0; background: transparent; cursor: pointer; }
  .mobile-toggle span { width: 26px; height: 1px; background: currentColor; transition: .3s; }
  .mobile-toggle span:nth-child(2) { width: 18px; }
  .mobile-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
  .mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .mobile-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .mobile-drawer { position: fixed; z-index: 1200; top: 0; right: 0; width: min(430px, 92vw); height: 100svh; padding: 0 28px 30px; display: flex; flex-direction: column; color: var(--ink); background: #fff; transform: translateX(105%); transition: transform .45s var(--ease); overflow: auto; }
  .mobile-drawer.open { transform: none; }
  .drawer-scrim { position: fixed; inset: 0; z-index: 1100; display: block; opacity: 0; visibility: hidden; background: rgba(0,0,0,.56); transition: .3s; }
  .drawer-scrim.open { opacity: 1; visibility: visible; }
  .mobile-drawer-head { min-height: 78px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
  .mobile-drawer-head button { width: 42px; height: 42px; border: 0; background: transparent; font-size: 28px; cursor: pointer; }
  .mobile-drawer nav { padding-top: 16px; }
  .mobile-direct, .mobile-group > button { width: 100%; min-height: 60px; display: flex; align-items: center; justify-content: space-between; border: 0; border-bottom: 1px solid var(--line); background: transparent; font-size: 18px; text-align: left; cursor: pointer; }
  .mobile-group > button span { color: var(--brand-orange); font-size: 20px; transition: .25s; }
  .mobile-group.open > button { color: var(--brand-orange); }
  .mobile-group.open > button span { transform: rotate(45deg); }
  .mobile-submenu { max-height: 0; overflow: hidden; background: var(--warm-white); transition: max-height .35s var(--ease); }
  .mobile-group.open .mobile-submenu { max-height: 300px; }
  .mobile-submenu a { min-height: 48px; padding: 0 18px; display: flex; align-items: center; border-bottom: 1px solid rgba(24,24,24,.06); color: #666; font-size: 14px; }
  .mobile-consult { width: 100%; min-height: 54px; margin-top: 26px; border: 0; color: #fff; background: var(--brand-orange); }
  .mobile-contact { margin-top: auto; padding-top: 38px; display: flex; flex-direction: column; gap: 10px; }
  .mobile-contact small { color: #aaa; }
  .mobile-contact a { color: var(--brand-orange); font: 300 28px/1 Arial; }
  .hero-content { align-items: flex-end; padding-bottom: 150px; }
  .hero-side { display: none; }
  .hero-copy { max-width: 760px; }
  .hero h1 { font-size: clamp(58px, 10vw, 88px); }
  .section-heading { grid-template-columns: 1fr; gap: 30px; }
  .section-heading > p { max-width: 650px; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .business-stage { grid-template-columns: 1fr; }
  .business-formula { position: relative; top: auto; width: auto; margin-bottom: 22px; }
  .business-tabs { padding: 0; display: grid; grid-template-columns: repeat(3,1fr); }
  .business-tab { min-height: 66px; border-top: 1px solid rgba(255,255,255,.12); }
  .business-visual { min-height: 620px; }
  .news-panel { grid-template-columns: 1fr; }
  .story-list { display: grid; grid-template-columns: repeat(3,1fr); }
  .story-list article { min-height: 190px; padding: 22px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; border-right: 1px solid var(--line); }
  .story-list article:hover { padding-left: 22px; }
  .footer-main { grid-template-columns: 1fr 1.5fr; }
  .footer-contact { grid-column: 1/-1; border-left: 0; border-top: 1px solid rgba(255,255,255,.1); padding: 35px 0 0; }
}

@media (max-width: 767px) {
  :root { --wrap: calc(100% - 32px); }
  .section { padding: 88px 0; }
  .hero { min-height: 100svh; }
  .hero-image { background-position: 62% center; }
  .hero-liquid-ether { opacity: .62; }
  .hero-grid { background-size: 55px 55px; }
  .hero-content { padding: 120px 0 130px; align-items: center; }
  .hero h1 { font-size: clamp(48px, 15vw, 69px); line-height: 1.05; }
  .hero-summary { margin-top: 27px; font-size: 15px; line-height: 1.8; }
  .hero-buttons { margin-top: 30px; }
  .button { min-height: 52px; padding: 0 20px; gap: 24px; }
  .scroll-cue { left: 16px; bottom: 22px; }
  .hero-count { right: 16px; bottom: 22px; }
  .section-heading { margin-bottom: 48px; }
  .section-heading h2 { font-size: 39px; }
  .section-heading > p { font-size: 14px; line-height: 1.85; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .metric-card { min-height: 255px; padding: 28px 18px 25px; }
  .metric-card p { left: 18px; right: 18px; bottom: 22px; font-size: 12px; }
  .metric-value { margin-top: 45px; }
  .metric-value b { font-size: 52px; }
  .metric-value.formula b { font-size: 39px; }
  .business { padding-bottom: 92px; }
  .business-formula span { font-size: 62px; }
  .business-tabs { display: flex; overflow-x: auto; scrollbar-width: none; }
  .business-tab { min-width: 170px; padding: 0 16px; }
  .business-visual { min-height: 570px; }
  .business-panel-copy { left: 25px; right: 25px; width: auto; top: auto; bottom: 36px; transform: none; }
  .business-panel-copy h3 { margin: 18px 0 24px; font-size: 34px; }
  .business-panel-copy li { font-size: 11px; }
  .case-controls { justify-self: start; }
  .case-viewport { width: calc(100vw - 16px); margin-left: 16px; }
  .case-card { flex-basis: calc(100vw - 54px); }
  .case-image { height: 320px; }
  .case-copy { min-height: 270px; padding-right: 0; }
  .case-copy a { position: static; margin-top: 20px; }
  .news .section-heading { gap: 24px; }
  .news-tabs { justify-self: start; gap: 22px; overflow-x: auto; max-width: 100%; }
  .lead-story { display: block; }
  .lead-image { min-height: 290px; }
  .lead-copy { padding: 28px 22px 34px; }
  .story-list { grid-template-columns: 1fr; }
  .story-list article { min-height: 145px; padding: 20px 5px; display: grid; grid-template-columns: 70px 1fr 20px; align-items: center; border-right: 0; }
  .story-list article:hover { padding-left: 5px; }
  .logo-track span { width: 155px; height: 88px; font-size: 14px; }
  .contact-cta { width: 100%; margin-top: 80px; padding: 50px 20px; display: block; }
  .contact-cta h2 { font-size: 40px; }
  .cta-actions { margin-top: 35px; justify-content: flex-start; }
  .footer { padding-top: 75px; }
  .footer-main { grid-template-columns: 1fr; gap: 50px; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 25px; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { padding: 25px 0; display: block; line-height: 1.8; }
  .footer-bottom div { margin-top: 12px; gap: 18px; flex-wrap: wrap; }
  .modal { padding: 12px; }
  .modal-card { display: block; max-height: 94vh; }
  .modal-side { min-height: 280px; padding: 45px 28px; }
  .modal-side h2 { font-size: 34px; }
  .modal-contact-line { display: none; }
  .modal-form-wrap { padding: 38px 25px 30px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .liquid-ether-canvas { display: none; }
  .hero-liquid-ether::before {
    content: "";
    position: absolute;
    inset: -15%;
    background: radial-gradient(ellipse at 62% 45%, rgba(228,108,10,.24), transparent 34%);
    filter: blur(42px);
  }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 47px; }
  .hero-buttons { display: grid; grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metric-card { min-height: 220px; }
  .footer-nav { grid-template-columns: 1fr; }
  fieldset { flex-direction: column; }
  fieldset label span { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* 集团发展历程独立页面 */
.history-page { background: #fff8f1; }
.history-main { padding-top: 78px; background: #fff8f1; }
.history-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-bottom: clamp(72px, 7vw, 112px);
  background: linear-gradient(180deg, #fff 0%, #fffaf5 32%, #f9eee3 74%, #f0d6bf 100%);
}
.history-orb { position: absolute; z-index: -1; border-radius: 50%; pointer-events: none; filter: blur(10px); }
.history-orb-one { top: 34px; right: -8vw; width: 42vw; height: 42vw; background: radial-gradient(circle, rgba(228,108,10,.18), rgba(228,108,10,0) 67%); }
.history-orb-two { left: -18vw; bottom: -12vw; width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(230,182,35,.14), rgba(230,182,35,0) 69%); }
.history-heading { position: relative; z-index: 1; padding: clamp(72px, 7vw, 116px) 0 42px; }
.history-heading::after { content: "2013 — NOW"; position: absolute; right: 0; bottom: 30px; color: rgba(228,108,10,.08); font: 700 clamp(44px, 7vw, 110px)/1 Arial; letter-spacing: -.06em; pointer-events: none; }
.history-heading .eyebrow { margin: 0 0 20px; color: var(--brand-orange); }
.history-heading .eyebrow span { display: inline-block; width: 34px; height: 1px; margin-right: 12px; vertical-align: middle; background: currentColor; }
.history-heading h1 { position: relative; z-index: 1; margin: 0; font-size: clamp(48px, 5.2vw, 80px); line-height: 1.08; letter-spacing: -.045em; }
.history-heading > p:last-child { position: relative; z-index: 1; max-width: 760px; margin: 24px 0 0; color: var(--muted); font-size: 16px; line-height: 1.9; }
.history-guide { position: relative; z-index: 1; margin-bottom: 28px; display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 16px; color: var(--brand-orange); font: 700 11px/1 Arial; letter-spacing: .16em; }
.history-guide i { height: 1px; background: linear-gradient(90deg, rgba(228,108,10,.12), rgba(228,108,10,.62), rgba(228,108,10,.12)); }
.history-guide b { font-size: 12px; font-weight: 500; letter-spacing: .22em; white-space: nowrap; }
.history-timeline-wrap {
  position: relative;
  z-index: 1;
  width: min(1820px, 96vw);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(228,108,10,.18);
  border-radius: 18px;
  background: #f3eee9;
  box-shadow: 0 30px 90px rgba(111,54,14,.16);
}
.history-timeline-stage { position: relative; width: 100%; }
.history-timeline-stage::before,
.history-timeline-stage::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.history-timeline-stage::before { background: linear-gradient(180deg, rgba(255,249,243,.2), transparent 35%, rgba(121,45,0,.08)); }
.history-timeline-stage::after { background: linear-gradient(90deg, rgba(228,108,10,.08), transparent 28%, rgba(230,182,35,.06) 64%, rgba(228,108,10,.1)); mix-blend-mode: multiply; }
.history-timeline-stage > img { width: 100%; height: auto; object-fit: contain; filter: sepia(.12) saturate(.9) contrast(.98); }
.history-hotspot {
  --hotspot-size: 52px;
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 4;
  width: var(--hotspot-size);
  height: var(--hotspot-size);
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.history-hotspot::before { content: ""; position: absolute; inset: 4px; border: 1px solid rgba(228,108,10,.68); border-radius: 50%; background: rgba(255,255,255,.46); box-shadow: 0 0 0 8px rgba(228,108,10,.08), 0 8px 24px rgba(108,43,0,.22); animation: historyPulse 2.4s ease-out infinite; }
.history-hotspot span { position: absolute; inset: 50% auto auto 50%; width: 13px; height: 13px; border: 3px solid #fff; border-radius: 50%; background: var(--brand-orange); box-shadow: 0 0 0 2px var(--brand-orange); transform: translate(-50%, -50%); transition: transform .35s var(--ease), background .35s; }
.history-hotspot:hover span,
.history-hotspot:focus-visible span,
.history-hotspot.active span { background: var(--brand-orange-dark); transform: translate(-50%, -50%) scale(1.35); }
.history-hotspot:focus-visible { outline: 2px solid var(--brand-orange); outline-offset: 4px; }
.history-hotspot:nth-of-type(2)::before { animation-delay: .35s; }
.history-hotspot:nth-of-type(3)::before { animation-delay: .7s; }
.history-hotspot:nth-of-type(4)::before { animation-delay: 1.05s; }
.history-hotspot:nth-of-type(5)::before { animation-delay: 1.4s; }
@keyframes historyPulse { 0% { transform: scale(.78); opacity: .9; } 72%, 100% { transform: scale(1.34); opacity: 0; } }
.history-milestone-nav { position: relative; z-index: 1; margin-top: 30px; display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid rgba(228,108,10,.16); border-radius: 12px; overflow: hidden; background: rgba(255,255,255,.68); box-shadow: 0 18px 45px rgba(101,45,5,.08); backdrop-filter: blur(12px); }
.history-milestone-nav button { position: relative; min-height: 118px; padding: 24px 22px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 7px; border: 0; border-right: 1px solid rgba(228,108,10,.12); color: var(--ink); background: transparent; text-align: left; cursor: pointer; transition: color .35s, background .35s, transform .35s var(--ease); }
.history-milestone-nav button:last-child { border-right: 0; }
.history-milestone-nav button::before { content: ""; position: absolute; inset: 0 auto auto; width: 100%; height: 3px; background: var(--brand-orange); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.history-milestone-nav button:hover,
.history-milestone-nav button:focus-visible,
.history-milestone-nav button.active { color: var(--brand-orange-dark); background: rgba(255,241,228,.9); transform: translateY(-2px); }
.history-milestone-nav button:hover::before,
.history-milestone-nav button:focus-visible::before,
.history-milestone-nav button.active::before { transform: scaleX(1); }
.history-milestone-nav button small { color: var(--brand-orange); font: 700 11px/1 Arial; letter-spacing: .08em; }
.history-milestone-nav button b { font-size: 17px; }
.history-milestone-nav button span { position: absolute; right: 15px; bottom: 12px; color: rgba(228,108,10,.16); font: 700 30px/1 Arial; }
.history-view-actions { position: relative; z-index: 1; margin-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.history-view-hint { margin: 0; color: var(--muted); font-size: 12px; }
.history-view-actions > a { display: inline-flex; align-items: center; gap: 14px; color: var(--brand-orange-dark); font-size: 13px; }
.history-view-actions > a span { transition: transform .3s var(--ease); }
.history-view-actions > a:hover span { transform: translate(3px, -3px); }
.history-outro { position: relative; overflow: hidden; padding: clamp(82px, 8vw, 128px) 0; color: #fff; background: linear-gradient(118deg, #e46c0a 0%, #a63f00 48%, #4d1d08 79%, #14100d 100%); }
.history-outro::before { content: ""; position: absolute; inset: -80% -10% auto 42%; height: 180%; background: radial-gradient(circle, rgba(255,214,151,.28), transparent 58%); pointer-events: none; }
.history-outro-inner { position: relative; display: flex; align-items: flex-end; justify-content: space-between; gap: 70px; }
.history-outro .eyebrow { margin: 0 0 22px; }
.history-outro h2 { margin: 0; font-size: clamp(36px, 4.4vw, 66px); line-height: 1.18; letter-spacing: -.04em; }
.history-outro button { min-width: 220px; min-height: 64px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; border: 1px solid rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.08); cursor: pointer; transition: .35s var(--ease); }
.history-outro button:hover { color: var(--brand-orange-dark); background: #fff; transform: translateY(-3px); }
.history-detail { position: fixed; inset: 0; z-index: 1600; visibility: hidden; pointer-events: none; }
.history-detail.open { visibility: visible; pointer-events: auto; }
.history-detail-backdrop { position: absolute; inset: 0; opacity: 0; background: rgba(20,11,5,.64); backdrop-filter: blur(5px); transition: opacity .45s ease; }
.history-detail.open .history-detail-backdrop { opacity: 1; }
.history-detail-panel { position: absolute; inset: 0 auto 0 0; width: min(560px, 92vw); padding: clamp(95px, 9vw, 138px) clamp(32px, 4vw, 66px) 54px; overflow-y: auto; color: var(--ink); background: linear-gradient(145deg, #fffdf9, #fff2e4); box-shadow: 28px 0 90px rgba(18,7,0,.26); transform: translateX(-104%); transition: transform .62s var(--ease); }
.history-detail-panel::before { content: ""; position: absolute; inset: 0 0 auto; height: 7px; background: linear-gradient(90deg, var(--brand-orange-dark), var(--brand-orange), #e6b623); }
.history-detail.open .history-detail-panel { transform: translateX(0); }
.history-detail-close { position: absolute; top: 28px; right: 28px; width: 46px; height: 46px; border: 1px solid rgba(228,108,10,.25); border-radius: 50%; color: var(--brand-orange-dark); background: rgba(255,255,255,.72); font-size: 28px; cursor: pointer; transition: .3s; }
.history-detail-close:hover { color: #fff; background: var(--brand-orange); transform: rotate(90deg); }
.history-detail-topline { display: flex; align-items: center; gap: 14px; color: var(--brand-orange); font: 700 11px/1 Arial; letter-spacing: .12em; }
.history-detail-topline > span { font-size: 18px; }
.history-detail-topline i { width: 42px; height: 1px; background: currentColor; }
.history-detail-year { margin: 64px 0 15px; color: var(--brand-orange); font: 300 clamp(38px, 5vw, 62px)/1 Arial; letter-spacing: -.04em; }
.history-detail-panel h2 { margin: 0; font-size: clamp(42px, 5.2vw, 64px); line-height: 1.05; letter-spacing: -.05em; }
.history-detail-kicker { margin: 28px 0 0; color: var(--brand-orange-dark); font-size: 14px; font-weight: 700; letter-spacing: .08em; }
.history-detail-summary { margin: 16px 0 0; color: #514943; font-size: 16px; line-height: 1.9; }
.history-detail-points { margin: 32px 0 0; padding: 0; list-style: none; }
.history-detail-points li { position: relative; padding: 16px 0 16px 26px; border-top: 1px solid rgba(228,108,10,.14); color: #6a5d54; font-size: 14px; line-height: 1.7; }
.history-detail-points li::before { content: ""; position: absolute; left: 2px; top: 23px; width: 7px; height: 7px; border-radius: 50%; background: var(--brand-orange); box-shadow: 0 0 0 5px rgba(228,108,10,.1); }
.history-detail-progress { height: 3px; margin-top: 34px; overflow: hidden; background: rgba(228,108,10,.13); }
.history-detail-progress span { display: block; width: 20%; height: 100%; background: linear-gradient(90deg, var(--brand-orange), #e6b623); transition: width .55s var(--ease); }
.history-detail-cta { width: 100%; min-height: 58px; margin-top: 26px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; border: 0; color: #fff; background: var(--brand-orange); cursor: pointer; transition: background .3s, transform .3s; }
.history-detail-cta:hover { background: var(--brand-orange-dark); transform: translateY(-2px); }
.menu-card.current { border-color: rgba(228,108,10,.45); background: var(--brand-orange-pale); }
.footer-nav a[aria-current="page"], .mobile-submenu a[aria-current="page"] { color: var(--brand-orange-light); }

@media (max-width: 1050px) {
  .history-main { padding-top: 68px; }
  .history-heading::after { display: none; }
  .history-milestone-nav { grid-template-columns: repeat(3, 1fr); }
  .history-milestone-nav button { border-bottom: 1px solid rgba(228,108,10,.12); }
  .history-outro-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 767px) {
  .history-hero { padding-bottom: 72px; }
  .history-heading { padding: 54px 0 31px; }
  .history-heading h1 { font-size: 43px; }
  .history-heading > p:last-child { margin-top: 17px; font-size: 14px; }
  .history-guide { margin-bottom: 18px; gap: 9px; }
  .history-guide b { font-size: 10px; letter-spacing: .08em; }
  .history-timeline-wrap { width: calc(100% - 16px); margin-left: 16px; overflow-x: auto; border-radius: 14px 0 0 14px; overscroll-behavior-inline: contain; scrollbar-width: thin; scrollbar-color: var(--brand-orange) rgba(24,24,24,.08); }
  .history-timeline-stage { width: 1180px; max-width: none; }
  .history-timeline-stage > img { max-width: none; }
  .history-hotspot { --hotspot-size: 58px; }
  .history-milestone-nav { width: calc(100% - 16px); margin: 22px 0 0 16px; display: flex; overflow-x: auto; border-radius: 10px 0 0 10px; scrollbar-width: none; }
  .history-milestone-nav button { min-width: 168px; min-height: 104px; border-bottom: 0; }
  .history-view-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .history-view-hint { display: block; line-height: 1.7; }
  .history-outro { padding: 74px 0 78px; }
  .history-outro h2 { font-size: 38px; }
  .history-outro button { width: 100%; }
  .history-detail-panel { width: 92vw; padding: 96px 28px 40px; }
  .history-detail-year { margin-top: 46px; font-size: 42px; }
  .history-detail-panel h2 { font-size: 44px; }
  .history-detail-summary { font-size: 15px; }
}

/* 企业荣誉与资质独立页面 */
.honors-page { background: #f4dfcd; }
.honors-main { background: #fff5eb; }
.honors-hero {
  position: relative;
  isolation: isolate;
  min-height: max(820px, 100vh);
  overflow: hidden;
  padding: calc(var(--header-h) + clamp(54px, 6vw, 96px)) 0 clamp(70px, 7vw, 112px);
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 33%, rgba(228,108,10,.2), transparent 32%),
    linear-gradient(112deg, #fffdfb 0%, #fff7ef 31%, #fbdcc1 67%, #edaf78 100%);
  box-shadow: inset 0 -54px 100px rgba(126,54,5,.11);
}
.honors-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 45%;
  z-index: -2;
  background: radial-gradient(ellipse at 54% 0%, rgba(255,255,255,.98), rgba(255,250,244,.25) 58%, rgba(228,108,10,0) 76%);
  pointer-events: none;
}
.honors-hero::after {
  content: "";
  position: absolute;
  right: -7vw;
  bottom: -30%;
  width: 61vw;
  aspect-ratio: 1.8;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(228,108,10,.3), transparent 69%);
  filter: blur(24px);
  pointer-events: none;
}
.honors-hero-glow { position: absolute; z-index: -1; border-radius: 50%; pointer-events: none; filter: blur(2px); }
.honors-hero-glow-one { top: 9%; right: 4%; width: min(46vw, 720px); aspect-ratio: 1; border: 1px solid rgba(228,108,10,.18); box-shadow: inset 0 0 150px rgba(228,108,10,.12); animation: honorOrbit 20s linear infinite; }
.honors-hero-glow-two { left: -9%; bottom: -20%; width: min(26vw, 390px); aspect-ratio: 1; background: radial-gradient(circle, rgba(228,108,10,.12), transparent 70%); filter: blur(10px); }
@keyframes honorOrbit { to { transform: rotate(360deg); } }
.honors-hero-grid { display: grid; grid-template-columns: minmax(380px, .74fr) minmax(650px, 1.4fr); align-items: center; gap: clamp(42px, 4.6vw, 78px); }
.honors-hero-copy { position: relative; z-index: 3; }
.honors-hero-copy .eyebrow { margin: 0 0 28px; color: var(--brand-orange); }
.honors-hero-copy h1 { margin: 0; color: #211d1a; font-size: clamp(58px, 4.5vw, 82px); line-height: 1.03; letter-spacing: -.065em; }
.honors-hero-copy h1 > span { display: block; white-space: nowrap; }
.honors-hero-copy h1 .honors-title-sub { margin-top: 18px; font-size: .62em; line-height: 1.25; letter-spacing: -.045em; }
.honors-hero-copy h1 .honors-title-sub em { display: inline; color: var(--brand-orange); font-style: normal; white-space: normal; }
.honors-lead { max-width: 590px; margin: 32px 0 0; color: #5f5953; font-size: 16px; line-height: 1.95; }
.honors-metrics { margin-top: 46px; display: grid; grid-template-columns: repeat(4, 1fr); }
.honors-metrics > div { min-height: 94px; padding: 8px 15px 8px 0; display: flex; align-items: flex-start; flex-direction: column; gap: 11px; border-right: 1px solid rgba(228,108,10,.58); }
.honors-metrics > div:not(:first-child) { padding-left: 18px; }
.honors-metrics > div:last-child { border-right: 0; }
.honors-metrics b { color: var(--brand-orange); font: 500 clamp(32px, 2.5vw, 48px)/1 Arial; letter-spacing: -.055em; text-shadow: 0 8px 22px rgba(228,108,10,.14); }
.honors-metrics sup { font-size: .42em; vertical-align: top; }
.honors-metrics span { color: #5d554e; font-size: 12px; line-height: 1.5; white-space: nowrap; }
.honors-spotlight { position: relative; min-height: 570px; }
.honors-spotlight-frame { position: absolute; inset: 0 2% 0 15%; overflow: hidden; border: 1px solid rgba(255,255,255,.18); background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.015)); box-shadow: 0 45px 100px rgba(0,0,0,.32); backdrop-filter: blur(10px); transform: rotate(2.5deg); }
.honors-spotlight-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, transparent 38%, rgba(228,108,10,.26)); mix-blend-mode: screen; }
.honors-spotlight-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; filter: sepia(.08) saturate(.92) contrast(1.04); transition: transform 1.1s var(--ease); }
.honors-spotlight:hover .honors-spotlight-frame img { transform: scale(1.045); }
.honors-spotlight-ring { position: absolute; right: -86px; bottom: -76px; width: 230px; height: 230px; border: 1px solid rgba(255,175,96,.5); border-radius: 50%; box-shadow: 0 0 0 18px rgba(228,108,10,.08), 0 0 0 46px rgba(228,108,10,.04); }
.honors-spotlight-copy { position: absolute; left: 0; bottom: 38px; width: min(310px, 74%); padding: 27px 28px; background: #fff8f1; color: var(--ink); box-shadow: 0 25px 65px rgba(0,0,0,.26); }
.honors-spotlight-copy small { color: var(--brand-orange); font: 700 10px/1 Arial; letter-spacing: .16em; }
.honors-spotlight-copy strong { display: block; margin-top: 13px; font-size: 23px; line-height: 1.45; }
.honors-spotlight-copy p { margin: 13px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.honors-certificate-display { position: relative; min-height: 590px; perspective: 1500px; }
.honors-certificates-stage { position: absolute; inset: 0 -4% 54px 0; transform-style: preserve-3d; transform: rotateX(2deg) rotateZ(-1deg); }
.honors-certificates-stage::before { content: ""; position: absolute; inset: 2% 0 8% 7%; border: 1px solid rgba(255,205,153,.16); background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.012)); box-shadow: 0 42px 100px rgba(0,0,0,.25); backdrop-filter: blur(8px); }
.honors-certificate-halo { position: absolute; right: 2%; bottom: 8%; width: 64%; aspect-ratio: 1.5; border-radius: 50%; background: radial-gradient(ellipse, rgba(255,142,44,.34), rgba(228,108,10,.08) 43%, transparent 70%); filter: blur(10px); transform: rotate(-8deg); }
.honors-certificate-row { position: absolute; left: 3%; right: 0; display: flex; align-items: flex-end; justify-content: center; transform-style: preserve-3d; }
.honors-certificate-row-back { top: 6%; z-index: 1; padding-right: 3%; transform: translateZ(-35px) scale(.9); opacity: .8; }
.honors-certificate-row-front { top: 36%; z-index: 3; transform: translateZ(18px); }
.honors-certificate-sheet {
  --certificate-rotate: 0deg;
  --certificate-lift: 0px;
  --certificate-spread: 0px;
  position: relative;
  width: clamp(122px, 10.2vw, 164px);
  aspect-ratio: .715;
  margin: 0 clamp(-24px, -1.35vw, -14px);
  padding: 7px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(107,50,13,.25);
  background: #fffdf9;
  box-shadow: 0 20px 42px rgba(15,7,2,.34), 0 0 0 3px rgba(255,244,230,.55) inset;
  transform-origin: 50% 100%;
  transform: translateX(0) translateY(var(--certificate-lift)) rotate(var(--certificate-rotate));
  transition: transform .72s var(--ease), filter .55s, box-shadow .55s;
}
.honors-certificate-sheet::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(128deg, rgba(255,255,255,.52), transparent 30% 68%, rgba(228,108,10,.08)); mix-blend-mode: screen; }
.honors-certificate-sheet img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.honors-certificate-sheet:nth-child(1) { --certificate-rotate: -5.5deg; --certificate-lift: 17px; --certificate-spread: -25px; }
.honors-certificate-sheet:nth-child(2) { --certificate-rotate: -1.8deg; --certificate-lift: 2px; --certificate-spread: -8px; }
.honors-certificate-sheet:nth-child(3) { --certificate-rotate: 2deg; --certificate-lift: 7px; --certificate-spread: 9px; }
.honors-certificate-sheet:nth-child(4) { --certificate-rotate: 5.2deg; --certificate-lift: 19px; --certificate-spread: 25px; }
.honors-certificate-row-back .honors-certificate-sheet { width: clamp(112px, 9vw, 148px); filter: saturate(.74) brightness(.92); }
.honors-certificate-sheet-focus { z-index: 3; box-shadow: 0 28px 58px rgba(15,7,2,.4), 0 0 0 2px rgba(255,147,55,.32); }
.honors-certificate-sheet-landscape { width: clamp(180px, 15vw, 238px); aspect-ratio: 1.46; align-self: center; margin-inline: clamp(-34px, -2.1vw, -22px); }
.honors-certificate-display:hover .honors-certificate-sheet { transform: translateX(var(--certificate-spread)) translateY(calc(var(--certificate-lift) - 10px)) rotate(var(--certificate-rotate)); box-shadow: 0 30px 68px rgba(15,7,2,.4), 0 0 0 3px rgba(255,244,230,.68) inset; }
.honors-certificate-display:hover .honors-certificate-row-back .honors-certificate-sheet { filter: saturate(.9) brightness(.98); }
.honors-certificate-shelf { position: absolute; left: 5%; right: 1%; top: 77%; z-index: 2; height: 24px; border-radius: 3px; background: linear-gradient(180deg, #f8eee4 0 20%, #a94a08 23%, #692703 69%, #2b1206 100%); box-shadow: 0 26px 42px rgba(0,0,0,.42), 0 -1px rgba(255,255,255,.55); transform: rotateX(64deg) translateZ(-5px); }
.honors-certificate-copy { left: 0; bottom: 12px; z-index: 6; width: min(355px, 66%); border-left: 4px solid var(--brand-orange); }
.honors-showcase { position: relative; min-height: 646px; }
.honors-showcase-wall {
  position: absolute;
  inset: 0;
  padding: 46px 22px 30px;
  overflow: hidden;
  border: 1px solid rgba(119,91,67,.09);
  color: var(--ink);
  background:
    radial-gradient(ellipse at 52% 0%, rgba(255,255,255,.96), transparent 48%),
    radial-gradient(circle at 100% 44%, rgba(228,108,10,.28), transparent 42%),
    linear-gradient(145deg, #fffaf5 0%, #fce8d6 60%, #efbd91 100%);
  box-shadow:
    inset 22px 0 42px rgba(124,54,7,.07),
    inset 0 22px 38px rgba(116,50,6,.11),
    0 34px 82px rgba(126,54,5,.2),
    0 0 0 1px rgba(228,108,10,.16);
  transform: none;
  transition: transform .65s var(--ease), box-shadow .65s var(--ease);
}
.honors-showcase:hover .honors-showcase-wall { box-shadow: inset 22px 0 42px rgba(124,54,7,.07), inset 0 22px 38px rgba(116,50,6,.11), 0 43px 96px rgba(126,54,5,.26), 0 0 0 1px rgba(228,108,10,.2); transform: translateY(-3px); }
.honors-showcase-wall::before { content: ""; position: absolute; inset: 0 0 auto; height: 98px; pointer-events: none; background: linear-gradient(180deg, rgba(119,49,3,.16), rgba(228,108,10,.035) 58%, transparent); }
.honors-showcase-wall::after { content: ""; position: absolute; left: 7%; right: 7%; bottom: 0; height: 24px; border-radius: 50%; background: rgba(114,77,46,.08); filter: blur(12px); pointer-events: none; }
.honors-showcase-heading { position: relative; z-index: 2; height: 48px; display: flex; align-items: baseline; gap: 13px; color: var(--brand-orange); }
.honors-showcase-heading span { font: 700 9px/1 Arial; letter-spacing: .18em; }
.honors-showcase-heading b { font-size: 24px; letter-spacing: .04em; }
.honors-showcase-heading i { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(228,108,10,.58), transparent); }
.honors-showcase-row { position: relative; z-index: 2; height: 124px; margin: 0 3px 8px; padding: 0 16px 20px; display: flex; align-items: flex-end; justify-content: center; gap: 10px; }
.honors-showcase-row::before { content: ""; position: absolute; left: 2%; right: 2%; bottom: 0; z-index: 0; height: 58px; pointer-events: none; background: radial-gradient(ellipse at center bottom, rgba(255,150,48,.48), transparent 72%); filter: blur(8px); }
.honors-showcase-row figure { position: relative; z-index: 2; width: 69px; height: 91px; margin: 0; padding: 3px; overflow: hidden; flex: 0 0 auto; border: 4px solid #86420f; background: #fff; box-shadow: 0 10px 20px rgba(91,35,2,.27), 0 0 0 1px rgba(228,108,10,.18), inset 0 0 0 1px rgba(244,184,104,.72); transition: transform .4s var(--ease), box-shadow .4s; }
.honors-showcase-row figure:nth-child(odd),
.honors-showcase-row figure:nth-child(even) { transform: none; }
.honors-showcase-row figure:hover { z-index: 4; box-shadow: 0 17px 28px rgba(44,21,7,.3); transform: translateY(-8px) scale(1.06); }
.honors-showcase-row figure img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.honors-showcase-row-featured { height: 126px; padding-inline: 15px; gap: 10px; }
.honors-showcase-row-featured figure { width: 97px; height: 72px; border-width: 4px; }
.honors-showcase-row-featured figure img { object-fit: contain; }
.honors-showcase-row-featured .honors-showcase-award { width: 50px; height: 82px; padding: 0; border: 0; background: transparent; box-shadow: none; }
.honors-showcase-row-featured .honors-showcase-award img { object-fit: cover; object-position: center 35%; filter: saturate(.92) contrast(1.04); mix-blend-mode: multiply; }
.honors-showcase-row-packed { justify-content: space-between; gap: 0; padding-inline: 14px; }
.honors-showcase-row-packed figure { width: 67px; height: 91px; }
.honors-showcase-row-dense { height: 112px; justify-content: space-between; gap: 0; padding-inline: 14px; }
.honors-showcase-row-dense figure { width: 65px; height: 82px; }
.honors-showcase-row-software { height: 124px; justify-content: space-between; gap: 0; padding-inline: 9px; }
.honors-showcase-row-software figure { width: 58px; height: 86px; }
.honors-showcase-row-awards { height: 124px; gap: 15px; padding-inline: 54px; }
.honors-showcase-row-awards figure { width: 73px; height: 92px; }
.honors-showcase-row-awards .honors-showcase-award { width: 74px; height: 94px; padding: 0; border: 0; background: transparent; box-shadow: none; }
.honors-showcase-row-awards .honors-showcase-award img { object-fit: cover; object-position: center 34%; filter: saturate(.9) contrast(1.04); mix-blend-mode: multiply; }
.honors-showcase-shelf { position: absolute; left: 0; right: 0; bottom: 7px; z-index: 1; height: 14px; border-radius: 1px; background: linear-gradient(180deg, #fff7ed 0 20%, #f2b06f 24%, #c65a0b 67%, #743006 100%); box-shadow: 0 14px 20px rgba(95,36,2,.29), 0 9px 34px rgba(228,108,10,.52), 0 -4px 10px rgba(255,225,173,.98); }
.honors-showcase-shelf::before { content: ""; position: absolute; left: 2%; right: 2%; top: 7px; height: 21px; background: linear-gradient(180deg, rgba(255,164,66,.78), transparent); filter: blur(7px); }
.honors-showcase-shelf::after { content: ""; position: absolute; left: 4%; right: 4%; bottom: -13px; height: 15px; border-radius: 50%; background: rgba(67,43,26,.16); filter: blur(8px); }

.honors-wall-section { position: relative; overflow: hidden; padding: clamp(100px, 10vw, 170px) 0; background: linear-gradient(180deg, #fffaf5, #f8eee4); }
.honors-wall-section::before { content: ""; position: absolute; top: 0; left: 4vw; width: 1px; height: 100%; background: rgba(228,108,10,.13); box-shadow: calc(92vw - 1px) 0 rgba(228,108,10,.13); }
.honors-section-head { margin-bottom: 52px; display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.honors-section-head .eyebrow { margin: 0 0 18px; color: var(--brand-orange); }
.honors-section-head h2 { margin: 0; font-size: clamp(46px, 5vw, 76px); line-height: 1.08; letter-spacing: -.05em; }
.honors-section-head > div:first-child > p:last-child { margin: 18px 0 0; color: var(--muted); font-size: 14px; }
.honors-filters { max-width: 610px; display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 8px; }
.honors-filters button { min-height: 42px; padding: 0 18px; border: 1px solid rgba(30,19,11,.13); border-radius: 999px; color: #645a53; background: rgba(255,255,255,.58); font-size: 12px; cursor: pointer; transition: .3s var(--ease); }
.honors-filters button:hover,
.honors-filters button:focus-visible,
.honors-filters button.active { border-color: var(--brand-orange); color: #fff; background: var(--brand-orange); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(228,108,10,.19); }
.honors-wall { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-flow: dense; gap: 18px; perspective: 1600px; }
.honor-card {
  --card-rx: 0deg;
  --card-ry: 0deg;
  --shine-x: 50%;
  --shine-y: 50%;
  position: relative;
  grid-column: span 4;
  min-height: 570px;
  padding: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(37,24,15,.11);
  color: var(--ink);
  background: rgba(255,255,255,.82);
  text-align: left;
  box-shadow: 0 18px 45px rgba(78,40,10,.06);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: opacity .35s, box-shadow .45s var(--ease), border-color .35s, transform .18s ease;
}
.honor-card::before { content: ""; position: absolute; inset: 0; z-index: 3; opacity: 0; pointer-events: none; background: radial-gradient(circle at var(--shine-x) var(--shine-y), rgba(255,205,150,.44), transparent 29%); transition: opacity .25s; }
.honor-card::after { content: ""; position: absolute; inset: auto 0 0; height: 3px; background: linear-gradient(90deg, transparent, var(--brand-orange), #e6b623, transparent); transform: scaleX(0); transition: transform .45s var(--ease); }
.honor-card:hover,
.honor-card:focus-visible { border-color: rgba(228,108,10,.38); box-shadow: 0 34px 75px rgba(105,48,6,.17); outline: none; }
.honor-card:hover::before,
.honor-card:focus-visible::before { opacity: 1; }
.honor-card:hover::after,
.honor-card:focus-visible::after { transform: scaleX(1); }
.honor-card.tilting { transform: perspective(1100px) rotateX(var(--card-rx)) rotateY(var(--card-ry)) translateY(-7px); }
.honor-card.is-hidden { display: none; }
.honor-card-featured { grid-column: span 8; }
.honor-card-wide { grid-column: span 4; }
.honor-card[data-honor-category="award"] { grid-column: span 6; min-height: 520px; }
.honor-card-number { position: absolute; top: 24px; right: 26px; z-index: 4; color: rgba(228,108,10,.2); font: 300 34px/1 Arial; letter-spacing: -.05em; }
.honor-card-image { position: relative; height: 345px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: linear-gradient(145deg, #f2ebe4, #fff); transform: translateZ(18px); }
.honor-card-featured .honor-card-image { height: 365px; }
.honor-card-image::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(228,108,10,.11); pointer-events: none; }
.honor-card-image img { width: 100%; height: 100%; padding: 28px; object-fit: contain; filter: saturate(.88) contrast(1.02); transition: transform .75s var(--ease), filter .45s; }
.honor-card-image-landscape img { padding: 44px 26px; }
.honor-card:hover .honor-card-image img,
.honor-card:focus-visible .honor-card-image img { transform: scale(1.055); filter: saturate(1) contrast(1.04); }
.honor-card-copy { padding: 25px 8px 18px; display: flex; flex-direction: column; transform: translateZ(26px); }
.honor-card-copy small { color: var(--brand-orange); font: 700 10px/1.3 Arial; letter-spacing: .13em; }
.honor-card-copy b { margin-top: 12px; font-size: 24px; line-height: 1.35; }
.honor-card-copy em { margin-top: 10px; color: var(--muted); font-size: 13px; font-style: normal; line-height: 1.65; }
.honor-card-open { margin: auto 8px 5px; display: flex; align-items: center; justify-content: flex-end; color: var(--brand-orange-dark); font-size: 12px; transform: translateZ(30px); }
.honors-record-note { margin: 30px 0 0; color: #887b70; font-size: 11px; line-height: 1.7; text-align: right; }

.honors-capability { position: relative; overflow: hidden; padding: clamp(96px, 9vw, 148px) 0; color: #fff; background: linear-gradient(120deg, #1d110b, #522107 52%, #a44200 100%); }
.honors-capability::before { content: "SPACE O"; position: absolute; left: -2vw; bottom: -3vw; color: rgba(255,255,255,.035); font: 800 clamp(95px, 18vw, 290px)/.8 Arial; letter-spacing: -.08em; white-space: nowrap; }
.honors-capability-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 8vw, 130px); }
.honors-capability-title .eyebrow { margin: 0 0 23px; color: #ffad69; }
.honors-capability-title h2 { margin: 0; font-size: clamp(40px, 4.6vw, 70px); line-height: 1.2; letter-spacing: -.045em; }
.honors-capability-list { border-top: 1px solid rgba(255,255,255,.2); }
.honors-capability-list > div { position: relative; min-height: 128px; padding: 28px 0 28px 72px; display: grid; grid-template-columns: 180px 1fr; align-items: start; gap: 22px; border-bottom: 1px solid rgba(255,255,255,.16); }
.honors-capability-list span { position: absolute; left: 0; top: 30px; color: #ff8a2c; font: 700 11px/1 Arial; }
.honors-capability-list b { font-size: 20px; }
.honors-capability-list p { margin: 0; color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.8; }

.honor-viewer { position: fixed; inset: 0; z-index: 1650; visibility: hidden; pointer-events: none; }
.honor-viewer.open { visibility: visible; pointer-events: auto; }
.honor-viewer-backdrop { position: absolute; inset: 0; opacity: 0; background: rgba(17,9,4,.82); backdrop-filter: blur(10px); transition: opacity .45s; }
.honor-viewer.open .honor-viewer-backdrop { opacity: 1; }
.honor-viewer-panel { position: absolute; inset: 50% auto auto 50%; width: min(1180px, 92vw); height: min(760px, 88vh); overflow: hidden; display: grid; grid-template-columns: 1.08fr .92fr; color: var(--ink); background: #fff8f1; box-shadow: 0 45px 130px rgba(0,0,0,.5); opacity: 0; transform: translate(-50%, -46%) scale(.95); transition: opacity .42s, transform .55s var(--ease); }
.honor-viewer.open .honor-viewer-panel { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.honor-viewer-close { position: absolute; top: 20px; right: 20px; z-index: 5; width: 46px; height: 46px; border: 1px solid rgba(228,108,10,.22); border-radius: 50%; color: var(--brand-orange-dark); background: rgba(255,255,255,.9); font-size: 28px; line-height: 1; cursor: pointer; transition: .3s; }
.honor-viewer-close:hover { color: #fff; background: var(--brand-orange); transform: rotate(90deg); }
.honor-viewer-visual { position: relative; min-height: 0; padding: 48px 45px 78px; display: flex; align-items: center; justify-content: center; background: linear-gradient(145deg, #21150e, #5b2508); }
.honor-viewer-visual::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 46px 46px; }
.honor-viewer-image-wrap { position: relative; z-index: 1; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.honor-viewer-image-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.honor-viewer-visual > a { position: absolute; left: 45px; bottom: 27px; z-index: 2; display: inline-flex; gap: 12px; color: rgba(255,255,255,.72); font-size: 12px; }
.honor-viewer-copy { padding: clamp(74px, 7vw, 104px) clamp(38px, 4.5vw, 70px) 55px; overflow-y: auto; }
.honor-viewer-topline { display: flex; align-items: center; gap: 14px; color: var(--brand-orange); font: 700 11px/1 Arial; letter-spacing: .12em; }
.honor-viewer-topline > span { font-size: 18px; }
.honor-viewer-topline i { width: 38px; height: 1px; background: currentColor; }
.honor-viewer-kicker { margin: 54px 0 12px; color: var(--brand-orange); font: 700 11px/1 Arial; letter-spacing: .14em; }
.honor-viewer-copy h2 { margin: 0; font-size: clamp(38px, 4vw, 58px); line-height: 1.13; letter-spacing: -.05em; }
.honor-viewer-summary { margin: 22px 0 0; color: #655b54; font-size: 14px; line-height: 1.85; }
.honor-viewer-facts { margin: 31px 0 0; border-top: 1px solid rgba(228,108,10,.16); }
.honor-viewer-facts > div { padding: 13px 0; display: grid; grid-template-columns: 116px 1fr; gap: 16px; border-bottom: 1px solid rgba(228,108,10,.12); }
.honor-viewer-facts dt { color: #988b81; font-size: 11px; }
.honor-viewer-facts dd { margin: 0; font-size: 12px; line-height: 1.6; }
.honor-viewer-copy ul { margin: 25px 0 0; padding: 0; list-style: none; }
.honor-viewer-copy li { position: relative; padding: 8px 0 8px 19px; color: #685d55; font-size: 12px; line-height: 1.65; }
.honor-viewer-copy li::before { content: ""; position: absolute; left: 1px; top: 15px; width: 5px; height: 5px; border-radius: 50%; background: var(--brand-orange); box-shadow: 0 0 0 4px rgba(228,108,10,.1); }
.honor-viewer-copy > button { width: 100%; min-height: 56px; margin-top: 27px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; border: 0; color: #fff; background: var(--brand-orange); cursor: pointer; transition: .3s; }
.honor-viewer-copy > button:hover { background: var(--brand-orange-dark); transform: translateY(-2px); }

@media (max-width: 1120px) {
  .honors-hero { min-height: auto; }
  .honors-hero-grid { grid-template-columns: 1fr; gap: 58px; }
  .honors-hero-copy { max-width: 760px; }
  .honors-metrics { grid-template-columns: repeat(2, 1fr); }
  .honors-metrics > div:nth-child(2) { border-right: 0; }
  .honors-metrics > div:nth-child(-n+2) { border-bottom: 1px solid rgba(228,108,10,.18); }
  .honors-spotlight { min-height: 520px; }
  .honors-certificate-display { width: min(760px, 100%); min-height: 570px; margin-inline: auto; }
  .honors-showcase { width: min(790px, 100%); min-height: 620px; margin-inline: auto; }
  .honor-card { grid-column: span 6; }
  .honor-card-featured { grid-column: span 12; }
  .honor-card[data-honor-category="award"] { grid-column: span 6; }
  .honors-capability-grid { grid-template-columns: 1fr; }
  .honor-viewer-panel { grid-template-columns: .92fr 1.08fr; }
}

@media (max-width: 767px) {
  .honors-hero { padding: 126px 0 72px; }
  .honors-hero::before { height: 34%; }
  .honors-hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .honors-hero-copy h1 { font-size: clamp(40px, 12vw, 52px); }
  .honors-hero-copy h1 .honors-title-sub { margin-top: 13px; font-size: .56em; white-space: normal; }
  .honors-lead { margin-top: 22px; font-size: 14px; line-height: 1.85; }
  .honors-metrics { margin-top: 37px; }
  .honors-metrics > div { min-height: 97px; padding: 16px 12px 16px 0; }
  .honors-metrics > div:not(:first-child) { padding-left: 15px; }
  .honors-metrics b { font-size: 34px; }
  .honors-metrics span { white-space: normal; }
  .honors-spotlight { min-height: 455px; }
  .honors-spotlight-frame { inset: 0 0 0 9%; }
  .honors-spotlight-copy { left: 0; bottom: 24px; width: 77%; padding: 22px; }
  .honors-spotlight-copy strong { font-size: 20px; }
  .honors-certificate-display { min-height: 455px; }
  .honors-certificates-stage { inset: 0 -15% 42px -15%; transform: rotateX(2deg) scale(.9); }
  .honors-certificate-row-back { top: 4%; }
  .honors-certificate-row-front { top: 35%; }
  .honors-certificate-sheet { width: 116px; margin-inline: -17px; padding: 5px; }
  .honors-certificate-row-back .honors-certificate-sheet { width: 102px; }
  .honors-certificate-sheet-landscape { width: 165px; margin-inline: -27px; }
  .honors-certificate-shelf { top: 75%; }
  .honors-certificate-copy { bottom: 0; width: 84%; padding: 21px 22px; }
  .honors-showcase { min-height: 510px; }
  .honors-showcase-wall { padding: 30px 10px 18px; transform: none; }
  .honors-showcase:hover .honors-showcase-wall { transform: translateY(-3px); }
  .honors-showcase-heading { height: 39px; padding-inline: 6px; }
  .honors-showcase-heading b { font-size: 20px; }
  .honors-showcase-row { height: 96px; margin-inline: 0; padding: 0 3px 16px; gap: 3px; }
  .honors-showcase-row figure { width: 33px; height: 51px; padding: 1px; border-width: 2px; }
  .honors-showcase-row-featured { height: 98px; padding-inline: 2px; gap: 4px; }
  .honors-showcase-row-featured figure { width: 51px; height: 42px; border-width: 3px; }
  .honors-showcase-row-featured .honors-showcase-award { width: 26px; height: 53px; }
  .honors-showcase-row-packed { padding-inline: 2px; }
  .honors-showcase-row-packed figure { width: 31px; height: 49px; }
  .honors-showcase-row-dense { height: 84px; padding-inline: 2px; gap: 0; }
  .honors-showcase-row-dense figure { width: 31px; height: 46px; }
  .honors-showcase-row-software { height: 98px; padding-inline: 1px; gap: 0; }
  .honors-showcase-row-software figure { width: 28px; height: 43px; }
  .honors-showcase-row-awards { height: 101px; padding-inline: 24px; gap: 8px; }
  .honors-showcase-row-awards figure { width: 49px; height: 66px; }
  .honors-showcase-row-awards .honors-showcase-award { width: 48px; height: 67px; }
  .honors-showcase-shelf { height: 10px; }
  .honors-wall-section { padding: 84px 0 92px; }
  .honors-section-head { margin-bottom: 34px; align-items: flex-start; flex-direction: column; gap: 30px; }
  .honors-section-head h2 { font-size: 45px; }
  .honors-filters { justify-content: flex-start; gap: 7px; }
  .honors-filters button { min-height: 38px; padding: 0 14px; }
  .honors-wall { grid-template-columns: 1fr; gap: 14px; }
  .honor-card,
  .honor-card-featured,
  .honor-card-wide,
  .honor-card[data-honor-category="award"] { grid-column: auto; min-height: 520px; }
  .honor-card-image,
  .honor-card-featured .honor-card-image { height: 315px; }
  .honors-record-note { text-align: left; }
  .honors-capability { padding: 80px 0 88px; }
  .honors-capability-grid { gap: 50px; }
  .honors-capability-title h2 { font-size: 40px; }
  .honors-capability-list > div { padding-left: 44px; grid-template-columns: 1fr; gap: 12px; }
  .honor-viewer-panel { width: 94vw; height: 92vh; display: block; overflow-y: auto; }
  .honor-viewer-visual { height: 48vh; min-height: 360px; padding: 66px 24px 62px; }
  .honor-viewer-visual > a { left: 24px; bottom: 22px; }
  .honor-viewer-copy { overflow: visible; padding: 48px 27px 42px; }
  .honor-viewer-kicker { margin-top: 38px; }
  .honor-viewer-copy h2 { font-size: 40px; }
  .honor-viewer-close { position: fixed; top: calc(4vh + 14px); right: calc(3vw + 14px); }
}

@media (prefers-reduced-motion: reduce) {
  .honors-hero-glow,
  .honor-card,
  .honor-card-image img { animation: none; transition: none; }
  .honor-card.tilting { transform: none; }
}

/* China Space Science Center / WU QIONG */
.space-center-main {
  --space-black: #090d12;
  --space-panel: #10161e;
  --space-silver: #aebac3;
  --space-cream: #f4f1ec;
  padding-top: 78px;
  background: var(--space-cream);
}
.space-center-main section { position: relative; }
.space-center-main .eyebrow { letter-spacing: .16em; }
.space-center-main .eyebrow span { background: currentColor; }

.space-center-hero {
  min-height: max(720px, calc(100svh - 78px));
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--space-black);
  isolation: isolate;
}
.space-center-hero-media,
.space-center-hero-overlay { position: absolute; inset: 0; }
.space-center-hero-media { z-index: -4; }
.space-center-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% 53%;
  filter: saturate(.86) contrast(1.08) brightness(.78);
  transform: scale(1.025);
  animation: spaceCenterHeroReveal 1.8s var(--ease) both;
}
.space-center-hero-overlay {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5,8,12,.98) 0%, rgba(6,9,13,.9) 31%, rgba(6,10,15,.45) 58%, rgba(7,10,14,.34) 100%),
    linear-gradient(180deg, rgba(8,11,16,.32), transparent 42%, rgba(5,7,10,.85) 100%);
}
.space-center-hero::before {
  content: "01";
  position: absolute;
  left: clamp(20px, 5vw, 90px);
  top: clamp(24px, 6vw, 80px);
  z-index: -2;
  color: rgba(255,255,255,.025);
  font: 700 clamp(190px, 28vw, 460px)/.72 Arial, sans-serif;
  letter-spacing: -.1em;
}
.space-center-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .15;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: clamp(72px, 8.35vw, 160px) clamp(72px, 8.35vw, 160px);
  mask-image: linear-gradient(90deg, #000, transparent 60%);
}
.space-center-hero-content {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  margin: 0 auto;
  padding: clamp(86px, 9vw, 150px) 0 clamp(150px, 15vw, 220px);
}
.space-center-hero-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  letter-spacing: .12em;
}
.space-center-hero-brand::before { content: ""; width: 36px; height: 1px; background: var(--brand-orange-light); }
.space-center-hero-brand span { color: var(--brand-orange-light); font: 700 11px/1 Arial, sans-serif; }
.space-center-hero-brand b { font-weight: 500; }
.space-center-hero-kicker { margin: 34px 0 18px !important; color: rgba(255,255,255,.78) !important; font: 700 12px/1 Arial, sans-serif !important; letter-spacing: .2em; }
.space-center-hero-content h1 {
  max-width: 810px;
  margin: 0;
  font-size: clamp(58px, 6.5vw, 112px);
  line-height: .98;
  letter-spacing: -.075em;
  text-wrap: balance;
}
.space-center-hero-lead {
  max-width: 640px;
  margin: 31px 0 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.9;
}
.space-center-hero-actions {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.space-center-hero-actions a,
.space-center-hero-actions button {
  min-width: 188px;
  min-height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(255,255,255,.36);
  color: #fff;
  background: rgba(8,11,16,.4);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.space-center-hero-actions a:first-child,
.space-center-hero-actions .primary { border-color: var(--brand-orange); background: var(--brand-orange); }
.space-center-hero-actions a:hover,
.space-center-hero-actions button:hover { transform: translateY(-3px); border-color: var(--brand-orange-light); background: var(--brand-orange-dark); }
.space-center-hero-orbit,
.space-center-hero .hero-orbit {
  position: absolute;
  right: -8vw;
  bottom: -37vw;
  width: min(790px, 55vw);
  aspect-ratio: 1;
  border: 1px solid rgba(228,108,10,.42);
  border-radius: 50%;
  transform: rotate(-19deg) scaleY(.48);
  box-shadow: 0 0 60px rgba(228,108,10,.08);
}
.space-center-hero-orbit::before,
.space-center-hero .hero-orbit::before {
  content: "";
  position: absolute;
  left: 17%;
  top: -6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brand-orange-light);
  box-shadow: 0 0 24px var(--brand-orange);
}
.space-center-hero-nav {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  width: var(--wrap);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.22);
}
.space-center-hero-nav a {
  min-height: 88px;
  padding: 0 clamp(15px, 2vw, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-right: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.74);
  font-size: 14px;
  transition: color .3s, background .3s;
}
.space-center-hero-nav a:last-child { border-right: 0; }
.space-center-hero-nav a::after { content: "↘"; color: var(--brand-orange-light); transition: transform .3s var(--ease); }
.space-center-hero-nav a:hover { color: #fff; background: rgba(255,255,255,.07); }
.space-center-hero-nav a:hover::after { transform: translate(3px, 3px); }

.space-center-connections {
  padding: clamp(100px, 9vw, 164px) 0;
  overflow: hidden;
  background: var(--space-cream);
}
.space-center-connections::before {
  content: "INFINITY";
  position: absolute;
  right: -1vw;
  top: -2vw;
  color: rgba(228,108,10,.04);
  font: 700 clamp(90px, 16vw, 300px)/1 Arial, sans-serif;
  letter-spacing: -.07em;
}
.space-center-connections-grid {
  position: relative;
  z-index: 1;
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .76fr) minmax(640px, 1.55fr);
  gap: clamp(64px, 8vw, 150px);
}
.space-center-connection-intro h2 {
  margin: 25px 0 0;
  font-size: clamp(50px, 5.1vw, 82px);
  line-height: 1.02;
  letter-spacing: -.07em;
}
.space-center-connection-intro > p:not(.eyebrow) {
  margin: 31px 0 0;
  color: #6e6b68;
  line-height: 1.9;
}
.space-center-connection-intro img {
  width: min(330px, 86%);
  margin-top: 48px;
  opacity: .88;
  filter: saturate(.82) contrast(1.06);
}
.space-center-section-index {
  display: block;
  margin-top: 24px;
  color: rgba(228,108,10,.14);
  font: 700 clamp(64px, 8vw, 128px)/.8 Arial, sans-serif;
  letter-spacing: -.08em;
}
.space-center-brand-art { max-width: 340px; margin-top: 45px; overflow: hidden; background: #07121a; }
.space-center-brand-art img { width: 100%; margin: 0; opacity: .92; }
.space-center-connection-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(18,20,22,.18);
  border-left: 1px solid rgba(18,20,22,.18);
}
.space-center-connection-item {
  min-height: 278px;
  padding: clamp(30px, 3vw, 48px);
  border-right: 1px solid rgba(18,20,22,.18);
  border-bottom: 1px solid rgba(18,20,22,.18);
  transition: color .35s, background .35s, transform .35s var(--ease);
}
.space-center-connection-item:hover { color: #fff; background: var(--brand-orange); transform: translateY(-6px); }
.space-center-connection-item > span {
  display: block;
  color: rgba(228,108,10,.22);
  font: 700 35px/1 Arial, sans-serif;
}
.space-center-connection-item small {
  color: var(--brand-orange);
  font: 700 12px/1 Arial, sans-serif;
  letter-spacing: .12em;
}
.space-center-connection-item:hover small,
.space-center-connection-item:hover > span { color: #fff; }
.space-center-connection-item > div { margin-top: 44px; }
.space-center-connection-item h3 { margin: 13px 0 0; font-size: clamp(22px, 2vw, 30px); letter-spacing: -.04em; }
.space-center-connection-item p { margin: 16px 0 0; color: #77736f; font-size: 14px; line-height: 1.8; }
.space-center-connection-item:hover p { color: rgba(255,255,255,.8); }

.space-center-mission {
  padding: clamp(100px, 8vw, 150px) 0;
  color: #fff;
  background: var(--space-black);
  overflow: hidden;
}
.space-center-mission::before {
  content: "MISSION";
  position: absolute;
  left: 2vw;
  top: 2vw;
  color: rgba(255,255,255,.025);
  font: 700 clamp(100px, 17vw, 300px)/1 Arial, sans-serif;
  letter-spacing: -.08em;
}
.space-center-mission-head {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  margin: 0 auto clamp(54px, 6vw, 92px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.space-center-mission-head h2 {
  max-width: 840px;
  margin: 22px 0 0;
  font-size: clamp(48px, 5vw, 82px);
  line-height: 1.08;
  letter-spacing: -.065em;
}
.space-center-mission-head > p { max-width: 390px; margin: 0; color: rgba(255,255,255,.55); line-height: 1.85; }
.space-center-experience-shell {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  min-height: 670px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(230px, .3fr) minmax(0, 1fr);
  border: 1px solid rgba(255,255,255,.13);
  background: #0d1218;
}
.space-center-experience-tabs {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,.13);
}
.space-center-experience-tabs button {
  flex: 1;
  min-height: 108px;
  padding: 24px clamp(20px, 2.3vw, 38px);
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 14px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.45);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color .3s, background .3s, padding .35s var(--ease);
}
.space-center-experience-tabs button:last-child { border-bottom: 0; }
.space-center-experience-tabs button span { color: var(--brand-orange-light); font: 700 12px/1 Arial, sans-serif; }
.space-center-experience-tabs button b { font-size: 15px; font-weight: 500; }
.space-center-experience-tabs button small { grid-column: 2; margin-top: -24px; color: rgba(255,255,255,.35); font-size: 10px; }
.space-center-experience-tabs button.active small { color: rgba(255,255,255,.62); }
.space-center-experience-tabs button:hover,
.space-center-experience-tabs button.active { padding-left: clamp(26px, 3vw, 48px); color: #fff; background: linear-gradient(90deg, rgba(228,108,10,.2), rgba(228,108,10,.02)); }
.space-center-experience-tabs button.active { box-shadow: inset 3px 0 var(--brand-orange); }
.space-center-experience-stage { position: relative; min-width: 0; min-height: 670px; overflow: hidden; }
.space-center-experience-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.025);
  transition: opacity .55s, visibility .55s, transform .8s var(--ease);
}
.space-center-experience-panel.active { opacity: 1; visibility: visible; pointer-events: auto; transform: scale(1); }
.space-center-experience-media { position: absolute; inset: 0; }
.space-center-experience-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,8,12,.18), transparent 43%), linear-gradient(180deg, transparent 34%, rgba(5,8,12,.94));
}
.space-center-experience-media img { width: 100%; height: 100%; object-fit: cover; }
.space-center-experience-copy {
  position: absolute;
  left: clamp(30px, 4vw, 70px);
  right: clamp(30px, 4vw, 70px);
  bottom: clamp(35px, 4vw, 66px);
  z-index: 2;
  max-width: 610px;
}
.space-center-experience-copy > p { margin: 0; color: var(--brand-orange-light); font: 700 11px/1 Arial, sans-serif; letter-spacing: .16em; }
.space-center-experience-copy h3 { margin: 15px 0 0; font-size: clamp(37px, 4vw, 66px); line-height: 1.05; letter-spacing: -.055em; }
.space-center-experience-copy > span { display: block; margin: 17px 0 0; color: rgba(255,255,255,.68); line-height: 1.8; }
.space-center-mission-card {
  position: absolute;
  right: clamp(26px, 3vw, 52px);
  top: clamp(26px, 3vw, 52px);
  z-index: 3;
  width: min(310px, 37%);
  padding: 26px 28px;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(5,8,12,.72);
  backdrop-filter: blur(16px);
}
.space-center-mission-card > small { color: rgba(255,255,255,.65); }
.space-center-mission-card > b { display: block; margin: 20px 0 0; font-size: 22px; }
.space-center-mission-card ol { margin: 25px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.space-center-mission-card li { padding: 17px 8px 0 0; color: rgba(255,255,255,.58); font-size: 10px; counter-increment: mission-step; }
.space-center-mission-card ol { counter-reset: mission-step; }
.space-center-mission-card li::before { content: "0" counter(mission-step); display: block; margin-bottom: 8px; color: var(--brand-orange-light); font: 700 14px/1 Arial, sans-serif; }

.space-center-exhibits {
  padding: clamp(100px, 9vw, 160px) 0;
  overflow: hidden;
  background: #f8f6f2;
}
.space-center-exhibits > .wrap,
.space-center-exhibits .space-center-section-head { width: var(--wrap); margin-inline: auto; }
.space-center-section-head {
  margin-bottom: clamp(46px, 5vw, 76px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
}
.space-center-section-head h2 {
  margin: 21px 0 0;
  font-size: clamp(48px, 5vw, 82px);
  line-height: 1.07;
  letter-spacing: -.065em;
}
.space-center-section-head > p { max-width: 390px; margin: 0; color: #74716e; line-height: 1.8; }
.space-center-exhibit-track {
  width: min(1680px, 95vw);
  margin: 0 auto;
  padding: 8px max(2vw, calc((95vw - var(--wrap)) / 2)) 38px;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-orange) rgba(24,24,24,.1);
}
.space-center-exhibit-card {
  position: relative;
  flex: 0 0 min(430px, 76vw);
  height: 570px;
  overflow: hidden;
  scroll-snap-align: start;
  color: #fff;
  background: #111820;
}
.space-center-exhibit-card:first-child { flex-basis: min(610px, 86vw); }
.space-center-exhibit-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s; }
.space-center-exhibit-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(5,8,11,.92)); }
.space-center-exhibit-card:hover img { transform: scale(1.055); filter: saturate(1.08); }
.space-center-exhibit-card figure { position: absolute; inset: 0; margin: 0; }
.space-center-exhibit-card > span,
.space-center-exhibit-card > h3,
.space-center-exhibit-card > p { position: absolute; left: clamp(26px, 3vw, 42px); right: clamp(26px, 3vw, 42px); z-index: 2; }
.space-center-exhibit-card > span { bottom: 140px; color: var(--brand-orange-light); font: 700 11px/1 Arial, sans-serif; letter-spacing: .14em; }
.space-center-exhibit-card h3 { bottom: 84px; margin: 0; font-size: clamp(25px, 2.3vw, 37px); letter-spacing: -.04em; }
.space-center-exhibit-card p { bottom: 28px; max-width: 430px; margin: 0; color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.7; }

.space-center-education { padding: clamp(100px, 8vw, 150px) 0; background: #fff; }
.space-center-education-grid {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr);
  align-items: stretch;
  box-shadow: 0 35px 100px rgba(21,26,31,.11);
}
.space-center-education-media { position: relative; min-height: 650px; overflow: hidden; background: #0b1016; }
.space-center-education-media figure { position: absolute; margin: 0; overflow: hidden; }
.space-center-education-media figure:first-child { inset: 0 17% 0 0; }
.space-center-education-media figure:nth-child(2) { right: 0; bottom: 0; z-index: 2; width: 43%; height: 47%; border: 9px solid #fff; border-right: 0; border-bottom: 0; }
.space-center-education-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.space-center-education-grid:hover .space-center-education-media figure:first-child img { transform: scale(1.035); }
.space-center-education-media > span { position: absolute; left: 28px; bottom: 25px; z-index: 3; color: rgba(255,255,255,.65); font: 700 11px/1.45 Arial, sans-serif; letter-spacing: .18em; }
.space-center-education-media::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.18); box-shadow: inset 0 0 100px rgba(5,8,11,.16); }
.space-center-education-copy {
  padding: clamp(48px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f2eee7;
}
.space-center-education-copy h2 { margin: 24px 0 0; font-size: clamp(43px, 4.5vw, 68px); line-height: 1.08; letter-spacing: -.065em; }
.space-center-education-copy > p:not(.eyebrow) { margin: 30px 0 0; color: #6d6965; line-height: 1.9; }
.space-center-education-copy ul { margin: 38px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(24,24,24,.14); }
.space-center-education-copy li { padding: 18px 0; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(24,24,24,.14); font-size: 13px; }
.space-center-education-copy li span { color: var(--brand-orange); }
.space-center-education-copy li div { flex: 1; margin-left: 20px; }
.space-center-education-copy li b { display: block; }
.space-center-education-copy li small { display: block; margin-top: 6px; color: #8a8580; }
.space-center-education-copy > button { min-height: 58px; margin-top: 34px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; border: 0; color: #fff; background: var(--brand-orange); cursor: pointer; transition: transform .3s var(--ease), background .3s; }
.space-center-education-copy > button:hover { transform: translateY(-3px); background: var(--brand-orange-dark); }

.space-center-network {
  padding: clamp(100px, 9vw, 160px) 0;
  color: #fff;
  background: var(--space-black);
  overflow: hidden;
}
.space-center-network::after {
  content: "CITY NETWORK";
  position: absolute;
  right: -3vw;
  bottom: -3vw;
  color: rgba(255,255,255,.025);
  font: 700 clamp(100px, 16vw, 280px)/1 Arial, sans-serif;
  white-space: nowrap;
}
.space-center-network-head {
  position: relative;
  z-index: 1;
  width: var(--wrap);
  margin: 0 auto clamp(54px, 6vw, 88px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}
.space-center-network-head h2 { margin: 23px 0 0; font-size: clamp(48px, 5vw, 78px); line-height: 1.06; letter-spacing: -.065em; }
.space-center-network-head > p { max-width: 420px; margin: 0; color: rgba(255,255,255,.55); line-height: 1.85; }
.space-center-network-grid {
  position: relative;
  z-index: 1;
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(270px, .36fr) minmax(0, 1fr);
  gap: clamp(46px, 6vw, 100px);
}
.space-center-city-tabs { display: flex; flex-direction: column; border-top: 1px solid rgba(255,255,255,.15); }
.space-center-city-tabs button {
  flex: 1;
  min-height: 94px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-content: center;
  gap: 5px 10px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.46);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color .3s, background .3s, padding .3s var(--ease);
}
.space-center-city-tabs button > span { grid-row: 1 / span 2; color: var(--brand-orange-light); font: 700 11px/1 Arial, sans-serif; }
.space-center-city-tabs button b { font-size: 15px; font-weight: 500; }
.space-center-city-tabs button small { color: rgba(255,255,255,.33); font-size: 10px; }
.space-center-city-tabs button:hover,
.space-center-city-tabs button.active { padding-left: 23px; color: #fff; background: rgba(228,108,10,.18); box-shadow: inset 3px 0 var(--brand-orange); }
.space-center-city-stage { position: relative; min-height: 650px; overflow: hidden; background: #151b22; }
.space-center-city-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition: opacity .55s, visibility .55s, transform .85s var(--ease);
}
.space-center-city-panel.active { opacity: 1; visibility: visible; transform: scale(1); }
.space-center-city-panel > img { width: 100%; height: 100%; object-fit: cover; }
.space-center-city-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(5,8,11,.92)); }
.space-center-city-caption {
  position: absolute;
  left: clamp(25px, 3vw, 48px);
  right: clamp(25px, 3vw, 48px);
  bottom: clamp(25px, 3vw, 45px);
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.space-center-city-caption > span { color: var(--brand-orange-light); font: 700 11px/1 Arial, sans-serif; letter-spacing: .15em; }
.space-center-city-caption > b { flex: 1; font-size: clamp(25px, 2.5vw, 42px); letter-spacing: -.04em; }
.space-center-city-caption > small { max-width: 260px; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.7; text-align: right; }

.space-center-cta {
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, #6d2600 0%, var(--brand-orange) 48%, #fa8d30 100%);
}
.space-center-cta::before,
.space-center-cta::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}
.space-center-cta::before { width: 640px; height: 640px; right: -180px; top: -320px; }
.space-center-cta::after { width: 420px; height: 420px; right: -80px; top: -210px; }
.space-center-cta-inner {
  position: relative;
  z-index: 1;
  width: var(--wrap);
  min-height: 470px;
  margin: 0 auto;
  padding: clamp(75px, 7vw, 120px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .55fr);
  align-items: end;
  gap: 70px;
}
.space-center-cta h2 { margin: 0; font-size: clamp(51px, 6vw, 96px); line-height: 1; letter-spacing: -.075em; }
.space-center-cta-inner > div:last-child > p { margin: 0 0 32px; color: rgba(255,255,255,.78); line-height: 1.85; }
.space-center-cta-inner > div:last-child > button,
.space-center-cta-inner > div:last-child > a {
  min-height: 64px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
  background: rgba(83,25,0,.16);
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s;
}
.space-center-cta-inner > div:last-child > button { color: var(--brand-orange-dark); background: #fff; }
.space-center-cta-inner > div:last-child > button:hover,
.space-center-cta-inner > div:last-child > a:hover { transform: translateX(6px); background: #fff; color: var(--brand-orange-dark); }

@keyframes spaceCenterHeroReveal {
  from { opacity: 0; transform: scale(1.09); }
  to { opacity: 1; transform: scale(1.025); }
}

@media (max-width: 1120px) {
  .space-center-hero { min-height: 780px; }
  .space-center-hero-content h1 { max-width: 690px; }
  .space-center-hero-brand { width: auto; }
  .space-center-connections-grid { grid-template-columns: 1fr; }
  .space-center-connection-intro { max-width: 700px; }
  .space-center-connection-intro img { width: 290px; }
  .space-center-mission-head,
  .space-center-section-head { align-items: flex-start; flex-direction: column; }
  .space-center-experience-shell { grid-template-columns: 220px minmax(0, 1fr); min-height: 630px; }
  .space-center-experience-stage { min-height: 630px; }
  .space-center-mission-card { width: 300px; }
  .space-center-education-grid { grid-template-columns: 1fr; }
  .space-center-education-media { min-height: 560px; }
  .space-center-network-grid { grid-template-columns: 1fr; }
  .space-center-network-head { align-items: flex-start; flex-direction: column; }
  .space-center-city-stage { min-height: 600px; }
  .space-center-cta-inner { grid-template-columns: 1fr; align-items: start; }
  .space-center-cta-inner > div:last-child { max-width: 520px; }
}

@media (max-width: 767px) {
  .space-center-main { padding-top: 68px; }
  .space-center-hero { min-height: max(720px, calc(100svh - 68px)); align-items: flex-start; }
  .space-center-hero-media img { object-position: 64% center; }
  .space-center-hero-overlay { background: linear-gradient(90deg, rgba(4,7,10,.94), rgba(4,7,10,.56)), linear-gradient(180deg, rgba(5,8,12,.1), transparent 30%, rgba(5,8,11,.95)); }
  .space-center-hero-content { padding: 105px 0 184px; }
  .space-center-hero-content > .eyebrow { max-width: 250px; line-height: 1.6; }
  .space-center-hero-content h1 { font-size: clamp(50px, 15vw, 68px); line-height: 1.02; }
  .space-center-hero-lead { max-width: 92%; margin-top: 24px; font-size: 14px; }
  .space-center-hero-actions { margin-top: 31px; }
  .space-center-hero-actions a,
  .space-center-hero-actions button { min-width: 0; width: calc(50% - 7px); min-height: 52px; padding: 0 15px; font-size: 13px; }
  .space-center-hero-brand { gap: 10px; font-size: 10px; }
  .space-center-hero-nav { grid-template-columns: repeat(2, 1fr); }
  .space-center-hero-nav a { min-height: 54px; font-size: 12px; border-bottom: 1px solid rgba(255,255,255,.15); }
  .space-center-connections-grid { gap: 56px; }
  .space-center-connection-intro h2 { font-size: 47px; }
  .space-center-connection-intro img { width: 220px; margin-top: 33px; }
  .space-center-connection-list { grid-template-columns: 1fr; }
  .space-center-connection-item { min-height: 220px; }
  .space-center-connection-item > div { margin-top: 36px; }
  .space-center-mission-head h2,
  .space-center-section-head h2,
  .space-center-network-head h2 { font-size: 46px; }
  .space-center-experience-shell { display: block; min-height: 700px; border: 0; }
  .space-center-experience-tabs {
    height: 66px;
    overflow-x: auto;
    flex-direction: row;
    border: 1px solid rgba(255,255,255,.13);
    border-bottom: 0;
    scrollbar-width: none;
  }
  .space-center-experience-tabs button { flex: 0 0 auto; min-width: 175px; min-height: 65px; padding: 0 20px; grid-template-columns: 28px auto; border-right: 1px solid rgba(255,255,255,.11); border-bottom: 0; }
  .space-center-experience-tabs button:hover,
  .space-center-experience-tabs button.active { padding-left: 20px; box-shadow: inset 0 -3px var(--brand-orange); }
  .space-center-experience-stage { min-height: 635px; }
  .space-center-experience-copy { left: 24px; right: 24px; bottom: 30px; }
  .space-center-experience-copy h3 { font-size: 38px; }
  .space-center-mission-card { top: 20px; right: 20px; width: calc(100% - 40px); padding: 18px 20px; }
  .space-center-mission-card > b { margin-top: 11px; font-size: 17px; }
  .space-center-mission-card ol { margin-top: 15px; }
  .space-center-exhibit-track { width: 100%; padding-inline: 4.25vw; }
  .space-center-exhibit-card,
  .space-center-exhibit-card:first-child { flex-basis: 82vw; height: 500px; }
  .space-center-education-media { min-height: 430px; }
  .space-center-education-copy { padding: 50px 28px; }
  .space-center-education-copy h2 { font-size: 43px; }
  .space-center-city-tabs { max-height: 390px; overflow-y: auto; }
  .space-center-city-stage { min-height: 500px; }
  .space-center-city-caption { align-items: flex-start; flex-direction: column; }
  .space-center-city-caption > small { max-width: 100%; text-align: left; }
  .space-center-cta-inner { min-height: 520px; padding-block: 78px; gap: 50px; }
  .space-center-cta h2 { font-size: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  .space-center-hero-media img,
  .space-center-experience-panel,
  .space-center-city-panel,
  .space-center-exhibit-card img,
  .space-center-education-media img { animation: none; transition: none; transform: none; }
}

/* Space Center hero — editorial earth composition */
.space-center-page .space-center-hero {
  min-height: max(760px, calc(100svh - 78px));
  align-items: stretch;
  background: #03070b;
}
.space-center-page .space-center-hero-media img {
  object-position: center 49%;
  filter: saturate(.62) contrast(1.12) brightness(.62);
  transform: scale(1.015);
}
.space-center-page .space-center-hero-overlay {
  background:
    radial-gradient(circle at 52% 47%, rgba(3,7,11,.02) 0 30%, rgba(3,7,11,.2) 58%, rgba(3,7,11,.76) 100%),
    linear-gradient(90deg, rgba(3,7,11,.48) 0%, rgba(3,7,11,.1) 37%, rgba(3,7,11,.08) 67%, rgba(3,7,11,.56) 100%),
    linear-gradient(180deg, rgba(3,7,11,.14), transparent 56%, rgba(3,7,11,.42));
}
.space-center-page .space-center-hero::before {
  left: max(4vw, calc((100vw - 1680px) / 2));
  top: clamp(45px, 6.5vh, 70px);
  color: rgba(255,255,255,.032);
  font-size: clamp(280px, 25vw, 470px);
  line-height: .74;
}
.space-center-page .space-center-hero::after { display: none; }
.space-center-page .space-center-hero-content {
  width: min(1440px, 91.5vw);
  min-height: inherit;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(330px, 380px) minmax(280px, 330px) minmax(180px, 190px);
  column-gap: clamp(26px, 2.65vw, 50px);
  align-items: center;
}
.space-center-hero-meta {
  display: grid;
  grid-template-columns: 18px 72px 78px minmax(98px, 1fr);
  align-items: center;
  gap: 12px;
  transform: translateY(34px);
  color: rgba(255,255,255,.78);
  font: 700 11px/1.08 Arial, sans-serif;
  letter-spacing: .1em;
}
.space-center-hero-meta i { width: 17px; height: 1px; background: var(--brand-orange); }
.space-center-hero-meta strong { color: var(--brand-orange-light); font-size: 11px; letter-spacing: .08em; }
.space-center-hero-meta b { color: rgba(255,255,255,.85); font-size: 11px; line-height: 1.32; letter-spacing: .08em; }
.space-center-hero-meta span { color: rgba(255,255,255,.78); font-size: 10px; letter-spacing: .16em; }
.space-center-page .space-center-hero-content h1 {
  margin: 0;
  font-size: clamp(76px, 5.95vw, 112px);
  line-height: .95;
  letter-spacing: -.09em;
  text-wrap: nowrap;
}
.space-center-page .space-center-hero-content h1 span { display: block; }
.space-center-page .space-center-hero-message {
  transform: translateY(35px);
  align-self: center;
}
.space-center-page .space-center-hero-message p {
  max-width: 310px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 2.05;
}
.space-center-page .space-center-hero-actions {
  margin: 0;
  transform: translateY(38px);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 14px;
}
.space-center-page .space-center-hero-actions a,
.space-center-page .space-center-hero-actions button {
  width: 100%;
  min-width: 0;
  min-height: 60px;
  padding: 0 22px;
  font-size: 14px;
}

@media (max-width: 1450px) {
  .space-center-page .space-center-hero-content {
    grid-template-columns: minmax(220px, .8fr) minmax(310px, 1fr) minmax(245px, .78fr) minmax(170px, 190px);
    column-gap: clamp(20px, 2vw, 34px);
  }
  .space-center-page .space-center-hero-content h1 { font-size: clamp(70px, 6.2vw, 96px); }
  .space-center-hero-meta { grid-template-columns: 14px 62px 62px minmax(80px, 1fr); gap: 9px; }
}

@media (max-width: 1120px) {
  .space-center-page .space-center-hero { min-height: 770px; }
  .space-center-page .space-center-hero-content {
    grid-template-columns: minmax(200px, .62fr) minmax(310px, 1fr) minmax(170px, .48fr);
    grid-template-rows: 1fr auto 1fr;
    column-gap: 25px;
  }
  .space-center-hero-meta { grid-column: 1; grid-row: 2; grid-template-columns: 16px 68px 68px; align-self: start; transform: translateY(16px); }
  .space-center-hero-meta span { display: none; }
  .space-center-page .space-center-hero-content h1 { grid-column: 2; grid-row: 1 / 4; font-size: clamp(68px, 8.6vw, 94px); }
  .space-center-page .space-center-hero-message { grid-column: 3; grid-row: 2; transform: translateY(-58px); }
  .space-center-page .space-center-hero-actions { grid-column: 3; grid-row: 2; align-self: start; transform: translateY(45px); }
  .space-center-page .space-center-hero-actions a,
  .space-center-page .space-center-hero-actions button { padding-inline: 15px; }
}

@media (max-width: 767px) {
  .space-center-page .space-center-hero {
    min-height: max(760px, calc(100svh - 68px));
    align-items: flex-start;
  }
  .space-center-page .space-center-hero-media img {
    object-position: 54% center;
    filter: saturate(.63) contrast(1.1) brightness(.52);
  }
  .space-center-page .space-center-hero-overlay {
    background: linear-gradient(180deg, rgba(3,7,11,.22), rgba(3,7,11,.05) 38%, rgba(3,7,11,.82) 78%, #03070b 100%);
  }
  .space-center-page .space-center-hero::before {
    left: -10px;
    top: 30px;
    font-size: 230px;
  }
  .space-center-page .space-center-hero-content {
    width: 91.5vw;
    min-height: 0;
    padding: 65px 0 52px;
    display: block;
  }
  .space-center-hero-meta {
    width: min(300px, 100%);
    grid-template-columns: 16px 68px 72px 1fr;
    transform: none;
  }
  .space-center-hero-meta span { display: block; }
  .space-center-page .space-center-hero-content h1 {
    width: min(360px, 88vw);
    margin: 64px 0 0;
    font-size: clamp(58px, 17.5vw, 78px);
    line-height: .94;
  }
  .space-center-page .space-center-hero-message { max-width: 310px; margin-top: 36px; transform: none; }
  .space-center-page .space-center-hero-message p { font-size: 14px; line-height: 1.85; }
  .space-center-page .space-center-hero-actions {
    margin-top: 28px;
    transform: none;
    flex-direction: row;
    gap: 10px;
  }
  .space-center-page .space-center-hero-actions a,
  .space-center-page .space-center-hero-actions button {
    width: calc(50% - 5px);
    min-height: 52px;
    font-size: 12px;
  }
}

/* Space Center hero — astronaut orbital cover */
.space-center-page .space-center-hero-orbit-cover {
  min-height: max(720px, calc(100svh - 78px));
  align-items: stretch;
  background: #02060a;
}
.space-center-page .space-center-hero-orbit-cover .space-center-hero-media img {
  object-position: center center;
  filter: saturate(.92) contrast(1.04) brightness(.82);
  transform: scale(1.002);
}
.space-center-page .space-center-hero-orbit-cover .space-center-hero-overlay {
  background:
    linear-gradient(90deg, rgba(2,6,10,.22) 0%, rgba(2,6,10,.04) 45%, rgba(2,6,10,.03) 78%, rgba(2,6,10,.2) 100%),
    linear-gradient(180deg, rgba(2,6,10,.04), transparent 65%, rgba(2,6,10,.34));
}
.space-center-page .space-center-hero-orbit-cover::before {
  left: max(4.6vw, calc((100vw - 1680px) / 2));
  top: clamp(55px, 8vh, 82px);
  color: rgba(255,255,255,.034);
  font-size: clamp(270px, 23vw, 430px);
  line-height: .74;
}
.space-center-page .space-center-hero-orbit-cover .space-center-hero-content {
  width: var(--wrap);
  min-height: inherit;
  padding: clamp(170px, 20vh, 205px) 0 150px;
  display: block;
}
.space-center-page .space-center-hero-orbit-cover .space-center-hero-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  width: auto;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 1;
  letter-spacing: .02em;
  transform: none;
}
.space-center-page .space-center-hero-orbit-cover .space-center-hero-brand::before { display: none; }
.space-center-page .space-center-hero-orbit-cover .space-center-hero-brand span {
  color: var(--brand-orange-light);
  font: 700 14px/1 Arial, sans-serif;
  letter-spacing: .08em;
}
.space-center-page .space-center-hero-orbit-cover .space-center-hero-brand b { font-weight: 500; }
.space-center-page .space-center-hero-orbit-cover .space-center-hero-content h1 {
  max-width: 660px;
  margin: 28px 0 0;
  font-size: clamp(58px, 4.75vw, 86px);
  line-height: 1.06;
  letter-spacing: -.07em;
  text-wrap: balance;
}
.space-center-page .space-center-hero-orbit-cover .space-center-hero-lead {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.7);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.85;
}
.space-center-page .space-center-hero-orbit-cover .space-center-hero-actions {
  margin-top: 32px;
  transform: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
}
.space-center-page .space-center-hero-orbit-cover .space-center-hero-actions a,
.space-center-page .space-center-hero-orbit-cover .space-center-hero-actions button {
  width: 190px;
  min-width: 190px;
  min-height: 56px;
  padding: 0 22px;
  font-size: 14px;
}
.space-center-page .space-center-hero-orbit-cover .space-center-hero-nav {
  display: grid;
  background: linear-gradient(180deg, transparent, rgba(2,6,10,.26));
}

@media (max-width: 1120px) {
  .space-center-page .space-center-hero-orbit-cover .space-center-hero-content { padding-top: 155px; }
  .space-center-page .space-center-hero-orbit-cover .space-center-hero-content h1 { max-width: 560px; font-size: clamp(56px, 7vw, 76px); }
  .space-center-page .space-center-hero-orbit-cover .space-center-hero-lead { max-width: 480px; }
}

@media (max-width: 767px) {
  .space-center-page .space-center-hero-orbit-cover {
    min-height: max(720px, calc(100svh - 68px));
    align-items: flex-start;
  }
  .space-center-page .space-center-hero-orbit-cover .space-center-hero-media img {
    object-position: 64% center;
    filter: saturate(.88) contrast(1.05) brightness(.68);
  }
  .space-center-page .space-center-hero-orbit-cover .space-center-hero-overlay {
    background: linear-gradient(90deg, rgba(2,6,10,.55), rgba(2,6,10,.08) 82%), linear-gradient(180deg, transparent 55%, rgba(2,6,10,.75));
  }
  .space-center-page .space-center-hero-orbit-cover::before { left: -13px; top: 31px; font-size: 220px; }
  .space-center-page .space-center-hero-orbit-cover .space-center-hero-content {
    width: 91.5vw;
    min-height: 0;
    padding: 92px 0 150px;
  }
  .space-center-page .space-center-hero-orbit-cover .space-center-hero-brand { font-size: 11px; }
  .space-center-page .space-center-hero-orbit-cover .space-center-hero-brand span { font-size: 11px; }
  .space-center-page .space-center-hero-orbit-cover .space-center-hero-content h1 {
    max-width: 94%;
    margin-top: 26px;
    font-size: clamp(48px, 14vw, 64px);
    line-height: 1.04;
  }
  .space-center-page .space-center-hero-orbit-cover .space-center-hero-lead { max-width: 90%; margin-top: 22px; font-size: 13px; }
  .space-center-page .space-center-hero-orbit-cover .space-center-hero-actions { margin-top: 27px; gap: 10px; }
  .space-center-page .space-center-hero-orbit-cover .space-center-hero-actions a,
  .space-center-page .space-center-hero-orbit-cover .space-center-hero-actions button {
    width: calc(50% - 5px);
    min-width: 0;
    min-height: 50px;
    padding-inline: 14px;
    font-size: 12px;
  }
  .space-center-page .space-center-hero-orbit-cover .space-center-hero-nav { grid-template-columns: repeat(2, 1fr); }
}

/* Space Center typography refinements from review comments */
.space-center-mission-head h2 span,
.space-center-education-copy h2 span,
.space-center-cta h2 span { display: block; }

@media (min-width: 768px) {
  .space-center-mission-head h2 {
    font-size: clamp(46px, 4.25vw, 68px);
    line-height: 1.12;
    letter-spacing: -.052em;
  }
  .space-center-mission-head h2 span { white-space: nowrap; }
  .space-center-mission-head > p { max-width: 350px; }

  .space-center-city-caption {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr) max-content;
    align-items: center;
    gap: clamp(15px, 1.6vw, 28px);
  }
  .space-center-city-caption > span,
  .space-center-city-caption > b,
  .space-center-city-caption > small {
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
  }
  .space-center-city-caption > b {
    min-width: 0;
    font-size: clamp(19px, 1.62vw, 27px);
    line-height: 1.2;
    letter-spacing: -.025em;
  }
  .space-center-city-caption > small {
    max-width: none;
    font-size: clamp(10px, .82vw, 12px);
    text-align: right;
  }

  .space-center-cta h2 {
    font-size: clamp(42px, 4vw, 70px);
    line-height: 1.1;
    letter-spacing: -.058em;
  }
  .space-center-cta h2 span { white-space: nowrap; }
}

@media (min-width: 1121px) {
  .space-center-mission-head {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(280px, .52fr);
    align-items: end;
    gap: clamp(42px, 6vw, 92px);
  }
  .space-center-cta-inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(270px, .5fr);
    gap: clamp(48px, 5vw, 76px);
  }
  .space-center-education-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr);
  }
  .space-center-education-copy { padding: clamp(46px, 4.2vw, 68px); }
  .space-center-education-copy h2 {
    margin-top: 22px;
    font-size: clamp(36px, 3.25vw, 48px);
    line-height: 1.1;
    letter-spacing: -.052em;
  }
  .space-center-education-copy h2 span { white-space: nowrap; }
}

@media (max-width: 1120px) {
  .space-center-cta h2 { font-size: clamp(42px, 6.2vw, 62px); }
}

@media (max-width: 767px) {
  .space-center-mission-head h2,
  .space-center-education-copy h2 { font-size: clamp(38px, 11vw, 46px); line-height: 1.12; }
  .space-center-mission-head h2 span,
  .space-center-education-copy h2 span,
  .space-center-cta h2 span { white-space: normal; }
  .space-center-city-caption { display: flex; }
  .space-center-city-caption > b,
  .space-center-city-caption > small { white-space: normal; }
}

/* Exhibition & Space — independent portfolio page */
.exhibition-main { padding-top: 78px; background: #f7f3ef; }
.exhibition-main section { position: relative; }
.dropdown-list a.current { color: var(--brand-orange); background: var(--brand-orange-pale); }

.exhibition-hero {
  min-height: calc(100svh - 78px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background: #130c09;
}
.exhibition-hero-media,
.exhibition-hero-media::after,
.exhibition-hero-grid { position: absolute; inset: 0; }
.exhibition-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 56% center; }
.exhibition-hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(11,7,5,.94) 0%, rgba(11,7,5,.8) 31%, rgba(11,7,5,.24) 68%, rgba(11,7,5,.58) 100%),
    linear-gradient(180deg, rgba(13,8,5,.18), rgba(13,8,5,.16) 54%, rgba(13,8,5,.94) 100%);
}
.exhibition-hero-grid {
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 8.333vw 8.333vw;
}
.exhibition-hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, .48fr);
  align-items: end;
  gap: clamp(48px, 8vw, 140px);
  padding: clamp(100px, 11vh, 150px) 0 clamp(58px, 8vh, 98px);
}
.exhibition-kicker { position: absolute; top: clamp(55px, 8vh, 90px); left: 0; margin: 0; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 700; letter-spacing: .19em; }
.exhibition-kicker span { margin-right: 15px; color: var(--brand-orange-light); font-size: 44px; letter-spacing: -.04em; vertical-align: middle; }
.exhibition-hero h1 { margin: 0; max-width: 900px; font-size: clamp(72px, 7.6vw, 144px); line-height: .88; letter-spacing: -.07em; }
.exhibition-hero h1 em { color: var(--brand-orange-light); font-style: normal; }
.exhibition-hero-intro { padding-bottom: 12px; }
.exhibition-hero-intro p { margin: 0 0 34px; color: rgba(255,255,255,.78); font-size: clamp(16px, 1.15vw, 20px); line-height: 1.9; }
.exhibition-primary { min-width: 220px; min-height: 64px; display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; padding: 0 26px; border: 0; color: #fff; background: var(--brand-orange); font-weight: 700; cursor: pointer; transition: transform .3s var(--ease), background .3s; }
.exhibition-primary:hover { transform: translateY(-3px); background: var(--brand-orange-light); }
.exhibition-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.25);
}
.exhibition-stats > div { min-height: 116px; padding: 23px clamp(18px, 2vw, 34px); display: flex; align-items: flex-end; gap: 18px; border-right: 1px solid rgba(255,255,255,.18); }
.exhibition-stats > div:last-child { border-right: 0; }
.exhibition-stats strong { color: var(--brand-orange-light); font-size: clamp(38px, 3.1vw, 58px); line-height: 1; letter-spacing: -.05em; }
.exhibition-stats sup { font-size: .4em; }
.exhibition-stats span { padding-bottom: 4px; color: rgba(255,255,255,.67); font-size: 13px; line-height: 1.45; }

.exhibition-manifesto { overflow: hidden; padding: clamp(110px, 10vw, 180px) 0; background: #f7f3ef; }
.exhibition-manifesto::before { content: "SPACE"; position: absolute; right: -1vw; bottom: -6vw; color: rgba(24,24,24,.025); font-size: 22vw; font-weight: 800; line-height: 1; letter-spacing: -.09em; }
.exhibition-manifesto-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .38fr 1.18fr .54fr; gap: clamp(42px, 6vw, 100px); align-items: start; }
.exhibition-section-index span { display: block; color: var(--brand-orange); font-size: 72px; font-weight: 700; line-height: .8; }
.exhibition-section-index p { margin: 28px 0 0; font-size: 11px; font-weight: 700; letter-spacing: .22em; writing-mode: vertical-rl; }
.exhibition-manifesto-copy h2 { margin: 0; font-size: clamp(54px, 5.8vw, 102px); line-height: .98; letter-spacing: -.068em; }
.exhibition-manifesto-copy > p { max-width: 760px; margin: 40px 0 30px; color: var(--muted); font-size: clamp(16px, 1.25vw, 20px); line-height: 2; }
.exhibition-manifesto-copy a { display: inline-flex; align-items: center; gap: 30px; padding-bottom: 8px; color: var(--brand-orange); border-bottom: 1px solid currentColor; font-weight: 700; }
.exhibition-manifesto-note { margin-top: 230px; padding: 28px 0 0 30px; border-left: 2px solid var(--brand-orange); }
.exhibition-manifesto-note span { color: var(--brand-orange); font-size: 10px; font-weight: 700; letter-spacing: .2em; }
.exhibition-manifesto-note p { margin: 15px 0 0; font-size: clamp(18px, 1.45vw, 24px); line-height: 1.65; }

.exhibition-process {
  position: relative;
  padding: clamp(105px, 9vw, 165px) 0 clamp(42px, 3.6vw, 58px);
  color: #fff;
  background: linear-gradient(180deg, #12100f 0%, #12100f 70%, #0e0f10 88%, #090d11 100%);
}
.exhibition-process::after {
  content: "";
  position: absolute;
  right: 4vw;
  bottom: 0;
  left: 4vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228,108,10,.22), transparent);
}
.exhibition-heading { display: grid; grid-template-columns: 1fr .64fr; gap: clamp(50px, 8vw, 140px); align-items: end; margin-bottom: clamp(58px, 6vw, 100px); }
.exhibition-heading > div > p { display: flex; align-items: center; gap: 14px; margin: 0 0 26px; color: var(--brand-orange-light); font-size: 11px; font-weight: 700; letter-spacing: .22em; }
.exhibition-heading > div > p span { width: 34px; height: 1px; background: currentColor; }
.exhibition-heading h2 { margin: 0; font-size: clamp(48px, 5vw, 86px); line-height: 1.02; letter-spacing: -.064em; }
.exhibition-heading > p { margin: 0 0 6px; color: rgba(255,255,255,.58); font-size: 16px; line-height: 1.9; }
.exhibition-process-grid { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.exhibition-process-grid li { position: relative; min-height: 350px; padding: 30px 26px; border-right: 1px solid rgba(255,255,255,.15); transition: background .35s, transform .35s var(--ease); }
.exhibition-process-grid li:last-child { border-right: 0; }
.exhibition-process-grid li:hover { z-index: 1; transform: translateY(-8px); background: var(--brand-orange); }
.exhibition-process-grid span { color: var(--brand-orange-light); font-size: 12px; font-weight: 700; }
.exhibition-process-grid i { display: block; margin: 50px 0 38px; color: rgba(255,255,255,.12); font-size: 78px; font-weight: 700; font-style: normal; line-height: 1; transition: color .35s; }
.exhibition-process-grid li:hover i, .exhibition-process-grid li:hover span { color: #fff; }
.exhibition-process-grid h3 { margin: 0 0 15px; font-size: 21px; }
.exhibition-process-grid p { margin: 0; color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.75; }
.exhibition-process-grid li:hover p { color: rgba(255,255,255,.85); }

.exhibition-cases {
  overflow: hidden;
  padding: clamp(54px, 4.7vw, 76px) 0 clamp(105px, 9vw, 165px);
  color: #fff;
  background: linear-gradient(180deg, #090d11 0%, #080c10 100%);
}
.exhibition-cases::before { content: "CASES"; position: absolute; right: -2vw; top: 17vw; color: rgba(255,255,255,.025); font-size: 19vw; font-weight: 800; letter-spacing: -.08em; }
.exhibition-heading-light { position: relative; z-index: 1; }
.exhibition-case-tabs { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(5, 1fr); margin-bottom: 34px; border: 1px solid rgba(255,255,255,.16); }
.exhibition-case-tabs button { min-height: 72px; padding: 0 20px; border: 0; border-right: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.54); background: transparent; cursor: pointer; transition: color .3s, background .3s; }
.exhibition-case-tabs button:last-child { border-right: 0; }
.exhibition-case-tabs button span { margin-right: 12px; color: var(--brand-orange-light); font-size: 11px; }
.exhibition-case-tabs button.active, .exhibition-case-tabs button:hover { color: #fff; background: var(--brand-orange); }
.exhibition-case-tabs button.active span { color: #fff; }
.exhibition-case-panel { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.32fr) minmax(340px, .68fr); min-height: 680px; background: #111820; animation: exhibitionPanelIn .65s var(--ease) both; }
.exhibition-case-panel[hidden] { display: none; }
@keyframes exhibitionPanelIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.exhibition-case-panel figure { margin: 0; min-height: 640px; overflow: hidden; }
.exhibition-case-panel figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.exhibition-case-panel:hover figure img { transform: scale(1.025); }
.exhibition-case-copy { padding: clamp(46px, 5vw, 82px); display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(255,255,255,.12); }
.exhibition-case-copy > span { color: var(--brand-orange-light); font-size: 10px; font-weight: 700; letter-spacing: .2em; }
.exhibition-case-copy > small { margin: 24px 0 70px; color: rgba(255,255,255,.32); }
.exhibition-case-copy h3 { margin: 0 0 28px; font-size: clamp(34px, 3.2vw, 54px); line-height: 1.12; letter-spacing: -.05em; }
.exhibition-case-copy > p { margin: 0; color: rgba(255,255,255,.58); line-height: 1.9; }
.exhibition-case-copy ul { margin: 28px 0 38px; padding: 24px 0; list-style: none; border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.exhibition-case-copy li { padding: 7px 0; color: rgba(255,255,255,.77); font-size: 13px; }
.exhibition-case-copy li::before { content: "+"; margin-right: 12px; color: var(--brand-orange-light); }
.exhibition-case-copy button, .exhibition-case-copy a { align-self: flex-start; padding: 0 0 8px; border: 0; border-bottom: 1px solid var(--brand-orange-light); color: #fff; background: transparent; cursor: pointer; font-weight: 700; }
.exhibition-case-copy b { margin-left: 18px; color: var(--brand-orange-light); }

.exhibition-spectrum { padding: clamp(105px, 9vw, 165px) 0; background: #f7f3ef; }
.exhibition-spectrum-head { display: grid; grid-template-columns: 1fr .65fr; gap: clamp(50px, 8vw, 150px); align-items: end; margin-bottom: 62px; }
.exhibition-spectrum-head span { color: var(--brand-orange); font-size: 10px; font-weight: 700; letter-spacing: .22em; }
.exhibition-spectrum-head h2 { margin: 24px 0 0; font-size: clamp(43px, 4.6vw, 76px); line-height: 1.05; letter-spacing: -.06em; }
.exhibition-spectrum-head > p { margin: 0 0 5px; color: var(--muted); line-height: 1.9; }
.exhibition-spectrum-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr); grid-template-rows: repeat(2, minmax(0, 1fr)); height: clamp(700px, 61vw, 900px); gap: 18px; }
.exhibition-spectrum-grid article { position: relative; overflow: hidden; color: #fff; background: #171717; }
.exhibition-spectrum-grid .exhibition-spectrum-digital { grid-row: 1 / 3; min-height: 0; }
.exhibition-spectrum-grid .exhibition-spectrum-city { min-height: 0; }
.exhibition-spectrum-grid .exhibition-spectrum-digital,
.exhibition-spectrum-grid .exhibition-spectrum-special { min-height: 0; }
.exhibition-spectrum-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .8s; }
.exhibition-spectrum-media {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  grid-template-rows: .43fr .57fr;
  gap: 2px;
  overflow: hidden;
  background: var(--brand-orange);
}
.exhibition-spectrum-media img { min-width: 0; min-height: 0; }
.exhibition-spectrum-grid .exhibition-spectrum-city img { object-position: center 54%; }
.exhibition-spectrum-grid .exhibition-spectrum-digital img { object-position: center center; }
.exhibition-spectrum-grid .exhibition-spectrum-digital .exhibition-spectrum-media img:first-child { object-position: center 48%; }
.exhibition-spectrum-grid .exhibition-spectrum-digital .exhibition-spectrum-media img:last-child { object-position: center 52%; }
.exhibition-spectrum-grid .exhibition-spectrum-special img { object-position: center 38%; }
.exhibition-spectrum-grid article::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 34%, rgba(6,6,6,.84)); }
.exhibition-spectrum-grid article:hover img { transform: scale(1.04); filter: saturate(1.15); }
.exhibition-spectrum-grid article > div { position: absolute; z-index: 2; inset: auto clamp(24px, 3vw, 48px) clamp(28px, 3vw, 46px); }
.exhibition-spectrum-grid span { color: var(--brand-orange-light); font-size: 10px; font-weight: 700; letter-spacing: .17em; }
.exhibition-spectrum-grid h3 { margin: 13px 0 8px; font-size: clamp(24px, 2.25vw, 38px); }
.exhibition-spectrum-grid p { margin: 0; color: rgba(255,255,255,.65); font-size: 13px; }

.exhibition-cta { overflow: hidden; padding: clamp(90px, 8vw, 135px) 0; color: #fff; background: linear-gradient(120deg, #9b3d00, var(--brand-orange) 50%, #ff8b28); }
.exhibition-cta::before { content: "SPACE O"; position: absolute; left: -1vw; bottom: -5.5vw; color: rgba(255,255,255,.08); font-size: 13vw; font-weight: 800; line-height: 1; letter-spacing: -.08em; }
.exhibition-cta-ring { position: absolute; right: -8vw; top: -18vw; width: 44vw; height: 44vw; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 7vw rgba(255,255,255,.03), 0 0 0 14vw rgba(255,255,255,.025); }
.exhibition-cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .55fr; gap: clamp(60px, 10vw, 170px); align-items: center; }
.exhibition-cta-grid > div:first-child > p { display: flex; align-items: center; gap: 14px; margin: 0 0 25px; font-size: 10px; font-weight: 700; letter-spacing: .22em; }
.exhibition-cta-grid > div:first-child > p span { width: 34px; height: 1px; background: currentColor; }
.exhibition-cta h2 { margin: 0; font-size: clamp(48px, 5.4vw, 88px); line-height: 1.05; letter-spacing: -.065em; }
.exhibition-cta-grid > div:last-child > p { margin: 0 0 32px; color: rgba(255,255,255,.82); line-height: 1.9; }
.exhibition-cta button { min-width: 230px; min-height: 62px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: space-between; gap: 26px; border: 1px solid #fff; color: var(--brand-orange); background: #fff; cursor: pointer; font-weight: 700; transition: transform .3s var(--ease), color .3s, background .3s; }
.exhibition-cta button:hover { transform: translateY(-3px); color: #fff; background: transparent; }

@media (max-width: 1180px) {
  .exhibition-hero-content { grid-template-columns: 1fr .55fr; gap: 42px; }
  .exhibition-manifesto-grid { grid-template-columns: .22fr 1fr; }
  .exhibition-manifesto-note { grid-column: 2; margin-top: 5px; }
  .exhibition-process-grid { grid-template-columns: repeat(3, 1fr); }
  .exhibition-process-grid li:nth-child(3) { border-right: 0; }
  .exhibition-process-grid li { border-bottom: 1px solid rgba(255,255,255,.15); }
  .exhibition-case-panel { min-height: 590px; }
  .exhibition-case-panel figure { min-height: 560px; }
}

@media (max-width: 820px) {
  .exhibition-process { padding-bottom: 34px; }
  .exhibition-cases { padding-top: 44px; }
  .exhibition-main { padding-top: 68px; }
  .exhibition-hero { min-height: auto; }
  .exhibition-hero-media img { object-position: 63% center; }
  .exhibition-hero-media::after { background: linear-gradient(90deg, rgba(11,7,5,.92), rgba(11,7,5,.46)), linear-gradient(180deg, rgba(11,7,5,.1), rgba(11,7,5,.9)); }
  .exhibition-hero-content { display: block; padding: 130px 0 78px; }
  .exhibition-kicker { top: 45px; font-size: 9px; }
  .exhibition-kicker span { font-size: 30px; }
  .exhibition-hero h1 { font-size: clamp(58px, 14.5vw, 94px); }
  .exhibition-hero-intro { margin-top: 36px; }
  .exhibition-stats { grid-template-columns: repeat(2, 1fr); }
  .exhibition-stats > div { min-height: 100px; border-bottom: 1px solid rgba(255,255,255,.18); }
  .exhibition-manifesto-grid, .exhibition-heading, .exhibition-spectrum-head, .exhibition-cta-grid { grid-template-columns: 1fr; }
  .exhibition-section-index { display: flex; align-items: center; gap: 20px; }
  .exhibition-section-index span { font-size: 52px; }
  .exhibition-section-index p { margin: 0; writing-mode: initial; }
  .exhibition-manifesto-note { grid-column: auto; margin-top: 0; }
  .exhibition-heading { gap: 30px; }
  .exhibition-process-grid { grid-template-columns: repeat(2, 1fr); }
  .exhibition-process-grid li:nth-child(3) { border-right: 1px solid rgba(255,255,255,.15); }
  .exhibition-process-grid li:nth-child(2n) { border-right: 0; }
  .exhibition-case-tabs { overflow-x: auto; grid-template-columns: repeat(5, minmax(150px, 1fr)); }
  .exhibition-case-panel { grid-template-columns: 1fr; }
  .exhibition-case-panel figure { min-height: 55vw; }
  .exhibition-case-copy { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .exhibition-case-copy > small { margin-bottom: 30px; }
  .exhibition-spectrum-grid { height: auto; grid-template-columns: 1fr; grid-template-rows: none; }
  .exhibition-spectrum-grid .exhibition-spectrum-digital { grid-row: auto; }
  .exhibition-spectrum-grid article { min-height: 58vw; }
  .exhibition-spectrum-grid .exhibition-spectrum-digital { min-height: 104vw; }
  .exhibition-spectrum-grid .exhibition-spectrum-special { min-height: 76vw; }
  .exhibition-cta-grid { gap: 38px; }
}

@media (max-width: 520px) {
  .exhibition-process { padding-bottom: 28px; }
  .exhibition-cases { padding-top: 38px; }
  .exhibition-kicker { max-width: 88%; line-height: 1.5; }
  .exhibition-hero h1 { font-size: clamp(54px, 16.8vw, 78px); }
  .exhibition-hero-intro p br { display: none; }
  .exhibition-primary { width: 100%; }
  .exhibition-stats strong { font-size: 34px; }
  .exhibition-stats span { font-size: 11px; }
  .exhibition-stats > div { padding: 18px 12px; gap: 10px; }
  .exhibition-manifesto-copy h2, .exhibition-heading h2, .exhibition-spectrum-head h2, .exhibition-cta h2 { font-size: clamp(40px, 12vw, 56px); }
  .exhibition-process-grid { grid-template-columns: 1fr; }
  .exhibition-process-grid li, .exhibition-process-grid li:nth-child(3) { min-height: 275px; border-right: 0; }
  .exhibition-process-grid i { margin: 34px 0 26px; }
  .exhibition-case-copy { padding: 35px 24px; }
  .exhibition-case-panel figure { min-height: 72vw; }
  .exhibition-spectrum-grid article { min-height: 76vw; }
  .exhibition-spectrum-grid .exhibition-spectrum-digital { min-height: 116vw; }
  .exhibition-spectrum-grid .exhibition-spectrum-special { min-height: 108vw; }
}

/* Exhibition hero V2 — match approved panoramic rendering */
.exhibition-space-page .site-header:not(.scrolled):not(.menu-open) {
  height: 84px;
  color: #fff;
  background: rgba(7,7,7,.18);
  border-color: rgba(255,255,255,.11);
  backdrop-filter: none;
}
.exhibition-space-page .site-header:not(.scrolled):not(.menu-open) .header-inner { width: min(1436px, 86vw); }
.exhibition-space-page .exhibition-hero > .wrap { width: min(1350px, 80.8vw); }
.exhibition-space-page .site-header:not(.scrolled):not(.menu-open)::after { opacity: .14; }
.exhibition-space-page .exhibition-main { padding-top: 0; }
.exhibition-space-page .exhibition-hero {
  height: 100vh;
  height: 100svh;
  min-height: 760px;
  max-height: none;
  padding-top: 84px;
  display: block;
}
.exhibition-space-page .exhibition-hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: -15vw;
  top: -29vw;
  width: 90vw;
  height: 90vw;
  border: 1px solid rgba(228,108,10,.55);
  border-radius: 50%;
  pointer-events: none;
}
.exhibition-space-page .exhibition-hero-media img { object-position: center center; filter: saturate(.82) contrast(1.05) brightness(.84); }
.exhibition-space-page .exhibition-hero-media::after {
  background:
    linear-gradient(90deg, rgba(7,7,7,.98) 0%, rgba(7,7,7,.94) 22%, rgba(7,7,7,.78) 37%, rgba(7,7,7,.12) 72%, rgba(7,7,7,.42) 100%),
    linear-gradient(180deg, rgba(8,8,8,.08) 42%, rgba(8,8,8,.83) 100%);
}
.exhibition-space-page .exhibition-hero-grid { z-index: 1; opacity: .12; background-size: 8.333vw 8.333vw; }
.exhibition-space-page .exhibition-hero-content {
  position: relative;
  z-index: 3;
  height: calc(100vh - 223px);
  height: calc(100svh - 223px);
  min-height: 537px;
  display: block;
  padding: 0;
}
.exhibition-space-page .exhibition-hero-copy {
  position: absolute;
  left: 0;
  top: clamp(78px, 9.6vh, 108px);
  width: min(620px, 44vw);
}
.exhibition-space-page .exhibition-kicker {
  position: static;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  letter-spacing: .12em;
}
.exhibition-space-page .exhibition-kicker span { width: 34px; height: 1px; margin: 0; background: rgba(255,255,255,.68); }
.exhibition-space-page .exhibition-hero h1 {
  max-width: none;
  font-size: clamp(66px, 5.05vw, 86px);
  line-height: 1.05;
  letter-spacing: -.06em;
  text-shadow: 0 6px 36px rgba(0,0,0,.28);
}
.exhibition-space-page .exhibition-hero h1 em { color: var(--brand-orange); }
.exhibition-space-page .exhibition-hero-lead {
  margin: 22px 0 0;
  color: rgba(255,255,255,.8);
  font-size: clamp(15px, 1.12vw, 19px);
  line-height: 1.7;
}
.exhibition-space-page .exhibition-hero-actions { display: flex; gap: 14px; margin-top: 28px; }
.exhibition-space-page .exhibition-hero-actions .exhibition-primary,
.exhibition-space-page .exhibition-secondary {
  width: 180px;
  min-width: 0;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.exhibition-space-page .exhibition-secondary { border: 1px solid rgba(255,255,255,.55); color: #fff; background: rgba(4,4,4,.34); }
.exhibition-space-page .exhibition-secondary:hover { transform: translateY(-3px); border-color: #fff; background: rgba(228,108,10,.2); }
.exhibition-space-page .exhibition-hero-metrics {
  position: absolute;
  right: 1.5vw;
  bottom: 19px;
  width: min(470px, 38vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
}
.exhibition-space-page .exhibition-hero-metrics > div { min-height: 70px; padding: 0 25px; text-align: center; border-right: 1px solid rgba(255,255,255,.28); }
.exhibition-space-page .exhibition-hero-metrics > div:last-child { border-right: 0; }
.exhibition-space-page .exhibition-hero-metrics strong { display: block; color: var(--brand-orange); font-size: clamp(38px, 3vw, 51px); font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.exhibition-space-page .exhibition-hero-metrics sup { font-size: .42em; }
.exhibition-space-page .exhibition-hero-metrics span { display: block; margin-top: 9px; color: rgba(255,255,255,.86); font-size: 14px; }
.exhibition-space-page .exhibition-hero-categories {
  position: relative;
  z-index: 3;
  height: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.exhibition-space-page .exhibition-hero-categories a {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(7,7,7,.24);
  backdrop-filter: blur(4px);
  transition: border-color .3s, background .3s, transform .3s var(--ease);
}
.exhibition-space-page .exhibition-hero-categories a:hover { transform: translateY(-4px); border-color: var(--brand-orange); background: rgba(228,108,10,.16); }
.exhibition-space-page .exhibition-hero-categories span { align-self: start; padding-top: 18px; color: var(--brand-orange-light); font-size: 11px; font-weight: 700; }
.exhibition-space-page .exhibition-hero-categories b { font-size: clamp(16px, 1.4vw, 21px); }
.exhibition-space-page .exhibition-hero-categories i { font-size: 25px; font-style: normal; font-weight: 300; }
.exhibition-space-page .exhibition-hero-foot {
  position: relative;
  z-index: 3;
  height: 59px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.65);
  font-size: 10px;
  letter-spacing: .08em;
}
.exhibition-space-page .exhibition-hero-foot span { display: flex; align-items: center; gap: 14px; }
.exhibition-space-page .exhibition-hero-foot span::before { content: ""; width: 32px; height: 1px; background: rgba(255,255,255,.62); }
.exhibition-space-page .exhibition-hero-foot b { color: #fff; font-weight: 500; }

@media (max-width: 1180px) {
  .exhibition-space-page .exhibition-hero-copy { left: 0; width: min(560px, 48vw); }
  .exhibition-space-page .exhibition-hero-metrics { right: 0; }
  .exhibition-space-page .exhibition-hero-categories { gap: 12px; }
  .exhibition-space-page .exhibition-hero-categories a { gap: 13px; padding-inline: 16px; }
}

@media (max-width: 820px) {
  .exhibition-space-page .site-header:not(.scrolled):not(.menu-open) { height: 68px; }
  .exhibition-space-page .site-header:not(.scrolled):not(.menu-open) .header-inner { width: 94vw; }
  .exhibition-space-page .exhibition-main { padding-top: 0; }
  .exhibition-space-page .exhibition-hero > .wrap { width: 91.5vw; }
  .exhibition-space-page .exhibition-hero {
    height: auto;
    min-height: 760px;
    max-height: none;
    padding-top: 68px;
  }
  .exhibition-space-page .exhibition-hero::before { display: none; }
  .exhibition-space-page .exhibition-hero-media img { object-position: 68% center; }
  .exhibition-space-page .exhibition-hero-media::after {
    background: linear-gradient(90deg, rgba(7,7,7,.96), rgba(7,7,7,.55)), linear-gradient(180deg, rgba(7,7,7,.08) 30%, rgba(7,7,7,.92) 78%);
  }
  .exhibition-space-page .exhibition-hero-content { height: auto; min-height: 0; padding: 60px 0 28px; }
  .exhibition-space-page .exhibition-hero-copy { position: relative; inset: auto; width: 100%; }
  .exhibition-space-page .exhibition-kicker { margin-bottom: 22px; font-size: 10px; }
  .exhibition-space-page .exhibition-hero h1 { font-size: clamp(49px, 13.6vw, 72px); }
  .exhibition-space-page .exhibition-hero-lead { margin-top: 22px; font-size: 14px; }
  .exhibition-space-page .exhibition-hero-actions { margin-top: 28px; }
  .exhibition-space-page .exhibition-hero-actions .exhibition-primary,
  .exhibition-space-page .exhibition-secondary { width: calc(50% - 7px); }
  .exhibition-space-page .exhibition-hero-metrics { position: relative; inset: auto; width: 100%; margin-top: 42px; }
  .exhibition-space-page .exhibition-hero-metrics > div { padding-inline: 10px; }
  .exhibition-space-page .exhibition-hero-metrics strong { font-size: 34px; }
  .exhibition-space-page .exhibition-hero-metrics span { font-size: 11px; }
  .exhibition-space-page .exhibition-hero-categories { height: auto; grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .exhibition-space-page .exhibition-hero-categories a { min-height: 72px; }
  .exhibition-space-page .exhibition-hero-foot { height: 48px; }
  .exhibition-space-page .exhibition-hero-foot span { display: none; }
  .exhibition-space-page .exhibition-hero-foot b { margin-left: auto; }
}

@media (max-width: 520px) {
  .exhibition-space-page .exhibition-hero-actions { display: grid; grid-template-columns: 1fr; }
  .exhibition-space-page .exhibition-hero-actions .exhibition-primary,
  .exhibition-space-page .exhibition-secondary { width: 100%; }
  .exhibition-space-page .exhibition-hero-lead br { display: none; }
  .exhibition-space-page .exhibition-hero-categories b { font-size: 14px; }
  .exhibition-space-page .exhibition-hero-categories i { font-size: 19px; }
}
