@font-face {
  font-family: "XSong Web";
  src: url("assets/fonts/xsong-simsun.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-024F, U+1E00-1EFF;
}

/* Operations poster archive template */
.operations-archive-page {
  background: var(--bg);
}

.operations-archive-page .site-header {
  background: var(--bg);
}

.poster-archive-main {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 116px clamp(20px, 4.8vw, 72px) 0;
}

.poster-archive-heading {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(280px, 0.9fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: clamp(24px, 4vw, 72px);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 18px;
}

.poster-archive-index {
  display: grid;
  align-content: space-between;
  gap: 18px;
  height: 100%;
  color: var(--yay-green);
  font-family: "XSong Web", "Courier New", monospace;
}

.poster-archive-index span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 300;
  line-height: 0.9;
}

.poster-archive-index small {
  font-size: 10px;
  letter-spacing: 0.04em;
}

.poster-archive-title h1 {
  margin: 0;
  font-size: clamp(56px, 8vw, 128px);
  font-weight: 400;
  line-height: 0.88;
}

.poster-archive-title p {
  margin: 20px 0 0;
  color: var(--yay-green);
  font-family: "XSong Web", "Courier New", monospace;
  font-size: 11px;
}

.poster-archive-intro {
  display: grid;
  gap: 20px;
  align-self: end;
  padding-bottom: 2px;
}

.poster-archive-intro p {
  max-width: 24em;
  margin: 0;
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.55;
}

.poster-archive-intro span {
  color: var(--yay-green);
  font-family: "XSong Web", "Courier New", monospace;
  font-size: 10px;
}

.poster-archive-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #8a8a8a;
  font-family: "XSong Web", "Courier New", monospace;
  font-size: 10px;
}

.poster-archive-filter .is-active {
  color: var(--ink);
}

.poster-grid {
  column-count: 5;
  column-gap: clamp(16px, 2.2vw, 34px);
  column-fill: balance;
  margin-top: clamp(30px, 4vw, 60px);
}

.poster-card {
  display: block;
  min-width: 0;
  margin: 0 0 clamp(20px, 2.4vw, 34px);
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.poster-card figure {
  margin: 0;
  overflow: hidden;
  background: #ededeb;
  border-radius: clamp(10px, 1.1vw, 18px);
}

.poster-card figure img {
  width: 100%;
  height: auto;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.poster-card-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding-top: 11px;
}

.poster-card-meta > div {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.poster-card-meta span,
.poster-card-meta time {
  color: var(--yay-green);
  font-family: "XSong Web", "Courier New", monospace;
  font-size: 10px;
  white-space: nowrap;
}

.poster-card-meta h2 {
  margin: 0;
  font-size: clamp(17px, 1.5vw, 24px);
  font-weight: 400;
  line-height: 1.1;
}

.poster-card-subline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 7px;
  color: #777;
  font-family: "XSong Web", "Courier New", monospace;
  font-size: 9px;
}

.poster-card-subline span:last-child {
  color: var(--ink);
}

.operations-archive-page .poster-card-meta,
.operations-archive-page .poster-card-subline {
  display: none;
}

@media (max-width: 1250px) {
  .poster-grid {
    column-count: 4;
  }
}

@media (max-width: 960px) {
  .poster-grid {
    column-count: 3;
  }
}

@media (hover: hover) {
  .poster-card:hover figure img,
  .poster-card:focus-visible figure img {
    transform: scale(1.018);
  }
}

.poster-card:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 6px;
  border-radius: clamp(12px, 1.3vw, 20px);
}

.poster-lightbox-open {
  overflow: hidden;
}

.poster-lightbox[hidden] {
  display: none;
}

.poster-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(10, 10, 10, 0.88);
}

.poster-lightbox-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: zoom-out;
}

.poster-lightbox-image {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(94vw, 1600px);
  height: auto;
  max-height: 92vh;
  border-radius: clamp(8px, 0.8vw, 14px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  object-fit: contain;
}

.poster-lightbox-close {
  position: absolute;
  z-index: 2;
  top: clamp(14px, 2vw, 28px);
  right: clamp(14px, 2vw, 28px);
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.34);
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.poster-lightbox-close:hover,
.poster-lightbox-close:focus-visible {
  background: #fff;
  color: var(--ink);
}

@media (max-width: 760px) {
  .poster-archive-main {
    padding-top: 92px;
  }

  .poster-archive-heading {
    grid-template-columns: 1fr auto;
    gap: 24px 18px;
  }

  .poster-archive-index {
    grid-column: 1 / -1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    height: auto;
  }

  .poster-archive-index span {
    font-size: 32px;
  }

  .poster-archive-title h1 {
    font-size: clamp(48px, 16vw, 76px);
  }

  .poster-archive-title p {
    margin-top: 14px;
  }

  .poster-archive-intro {
    gap: 12px;
  }

  .poster-archive-intro p {
    font-size: 13px;
  }

  .poster-archive-intro span {
    font-size: 8px;
  }

  .poster-archive-filter {
    gap: 15px;
  }

  .poster-grid {
    column-count: 2;
    column-gap: 12px;
    margin-top: 30px;
  }

  .poster-card-meta h2 {
    font-size: 14px;
  }

  .poster-card-meta {
    gap: 8px;
    padding-top: 8px;
  }

  .poster-card-meta > div {
    gap: 7px;
  }

  .poster-card-meta span,
  .poster-card-meta time,
  .poster-card-subline {
    font-size: 8px;
  }

  .poster-card-subline {
    gap: 8px;
    padding-top: 5px;
  }
}

@font-face {
  font-family: "Huiwen Ganghei Web";
  src: url("assets/fonts/huiwen-ganghei.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --ink: #101010;
  --muted: #777777;
  --line: rgba(16, 16, 16, 0.14);
  --accent: #1f5eff;
  --yay-green: #00a358;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    "XSong Web", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

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

a,
button,
[role="button"] {
  touch-action: manipulation;
}

.home-page {
  position: relative;
  min-height: 100svh;
}

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

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

.swipe-back-indicator {
  --swipe-progress: 0;
  position: fixed;
  z-index: 100;
  left: 10px;
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 16, 16, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 18px rgba(16, 16, 16, 0.13);
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 24px;
  opacity: calc(0.25 + var(--swipe-progress) * 0.75);
  pointer-events: none;
  transform: translateX(calc(-52px + var(--swipe-progress) * 52px)) scale(calc(0.82 + var(--swipe-progress) * 0.18));
  transition: opacity 120ms ease, color 120ms ease, border-color 120ms ease;
}

.swipe-back-indicator.is-visible {
  display: flex;
}

.swipe-back-indicator.is-ready {
  border-color: var(--yay-green);
  color: var(--yay-green);
}

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

.marquee {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  height: 28px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  line-height: 28px;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-copy {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100vw;
  gap: clamp(64px, 6vw, 128px);
  flex: none;
  padding-right: clamp(64px, 6vw, 128px);
}

.marquee-item {
  flex: none;
  letter-spacing: 0.12em;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 28px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 4.8vw, 64px);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  animation: headerEnter 620ms ease-out both;
}

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

.brand-name {
  display: inline-flex;
  align-items: center;
  height: 42px;
  font-size: 18px;
  line-height: 1;
  transition: color 180ms ease;
}

.nav {
  display: flex;
  align-items: center;
  height: 42px;
  gap: clamp(18px, 4vw, 46px);
  font-family: "Huiwen Ganghei Web", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  font-weight: 780;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 42px;
  line-height: 1;
}

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

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.brand:hover .brand-name,
.nav a:hover {
  color: var(--yay-green);
}

.brand:focus-visible,
.nav a:focus-visible,
.mobile-fruit-link:focus-visible {
  outline: 2px solid var(--yay-green);
  outline-offset: 5px;
}

.portfolio-home {
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding-top: 118px;
}

.motion-portfolio {
  position: relative;
  width: 100%;
  height: calc(100svh - 118px);
  min-height: 610px;
  overflow: hidden;
}

.header-title {
  position: absolute;
  z-index: 2;
  top: max(18px, calc(36px - 1.086vw));
  left: 50%;
  width: min(30vw, 500px);
  height: auto;
  object-fit: contain;
  pointer-events: none;
  transform: translateX(-50%);
  animation: titleEnter 720ms ease-out 40ms both;
}

.motion-entry {
  --parallax-x: 0px;
  --parallax-y: 0px;
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  position: absolute;
  display: block;
  width: min(26vw, 52svh, 500px);
  min-width: 220px;
  aspect-ratio: 1;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(var(--scene-scale, 1));
}

.motion-entry:hover {
  z-index: 20;
}

.entry-brand {
  z-index: 3;
  top: 48%;
  left: 13%;
}

.entry-marketing {
  z-index: 4;
  top: 39%;
  left: 38%;
}

.entry-event {
  z-index: 6;
  top: 52%;
  left: 63%;
}

.entry-operations {
  z-index: 5;
  top: 43%;
  left: 87%;
}

.entry-drop,
.entry-parallax,
.entry-hover,
.entry-idle {
  position: absolute;
  inset: 0;
  display: block;
  transform-origin: 50% 52%;
}

.entry-drop {
  opacity: 0;
  animation: fruitDrop 920ms cubic-bezier(0.18, 0.86, 0.3, 1.16) var(--delay) forwards;
}

.entry-parallax {
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  transition: transform 220ms ease-out;
}

.entry-hover {
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  transition: transform 260ms cubic-bezier(0.2, 0.75, 0.25, 1.15), filter 220ms ease;
}

.entry-idle {
  animation: fruitSettle 3.4s ease-in-out calc(var(--delay) + 1100ms) 2 alternate;
}

.entry-group {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.entry-hit {
  position: absolute;
  z-index: 12;
  display: block;
  border-radius: 50%;
  pointer-events: auto;
  cursor: pointer;
}

.motion-entry .entry-hit {
  top: 18%;
  left: 18%;
  width: 64%;
  height: 64%;
}

.motion-entry:hover .entry-hover {
  filter: saturate(1.03) drop-shadow(0 18px 16px rgba(16, 16, 16, 0.08));
  transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) - 8px), 0) scale(1.045);
}

.motion-entry:focus-visible {
  outline: none;
}

.motion-entry:focus-visible .entry-hit {
  outline: 3px solid var(--yay-green);
  outline-offset: 5px;
}

.mobile-portfolio {
  display: none;
}

.home-statement {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: clamp(760px, 46vw, 980px);
  padding: 0;
  background: transparent;
  pointer-events: none;
  transform: translateX(-50%);
  animation: statementEnter 620ms ease-out 980ms both;
}

.home-statement img {
  width: 100%;
  height: auto;
}

@keyframes titleEnter {
  from {
    opacity: 0;
    transform: translate(-50%, -18px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes headerEnter {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes statementEnter {
  from {
    opacity: 0;
    transform: translate(-50%, 8px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes fruitDrop {
  0% {
    opacity: 0;
    transform: translateY(-105vh) rotate(var(--start-rotate)) scale(0.88);
  }

  68% {
    opacity: 1;
    transform: translateY(20px) rotate(-1deg) scale(1.02, 0.96);
  }

  82% {
    opacity: 1;
    transform: translateY(-13px) rotate(0.8deg) scale(0.99, 1.01);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

@keyframes fruitSettle {
  from {
    transform: translateY(0) rotate(0);
  }

  to {
    transform: translateY(-9px) rotate(var(--idle-rotate));
  }
}

@keyframes mobileFruitDrop {
  0% {
    opacity: 0;
    transform: translateY(-42vh) rotate(calc(var(--rotate) * 3)) scale(0.9);
  }

  72% {
    opacity: 1;
    transform: translateY(10px) rotate(var(--rotate)) scale(1.02, 0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(var(--rotate));
  }
}

@keyframes mobileFruitFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-7px);
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .motion-entry {
    width: min(24vw, 46svh);
    min-width: 205px;
  }

  .entry-brand {
    left: 12.5%;
  }

  .entry-marketing {
    left: 37.5%;
  }

  .entry-event {
    left: 62.5%;
  }

  .entry-operations {
    left: 87.5%;
  }

  .home-statement {
    width: min(62vw, 800px);
  }
}

.category-page,
.text-page {
  padding: 150px clamp(20px, 4.8vw, 64px) 80px;
}

.category-hero,
.text-page {
  max-width: 980px;
}

.kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 22px;
  font-size: clamp(48px, 9vw, 118px);
  line-height: 0.92;
  letter-spacing: 0;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.7;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px) clamp(18px, 3vw, 34px);
  margin-top: clamp(54px, 7vw, 96px);
}

.project-grid.single {
  grid-template-columns: minmax(260px, 390px);
}

.project-card {
  display: grid;
  gap: 14px;
  border-top: 3px solid var(--ink);
  padding-top: 12px;
}

.project-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #f4f4f4;
}

.project-card span,
.project-card strong,
.project-card small {
  display: block;
}

.project-card strong {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
}

.project-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.archive-page {
  font-family:
    "Huiwen Ganghei Web", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

.archive-page [lang="en"],
.archive-page .brand-name,
.archive-page .marquee,
.archive-meta p,
.archive-meta time,
.archive-footer {
  font-family: "XSong Web", "Courier New", monospace;
}

.wechat-article-list {
  margin-top: clamp(38px, 5vw, 72px);
  border-top: 1px solid var(--ink);
}

.wechat-article {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(220px, 0.58fr) minmax(320px, 1fr) auto;
  gap: clamp(20px, 3.2vw, 54px);
  min-height: clamp(210px, 20vw, 310px);
  align-items: center;
  border-bottom: 1px solid var(--ink);
  padding: clamp(20px, 2.4vw, 36px) 0;
}

.wechat-article-index {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--yay-green);
}

.wechat-article-index span {
  font-family: "XSong Web", monospace;
  font-size: clamp(22px, 2.2vw, 34px);
}

.wechat-article-index small,
.wechat-article-kicker,
.wechat-article-action {
  font-family: "XSong Web", monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.wechat-article-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 12 / 5;
  margin: 0;
  overflow: hidden;
  background: #ededed;
}

.wechat-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms ease;
}

.wechat-cover-placeholder {
  display: grid;
  padding: clamp(18px, 2.4vw, 34px);
  align-content: space-between;
  color: var(--ink);
}

.wechat-cover-placeholder::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32%;
  height: 44%;
  background: var(--yay-green);
  content: "";
}

.wechat-cover-placeholder span {
  font-family: "XSong Web", monospace;
  font-size: clamp(46px, 6vw, 96px);
  line-height: 0.8;
}

.wechat-cover-placeholder small {
  position: relative;
  z-index: 1;
  font-size: 12px;
}

.wechat-article-copy {
  align-self: center;
  max-width: 760px;
}

.wechat-article-kicker {
  margin-bottom: 12px;
  color: var(--yay-green);
}

.wechat-article-copy h2 {
  margin: 0;
  max-width: 24em;
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 400;
  line-height: 1.12;
}

.wechat-article-intro {
  max-width: 45em;
  margin-top: 18px;
  color: #4c4c4c;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.65;
}

.wechat-article-action {
  align-self: end;
  min-width: 88px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
  text-align: right;
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .wechat-article:hover .wechat-article-cover img {
    transform: scale(1.025);
  }

  .wechat-article:hover .wechat-cover-placeholder::after,
  .wechat-article:focus-visible .wechat-cover-placeholder::after {
    width: 100%;
    height: 5px;
  }

  .wechat-cover-placeholder::after {
    transition: width 260ms ease, height 260ms ease;
  }
}

.archive-main {
  width: 100%;
  padding: 130px clamp(20px, 4.8vw, 64px) 0;
}

.archive-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  align-items: end;
  gap: clamp(36px, 8vw, 148px);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 18px;
}

.archive-title {
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 2vw, 30px);
}

.archive-title > span {
  padding-top: 7px;
  color: var(--yay-green);
  font-size: 12px;
}

.archive-title h1 {
  margin: 0;
  font-size: clamp(46px, 6vw, 90px);
  font-weight: 400;
  line-height: 0.92;
}

.archive-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 24px;
}

.archive-summary p {
  color: var(--ink);
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.3;
}

.archive-summary p:first-child {
  grid-column: 1 / -1;
  color: var(--yay-green);
  font-size: clamp(24px, 3vw, 48px);
  line-height: 1;
}

.archive-summary > span {
  color: var(--yay-green);
  font-family: "XSong Web", "Courier New", monospace;
  font-size: 11px;
  text-align: right;
  white-space: nowrap;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(54px, 7vw, 110px) clamp(18px, 2.6vw, 40px);
  margin-top: clamp(44px, 6vw, 84px);
}

.archive-card {
  display: block;
  min-width: 0;
}

.archive-card figure {
  position: relative;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  background: #f4f4f4;
}

.archive-card-pending {
  cursor: default;
}

.archive-card.archive-card-pending figure::after {
  display: none;
}

.archive-pending-visual {
  display: grid;
  width: 100%;
  height: 100%;
  padding: clamp(22px, 3vw, 42px);
  align-content: space-between;
  background: var(--yay-green);
  color: #fff;
}

.archive-card-pending .archive-meta h2,
.archive-card-pending .archive-meta time {
  color: var(--yay-green);
}

.archive-pending-visual span,
.archive-pending-visual small {
  font-family: "XSong Web", monospace;
  font-size: clamp(11px, 0.9vw, 14px);
}

.archive-pending-visual strong {
  font-family: "Huiwen Ganghei Web", sans-serif;
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 400;
  line-height: 1.08;
}

/* Event design: compact logo strips */
.event-board-list {
  display: grid;
  gap: clamp(16px, 2vw, 30px);
  padding: clamp(34px, 4vw, 64px) clamp(28px, 2.7vw, 54px);
  background: #fff;
}

.event-board {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: clamp(22px, 2.5vw, 44px);
  width: 100%;
  min-height: clamp(104px, 9.4vw, 150px);
  padding: 0 clamp(36px, 3vw, 62px);
  overflow: hidden;
  background: #00ad68;
  color: #fff;
  text-decoration: none;
}

.event-board-number {
  flex: 0 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(36px, 3.2vw, 54px);
  font-weight: 300;
  line-height: 1;
}

.event-board > img {
  justify-self: end;
  width: min(31vw, 500px);
  height: auto;
  max-height: 68%;
  object-fit: contain;
  transition: transform 320ms ease;
}

.event-board-open {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: clamp(11px, 0.8vw, 13px);
  white-space: nowrap;
}

@media (hover: hover) {
  .event-board:hover > img,
  .event-board:focus-visible > img {
    transform: scale(1.015);
  }
}

.event-project .project-main {
  padding-right: 0;
  padding-left: 0;
  background: #fff;
  color: #111;
}

.event-project .project-heading {
  grid-template-columns: max-content minmax(300px, 1fr) auto;
  align-items: end;
  padding-top: 36px;
  padding-bottom: 28px;
  gap: clamp(12px, 1.8vw, 28px);
  border-bottom: 1px solid var(--ink);
}

.event-project .project-number {
  font-size: clamp(12px, 1vw, 15px);
}

.event-project .project-title {
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1;
}

.event-project .project-heading-meta {
  align-self: stretch;
  grid-template-rows: 1fr auto;
  align-content: space-between;
  font-size: 12px;
}

.event-project .project-heading-meta .project-category-en {
  align-self: start;
}

.event-project .project-heading-meta .project-category,
.event-project .project-heading-meta time {
  align-self: end;
}

.event-project .project-overview {
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  margin-top: 0;
  padding-top: 34px;
  padding-bottom: 16px;
  gap: 24px;
  border-top: 0;
}

.event-project .project-statement {
  max-width: 18em;
  margin: 0;
  font-size: clamp(20px, 2.1vw, 34px);
  line-height: 1.18;
}

.event-project .project-description p {
  max-width: 42em;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.65;
}

.event-project .project-facts {
  grid-template-columns: 1fr;
  margin-top: 0;
  padding-top: 0;
  border: 0;
  font-size: 13px;
}

.event-project .project-gallery-heading {
  display: none;
}

.event-project .project-narrative[hidden] {
  display: none;
}

.event-project .project-gallery {
  margin-top: -12px;
  border: 0;
}

.event-project .project-heading-meta,
.event-project .project-description,
.event-project .project-facts,
.event-project .project-narrative-copy p,
.event-project .project-gallery figcaption {
  color: #666;
}

.event-project .project-category-en,
.event-project .project-narrative-label,
.event-project .project-gallery-heading span {
  color: #ff7a00;
}

.event-project .project-gallery {
  grid-template-columns: 1fr;
}

.event-project .project-gallery figure,
.event-project .project-gallery figure:first-child {
  grid-column: 1;
}

.event-project .project-gallery img {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
}

.archive-page[data-category="event"] .archive-main {
  padding-right: 0;
  padding-left: 0;
}

.archive-page[data-category="event"] .archive-heading,
.archive-page[data-category="event"] .archive-footer,
.event-project .project-heading,
.event-project .project-overview,
.event-project .project-narrative,
.event-project .project-gallery-heading,
.event-project .project-pagination,
.event-project .project-footer {
  padding-right: clamp(20px, 4.8vw, 64px);
  padding-left: clamp(20px, 4.8vw, 64px);
}

.event-project .project-lead-media,
.event-project .project-gallery,
.event-project .project-gallery figure {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  background: #fff;
  border: 0;
}

.campaign-project-placeholder,
.project-cover-placeholder,
.project-media-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #173f2b;
  color: #f5f0df;
}

.campaign-project-placeholder {
  padding: clamp(18px, 3vw, 42px);
  background:
    radial-gradient(circle at 78% 25%, rgba(244, 122, 47, 0.95) 0 11%, transparent 11.5%),
    radial-gradient(circle at 70% 68%, rgba(222, 220, 153, 0.3) 0 24%, transparent 24.5%),
    linear-gradient(135deg, #173f2b, #0b2519);
}

.campaign-project-placeholder span,
.campaign-project-placeholder small,
.project-cover-placeholder span,
.project-cover-placeholder small,
.project-media-placeholder span,
.project-media-placeholder small {
  font-family: "XSong Web", monospace;
  font-size: clamp(10px, 0.85vw, 14px);
}

.campaign-project-placeholder strong {
  font-family: "Huiwen Ganghei Web", sans-serif;
  font-size: clamp(54px, 8vw, 132px);
  font-weight: 400;
  line-height: 0.86;
}

.project-cover-placeholder {
  width: 100%;
  min-height: clamp(480px, 63vw, 900px);
  padding: clamp(28px, 5vw, 76px);
  background:
    radial-gradient(circle at 82% 28%, #f47a2f 0 9%, transparent 9.5%),
    radial-gradient(circle at 72% 68%, rgba(222, 220, 153, 0.34) 0 25%, transparent 25.5%),
    linear-gradient(135deg, #173f2b, #081d12);
}

.project-cover-placeholder strong {
  font-family: "Huiwen Ganghei Web", sans-serif;
  font-size: clamp(72px, 14vw, 220px);
  font-weight: 400;
  line-height: 0.9;
}

.project-media-placeholder {
  width: 100%;
  min-height: clamp(360px, 52vw, 760px);
  padding: clamp(24px, 4vw, 58px);
  background: #ece8db;
  color: #173f2b;
  border: 1px solid #173f2b;
}

.project-media-placeholder strong {
  align-self: center;
  font-family: "Huiwen Ganghei Web", sans-serif;
  font-size: clamp(42px, 7vw, 108px);
  font-weight: 400;
}

@media (max-width: 760px) {
  .event-project .project-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .event-project .project-statement {
    font-size: clamp(21px, 6.8vw, 30px);
  }

  .event-project .project-overview {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 22px;
    padding-bottom: 26px;
  }

  .event-project .project-facts {
    grid-column: 1;
  }

  .event-project .project-gallery {
    margin-top: -8px;
  }

  .event-board {
    min-height: 86px;
    padding: 0 20px;
  }

  .event-board-list {
    gap: 12px;
    padding: 24px 14px 36px;
  }

  .event-board-number {
    font-size: 30px;
  }

  .event-board > img {
    width: 42vw;
    max-height: 62%;
  }

  .event-board-open {
    min-height: 28px;
    padding: 0 9px;
    font-size: 10px;
  }
}

.archive-card figure::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: #fff;
  color: var(--ink);
  content: "↗";
  font-family: "XSong Web", monospace;
  font-size: 20px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 3;
}

.archive-card figure > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.archive-image-primary {
  opacity: 1;
  transform: scale(1);
}

.archive-image-hover {
  opacity: 0;
  transform: scale(1.025);
}

.archive-card.has-hover:hover .archive-image-primary,
.archive-card.has-hover:focus-visible .archive-image-primary {
  opacity: 0;
  transform: scale(1.018);
}

.archive-card.has-hover:hover .archive-image-hover,
.archive-card.has-hover:focus-visible .archive-image-hover {
  opacity: 1;
  transform: scale(1);
}

.archive-card:not(.has-hover):hover .archive-image-primary {
  transform: scale(1.025);
}

.archive-card:hover figure::after,
.archive-card:focus-visible figure::after {
  opacity: 1;
  transform: translateY(0);
}

.archive-card:focus-visible {
  outline: 2px solid var(--yay-green);
  outline-offset: 5px;
}

.archive-meta {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 4px 10px;
  border-bottom: 1px solid var(--ink);
  padding: 12px 0 11px;
}

.archive-meta > span {
  grid-column: 1;
  grid-row: 1 / 3;
  color: var(--yay-green);
  font-family: "XSong Web", monospace;
  font-size: 10px;
}

.archive-meta h2 {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-size: clamp(19px, 1.75vw, 27px);
  font-weight: 400;
  line-height: 1.05;
}

.archive-meta p {
  grid-column: 2 / 4;
  grid-row: 2;
  color: var(--yay-green);
  font-size: 10px;
  line-height: 1.2;
}

.archive-meta time {
  grid-column: 3;
  grid-row: 1;
  font-size: 11px;
}

.archive-footer {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(90px, 12vw, 190px);
  border-top: 1px solid var(--ink);
  padding: 16px 0 28px;
  color: var(--yay-green);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.project-page {
  font-family:
    "Huiwen Ganghei Web", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

.project-page [lang="en"],
.project-page .brand-name,
.project-page .marquee,
.project-heading-meta,
.project-facts dt,
.project-pagination span,
.project-footer {
  font-family: "XSong Web", "Courier New", monospace;
}

.project-main {
  width: 100%;
  padding: 130px clamp(20px, 4.8vw, 64px) 0;
}

.project-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 36px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 18px;
}

.project-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 2vw, 30px);
}

.project-number {
  padding-top: 8px;
  color: var(--yay-green);
  font-family: "XSong Web", monospace;
  font-size: 11px;
}

.project-title {
  margin: 0;
  font-size: clamp(46px, 6vw, 92px);
  font-weight: 400;
  line-height: 0.92;
}

.project-heading-meta {
  display: grid;
  grid-template-columns: auto auto;
  gap: 4px 30px;
  min-width: min(36vw, 420px);
  text-align: right;
}

.project-heading-meta p,
.project-heading-meta time {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.2;
}

.project-heading-meta .project-category-en {
  grid-column: 1 / -1;
  color: var(--yay-green);
  font-size: clamp(20px, 2.4vw, 38px);
}

.project-lead-media {
  display: grid;
  width: 100%;
  height: min(76svh, 900px);
  min-height: 560px;
  margin: clamp(40px, 5vw, 72px) 0 0;
  place-items: center;
  overflow: hidden;
  background: #f3f3f3;
}

.project-lead-media img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.haidilao-project .project-lead-media {
  height: auto;
  min-height: 0;
  aspect-ratio: 25984 / 10039;
  background: #fff;
}

.haidilao-project .project-lead-media img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.haidilao-project .project-gallery {
  grid-template-columns: 1fr;
  gap: 22px;
  background: #fff;
}

.haidilao-project .project-gallery figure,
.haidilao-project .project-gallery figure:first-child {
  grid-column: 1 / -1;
  background: #fff;
}

.haidilao-project .project-gallery img {
  display: block;
  background: #fff;
}

.haidilao-project .project-overview {
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  margin-top: 0;
  padding-top: 34px;
  padding-bottom: 16px;
  gap: 24px;
  border-top: 0;
}

.haidilao-project .project-statement {
  max-width: 18em;
  margin: 0;
  font-size: clamp(20px, 2.1vw, 34px);
  line-height: 1.18;
}

.haidilao-project .project-description p {
  max-width: 42em;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.65;
}

.haidilao-project .project-facts {
  grid-template-columns: 1fr;
  margin-top: 0;
  padding-top: 0;
  border: 0;
  font-size: 13px;
}

.haidilao-project .project-narrative,
.haidilao-project .project-gallery-heading {
  display: none;
}

.haidilao-project .project-gallery {
  margin-top: clamp(40px, 5vw, 72px);
}

.project-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(380px, 1.28fr);
  gap: clamp(40px, 8vw, 150px);
  margin-top: clamp(54px, 7vw, 104px);
  border-top: 1px solid var(--ink);
  padding-top: 18px;
}

.brand-project .project-overview {
  margin-top: clamp(44px, 5.5vw, 82px);
}

.project-statement {
  max-width: 16em;
  color: var(--yay-green);
  font-size: clamp(28px, 3.2vw, 52px);
  line-height: 1.1;
}

.project-description {
  display: grid;
  grid-template-rows: auto auto;
  gap: 36px;
}

.project-description p {
  max-width: 38em;
  color: var(--ink);
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.65;
}

.project-facts {
  grid-column: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.5fr 0.6fr;
  gap: 24px;
  margin: 10px 0 0;
  border-top: 1px solid var(--ink);
  padding-top: 12px;
}

.project-facts dt {
  margin-bottom: 6px;
  color: var(--yay-green);
  font-size: 10px;
}

.project-facts dd {
  margin: 0;
  font-size: clamp(13px, 1.1vw, 17px);
  line-height: 1.45;
}

.project-narrative {
  display: grid;
  margin-top: clamp(80px, 10vw, 150px);
  border-top: 1px solid var(--ink);
}

.project-narrative article {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(30px, 7vw, 120px);
  border-bottom: 1px solid var(--ink);
  padding: clamp(24px, 3vw, 44px) 0;
}

.project-narrative-label {
  color: var(--yay-green);
  font-family: "XSong Web", monospace;
  font-size: 11px;
  line-height: 1.5;
}

.project-narrative-copy {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(280px, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}

.project-narrative-copy h2 {
  margin: 0;
  color: var(--yay-green);
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.05;
}

.project-narrative-copy p {
  max-width: 46em;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.75;
}

.brand-project .project-narrative-copy p {
  color: #000;
}

.project-gallery-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-top: clamp(90px, 12vw, 180px);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 16px;
}

.project-gallery-heading span {
  color: var(--yay-green);
  font-family: "XSong Web", monospace;
  font-size: 11px;
}

.project-gallery-heading h2 {
  margin: 7px 0 0;
  font-size: clamp(32px, 4.5vw, 68px);
  font-weight: 400;
  line-height: 1;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.8vw, 42px);
  margin-top: clamp(26px, 3vw, 44px);
}

.project-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #f3f3f3;
}

.project-gallery figure:first-child {
  grid-column: 1 / -1;
}

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

.project-gallery figcaption {
  border-top: 1px solid rgba(17, 17, 17, 0.3);
  padding: 8px 0 2px;
  color: var(--yay-green);
  font-family: "XSong Web", monospace;
  font-size: 9px;
}

.brand-project .project-gallery {
  grid-template-columns: 1fr;
  gap: 0;
}

.brand-project .project-gallery figure,
.brand-project .project-gallery figure:first-child {
  grid-column: 1;
  margin: 0;
  line-height: 0;
}

.brand-project .project-gallery img {
  display: block;
  width: 100%;
  height: auto;
}

.project-pagination {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(90px, 12vw, 190px);
  border-block: 1px solid var(--ink);
}

.project-pagination a {
  display: grid;
  gap: 8px;
  min-width: 0;
  min-height: 110px;
  align-content: center;
  padding: 20px;
}

.project-pagination a + a {
  border-left: 1px solid var(--ink);
}

.project-pagination span {
  color: var(--yay-green);
  font-size: 9px;
}

.project-pagination strong {
  overflow-wrap: anywhere;
  font-size: clamp(16px, 1.55vw, 23px);
  font-weight: 400;
}

.project-back {
  text-align: center;
}

.project-next {
  text-align: right;
}

.project-pagination a:hover,
.project-pagination a:focus-visible {
  background: var(--yay-green);
  color: #fff;
  outline: none;
}

.project-pagination a:hover span,
.project-pagination a:focus-visible span {
  color: #fff;
}

.project-footer {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(70px, 9vw, 140px);
  border-top: 1px solid var(--ink);
  padding: 16px 0 28px;
  color: var(--yay-green);
  font-size: 10px;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  border-bottom: 2px solid currentColor;
  font-size: 20px;
  font-weight: 850;
}

.contact-page {
  font-family:
    "Huiwen Ganghei Web", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

.contact-page [lang="en"],
.contact-page .brand-name,
.contact-page .marquee,
.contact-index,
.contact-value strong,
.contact-footer {
  font-family: "XSong Web", "Courier New", monospace;
}

.contact-main {
  width: 100%;
  min-height: 100svh;
  padding: 132px clamp(20px, 4.8vw, 64px) 0;
}

.contact-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 14px;
}

.contact-heading h1 {
  display: flex;
  align-items: baseline;
  gap: clamp(12px, 1.8vw, 28px);
  margin: 0;
  font-family: "XSong Web", "Courier New", monospace;
  font-size: clamp(46px, 6vw, 92px);
  font-weight: 400;
  line-height: 0.8;
}

.contact-heading h1 span:last-child {
  color: var(--yay-green);
  font-family: "Huiwen Ganghei Web", sans-serif;
  font-size: 0.32em;
}

.contact-heading p {
  color: var(--yay-green);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-align: right;
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(32px, 8vw, 160px);
  padding: clamp(42px, 6vw, 86px) 0;
}

.contact-intro p:first-child {
  max-width: 16em;
  color: var(--yay-green);
  font-size: clamp(28px, 3.2vw, 54px);
  line-height: 1;
}

.contact-intro p:last-child {
  align-self: end;
  justify-self: end;
  max-width: 34em;
  color: var(--ink);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.55;
  text-align: right;
}

.contact-list {
  border-top: 1px solid var(--ink);
}

.contact-row {
  display: grid;
  grid-template-columns: 56px minmax(160px, 0.45fr) minmax(240px, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2.8vw, 44px);
  min-height: 92px;
  border-bottom: 1px solid var(--ink);
  padding: 14px 0;
}

.contact-index {
  align-self: start;
  padding-top: 3px;
  color: var(--yay-green);
  font-size: 12px;
}

.contact-label,
.contact-value {
  min-width: 0;
}

.contact-label strong,
.contact-label span,
.contact-value strong,
.contact-value span {
  display: block;
}

.contact-label strong {
  font-size: clamp(18px, 1.75vw, 27px);
  font-weight: 400;
  line-height: 1.05;
}

.contact-label span,
.contact-value span {
  margin-top: 5px;
  color: var(--yay-green);
  font-size: 11px;
}

.contact-value strong {
  overflow-wrap: anywhere;
  font-size: clamp(17px, 1.6vw, 25px);
  font-weight: 400;
  line-height: 1.1;
}

.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 42px;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 10px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.contact-action:hover,
.contact-action:focus-visible {
  background: var(--yay-green);
  color: #fff;
  outline: none;
}

.contact-action.is-copied {
  border-color: var(--yay-green);
  background: var(--yay-green);
  color: #fff;
}

.contact-footer {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(70px, 9vw, 150px);
  border-top: 1px solid var(--ink);
  padding: 16px 0 28px;
  color: var(--yay-green);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.copy-status {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  padding: 9px 12px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.copy-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-page {
  --about-green: #00a358;
  font-family:
    "Huiwen Ganghei Web", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

.about-page [lang="en"],
.about-page .brand-name,
.about-page .marquee {
  font-family: "XSong Web", "Courier New", monospace;
}

.about-main {
  width: 100%;
  overflow: hidden;
  padding: 154px clamp(20px, 4.8vw, 72px) 0;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  column-gap: clamp(42px, 7vw, 132px);
  width: min(100%, 1680px);
  margin: 0 auto;
}

.about-intro-layout {
  display: contents;
}

.about-heading {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(34px, 5vw, 76px);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 18px;
}

.about-eyebrow,
.about-story-index {
  margin: 0;
  color: var(--about-green);
  font-size: clamp(13px, 1.1vw, 17px);
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.about-title {
  display: flex;
  align-items: baseline;
  gap: clamp(14px, 2vw, 32px);
  margin: 0;
  font-family: "XSong Web", "Courier New", monospace;
  font-size: clamp(52px, 8vw, 142px);
  font-weight: 400;
  line-height: 0.72;
}

.about-title-cn {
  color: var(--about-green);
  font-family: "Huiwen Ganghei Web", sans-serif;
  font-size: 0.33em;
  font-weight: 400;
}

.about-portrait {
  align-self: start;
  margin: 0;
  animation: aboutImageEnter 760ms cubic-bezier(0.2, 0.75, 0.25, 1) 120ms both;
}

.about-portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}

.about-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  border-top: 1px solid var(--ink);
  padding-top: 9px;
  color: var(--about-green);
  font-size: clamp(11px, 0.9vw, 14px);
  letter-spacing: 0.06em;
}

.about-cn {
  align-self: center;
  padding-block: clamp(20px, 3vw, 52px);
  animation: aboutTextEnter 720ms ease-out 230ms both;
}

.about-cn p {
  color: var(--ink);
  font-family: "Huiwen Ganghei Web", sans-serif;
  letter-spacing: 0;
}

.about-cn-lead {
  max-width: 18em;
  font-size: clamp(27px, 2.4vw, 44px);
  line-height: 1.38;
}

.about-cn-lead + .about-cn-lead {
  margin-top: 2px;
  color: var(--about-green);
}

.about-cn-lead span {
  display: block;
}

.about-cn .about-cn-lead--green {
  color: var(--about-green);
}

.about-cn-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2em;
  margin-top: clamp(42px, 5vw, 76px);
}

.about-cn-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  align-items: start;
  gap: clamp(24px, 3vw, 56px);
}

.about-cn-body p {
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.85;
}

.about-cn-body .about-cn-lead {
  font-size: clamp(27px, 2.4vw, 44px);
  line-height: 1.38;
}

.about-facts {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  grid-column: 2;
  gap: 22px;
  margin: clamp(46px, 6vw, 86px) 0 0;
  border-top: 1px solid var(--ink);
  padding-top: 14px;
}

.about-facts div {
  min-width: 0;
}

.about-facts dt {
  margin-bottom: 8px;
  color: var(--about-green);
  font-size: 12px;
  letter-spacing: 0.07em;
}

.about-facts dd {
  margin: 0;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.55;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(480px, 1.2fr);
  gap: clamp(48px, 9vw, 176px);
  width: min(100%, 1680px);
  margin: clamp(110px, 15vw, 250px) auto 0;
  border-top: 1px solid var(--ink);
  padding-top: clamp(26px, 4vw, 58px);
}

.about-story-heading {
  align-self: start;
}

.about-story-heading h2 {
  margin: clamp(32px, 5vw, 76px) 0 0;
  color: var(--about-green);
  font-family: "XSong Web", "Courier New", monospace;
  font-size: clamp(38px, 5.2vw, 88px);
  font-weight: 400;
  line-height: 0.98;
}

.about-en {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 58px) clamp(28px, 4vw, 68px);
  font-family: "XSong Web", "Courier New", monospace;
}

.about-en p {
  color: var(--ink);
  font-family: inherit;
  font-size: clamp(16px, 1.24vw, 21px);
  line-height: 1.6;
}

.about-en-intro,
.about-en-emphasis {
  grid-column: 1 / -1;
  max-width: 18em;
  color: var(--about-green) !important;
  font-size: clamp(30px, 3.6vw, 64px) !important;
  line-height: 1.05 !important;
}

.about-en-emphasis {
  margin-block: clamp(28px, 4vw, 64px) 0;
}

.about-signoff {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  width: calc(100% + clamp(40px, 9.6vw, 144px));
  margin: clamp(110px, 15vw, 240px) calc(0px - clamp(20px, 4.8vw, 72px)) 0;
  border-top: 1px solid var(--ink);
  padding: clamp(22px, 3vw, 44px) clamp(20px, 4.8vw, 72px);
  color: var(--about-green);
  font-size: clamp(17px, 2.2vw, 38px);
  letter-spacing: 0.06em;
}

@keyframes aboutImageEnter {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    clip-path: inset(0);
    transform: translateY(0);
  }
}

@keyframes aboutTextEnter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .about-main {
    padding-top: 146px;
  }

  .about-hero,
  .about-story {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    width: min(78vw, 600px);
  }

  .about-cn {
    padding-top: clamp(52px, 9vw, 92px);
  }

  .about-facts {
    grid-column: 1;
  }

  .about-story-heading h2 {
    max-width: 11em;
  }
}

@media (max-width: 620px) {
  .about-main {
    padding: 96px 14px 0;
  }

  .about-hero {
    grid-template-columns: 1fr;
    row-gap: 0;
    align-items: start;
  }

  .about-heading {
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: end;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 9px;
  }

  .about-title {
    grid-column: 1;
    grid-row: 1;
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
    font-size: 28px;
    line-height: 1;
  }

  .about-title-cn {
    font-size: 0.44em;
  }

  .about-eyebrow {
    grid-column: 2;
    grid-row: 1;
    overflow: hidden;
    font-size: 9px;
    text-align: right;
    white-space: nowrap;
  }

  .about-intro-layout {
    grid-column: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(7, auto);
    align-items: start;
    column-gap: 18px;
    row-gap: 9px;
  }

  .about-portrait {
    grid-column: 2;
    grid-row: 2 / 8;
    align-self: stretch;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    width: 100%;
    height: 100%;
  }

  .about-portrait img {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .about-portrait figcaption {
    flex-direction: row;
    align-items: flex-end;
    gap: 6px;
    margin-top: 6px;
    padding-top: 5px;
    font-size: 6.5px;
    line-height: 1;
    white-space: nowrap;
  }

  .about-cn {
    display: contents;
  }

  .about-cn-body {
    display: contents;
  }

  .about-cn-row {
    display: contents;
  }

  .about-cn-lead,
  .about-cn-body .about-cn-lead {
    font-size: 10px;
    line-height: 1.4;
  }

  .about-cn-row--lead .about-cn-lead:first-child {
    grid-column: 1;
    grid-row: 1;
    color: var(--about-green);
  }

  .about-cn-row--lead .about-cn-lead:last-child {
    grid-column: 2;
    grid-row: 1;
    color: var(--ink);
  }

  .about-cn-body p {
    width: 100%;
    min-width: 0;
    margin: 0;
    font-size: 9px;
    line-height: 1.5;
    overflow-wrap: anywhere;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-ideograph;
  }

  .about-cn-p--inspiration {
    grid-column: 1;
    grid-row: 2;
  }

  .about-cn-p--collect {
    grid-column: 1;
    grid-row: 3;
  }

  .about-cn-p--future {
    grid-column: 1;
    grid-row: 4;
  }

  .about-cn-p--year {
    grid-column: 1;
    grid-row: 5;
  }

  .about-cn-p--reason {
    grid-column: 1;
    grid-row: 6;
  }

  .about-cn-p--independent {
    grid-column: 1;
    grid-row: 7;
    align-self: end;
  }

  .about-facts {
    grid-column: 1;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 14px;
    margin-top: 24px;
    border-bottom: 1px solid var(--ink);
    padding-block: 9px;
  }

  .about-facts dt {
    margin-bottom: 4px;
    font-size: 9px;
  }

  .about-facts dd {
    font-size: 12px;
    line-height: 1.4;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 28px;
    border-top: 0;
    padding-top: 12px;
  }

  .about-story-heading h2 {
    margin-top: 14px;
    font-size: 28px;
    line-height: 1;
  }

  .about-en {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-en p {
    font-size: 13px;
    line-height: 1.6;
  }

  .about-en-intro,
  .about-en-emphasis {
    font-size: 22px !important;
    line-height: 1.08 !important;
  }

  .about-en-emphasis {
    margin-top: 14px;
  }

  .about-signoff {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% + 36px);
    width: calc(100% + 28px);
    margin: 58px -14px 0;
    padding: 18px 14px 28px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .site-header,
  .header-title,
  .entry-drop,
  .entry-idle,
  .home-statement,
  .mobile-title-image,
  .mobile-fruit-link,
  .mobile-fruit-link img {
    animation: none;
  }

  .about-portrait,
  .about-cn {
    animation: none;
  }

  .entry-drop,
  .mobile-fruit-link {
    opacity: 1;
    transform: none;
  }

  .home-statement {
    opacity: 1;
    transform: translateX(-50%);
  }

  .entry-parallax,
  .entry-hover {
    transition: none;
  }
}

@media (max-width: 900px) {
  .home-page {
    --mobile-section-gap: clamp(16px, calc(50dvh - 450px), 120px);
    --mobile-grid-size: min(calc(100vw - 32px), 780px, max(220px, calc(100dvh - 360px)));
    display: flex;
    flex-direction: column;
  }

  .header-title {
    display: none;
  }

  .portfolio-home {
    display: block;
    flex: 0 0 auto;
    min-height: auto;
    overflow: visible;
    padding: 136px clamp(16px, 4vw, 28px) 0;
  }

  .motion-portfolio {
    display: none;
  }

  .mobile-portfolio {
    display: block;
    width: min(100%, 780px);
    margin: 0 auto;
  }

  .mobile-title-image {
    display: block;
    width: min(68vw, 420px);
    height: auto;
    margin: 0 auto var(--mobile-section-gap);
    animation: mobileTitleEnter 700ms ease-out both;
  }

  .mobile-fruit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: var(--mobile-grid-size);
    gap: clamp(10px, 2vw, 22px);
    margin-inline: auto;
  }

  .mobile-fruit-link {
    display: block;
    min-width: 0;
    aspect-ratio: 1;
    opacity: 0;
    animation: mobileFruitDrop 920ms cubic-bezier(0.18, 0.86, 0.3, 1.14) var(--delay) forwards;
  }

  .mobile-fruit-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: mobileFruitFloat 3.2s ease-in-out calc(var(--delay) + 1100ms) 2 alternate;
  }

  .home-statement {
    position: static;
    align-self: center;
    width: min(76vw, 800px);
    margin: var(--mobile-section-gap) auto clamp(32px, 5dvh, 90px);
    padding: 0;
    animation: none;
    transform: none;
  }

  .home-statement img {
    width: 100%;
    margin-inline: auto;
  }

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

/* Touch screens should navigate on the first tap instead of entering desktop hover states. */
@media (hover: none), (pointer: coarse) {
  .brand:hover .brand-name,
  .nav a:hover {
    color: inherit;
  }

  .nav a:not([aria-current="page"]):hover::after {
    transform: scaleX(0);
  }

  .archive-card.has-hover:hover .archive-image-primary,
  .archive-card:not(.has-hover):hover .archive-image-primary {
    opacity: 1;
    transform: none;
  }

  .archive-card.has-hover:hover .archive-image-hover {
    opacity: 0;
    transform: scale(1.025);
  }

  .archive-card:hover figure::after {
    opacity: 0;
    transform: translateY(6px);
  }

  .project-pagination a:hover,
  .contact-action:hover {
    background: transparent;
    color: inherit;
  }

  .project-pagination a:hover span {
    transform: none;
  }
}

@media (max-width: 620px) {
  .home-page {
    --mobile-grid-size: min(calc(100vw - 36px), 780px, max(500px, calc(100dvh - 400px)));
  }

  .site-header {
    align-items: center;
    flex-direction: row;
    gap: 14px;
    padding: 9px 18px;
  }

  .brand-name,
  .nav,
  .nav a {
    height: 34px;
  }

  .brand-name {
    font-size: 15px;
  }

  .nav {
    width: auto;
    gap: clamp(16px, 5vw, 28px);
    justify-content: flex-end;
    font-size: 14px;
  }

  .portfolio-home {
    padding: 116px 18px 0;
  }

  .project-grid,
  .project-grid.single {
    grid-template-columns: 1fr;
  }

  .mobile-title-image {
    width: min(78vw, 360px);
    margin-bottom: var(--mobile-section-gap);
  }

  .mobile-fruit-grid {
    row-gap: 0;
  }

  .mobile-fruit-link:nth-child(n + 3) {
    margin-top: -64px;
  }

  .home-statement {
    width: min(76vw, 660px);
    margin-top: var(--mobile-section-gap);
    margin-bottom: clamp(80px, 8dvh, 120px);
    padding: 0;
  }

  .mobile-fruit-link:active img {
    transform: scale(0.965);
  }
}

@media (max-width: 430px) {
  .home-page {
    --mobile-section-gap: clamp(18px, 3dvh, 32px);
    --mobile-grid-size: calc(100vw - 28px);
  }

  .site-header {
    gap: 10px;
    padding: 8px 14px;
  }

  .brand-name {
    height: 32px;
    font-size: 14px;
  }

  .nav,
  .nav a {
    height: 32px;
  }

  .nav {
    gap: clamp(13px, 4vw, 20px);
    font-size: 13px;
  }

  .portfolio-home {
    padding: 104px 14px 0;
  }

  .mobile-title-image {
    width: min(80vw, 330px);
  }

  .mobile-fruit-grid {
    column-gap: 8px;
    row-gap: 12px;
  }

  .mobile-fruit-link:nth-child(n + 3) {
    margin-top: 0;
  }

  .home-statement {
    width: min(90vw, 420px);
    margin-top: clamp(24px, 4dvh, 42px);
    margin-bottom: max(48px, env(safe-area-inset-bottom));
  }
}

@keyframes mobileTitleEnter {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1180px) {
  .about-page {
    overflow: hidden;
  }

  .about-page .site-header {
    padding: 10px clamp(30px, 2.7vw, 52px);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
  }

  .about-page .brand-name,
  .about-page .nav,
  .about-page .nav a {
    height: 34px;
  }

  .about-main {
    --about-panel-height: clamp(280px, 21.5vw, 404px);
    --about-panel-offset: -8vh;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    column-gap: clamp(42px, 4vw, 78px);
    width: 100%;
    height: 100svh;
    min-height: 680px;
    padding: 76px clamp(30px, 2.7vw, 52px) 10px;
  }

  .about-hero {
    display: contents;
  }

  .about-heading {
    grid-column: 1 / -1;
    grid-row: 1;
    display: block;
    margin: 0;
    border-bottom: 1px solid var(--ink);
    padding: 0 4px 8px;
  }

  .about-eyebrow,
  .about-story-index {
    display: none;
  }

  .about-title {
    gap: clamp(12px, 1.2vw, 22px);
    font-size: clamp(42px, 4.1vw, 62px);
    line-height: 0.82;
  }

  .about-title-cn {
    font-size: 0.28em;
  }

  .about-portrait {
    position: static;
    z-index: 2;
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    justify-self: end;
    width: clamp(150px, 13.6vw, 256px);
    margin: 0;
    animation: none;
    transform: translateY(var(--about-panel-offset));
  }

  .about-portrait img {
    width: 100%;
    height: calc(var(--about-panel-height) - 24px);
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center top;
  }

  .about-portrait figcaption {
    display: flex;
    gap: 12px;
    margin-top: 7px;
    padding-top: 6px;
    font-size: clamp(7px, 0.78vh, 9px);
  }

  .about-cn {
    grid-column: 1;
    grid-row: 2;
    display: block;
    align-self: center;
    height: var(--about-panel-height);
    min-height: 0;
    padding: 0;
    animation: none;
    transform: translateY(var(--about-panel-offset));
  }

  .about-cn-lead {
    max-width: 18em;
    font-size: clamp(20px, 2.5vh, 27px);
    line-height: 1.28;
  }

  .about-cn-body {
    height: 100%;
    gap: clamp(10px, 1.45vh, 16px);
    margin-top: 0;
    align-content: space-between;
  }

  .about-cn-row {
    gap: clamp(24px, 2.2vw, 42px);
  }

  .about-cn-body p {
    font-size: clamp(12px, 1.55vh, 15px);
    line-height: 1.62;
  }

  .about-cn-body .about-cn-lead {
    font-size: clamp(20px, 2.5vh, 27px);
    line-height: 1.28;
  }

  .about-facts {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(24px, 2.2vw, 42px);
    position: static;
    align-self: end;
    width: 100%;
    margin: 0 0 clamp(14px, 2vh, 24px);
    padding-top: 8px;
  }

  .about-facts dt {
    margin-bottom: 5px;
    font-size: clamp(8px, 0.95vh, 10px);
  }

  .about-facts dd {
    font-size: clamp(11px, 1.25vh, 13px);
    line-height: 1.4;
  }

  .about-story {
    grid-column: 2;
    grid-row: 2;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    align-self: center;
    align-content: start;
    height: var(--about-panel-height);
    gap: clamp(12px, 1.8vh, 20px);
    width: 100%;
    margin: 0;
    border-top: 0;
    padding: 0 calc(clamp(150px, 13.6vw, 256px) + clamp(30px, 3vw, 58px)) 0 0;
    transform: translateY(var(--about-panel-offset));
  }

  .about-story-heading h2 {
    margin: 0;
    max-width: 18em;
    font-size: clamp(23px, 3.4vh, 34px);
    line-height: 0.96;
  }

  .about-en {
    grid-auto-rows: max-content;
    align-content: space-between;
    height: 100%;
    gap: clamp(8px, 1.25vh, 14px) clamp(24px, 2.2vw, 40px);
  }

  .about-en p {
    font-size: clamp(9px, 1.15vh, 11.5px);
    line-height: 1.5;
  }

  .about-en-intro,
  .about-en-emphasis {
    max-width: 23em;
    font-size: clamp(16px, 2.25vh, 22px) !important;
    line-height: 1.05 !important;
  }

  .about-en-emphasis {
    margin-block: clamp(4px, 0.65vh, 8px) 0;
  }

  .about-signoff {
    grid-column: 1 / -1;
    grid-row: 4;
    width: 100%;
    margin: 0;
    padding: clamp(7px, 0.9vh, 10px) 0 0;
    font-size: clamp(8px, 0.95vh, 10px);
  }
}

@media (min-width: 1180px) and (max-height: 760px) {
  .about-page {
    overflow: auto;
  }

  .about-main {
    height: auto;
  }
}

@media (max-width: 620px) {
  .contact-main {
    padding: 96px 14px 0;
  }

  .contact-heading {
    align-items: end;
    gap: 10px;
    padding-bottom: 9px;
  }

  .contact-heading h1 {
    gap: 7px;
    font-size: 30px;
    line-height: 1;
  }

  .contact-heading h1 span:last-child {
    font-size: 0.42em;
  }

  .contact-heading p {
    overflow: hidden;
    font-size: 8px;
    white-space: nowrap;
  }

  .contact-intro {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px 0 30px;
  }

  .contact-intro p:first-child {
    max-width: 15em;
    font-size: 24px;
  }

  .contact-intro p:last-child {
    justify-self: start;
    max-width: 28em;
    font-size: 12px;
    line-height: 1.5;
    text-align: left;
  }

  .contact-row {
    grid-template-columns: 28px minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 5px 10px;
    min-height: 86px;
    padding: 14px 0;
  }

  .contact-index {
    grid-column: 1;
    grid-row: 1 / 3;
    font-size: 10px;
  }

  .contact-label {
    grid-column: 2;
    grid-row: 1;
  }

  .contact-label strong {
    font-size: 16px;
  }

  .contact-label span,
  .contact-value span {
    margin-top: 3px;
    font-size: 9px;
  }

  .contact-value {
    grid-column: 2;
    grid-row: 2;
  }

  .contact-value strong {
    font-size: 13px;
    line-height: 1.2;
  }

  .contact-action {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
    min-width: 68px;
    min-height: 44px;
    padding: 10px;
    font-size: 11px;
  }

  .contact-footer {
    margin-top: 54px;
    padding: 12px 0 max(28px, env(safe-area-inset-bottom));
    font-size: 8px;
  }
}

@media (max-width: 620px) {
  .archive-page[data-category="marketing"] {
    background: #ececec;
  }

  .archive-page[data-category="marketing"] .site-header,
  .archive-page[data-category="marketing"] .archive-heading {
    background: #fff;
  }

  .archive-page[data-category="marketing"] .archive-main {
    padding-right: 10px;
    padding-left: 10px;
  }

  .archive-page[data-category="marketing"] .archive-heading {
    gap: 10px;
    margin: 0 -10px;
    padding: 18px 14px 16px;
    border-bottom: 0;
  }

  .archive-page[data-category="marketing"] .archive-title h1 {
    font-size: 28px;
  }

  .archive-page[data-category="marketing"] .archive-summary p:first-child {
    font-size: 16px;
  }

  .archive-page[data-category="marketing"] .wechat-article-list {
    display: grid;
    gap: 14px;
    margin-top: 14px;
    border-top: 0;
  }

  .archive-page[data-category="marketing"] .wechat-article {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border: 0;
    border-radius: 6px;
    padding: 0;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  }

  .archive-page[data-category="marketing"] .wechat-article-index {
    width: 100%;
    min-height: 38px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px 8px;
    color: #929292;
  }

  .archive-page[data-category="marketing"] .wechat-article-index span {
    font-size: 12px;
  }

  .archive-page[data-category="marketing"] .wechat-article-index small {
    font-size: 8px;
    letter-spacing: 0.04em;
  }

  .archive-page[data-category="marketing"] .wechat-article-cover {
    width: 100%;
    aspect-ratio: 12 / 5;
  }

  .archive-page[data-category="marketing"] .wechat-cover-placeholder {
    padding: 18px;
  }

  .archive-page[data-category="marketing"] .wechat-cover-placeholder::after {
    width: 26%;
    height: 42%;
  }

  .archive-page[data-category="marketing"] .wechat-cover-placeholder span {
    font-size: 58px;
  }

  .archive-page[data-category="marketing"] .wechat-article-copy {
    width: 100%;
    max-width: none;
    padding: 14px 14px 16px;
  }

  .archive-page[data-category="marketing"] .wechat-article-kicker {
    margin-bottom: 7px;
    font-size: 8px;
  }

  .archive-page[data-category="marketing"] .wechat-article-copy h2 {
    max-width: none;
    font-size: 17px;
    line-height: 1.35;
  }

  .archive-page[data-category="marketing"] .wechat-article-intro {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 8px;
    color: #777;
    font-size: 11px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .archive-page[data-category="marketing"] .wechat-article-action {
    display: none;
  }

  .archive-page[data-category="marketing"] .archive-footer {
    margin-top: 34px;
  }

  .archive-main {
    padding: 96px 14px 0;
  }

  .archive-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 12px;
  }

  .archive-title {
    gap: 10px;
  }

  .archive-title > span {
    padding-top: 3px;
    font-size: 9px;
  }

  .archive-title h1 {
    font-size: 34px;
    line-height: 1;
  }

  .archive-summary {
    gap: 5px 10px;
  }

  .archive-summary p {
    font-size: 11px;
  }

  .archive-summary p:first-child {
    font-size: 22px;
  }

  .archive-summary > span {
    font-size: 8px;
  }

  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 12px;
    margin-top: 30px;
  }

  .archive-card figure {
    border-top-width: 1px;
  }

  .archive-card figure::after {
    display: none;
  }

  .archive-meta {
    grid-template-columns: 18px minmax(0, 1fr) auto;
    gap: 3px 5px;
    padding: 8px 0;
  }

  .archive-meta > span {
    font-size: 8px;
  }

  .archive-meta h2 {
    font-size: 14px;
    line-height: 1.1;
  }

  .archive-meta p {
    font-size: 7.5px;
  }

  .archive-meta time {
    font-size: 8px;
  }

  .archive-footer {
    margin-top: 58px;
    padding: 12px 0 max(28px, env(safe-area-inset-bottom));
    font-size: 8px;
  }
}

@media (max-width: 620px) {
  .project-main {
    padding: 96px 14px 0;
  }

  .project-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 11px;
  }

  .project-title-wrap {
    gap: 9px;
  }

  .project-number {
    padding-top: 3px;
    font-size: 8px;
  }

  .project-title {
    font-size: 34px;
    line-height: 1;
  }

  .project-heading-meta {
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
    min-width: 0;
    text-align: left;
  }

  .project-heading-meta .project-category-en {
    font-size: 18px;
  }

  .project-heading-meta p,
  .project-heading-meta time {
    font-size: 9px;
  }

  .project-heading-meta time {
    text-align: right;
  }

  .project-lead-media {
    height: 62svh;
    min-height: 420px;
    margin-top: 24px;
  }

  .project-overview {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 34px;
    padding-top: 12px;
  }

  .project-statement {
    font-size: 22px;
  }

  .project-description p {
    font-size: 12px;
    line-height: 1.6;
  }

  .project-facts {
    grid-column: 1;
    grid-template-columns: 0.8fr 1.4fr 0.6fr;
    gap: 10px;
    margin-top: 2px;
    padding-top: 9px;
  }

  .project-facts dt {
    font-size: 7px;
  }

  .project-facts dd {
    font-size: 10px;
  }

  .project-narrative {
    margin-top: 52px;
  }

  .project-narrative article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
  }

  .project-narrative-label {
    font-size: 8px;
  }

  .project-narrative-copy {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .project-narrative-copy h2 {
    font-size: 23px;
  }

  .project-narrative-copy p {
    font-size: 11px;
    line-height: 1.7;
  }

  .project-gallery-heading {
    display: grid;
    gap: 18px;
    margin-top: 58px;
    padding-bottom: 12px;
  }

  .project-gallery-heading span {
    font-size: 8px;
  }

  .project-gallery-heading h2 {
    font-size: 31px;
  }

  .project-gallery {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 22px;
  }

  .project-gallery figure:first-child {
    grid-column: 1;
  }

  .project-gallery figure:not(:first-child) img {
    min-height: 0;
  }

  .project-gallery figcaption {
    padding-top: 6px;
    font-size: 7px;
  }

  .haidilao-project .project-gallery {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .haidilao-project .project-overview {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 22px;
    padding-bottom: 26px;
  }

  .haidilao-project .project-statement {
    font-size: clamp(21px, 6.8vw, 30px);
  }

  .haidilao-project .project-facts {
    grid-column: 1;
  }

  .brand-project .project-gallery {
    gap: 0;
  }

  .project-pagination {
    margin-top: 58px;
  }

  .project-pagination a {
    gap: 5px;
    min-height: 82px;
    padding: 10px 8px;
  }

  .project-pagination span {
    font-size: 7px;
  }

  .project-pagination strong {
    font-size: 11px;
  }

  .project-footer {
    margin-top: 52px;
    padding: 12px 0 max(28px, env(safe-area-inset-bottom));
    font-size: 8px;
  }
}
