body.subpage-body {
  height: auto;
  min-height: 100vh;
  overflow: auto;
}

.subpage-body .site-header {
  background: var(--white);
  border-bottom: 1px solid rgb(0 0 0 / 8%);
  color: var(--black);
  mix-blend-mode: normal;
  padding: 0.75rem var(--pad);
}

.subpage-body .site-header .brand img {
  filter: none;
}

.subpage-body .nav-link.is-current .nav-dot {
  opacity: 1;
  transform: scale(1);
}

.page-shell {
  min-height: 100svh;
  padding: calc(var(--pad) + 5rem) var(--pad) 4rem;
}

.page-hero {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.48fr);
  margin-bottom: 4rem;
}

.page-kicker {
  font-family: var(--english-font);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

.page-title {
  font-family: var(--english-font);
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.92;
}

.page-lede {
  align-self: end;
  font-family: var(--english-font);
  font-size: clamp(1.5rem, 3vw, 3.2rem);
  font-weight: 650;
  justify-self: end;
  line-height: 1.08;
  text-align: right;
}

.page-lede-cn {
  display: block;
  font-family: var(--chinese-font);
  font-size: 0.55em;
  font-weight: 500;
  line-height: 1.55;
  margin-top: 1.1rem;
}

.filter-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.model-subfilters {
  margin-top: -1.25rem;
}

.model-subfilters[hidden] {
  display: none;
}

.filter-button {
  background: #ececea;
  border-radius: 0.75rem;
  font-family: var(--english-font);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.72rem 1rem;
}

.filter-button.is-active {
  background: var(--black);
  color: var(--white);
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.image-card {
  cursor: pointer;
}

.image-card img {
  aspect-ratio: 0.78;
  background: #ececea;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.image-card h2,
.image-card h3 {
  font-family: var(--english-font);
  font-size: clamp(1.15rem, 1.8vw, 1.9rem);
  font-weight: 800;
  line-height: 0.98;
  margin-top: 0.7rem;
}

.image-card p {
  color: #6f6f68;
  font-family: var(--english-font);
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.3;
  margin-top: 0.35rem;
  text-transform: uppercase;
}

.image-card.is-hidden,
.list-row.is-hidden,
.insight-card.is-hidden {
  display: none;
}

.model-card.is-hidden {
  display: none;
}

.project-list {
  border-top: 1px solid var(--black);
}

.list-row {
  align-items: center;
  border-bottom: 1px solid var(--black);
  display: grid;
  gap: clamp(1rem, 2vw, 2.25rem);
  grid-template-columns:
    minmax(18rem, 0.95fr)
    minmax(11rem, 0.5fr)
    minmax(15rem, 0.72fr)
    minmax(13rem, 0.55fr);
  justify-items: start;
  min-height: 5rem;
  padding: 0.95rem 0;
  text-align: left;
  width: 100%;
}

.list-row strong {
  font-family: var(--english-font);
  font-size: clamp(1.55rem, 3.15vw, 4rem);
  font-weight: 800;
  justify-self: start;
  line-height: 0.9;
  max-width: 8.5em;
  text-align: left;
}

.list-row span {
  font-family: var(--english-font);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.confidential {
  justify-self: start;
}

.preview-panel {
  background: var(--white);
  border-left: 1px solid var(--black);
  bottom: 0;
  display: grid;
  gap: 1rem;
  grid-template-rows: minmax(0, 1fr) auto;
  opacity: 0;
  padding: var(--pad);
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: opacity 280ms ease, transform 420ms var(--ease);
  width: min(38rem, 42vw);
  z-index: 111;
}

.preview-panel.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.preview-close {
  font-size: 0.75rem;
  justify-self: end;
  text-transform: uppercase;
}

.preview-panel img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  width: 100%;
}

.preview-copy h2 {
  font-family: var(--english-font);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 0.85;
}

.preview-copy p {
  color: #555;
  font-family: var(--english-font);
  font-size: 0.85rem;
  font-weight: 650;
  line-height: 1.35;
  margin-top: 0.75rem;
  text-transform: uppercase;
}

.projects-shell {
  padding-left: min(1.7vw, 1.8rem);
  padding-right: min(1.7vw, 1.8rem);
}

.project-board {
  padding-bottom: 2rem;
}

.project-board-hero {
  margin-bottom: 1.8rem;
  padding-top: 0.75rem;
}

.project-board-hero .page-kicker {
  margin-bottom: 0.65rem;
}

.project-tabs {
  align-items: center;
  display: flex;
  gap: 0.7rem;
  margin-bottom: 2.4rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.project-tabs::-webkit-scrollbar {
  display: none;
}

.project-tab {
  background: #e9e9e5;
  border-radius: 0.9rem;
  flex: 0 0 auto;
  font-family: var(--chinese-font);
  font-size: clamp(0.9rem, 1.15vw, 1.08rem);
  font-weight: 400;
  line-height: 1.2;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.project-tab:hover,
.project-tab:focus-visible {
  transform: translateY(-0.08rem);
}

.project-tab.is-active {
  background: var(--black);
  color: var(--white);
}

.project-brand-sections {
  display: grid;
  gap: 3.6rem;
}

.project-brand-section.is-hidden {
  display: none;
}

.project-brand-heading {
  align-items: baseline;
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.65rem;
  position: relative;
  z-index: 2;
}

.project-brand-heading h2 {
  font-family: var(--english-font);
  font-size: clamp(3.3rem, 5.6vw, 6.6rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.9;
}

.project-brand-heading span {
  color: #6b6b65;
  font-family: var(--chinese-font);
  font-size: clamp(0.9rem, 1.1vw, 1.08rem);
  font-weight: 400;
  line-height: 1.2;
}

.project-card-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-card {
  min-width: 0;
}

.project-image-button {
  display: block;
  text-align: left;
  width: 100%;
}

.project-card--stacked {
  max-width: min(24rem, 100%);
  padding-top: 0.85rem;
}

.project-stack-button {
  overflow: visible;
}

.project-stack-frame {
  aspect-ratio: 1 / 1;
  display: block;
  position: relative;
  width: 100%;
}

.project-stack-frame img {
  inset: 0;
  position: absolute;
}

.project-stack-frame img:nth-child(1) {
  z-index: 3;
}

.project-stack-frame img:nth-child(2) {
  transform: translate(0.55rem, -0.38rem) rotate(1.4deg);
  z-index: 2;
}

.project-stack-frame img:nth-child(3) {
  transform: translate(1.08rem, -0.72rem) rotate(2.6deg);
  z-index: 1;
}

.project-card--stacked:hover .project-stack-frame img:nth-child(1),
.project-card--stacked:focus-within .project-stack-frame img:nth-child(1) {
  transform: translateY(-0.25rem) rotate(-0.6deg);
}

.project-card--stacked:hover .project-stack-frame img:nth-child(2),
.project-card--stacked:focus-within .project-stack-frame img:nth-child(2) {
  transform: translate(0.85rem, -0.62rem) rotate(2deg);
}

.project-card--stacked:hover .project-stack-frame img:nth-child(3),
.project-card--stacked:focus-within .project-stack-frame img:nth-child(3) {
  transform: translate(1.42rem, -0.98rem) rotate(3.3deg);
}

.project-card img {
  aspect-ratio: 1 / 1;
  background: #e5e5e0;
  border-radius: 1rem;
  display: block;
  height: auto;
  object-fit: cover;
  transition: filter 220ms ease, transform 220ms ease;
  width: 100%;
}

.project-card:hover img,
.project-card:focus-within img {
  filter: brightness(0.9);
  transform: translateY(-0.25rem);
}

.project-card h3 {
  font-family: var(--english-font);
  font-size: clamp(1.45rem, 2.05vw, 2.55rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.96;
  margin-top: 0.75rem;
}

.project-card p {
  color: #62625e;
  font-family: Barlow, var(--english-font);
  font-size: clamp(0.8rem, 0.98vw, 1rem);
  font-weight: 600;
  line-height: 1.18;
  margin-top: 0.34rem;
  text-transform: uppercase;
}

.project-card p.project-card-fine {
  font-family: Barlow, var(--english-font);
  font-weight: 400;
  text-transform: none;
}

.project-card p.project-card-cn {
  font-family: var(--chinese-font);
  font-weight: 400;
  text-transform: none;
}

.project-image-viewer {
  align-items: center;
  background: rgb(10 10 10 / 38%);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: clamp(1.2rem, 4vw, 4rem);
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 260ms ease;
  z-index: 140;
}

.project-image-viewer.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.project-viewer-glass {
  backdrop-filter: blur(26px) saturate(1.18);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 18%), rgb(0 0 0 / 24%)),
    rgb(25 25 22 / 32%);
  bottom: 0;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 18%);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.project-viewer-gallery {
  display: none;
  gap: clamp(0.8rem, 1.2vw, 1.15rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  left: clamp(4rem, 7vw, 7rem);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: min(56vw, 54rem);
  z-index: 1;
}

.project-viewer-gallery img {
  background: rgb(255 255 255 / 28%);
  border-radius: 0.35rem;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.project-viewer-gallery img:nth-child(3) {
  grid-column: 1 / 2;
}

.project-image-viewer.has-gallery .project-viewer-gallery {
  display: grid;
}

.project-image-viewer.has-gallery .project-viewer-image {
  display: none;
}

.project-viewer-image {
  border-radius: 1rem;
  box-shadow: 0 1.2rem 4rem rgb(0 0 0 / 18%);
  max-height: min(86svh, 58rem);
  max-width: min(78vw, 72rem);
  object-fit: contain;
  position: relative;
  transform: scale(0.985);
  transition: transform 260ms var(--ease);
  width: auto;
  z-index: 1;
}

.project-viewer-copy {
  color: var(--white);
  display: none;
  left: calc(clamp(4rem, 7vw, 7rem) + min(56vw, 54rem) + clamp(2rem, 4vw, 4rem));
  position: absolute;
  top: clamp(5rem, 12vh, 8rem);
  width: min(22vw, 22rem);
  z-index: 2;
}

.project-viewer-copy::after {
  background: currentcolor;
  content: "";
  display: block;
  height: 1px;
  margin: 1.1rem 0 1.35rem;
  opacity: 0.82;
  width: 2.1rem;
}

.project-image-viewer.has-gallery .project-viewer-copy {
  display: block;
}

.project-viewer-copy h2 {
  font-family: var(--english-font);
  font-size: clamp(2.2rem, 4vw, 5.2rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.82;
}

.project-viewer-copy p {
  font-family: Barlow, var(--english-font);
  font-size: clamp(1.05rem, 1.55vw, 1.75rem);
  font-weight: 400;
  line-height: 1.15;
  margin-top: 0.5rem;
}

.project-image-viewer.is-visible .project-viewer-image {
  transform: none;
}

.project-viewer-back {
  align-items: center;
  display: inline-flex;
  font-family: var(--chinese-font);
  font-size: 0.92rem;
  font-weight: 700;
  gap: 0.7rem;
  left: var(--pad);
  line-height: 1.45;
  padding: 0.6rem 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.project-viewer-back .back-line {
  background: currentcolor;
  display: block;
  height: 1px;
  position: relative;
  transition: width 350ms var(--ease);
  width: 2.1rem;
}

.project-viewer-back .back-line::before {
  border-bottom: 1px solid currentcolor;
  border-left: 1px solid currentcolor;
  content: "";
  height: 0.4rem;
  left: 0;
  position: absolute;
  top: -0.19rem;
  transform: rotate(45deg);
  width: 0.4rem;
}

.project-viewer-back:hover .back-line,
.project-viewer-back:focus-visible .back-line {
  width: 3rem;
}

.project-image-viewer .project-viewer-back {
  color: var(--white);
}

body.is-project-viewer-open {
  overflow: hidden;
}

.service-marquee {
  border-bottom: 1px solid var(--black);
  border-top: 1px solid var(--black);
  font-family: var(--english-font);
  font-size: clamp(2.3rem, 7vw, 7rem);
  font-weight: 800;
  line-height: 0.86;
  margin-bottom: 3rem;
  overflow: hidden;
  padding: 0.8rem 0;
  white-space: nowrap;
}

.service-marquee span {
  animation: pageMarquee 18s linear infinite;
  display: inline-block;
  padding-right: 2rem;
}

@keyframes pageMarquee {
  to {
    transform: translateX(-50%);
  }
}

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

.service-card,
.insight-card,
.contact-card {
  border-top: 1px solid var(--black);
  padding-top: 1rem;
}

.service-card img {
  aspect-ratio: 1.15;
  display: block;
  margin-bottom: 1rem;
  object-fit: cover;
  width: 100%;
}

.service-card h2,
.insight-card h2,
.contact-card h2 {
  font-family: var(--english-font);
  font-size: clamp(1.7rem, 3vw, 3.8rem);
  font-weight: 800;
  line-height: 0.9;
}

.service-card p,
.insight-card p,
.contact-card p {
  color: #444;
  font-family: var(--english-font);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.42;
  margin-top: 0.9rem;
}

.service-tree-panel {
  background: var(--white);
  border-top: 1px solid var(--black);
  min-height: 86svh;
  padding: 1rem 0 0;
}

.service-tree-stage {
  --tree-image-x: 50%;
  --tree-image-y: 50%;
  --tree-reveal-x: 50%;
  --tree-reveal-y: 50%;
  --tree-reveal-size: 0px;
  align-items: center;
  display: grid;
  justify-items: center;
  min-height: 50rem;
  overflow: hidden;
  position: relative;
  touch-action: none;
}

.service-tree-image {
  display: block;
  grid-area: 1 / 1;
  height: min(88svh, 58rem);
  max-width: min(100%, 58rem);
  object-fit: contain;
  width: auto;
}

.service-tree-image-color {
  -webkit-mask-image: radial-gradient(circle var(--tree-reveal-size) at var(--tree-image-x) var(--tree-image-y), #000 0 48%, transparent 72%);
  mask-image: radial-gradient(circle var(--tree-reveal-size) at var(--tree-image-x) var(--tree-image-y), #000 0 48%, transparent 72%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.service-tree-stage.is-active .service-tree-image-color {
  opacity: 1;
}

.service-tree-cursor {
  border: 1px solid rgb(0 0 0 / 28%);
  border-radius: 50%;
  height: calc(var(--tree-reveal-size) * 1.12);
  left: var(--tree-reveal-x);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: var(--tree-reveal-y);
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, height 220ms ease, width 220ms ease;
  width: calc(var(--tree-reveal-size) * 1.12);
}

.service-tree-stage.is-active .service-tree-cursor {
  opacity: 1;
}

.service-tree-markers,
.service-tree-detail {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 5;
}

.service-tree-stage.has-service-focus .service-tree-markers,
.service-tree-stage.has-service-focus .service-tree-detail {
  opacity: 1;
  pointer-events: auto;
}

.service-tree-markers {
  display: grid;
  gap: 0.8rem;
  left: clamp(1rem, 4vw, 4rem);
  top: 50%;
  transform: translateY(-50%);
}

.service-tree-marker {
  color: var(--black);
  cursor: pointer;
  display: grid;
  gap: 0.2rem;
  padding: 0.1rem 0;
}

.service-tree-marker span {
  font-family: var(--chinese-font);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.service-tree-marker strong {
  font-family: var(--english-font);
  font-size: clamp(1.15rem, 1.45vw, 1.55rem);
  font-weight: 800;
  line-height: 0.95;
}

.service-tree-marker span,
.service-tree-marker strong {
  transition: color 240ms ease, opacity 240ms ease;
}

.service-tree-marker.is-active span,
.service-tree-marker.is-active strong {
  color: #7f8f45;
}

.service-tree-detail {
  background: rgb(255 255 255 / 82%);
  backdrop-filter: blur(18px) saturate(1.12);
  border: 1px solid rgb(0 0 0 / 14%);
  box-shadow: 0 1.6rem 4rem rgb(0 0 0 / 12%);
  min-height: 28rem;
  padding: 1.2rem 1.2rem 3.4rem;
  right: clamp(1rem, 3vw, 3rem);
  top: 50%;
  transform: translateY(-50%);
  width: min(28rem, 34vw);
}

.service-tree-detail-content[hidden] {
  display: none;
}

.service-tree-detail-kicker {
  color: #555;
  font-family: var(--english-font);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-tree-language-cn .service-tree-detail-kicker {
  font-family: var(--chinese-font);
}

.service-tree-detail h2 {
  font-family: var(--english-font);
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.88;
  margin-top: 0.45rem;
}

.service-tree-detail p {
  color: #3f3f3a;
  font-family: var(--chinese-font);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 0.9rem;
}

.service-tree-language-en p {
  font-family: var(--english-font);
  font-weight: 400;
  line-height: 1.45;
}

.service-tree-detail h3 {
  font-family: var(--english-font);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 1.15rem;
  text-transform: uppercase;
}

.service-tree-detail ul {
  display: grid;
  gap: 0.32rem;
  list-style: none;
  margin-top: 0.65rem;
}

.service-tree-detail li {
  color: #4f4f49;
  font-family: var(--chinese-font);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.32;
}

.service-tree-language-en li {
  font-family: var(--english-font);
  font-weight: 400;
}

.service-tree-lang-toggle {
  bottom: 1rem;
  font-family: var(--english-font);
  font-size: 0.78rem;
  font-weight: 800;
  left: 1.2rem;
  line-height: 1;
  position: absolute;
  text-transform: uppercase;
}

.insight-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.model-book-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.model-card {
  color: inherit;
  display: block;
  min-width: 0;
}

.model-card-image {
  aspect-ratio: 0.72;
  background: #ececea;
  display: block;
  overflow: hidden;
}

.model-card-image img {
  aspect-ratio: 0.72;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
  transition: transform 520ms var(--ease);
  width: 100%;
}

.model-card-image--left img {
  object-position: center center;
  transform-origin: center center;
}

.model-card-image--right img {
  object-position: center center;
  transform-origin: center center;
}

.model-card:hover .model-card-image img,
.model-card:focus-visible .model-card-image img {
  transform: scale(1.025);
}

.model-card h2 {
  font-family: var(--english-font);
  font-size: clamp(1.3rem, 2.1vw, 2.4rem);
  font-weight: 800;
  line-height: 0.95;
  margin-top: 0.75rem;
}

.model-card p {
  color: #5f5f59;
  font-family: var(--english-font);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0.35rem;
  text-transform: uppercase;
}

.model-empty {
  border-top: 1px solid var(--black);
  font-family: var(--chinese-font);
  font-size: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
}

.model-detail-shell {
  margin: 0 auto;
  max-width: 86rem;
  padding-top: calc(var(--pad) + 5rem);
}

.model-back {
  border-bottom: 1px solid currentColor;
  display: inline-block;
  font-family: var(--english-font);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.model-detail-kicker {
  font-family: var(--english-font);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 4rem;
  text-transform: uppercase;
}

.model-meta-link {
  border-bottom: 1px solid currentColor;
}

.model-meta-link:hover {
  opacity: 0.55;
}

.model-detail-title {
  font-family: var(--english-font);
  font-size: clamp(4.5rem, 7vw, 8rem);
  font-weight: 800;
  line-height: 0.88;
  margin-top: 0.8rem;
}

.model-detail-gallery {
  display: grid;
  align-items: start;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
  margin-top: 2.5rem;
  max-width: 76rem;
}

.model-detail-image {
  margin: 0;
  overflow: hidden;
}

.model-detail-image.is-cover {
  grid-column: auto;
  max-width: none;
}

.model-detail-secondary {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.model-detail-image img {
  display: block;
  height: auto;
  width: 100%;
}

.insight-card {
  cursor: pointer;
  min-height: 16rem;
  padding-bottom: 2rem;
  position: relative;
}

.insight-card time {
  bottom: 0;
  color: #686860;
  font-family: var(--english-font);
  font-size: 0.8rem;
  font-weight: 700;
  left: 0;
  position: absolute;
}

.read-more {
  bottom: 0;
  font-family: var(--english-font);
  font-size: 0.8rem;
  font-weight: 800;
  position: absolute;
  right: 0;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.55fr);
}

.contact-grid--single {
  grid-template-columns: minmax(0, min(58rem, 100%));
  justify-content: start;
  margin-top: clamp(3rem, 10vh, 8rem);
}

.contact-stack--primary {
  max-width: min(58rem, 100%);
}

.xhs-logo {
  align-items: center;
  background: #ff2442;
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-family: var(--chinese-font);
  font-size: clamp(1.15rem, 2vw, 2rem);
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  padding: 0.48em 0.78em 0.54em;
  white-space: nowrap;
}


.contact-stack {
  display: grid;
  gap: 1.5rem;
}

.job-row,
.contact-line {
  align-items: center;
  border-bottom: 1px solid var(--black);
  display: flex;
  font-family: var(--english-font);
  font-size: clamp(1.4rem, 3vw, 3.2rem);
  font-weight: 800;
  justify-content: space-between;
  line-height: 0.92;
  padding: 1rem 0;
}

.contact-grid--single .contact-card h2 {
  font-family: Barlow, var(--english-font);
  font-weight: 400;
}

.contact-grid--single .contact-card h2::after {
  font-family: var(--chinese-font);
  font-weight: 400;
}

.contact-grid--single .contact-card p {
  font-family: Barlow, var(--english-font);
  font-weight: 400;
}

.contact-grid--single .contact-line {
  align-items: flex-start;
  flex-direction: column;
  font-family: Barlow, var(--english-font);
  font-weight: 400;
  gap: 0.55rem;
  justify-content: flex-start;
  line-height: 1;
  padding: 1.15rem 0 1.3rem;
}

.contact-grid--single .contact-line > span:not(.xhs-logo) {
  font-size: clamp(1.25rem, 2.4vw, 2.6rem);
  font-weight: 400;
}

.contact-grid--single .contact-line > strong:not(.xhs-logo) {
  font-family: Barlow, var(--english-font);
  font-size: clamp(1.45rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 0.98;
}

.contact-grid--single .contact-line,
.contact-grid--single .contact-line span,
.contact-grid--single .contact-line strong,
.contact-grid--single .contact-card h2,
.contact-grid--single .contact-card p {
  font-synthesis-weight: none;
}

.job-row button {
  background: var(--black);
  border-radius: 999px;
  color: var(--white);
  flex: 0 0 auto;
  font-size: 0.76rem;
  line-height: 1;
  padding: 0.75rem 1rem;
  text-transform: uppercase;
}

.newsletter {
  border: 1px solid var(--black);
  padding: 1rem;
}

.newsletter label {
  display: inline-flex;
  font-family: var(--english-font);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.newsletter-row {
  border-bottom: 1px solid var(--black);
  display: flex;
  gap: 0.75rem;
}

.newsletter input {
  appearance: none;
  border: 0;
  flex: 1;
  font: inherit;
  min-width: 0;
  outline: 0;
  padding: 0.6rem 0;
}

.newsletter button {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.form-note {
  color: #555;
  font-family: var(--english-font);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.35;
  min-height: 1.2rem;
  margin-top: 0.8rem;
}

.about-shell {
  padding-bottom: 5rem;
}

.about-hero {
  grid-template-columns: 1fr;
  margin-bottom: 2.8rem;
}

.about-hero .page-title {
  font-size: clamp(3.6rem, 8.4vw, 9.2rem);
  max-width: 100%;
  margin-left: 0;
  text-align: left;
}

.about-layout {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  position: relative;
}

.about-story {
  border-top: 1px solid var(--black);
  padding-top: 1.1rem;
  transition: opacity 520ms ease, transform 640ms var(--ease);
}

.about-copy h2 {
  font-family: var(--chinese-font);
  font-size: clamp(1.35rem, 2.25vw, 2.65rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 2rem;
  max-width: 14em;
}

.about-copy-en h2 {
  font-family: var(--english-font);
  font-size: clamp(1.5rem, 2.45vw, 2.9rem);
  line-height: 1.02;
}

.about-copy p {
  font-family: var(--chinese-font);
  font-size: clamp(0.96rem, 1.22vw, 1.28rem);
  font-weight: 500;
  line-height: 1.75;
  margin-top: 1.15rem;
  max-width: 39em;
}

.about-copy-en p {
  font-family: var(--english-font);
  font-size: clamp(0.9rem, 1.12vw, 1.18rem);
  font-weight: 650;
  line-height: 1.48;
}

.language-toggle {
  border: 1px solid var(--black);
  border-radius: 999px;
  font-family: var(--english-font);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 2rem;
  padding: 0.85rem 1.2rem;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  background: var(--black);
  color: var(--white);
}

.about-team {
  align-self: start;
  border-top: 1px solid var(--black);
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.75fr 1fr;
  padding-top: 1.1rem;
  position: relative;
  top: 0;
  transition: transform 720ms var(--ease);
  z-index: 2;
}

.about-team h2 {
  font-family: var(--english-font);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.team-list {
  display: grid;
  gap: 2rem;
}

.team-member {
  border-top: 1px solid rgb(0 0 0 / 38%);
  padding-top: 0.85rem;
}

.team-trigger {
  cursor: pointer;
  display: inline-block;
  font-family: var(--english-font);
  font-size: clamp(2.2rem, 4vw, 5rem);
  font-weight: 800;
  line-height: 0.82;
  position: relative;
  text-align: left;
}

.team-trigger::after {
  background: var(--black);
  bottom: -0.12em;
  content: "";
  height: 0.07em;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 420ms var(--ease);
  width: 100%;
}

.team-trigger:hover::after,
.team-trigger:focus-visible::after,
.team-trigger.is-active::after,
.team-trigger.is-lining::after {
  transform: scaleX(1);
}

.team-member p {
  font-family: var(--chinese-font);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  font-weight: 600;
  line-height: 1.35;
  margin-top: 0.65rem;
}

.about-member-detail {
  border-top: 1px solid var(--black);
  bottom: auto;
  opacity: 0;
  padding-top: 1.1rem;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(14%);
  transition: opacity 520ms ease 160ms, transform 720ms var(--ease);
  width: calc((100% - clamp(2rem, 6vw, 6rem)) / 2);
  z-index: 1;
}

.member-back {
  border-bottom: 1px solid currentColor;
  font-family: var(--english-font);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.member-panel {
  display: none;
}

.member-panel.is-active {
  display: block;
}

.member-image {
  aspect-ratio: 0.78;
  margin: 0 0 1.8rem;
  max-width: min(21rem, 72%);
  overflow: hidden;
}

.member-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.member-copy {
  max-width: 34rem;
}

.member-role {
  font-family: var(--chinese-font);
  font-size: clamp(0.95rem, 1.15vw, 1.18rem);
  font-weight: 650;
  line-height: 1.35;
  margin-bottom: 1rem;
}

.member-copy h2 {
  font-family: var(--english-font);
  font-size: clamp(3rem, 6vw, 7.5rem);
  font-weight: 800;
  line-height: 0.86;
  margin-bottom: 1.6rem;
}

.member-copy p {
  font-family: var(--chinese-font);
  font-size: clamp(0.98rem, 1.15vw, 1.18rem);
  font-weight: 500;
  line-height: 1.75;
  margin-top: 1rem;
}

.about-layout.is-member-open .about-story {
  opacity: 0;
  transform: translateX(-24%);
}

.about-layout.is-member-open {
  overflow: visible;
}

.about-layout.is-member-open .about-team {
  transform: translateX(calc(-100% - clamp(2rem, 6vw, 6rem)));
}

.about-layout.is-member-open .about-member-detail {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

@media (min-width: 992px) {
  .subpage-body .site-header {
    inset: 0 0 auto;
  }

  .subpage-body .book-card {
    display: none;
  }
}

@media (max-width: 991px) {
  .page-shell {
    padding: 5.5rem var(--pad) 5rem;
  }

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

  .page-lede {
    justify-self: start;
    text-align: left;
  }

  .page-title {
    font-size: clamp(3.6rem, 12vw, 7.5rem);
  }

  .projects-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .project-board-hero {
    margin-bottom: 1.35rem;
  }

  .project-tabs {
    gap: 0.55rem;
    margin-bottom: 2rem;
  }

  .project-tab {
    border-radius: 0.75rem;
    font-size: 0.9rem;
    min-height: 2.75rem;
    padding: 0.72rem 1rem;
  }

  .project-brand-sections {
    gap: 2.6rem;
  }

  .project-brand-heading {
    align-items: flex-end;
    gap: 0.65rem;
    margin-bottom: 1.35rem;
  }

  .project-brand-heading h2 {
    font-size: clamp(2.45rem, 13vw, 4.5rem);
    max-width: 76vw;
  }

  .project-brand-heading span {
    font-size: 0.82rem;
    padding-bottom: 0.18rem;
    white-space: nowrap;
  }

  .project-card-grid {
    gap: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card img {
    border-radius: 0.85rem;
  }

  .project-card h3 {
    font-size: clamp(1rem, 5vw, 1.35rem);
    margin-top: 0.55rem;
  }

  .project-card p {
    font-size: 0.72rem;
  }

  .project-image-viewer {
    padding: 4.5rem 1rem 1.2rem;
  }

  .project-viewer-image {
    border-radius: 0.85rem;
    max-height: 76svh;
    max-width: calc(100vw - 2rem);
  }

  .project-viewer-gallery {
    gap: 0.55rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    left: 1rem;
    top: 54%;
    width: calc(100vw - 2rem);
  }

  .project-viewer-gallery img {
    height: auto;
    width: 100%;
  }

  .project-viewer-copy {
    left: 1rem;
    top: 4.2rem;
    width: calc(100vw - 2rem);
  }

  .project-viewer-copy::after {
    margin: 0.7rem 0 0.85rem;
  }

  .project-viewer-copy h2 {
    font-size: clamp(1.7rem, 10vw, 3rem);
  }

  .project-viewer-back {
    left: 1rem;
  }

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

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

  .confidential {
    justify-self: start;
  }

  .preview-panel {
    border-left: 0;
    width: 100%;
  }

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

  .model-book-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-detail-gallery {
    grid-template-columns: 1fr;
  }

  .model-detail-image.is-cover {
    grid-column: auto;
  }

  .model-detail-secondary {
    grid-template-columns: 1fr;
  }

  .service-tree-panel {
    min-height: auto;
  }

  .service-tree-stage {
    min-height: 30rem;
  }

  .service-tree-image {
    height: min(72svh, 42rem);
    max-width: 100%;
  }

  .service-tree-markers {
    left: 1rem;
    top: 26%;
  }

  .service-tree-marker strong {
    font-size: 1.05rem;
  }

  .service-tree-detail {
    bottom: 1rem;
    left: 1rem;
    max-height: 70svh;
    overflow: auto;
    right: 1rem;
    top: auto;
    transform: none;
    width: auto;
  }

  .about-hero {
    margin-bottom: 2rem;
  }

  .about-layout {
    display: block;
    overflow: visible;
  }

  .about-story {
    border-top: 1px solid var(--black);
    padding-top: 1rem;
  }

  .about-team {
    border-top: 1px solid var(--black);
    display: block;
    margin-top: 3rem;
    padding-top: 1rem;
    position: static;
    transform: none;
  }

  .about-team h2 {
    margin-bottom: 1.6rem;
  }

  .team-list {
    gap: 1.5rem;
  }

  .about-member-detail {
    margin-top: 2.5rem;
    opacity: 0;
    position: static;
    transform: translateY(1rem);
    width: 100%;
  }

  .about-layout.is-member-open .about-story {
    opacity: 1;
    transform: none;
  }

  .about-layout.is-member-open .about-team {
    transform: none;
  }

  .about-layout.is-member-open .about-member-detail {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .member-image {
    max-width: min(24rem, 100%);
  }
}

@media (max-width: 560px) {
  .page-kicker.bilingual,
  .service-card h2.bilingual,
  .contact-card h2.bilingual,
  .image-card p.bilingual,
  .list-row .bilingual {
    align-items: flex-start;
  }

  .filter-button.bilingual {
    align-items: center;
  }

  .card-grid,
  .service-grid,
  .model-book-grid {
    grid-template-columns: 1fr;
  }

  .image-card img {
    aspect-ratio: 1.05;
  }

  .job-row,
  .contact-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }
}


@media (max-width: 560px) {
  .page-shell {
    padding: 4.75rem 1rem 5.4rem;
    width: 100%;
  }

  .page-hero {
    gap: 1.35rem;
    margin-bottom: 2rem;
  }

  .page-title {
    font-size: clamp(3.1rem, 18vw, 5.2rem);
    line-height: 0.86;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .page-kicker {
    font-size: 0.78rem;
  }

  .page-lede {
    font-size: clamp(1rem, 5vw, 1.45rem);
    max-width: 100%;
  }

  .projects-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .project-tabs {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.45rem;
  }

  .project-tab {
    border-radius: 999px;
    font-size: 0.82rem;
    min-height: 2.35rem;
    padding: 0.62rem 0.92rem;
  }

  .project-brand-sections {
    gap: 3rem;
  }

  .project-brand-heading {
    align-items: flex-end;
    gap: 0.5rem;
    margin-bottom: 1.55rem;
  }

  .project-brand-heading h2 {
    font-size: clamp(3rem, 21vw, 5.4rem);
    max-width: calc(100vw - 2rem);
  }

  .project-brand-heading span {
    font-size: 0.72rem;
    padding-bottom: 0.16rem;
  }

  .project-card-grid {
    gap: 1.35rem;
    grid-template-columns: 1fr;
  }

  .project-card--stacked {
    max-width: 100%;
    padding-top: 0.55rem;
  }

  .project-stack-frame img:nth-child(2) {
    transform: translate(0.28rem, -0.16rem) rotate(1deg);
  }

  .project-stack-frame img:nth-child(3) {
    transform: translate(0.52rem, -0.3rem) rotate(1.8deg);
  }

  .project-card h3 {
    font-size: clamp(2rem, 13vw, 3.6rem);
    line-height: 0.9;
    margin-top: 0.7rem;
    overflow-wrap: anywhere;
  }

  .project-card p {
    font-size: clamp(0.9rem, 4.8vw, 1.15rem);
    line-height: 1.08;
  }

  .project-image-viewer {
    align-items: flex-start;
    display: block;
    overflow-y: auto;
    padding: 4.4rem 1rem 5rem;
  }

  .project-viewer-back {
    color: var(--white);
    left: 1rem;
    top: 1.2rem;
    transform: none;
  }

  .project-viewer-gallery {
    display: none;
    gap: 0.65rem;
    grid-template-columns: 1fr;
    left: auto;
    margin-top: 7rem;
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
  }

  .project-image-viewer.has-gallery .project-viewer-gallery {
    display: grid;
  }

  .project-viewer-gallery img {
    border-radius: 0.65rem;
    width: 100%;
  }

  .project-viewer-gallery img:nth-child(3) {
    grid-column: auto;
  }

  .project-viewer-copy {
    color: var(--white);
    display: none;
    left: 1rem;
    position: absolute;
    top: 4.2rem;
    width: calc(100% - 2rem);
  }

  .project-viewer-copy h2 {
    font-size: clamp(2.35rem, 15vw, 4.2rem);
  }

  .project-viewer-copy p {
    font-size: 1rem;
  }

  .project-viewer-image {
    display: block;
    margin: 0 auto;
    max-height: none;
    max-width: 100%;
    width: 100%;
  }

  .service-tree-stage {
    min-height: 34rem;
  }

  .service-tree-image {
    height: 32rem;
    max-width: none;
    width: auto;
  }

  .service-tree-markers {
    gap: 0.6rem;
    left: 0.9rem;
    top: 1.2rem;
    transform: none;
  }

  .service-tree-detail {
    bottom: 0.9rem;
    left: 0.9rem;
    max-height: 58svh;
    padding: 1rem 1rem 3rem;
    right: 0.9rem;
  }

  .service-tree-detail h2 {
    font-size: clamp(1.7rem, 10vw, 2.7rem);
  }

  .contact-grid--single {
    margin-top: 2rem;
  }

  .contact-grid--single .contact-card h2 {
    font-size: clamp(2.2rem, 14vw, 4rem);
  }

  .contact-grid--single .contact-line > span:not(.xhs-logo),
  .contact-grid--single .contact-line > strong:not(.xhs-logo) {
    font-size: clamp(1.1rem, 8vw, 2rem);
    overflow-wrap: anywhere;
  }

  .xhs-logo {
    font-size: 1.2rem;
  }

  .about-hero .page-title {
    font-size: clamp(2.8rem, 16vw, 4.6rem);
  }

  .member-image {
    width: 100%;
  }
}


@keyframes serviceTouchPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  22% {
    opacity: 0.24;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.25);
  }
}

@media (max-width: 991px) {
  .service-tree-stage {
    min-height: 36rem;
    overflow: hidden;
  }

  .service-tree-stage::after {
    animation: serviceTouchPulse 2200ms ease-out 700ms 3;
    border: 1px solid rgb(127 143 69 / 42%);
    border-radius: 999px;
    content: "";
    height: 4.2rem;
    left: 56%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 42%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 4.2rem;
    z-index: 4;
  }

  .service-tree-image-color {
    -webkit-mask-image: radial-gradient(circle var(--tree-reveal-size) at var(--tree-image-x) var(--tree-image-y), #000 0 42%, rgb(0 0 0 / 72%) 56%, transparent 78%);
    mask-image: radial-gradient(circle var(--tree-reveal-size) at var(--tree-image-x) var(--tree-image-y), #000 0 42%, rgb(0 0 0 / 72%) 56%, transparent 78%);
  }

  .service-tree-markers {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    z-index: 8;
  }

  .service-tree-marker {
    background: rgb(255 255 255 / 34%);
    backdrop-filter: blur(10px) saturate(1.08);
    border: 1px solid rgb(0 0 0 / 8%);
    border-radius: 999px;
    gap: 0.08rem;
    min-width: 5.8rem;
    padding: 0.42rem 0.58rem 0.46rem;
  }

  .service-tree-marker span {
    font-size: 0.68rem;
    font-weight: 400;
  }

  .service-tree-marker strong {
    font-size: 0.86rem;
  }

  .service-tree-marker.is-active span,
  .service-tree-marker.is-active strong {
    color: #7f8f45;
  }

  .service-tree-detail {
    background: rgb(255 255 255 / 34%);
    -webkit-backdrop-filter: blur(24px) saturate(1.18);
    backdrop-filter: blur(24px) saturate(1.18);
    border: 1px solid rgb(255 255 255 / 38%);
    border-radius: 0.95rem 0 0 0.95rem;
    bottom: 1rem;
    box-shadow: -1.1rem 1.2rem 3.4rem rgb(0 0 0 / 18%);
    left: auto;
    max-height: min(68svh, 35rem);
    min-height: 0;
    opacity: 0;
    overflow: auto;
    padding: 1rem 1rem 3rem;
    pointer-events: none;
    right: 0;
    top: auto;
    transform: translateX(105%);
    transition: opacity 260ms ease, transform 360ms var(--ease);
    width: min(82vw, 24rem);
    z-index: 12;
  }

  .service-tree-stage.is-mobile-detail-open .service-tree-detail {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .service-tree-detail::before {
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / 38%) 22%, rgb(255 255 255 / 24%) 100%);
    content: "";
    inset: 0;
    mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 100%);
    pointer-events: none;
    position: absolute;
  }

  .service-tree-detail::after {
    align-items: center;
    background: rgb(255 255 255 / 42%);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgb(255 255 255 / 42%);
    border-radius: 999px;
    bottom: 0.75rem;
    color: #7f8f45;
    content: "→";
    display: flex;
    font-family: var(--english-font);
    font-size: 1rem;
    font-weight: 800;
    height: 2rem;
    justify-content: center;
    position: absolute;
    right: 0.75rem;
    width: 2rem;
  }

  .service-tree-detail-content {
    position: relative;
    z-index: 1;
  }

  .service-tree-detail p,
  .service-tree-detail li {
    color: rgb(0 0 0 / 76%);
  }

  .service-tree-lang-toggle {
    z-index: 2;
  }
}


@media (max-width: 560px) {
  .contact-grid--single .contact-card h2.bilingual {
    align-items: flex-start !important;
    display: inline-flex !important;
    flex-direction: column !important;
    gap: 0.12rem !important;
    line-height: 1 !important;
    text-align: left !important;
  }

  .contact-grid--single .contact-card h2.bilingual::before,
  .contact-grid--single .contact-card h2.bilingual::after {
    display: block !important;
  }
}


@media (max-width: 991px) {
  .about-team h2 {
    font-size: clamp(1.35rem, 7vw, 2.2rem);
    line-height: 0.92;
  }

  .about-member-detail {
    background: rgb(255 255 255 / 36%);
    -webkit-backdrop-filter: blur(24px) saturate(1.16);
    backdrop-filter: blur(24px) saturate(1.16);
    border: 1px solid rgb(255 255 255 / 42%);
    border-radius: 0.95rem 0 0 0.95rem;
    bottom: 1rem;
    box-shadow: -1.1rem 1.2rem 3.4rem rgb(0 0 0 / 18%);
    left: auto;
    margin-top: 0;
    max-height: calc(100svh - 6rem);
    opacity: 0;
    overflow: auto;
    padding: 1rem 1rem 3rem;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 4.4rem;
    transform: translateX(105%);
    transition: opacity 260ms ease, transform 360ms var(--ease);
    width: min(84vw, 25rem);
    z-index: 118;
  }

  .about-layout.is-member-open .about-member-detail {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .about-member-detail::before {
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / 42%) 22%, rgb(255 255 255 / 24%) 100%);
    content: "";
    inset: 0;
    mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 100%);
    pointer-events: none;
    position: absolute;
  }

  .about-member-detail::after {
    align-items: center;
    background: rgb(255 255 255 / 46%);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgb(255 255 255 / 42%);
    border-radius: 999px;
    bottom: 0.75rem;
    color: var(--black);
    content: "→";
    display: flex;
    font-family: var(--english-font);
    font-size: 1rem;
    font-weight: 800;
    height: 2rem;
    justify-content: center;
    position: absolute;
    right: 0.75rem;
    width: 2rem;
    z-index: 2;
  }

  .member-panel,
  .member-back {
    position: relative;
    z-index: 1;
  }

  .member-back {
    margin-bottom: 1rem;
  }

  .member-image {
    aspect-ratio: 1 / 1;
    border-radius: 0.55rem;
    margin-bottom: 1rem;
    max-width: 100%;
    width: 100%;
  }

  .member-copy h2 {
    font-size: clamp(2rem, 12vw, 3.6rem);
  }
}


@media (max-width: 991px) {
  .about-team h2 {
    font-size: 0.82rem;
    line-height: 1.1;
  }

  .about-member-detail::after {
    display: none;
  }

  .about-layout.is-member-switching .about-member-detail {
    opacity: 0;
    transform: translateX(105%);
  }
}


@media (max-width: 991px) {
  .about-member-detail,
  .service-tree-detail {
    background:
      linear-gradient(135deg, rgb(255 255 255 / 58%) 0%, rgb(255 255 255 / 22%) 44%, rgb(255 255 255 / 12%) 100%),
      rgb(255 255 255 / 22%);
    border-color: rgb(255 255 255 / 58%);
    box-shadow:
      inset 0 1px 0 rgb(255 255 255 / 78%),
      inset 1px 0 0 rgb(255 255 255 / 42%),
      inset -1px 0 0 rgb(0 0 0 / 6%),
      -1.2rem 1.4rem 4rem rgb(0 0 0 / 20%);
  }

  .about-member-detail::before,
  .service-tree-detail::before {
    background:
      radial-gradient(circle at 18% 8%, rgb(255 255 255 / 58%), transparent 32%),
      linear-gradient(90deg, rgb(255 255 255 / 42%), rgb(255 255 255 / 10%) 34%, transparent 76%);
    border-radius: inherit;
    content: "";
    inset: 0;
    mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 100%);
    pointer-events: none;
    position: absolute;
  }

  .about-member-detail::after,
  .service-tree-detail::after {
    background: linear-gradient(180deg, rgb(255 255 255 / 82%), rgb(255 255 255 / 16%));
    border-radius: 999px;
    content: "";
    height: calc(100% - 1.8rem);
    left: 0.55rem;
    opacity: 0.42;
    pointer-events: none;
    position: absolute;
    top: 0.9rem;
    width: 1px;
  }

  .about-member-detail > *,
  .service-tree-detail > * {
    position: relative;
    z-index: 1;
  }
}


@media (max-width: 991px) {
  .about-member-detail,
  .service-tree-detail {
    visibility: hidden;
    will-change: transform, opacity;
  }

  .about-layout.is-member-open .about-member-detail,
  .service-tree-stage.is-mobile-detail-open .service-tree-detail {
    visibility: visible;
  }
}


@media (max-width: 991px) {
  .about-member-detail,
  .service-tree-detail {
    transform: translateX(calc(105% + var(--panel-drag-x, 0px)));
  }

  .about-layout.is-member-open .about-member-detail,
  .service-tree-stage.is-mobile-detail-open .service-tree-detail {
    transform: translateX(var(--panel-drag-x, 0px));
  }

  .about-member-detail.is-dragging,
  .service-tree-detail.is-dragging,
  .project-image-viewer.is-dragging .project-viewer-gallery,
  .project-image-viewer.is-dragging .project-viewer-image,
  .project-image-viewer.is-dragging .project-viewer-copy {
    transition: none !important;
  }

  .project-image-viewer .project-viewer-gallery,
  .project-image-viewer .project-viewer-image,
  .project-image-viewer .project-viewer-copy {
    transform: translateX(var(--viewer-drag-x, 0px));
    transition: transform 260ms var(--ease);
  }

  .project-image-viewer.is-dragging .project-viewer-glass {
    opacity: 0.82;
  }
}


@media (max-width: 991px) {
  .about-member-detail,
  .service-tree-detail,
  .project-image-viewer {
    touch-action: pan-y;
  }

  .about-layout.is-member-switching .about-member-detail {
    opacity: 0;
    transform: translateX(105%) !important;
  }

  .project-image-viewer.is-visible {
    overscroll-behavior: contain;
  }
}


.model-back {
  text-transform: none;
}


.about-copy-en h2 {
  word-spacing: 0.12em;
}

.team-role {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 0.26em;
}

.team-role span:last-child {
  font-family: Barlow, var(--english-font);
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.05;
}

.member-detail-actions {
  align-items: center;
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.member-detail-actions .member-back {
  margin-bottom: 0;
}

.member-language-toggle {
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--english-font);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.56rem 0.82rem;
  transition: background 220ms ease, color 220ms ease;
}

.member-language-toggle:hover,
.member-language-toggle:focus-visible {
  background: var(--black);
  color: var(--white);
}

.member-language-en p:not(.member-role) {
  font-family: Barlow, var(--english-font);
  font-weight: 400;
  line-height: 1.52;
}

@media (max-width: 991px) {
  .member-detail-actions {
    justify-content: space-between;
    margin-bottom: 1.25rem;
  }

  .member-language-toggle {
    font-size: 0.7rem;
    padding: 0.5rem 0.72rem;
  }
}


.about-lab-intro {
  margin-bottom: clamp(2rem, 4.5vw, 4.2rem);
  max-width: 44rem;
}

.about-lab-intro h2 {
  font-family: var(--english-font);
  font-size: clamp(3.4rem, 7vw, 8rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.82;
  margin-bottom: 1rem;
  max-width: none;
}

.about-lab-intro p {
  font-family: var(--chinese-font);
  font-size: clamp(1.05rem, 1.55vw, 1.65rem);
  font-weight: 500;
  line-height: 1.55;
  margin-top: 0;
  max-width: 34em;
}

.about-copy-en .about-lab-intro p {
  font-family: Barlow, var(--english-font);
  font-weight: 400;
  line-height: 1.36;
}

@media (max-width: 991px) {
  .about-lab-intro {
    margin-bottom: 2.4rem;
  }

  .about-lab-intro h2 {
    font-size: clamp(3rem, 18vw, 5.6rem);
  }
}


.about-lab-intro h2 {
  line-height: 0.92;
}

@media (max-width: 991px) {
  .about-lab-intro h2 {
    line-height: 0.9;
    margin-bottom: 1.35rem;
  }
}
