:root {
  --ink: #11100e;
  --graphite: #1a1916;
  --ash: #34312b;
  --bone: #f5ebc8;
  --bone-soft: #f7edc8;
  --paper: #f4e7bb;
  --paper-2: #ecd8a2;
  --cream: #d7bf82;
  --stone: #9c906f;
  --muted: #7e745a;
  --line: rgba(245, 235, 200, 0.22);
  --dark-line: rgba(17, 16, 14, 0.14);
  --grid-line: rgba(17, 16, 14, 0.045);
  --panel: rgba(245, 235, 200, 0.085);
  --focus: #fff6d6;
  --paper-text: #22201c;
  --paper-muted: #695f46;
  --body-font: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --display-font: Georgia, "Times New Roman", "Songti SC", "SimSun", serif;
  --content-gutter: clamp(20px, 5vw, 78px);
  --z-sticky: 20;
  --z-modal-backdrop: 48;
  --z-modal: 50;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--paper-text);
  background:
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px) 0 0 / 80px 80px,
    radial-gradient(circle at 18% 12%, rgba(255, 249, 221, 0.68), transparent 34%),
    radial-gradient(circle at 82% 10%, rgba(204, 173, 94, 0.18), transparent 28%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 58%, #151410 58%, #151410 100%);
  font-family: var(--body-font);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(17, 16, 14, 0.05) 0 1px, transparent 1.4px),
    radial-gradient(circle at 74% 48%, rgba(255, 255, 255, 0.26) 0 1px, transparent 1.5px),
    radial-gradient(circle at 38% 86%, rgba(17, 16, 14, 0.035) 0 1px, transparent 1.5px);
  background-size: 26px 31px, 34px 29px, 41px 37px;
  mix-blend-mode: multiply;
  opacity: 0.09;
}

main {
  position: relative;
  z-index: 0;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-sticky);
  width: 100%;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--content-gutter);
  border-bottom: 1px solid rgba(236, 231, 220, 0.12);
  background: rgba(17, 16, 14, 0.96);
  backdrop-filter: blur(10px);
  transition: background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  height: 66px;
  border-bottom-color: rgba(236, 231, 220, 0.22);
  background: rgba(17, 16, 14, 0.98);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--display-font);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  min-width: 78px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--bone);
}

.nav {
  gap: clamp(14px, 2.3vw, 28px);
  color: rgba(236, 231, 220, 0.72);
  font-size: 13px;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--focus);
}

.nav a {
  position: relative;
  display: grid;
  gap: 1px;
  justify-items: end;
  min-width: 58px;
  padding: 10px 0;
}

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

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cn {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
}

.nav-en {
  color: rgba(236, 231, 220, 0.48);
  font-size: 10px;
  line-height: 1.1;
}

.hero {
  min-height: 84vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  padding: 118px var(--content-gutter) 40px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(17, 16, 14, 0.14);
  background:
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px) 0 0 / 80px 80px,
    radial-gradient(circle at 22% 14%, rgba(255, 250, 223, 0.72), transparent 30%),
    radial-gradient(circle at 80% 28%, rgba(195, 155, 62, 0.12), transparent 32%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: var(--ink);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--paper-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: var(--display-font);
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(68px, 10vw, 96px);
  line-height: 0.86;
  font-weight: 900;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.title-mask {
  display: inline-block;
  overflow: hidden;
  margin: -0.08em -0.18em -0.1em -0.02em;
  padding: 0.08em 0.18em 0.1em 0.02em;
  vertical-align: bottom;
}

.title-line {
  display: inline-block;
  transform-origin: left center;
}

.hero-subtitle {
  max-width: 640px;
  color: rgba(34, 32, 28, 0.82);
  font-size: clamp(19px, 2.4vw, 32px);
  line-height: 1.42;
}

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

.button,
.play-button,
.modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button {
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
}

.button:hover,
.button:focus-visible,
.play-button:hover,
.play-button:focus-visible,
.modal-close:hover,
.modal-close:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(236, 231, 220, 0.55);
}

.primary {
  color: var(--bone);
  border-color: var(--ink);
  background: var(--ink);
}

.secondary {
  color: var(--ink);
  border-color: rgba(17, 16, 14, 0.28);
  background: rgba(255, 252, 245, 0.34);
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: min(100%, clamp(360px, 24vw, 480px));
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(17, 16, 14, 0.28);
  background: var(--ink);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: grayscale(0.94) contrast(1.12) brightness(0.92);
  transform: scale(1);
  transition: transform 700ms ease, filter 700ms ease;
}

.hero-visual:hover img {
  filter: grayscale(0.78) contrast(1.08) brightness(0.94);
  transform: scale(1.02);
}

@media (min-width: 1800px) {
  .hero-visual img {
    object-position: 50% 50%;
  }
}

.frame-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(236, 231, 220, 0.86);
  font-size: 11px;
  font-weight: 700;
  background: rgba(11, 11, 10, 0.64);
  border: 1px solid rgba(236, 231, 220, 0.28);
  padding: 12px;
  backdrop-filter: blur(12px);
}

.hero-proof {
  grid-column: 1 / -1;
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  width: 100%;
  margin-top: clamp(10px, 2vw, 18px);
  border-top: 1px solid rgba(17, 16, 14, 0.22);
  border-left: 1px solid rgba(17, 16, 14, 0.22);
  background: rgba(255, 252, 245, 0.24);
}

.hero-proof div {
  padding: 18px 22px;
  border-right: 1px solid rgba(17, 16, 14, 0.22);
}

.hero-proof strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: rgba(34, 32, 28, 0.7);
  font-size: 13px;
}

.section {
  padding: clamp(86px, 11vw, 150px) var(--content-gutter);
}

.intro,
.capability {
  color: var(--paper-text);
  background:
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px) 0 0 / 80px 80px,
    radial-gradient(circle at 10% 8%, rgba(255, 250, 223, 0.5), transparent 28%),
    linear-gradient(180deg, var(--paper), var(--paper-2));
}

.section-heading {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(34px, 5vw, 76px);
}

.section-heading h2,
.contact h2 {
  max-width: 820px;
  font-family: var(--display-font);
  color: var(--focus);
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.intro .section-heading h2,
.capability .section-heading h2 {
  color: var(--paper-text);
}

.intro .eyebrow,
.capability .eyebrow {
  color: var(--paper-muted);
}

.section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 920px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
}

.intro-text {
  color: rgba(34, 32, 28, 0.84);
  font-size: clamp(17px, 2vw, 24px);
}

.intro-text p {
  max-width: 760px;
  margin-bottom: 26px;
}

.profile-method {
  display: grid;
  grid-template-rows: minmax(220px, 320px) auto;
  margin: 0;
  border: 1px solid rgba(17, 16, 14, 0.22);
  background: rgba(255, 246, 214, 0.28);
  overflow: hidden;
}

.profile-method-image {
  min-width: 0;
  min-height: 220px;
  overflow: hidden;
}

.profile-method-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 42%;
  filter: grayscale(0.72) contrast(1.04) brightness(1.02) saturate(0.74);
  transition: transform 620ms ease, filter 620ms ease;
}

.profile-method:hover img {
  filter: grayscale(0.42) contrast(1.02) brightness(1.06) saturate(0.84);
  transform: scale(1.045);
}

.profile-method-copy {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: clamp(22px, 3vw, 34px);
}

.profile-method-copy h3 {
  font-family: var(--display-font);
  max-width: none;
  margin-bottom: 22px;
  color: var(--paper-text);
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.profile-method-copy ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-method-copy li {
  color: rgba(34, 32, 28, 0.78);
  font-size: 14px;
  border-top: 1px solid var(--dark-line);
  padding-top: 12px;
}

.director-note {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(70px, 9vw, 120px) var(--content-gutter) clamp(118px, 13vw, 180px);
  color: var(--paper-text);
  background:
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px) 0 0 / 80px 80px,
    radial-gradient(circle at 18% 20%, rgba(255, 249, 218, 0.55), transparent 34%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 76%, #181612 100%);
}

.director-note-image {
  margin: 0;
  border: 1px solid rgba(17, 16, 14, 0.22);
  overflow: hidden;
}

.director-note-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 58% 34%;
  filter: grayscale(0.9) contrast(1.04) brightness(1.13);
  transition: transform 700ms ease, filter 700ms ease;
}

.director-note:hover .director-note-image img {
  filter: grayscale(0.68) contrast(1.04) brightness(1.08);
  transform: scale(1.045);
}

.director-note-copy {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.director-note-copy h2 {
  font-family: var(--display-font);
  margin-bottom: 0;
  color: var(--paper-text);
  font-size: clamp(24px, 2.75vw, 38px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.works {
  position: relative;
  margin-top: -1px;
  min-height: 100vh;
  padding-right: 0;
  padding-left: 0;
  color: var(--bone);
  background:
    linear-gradient(90deg, rgba(236, 231, 220, 0.05) 1px, transparent 1px) 0 0 / 80px 80px,
    radial-gradient(circle at 16% 18%, rgba(245, 235, 200, 0.12), transparent 28%),
    linear-gradient(180deg, #0f0e0c 0%, #16140f 58%, #0d0c0a 100%);
  overflow: hidden;
}

.works::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(15, 14, 12, 0.84), transparent 20%, transparent 78%, rgba(15, 14, 12, 0.9));
  pointer-events: none;
}

.works .section-heading {
  position: relative;
  z-index: 2;
  max-width: none;
  margin: 0;
  padding: clamp(64px, 8vw, 108px) var(--content-gutter) 0;
}

.works .section-heading h2 {
  max-width: 960px;
  color: var(--focus);
}

.works .eyebrow {
  color: rgba(245, 235, 200, 0.64);
}

figcaption {
  color: rgba(236, 231, 220, 0.58);
  font-size: 12px;
  padding: 12px 14px;
}

.work-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(10px, 1.2vw, 18px);
  padding: clamp(52px, 7vw, 92px) var(--content-gutter) clamp(56px, 8vw, 110px);
  border-top: 0;
}

.work-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(116px, 11vw, 172px);
  height: clamp(390px, 58vh, 590px);
  border: 1px solid rgba(245, 235, 200, 0.18);
  background: #1d1b18;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  transition:
    width 980ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 760ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 560ms ease,
    opacity 560ms ease;
}

.work-card:hover,
.work-card:focus-within,
.work-card.is-current {
  border-color: rgba(245, 235, 200, 0.48);
}

.work-card:hover,
.work-card:focus-within {
  transform: translateY(-5px);
}

.work-card.is-current {
  width: clamp(320px, 44vw, 690px);
}

.work-card.feature {
  grid-column: auto;
}

.work-card img,
.work-thumb-video {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: grayscale(0.92) contrast(1.06) brightness(0.66) saturate(0.72);
  transform: scale(1.01);
  transition:
    transform 980ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 780ms ease;
}

.work-card::before {
  content: attr(data-index) "/" attr(data-total);
  position: absolute;
  top: 16px;
  left: 14px;
  z-index: 2;
  color: rgba(245, 235, 200, 0.78);
  font-family: var(--display-font);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  opacity: 0.82;
  transition: opacity 520ms ease, transform 760ms cubic-bezier(0.19, 1, 0.22, 1);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(11, 11, 10, 0.94), rgba(11, 11, 10, 0.16) 62%),
    linear-gradient(to right, rgba(11, 11, 10, 0.55), transparent 52%);
  z-index: 0;
  opacity: 0.72;
  transition: opacity 650ms ease;
}

.work-card:hover img,
.work-card:focus-within img,
.work-card.is-current img,
.work-card:hover .work-thumb-video,
.work-card:focus-within .work-thumb-video,
.work-card.is-current .work-thumb-video {
  transform: scale(1.06);
  filter: grayscale(0.18) contrast(1.06) brightness(0.96) saturate(0.92);
}

.work-card.is-current::after {
  opacity: 1;
}

.work-card.is-current::before {
  opacity: 1;
  transform: translateY(4px);
}

.work-info,
.play-button {
  position: absolute;
  z-index: 1;
}

.work-info {
  left: clamp(22px, 4vw, 54px);
  right: clamp(22px, 4vw, 54px);
  bottom: clamp(24px, 5vw, 58px);
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 640ms ease,
    transform 860ms cubic-bezier(0.19, 1, 0.22, 1);
}

.work-card.is-current .work-info,
.work-card:hover .work-info,
.work-card:focus-within .work-info {
  opacity: 1;
  transform: translateY(0);
}

.work-info span {
  display: block;
  margin-bottom: 12px;
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.work-info h3 {
  font-family: var(--display-font);
  max-width: 520px;
  margin-bottom: 8px;
  color: var(--focus);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}

.work-info p {
  max-width: 440px;
  margin: 0;
  color: rgba(236, 231, 220, 0.78);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.play-button {
  top: 18px;
  right: 18px;
  min-width: 74px;
  min-height: 40px;
  padding: 0 14px;
  color: var(--ink);
  border-color: rgba(236, 231, 220, 0.56);
  background: rgba(236, 231, 220, 0.88);
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 420ms ease,
    transform 620ms cubic-bezier(0.19, 1, 0.22, 1),
    background 240ms ease;
}

.work-card.is-current .play-button,
.work-card:hover .play-button,
.work-card:focus-within .play-button {
  opacity: 1;
  transform: translateY(0);
}

.more-works {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  margin-top: -52px;
  padding: 0 var(--content-gutter) clamp(38px, 5vw, 74px);
}

.more-works .button {
  min-width: 180px;
  color: var(--focus);
  border-color: rgba(236, 231, 220, 0.34);
  background: rgba(236, 231, 220, 0.085);
}

.behind {
  padding-top: clamp(82px, 9vw, 130px);
  background:
    linear-gradient(90deg, rgba(236, 231, 220, 0.045) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(180deg, #171512, #211f1a);
}

.behind-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 0.9fr 1.05fr;
  gap: 14px;
  align-items: stretch;
}

.behind-grid figure {
  min-height: 480px;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}

.behind-grid figure:nth-child(even) {
  margin-top: 54px;
}

.behind-grid img {
  width: 100%;
  height: calc(100% - 44px);
  min-height: 430px;
  object-fit: cover;
  filter: grayscale(0.55) contrast(1.04) brightness(0.92) saturate(0.78);
  transition: filter 480ms ease, transform 480ms ease;
}

.behind-grid figure:hover img {
  filter: grayscale(0.22) contrast(1.03) brightness(0.98) saturate(0.9);
  transform: scale(1.04);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
}

.capability-card {
  min-height: 280px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  background: rgba(255, 246, 214, 0.2);
  transition: transform 240ms ease, background 240ms ease;
}

.capability-card:hover {
  background: rgba(255, 246, 214, 0.5);
  transform: translateY(-4px);
}

.capability-card span {
  display: block;
  margin-bottom: 58px;
  color: var(--paper-muted);
  font-weight: 700;
}

.capability-card h3 {
  font-family: var(--display-font);
  margin-bottom: 16px;
  color: var(--paper-text);
  font-size: 22px;
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.capability-card p {
  color: rgba(34, 32, 28, 0.78);
  font-size: 14px;
}

.contact {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: end;
  margin: 0;
  padding: clamp(42px, 7vw, 86px) var(--content-gutter);
  color: var(--paper-text);
  border-top: 1px solid rgba(17, 16, 14, 0.08);
  background-color: #f3eee3;
  background:
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px) 0 0 / 80px 80px,
    radial-gradient(circle at 18% 16%, rgba(255, 250, 223, 0.72), transparent 30%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}

.motion-kicker {
  position: absolute;
  top: clamp(-76px, -5vw, -28px);
  left: clamp(-10px, -1vw, -4px);
  z-index: -1;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  color: rgba(17, 16, 14, 0.07);
  font-family: var(--display-font);
  font-size: clamp(58px, 11vw, 150px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.78;
  white-space: nowrap;
  pointer-events: none;
  transform-origin: left center;
}

.works .motion-kicker,
.behind .motion-kicker {
  color: rgba(245, 235, 200, 0.1);
}

.contact > div:first-child {
  position: relative;
  isolation: isolate;
}

.opening-curtain {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  color: var(--bone);
  background:
    linear-gradient(90deg, rgba(245, 235, 200, 0.035) 1px, transparent 1px) 0 0 / 80px 80px,
    #11100e;
  pointer-events: none;
}

.opening-curtain span {
  display: inline-block;
  font-family: var(--display-font);
  font-size: clamp(44px, 9vw, 118px);
  font-weight: 900;
  letter-spacing: -0.04em;
  transform-origin: center;
}

.motion-enhanced .hero-visual,
.motion-enhanced .work-card,
.motion-enhanced .behind-grid figure,
.motion-enhanced .profile-method,
.motion-enhanced .director-note-image {
  will-change: clip-path, transform;
}

.motion-enhanced .hero-visual img,
.motion-enhanced .work-card img,
.motion-enhanced .work-thumb-video,
.motion-enhanced .behind-grid img,
.motion-enhanced .profile-method-image img,
.motion-enhanced .director-note-image img {
  will-change: transform;
}

.motion-enhanced [data-reveal],
.motion-enhanced .hero-copy[data-reveal],
.motion-enhanced .hero-visual[data-reveal],
.motion-enhanced .profile-method[data-reveal],
.motion-enhanced .work-card[data-reveal],
.motion-enhanced .capability-card[data-reveal] {
  transform: none;
  transition: none;
}

.contact h2 {
  max-width: none;
  color: var(--paper-text);
  font-size: clamp(24px, 3.1vw, 46px);
  line-height: 1.08;
  white-space: nowrap;
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-panel a {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(17, 16, 14, 0.18);
  color: var(--paper-text);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
}

.contact-panel a span:last-child {
  overflow-wrap: anywhere;
}

.contact-label {
  color: var(--paper-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.video-modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: var(--z-modal-backdrop);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
}

.modal-panel {
  position: relative;
  z-index: var(--z-modal);
  width: min(1180px, 100%);
  max-height: calc(100vh - 44px);
  border: 1px solid var(--line);
  background: #090908;
  overflow: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  min-height: 38px;
  padding: 0 12px;
  color: var(--bone);
  background: rgba(11, 11, 10, 0.72);
}

.modal-copy {
  padding: 24px 24px 18px;
}

.modal-copy p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.modal-copy h2 {
  margin: 0;
  color: var(--focus);
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1.1;
  max-width: calc(100% - 96px);
}

.modal-panel video {
  width: 100%;
  max-height: 72vh;
  background: #000;
}

html.reveal-ready [data-reveal] {
  opacity: 1;
  transform: translateY(34px);
  transition: transform 820ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
  transform: translateY(0);
}

.hero-copy[data-reveal] {
  transform: translateX(-24px);
}

.hero-visual[data-reveal],
.profile-method[data-reveal] {
  transform: translateX(28px);
}

.work-card[data-reveal]:nth-child(2n),
.capability-card[data-reveal]:nth-child(2n) {
  transform: translateY(44px);
}

.hero-copy[data-reveal].is-visible,
.hero-visual[data-reveal].is-visible,
.profile-method[data-reveal].is-visible,
.work-card[data-reveal].is-visible,
.capability-card[data-reveal].is-visible {
  transform: translate(0, 0);
}

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

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

@media (min-width: 1021px) {
  :root {
    --content-gutter: 12.5vw;
  }
}

@media (max-width: 1100px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1020px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 108px;
  }

  .hero-copy {
    min-height: 460px;
  }

  .hero-visual {
    justify-self: center;
    width: min(100%, 420px);
    min-height: 0;
    max-height: none;
  }

  .hero-visual img {
    min-height: 0;
    max-height: none;
  }

  .hero-proof {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 10px;
  }

  .section-heading,
  .intro-grid,
  .director-note,
  .contact {
    grid-template-columns: 1fr;
  }

  .director-note-image img {
    aspect-ratio: 16 / 9;
    object-position: 54% 26%;
  }

  .director-note-copy h2 {
    white-space: normal;
  }

  .work-card.feature {
    grid-column: auto;
  }

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

@media (max-width: 720px) {
  .site-header {
    height: 96px;
    align-content: center;
    flex-wrap: wrap;
    row-gap: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-header.is-scrolled {
    height: 88px;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    order: 3;
    width: 100%;
    gap: 0;
    font-size: 11px;
  }

  .nav a {
    justify-items: center;
    min-width: 0;
    padding: 2px 0 8px;
  }

  .nav-cn {
    font-size: 12px;
  }

  .nav-en {
    font-size: 9px;
  }

  .hero {
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(64px, 22vw, 96px);
    line-height: 0.9;
  }

  .hero-visual {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .hero-visual img {
    height: 100%;
    min-height: 0;
    max-height: none;
  }

  .hero-visual img,
  .hero-visual:hover img {
    transform: none;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .motion-kicker {
    top: -36px;
    font-size: clamp(44px, 19vw, 76px);
  }

  .section-heading h2,
  .director-note-copy h2,
  .contact h2 {
    font-size: clamp(25px, 8vw, 34px);
    line-height: 1.14;
    letter-spacing: -0.02em;
  }

  .profile-method-copy h3 {
    font-size: clamp(20px, 6.2vw, 24px);
    line-height: 1.18;
    white-space: normal;
  }

  .work-info h3 {
    font-size: clamp(20px, 6.2vw, 24px);
    line-height: 1.14;
    letter-spacing: -0.018em;
  }

  .behind-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .work-card.feature {
    grid-column: auto;
  }

  .works {
    min-height: auto;
    overflow: hidden;
  }

  .works::before {
    opacity: 0.66;
  }

  .works .section-heading {
    padding-top: 78px;
  }

  .work-grid {
    width: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 38px 22px 86px;
    scrollbar-width: none;
  }

  .work-grid::-webkit-scrollbar {
    display: none;
  }

  .work-card,
  .work-card.is-current {
    width: 78vw;
    height: 480px;
    scroll-snap-align: center;
  }

  .work-card::before {
    writing-mode: horizontal-tb;
  }

  .work-info,
  .work-card.is-current .work-info,
  .work-card:hover .work-info,
  .work-card:focus-within .work-info,
  .play-button,
  .work-card.is-current .play-button,
  .work-card:hover .play-button,
  .work-card:focus-within .play-button {
    opacity: 1;
    transform: none;
  }

  .work-card img,
  .work-thumb-video {
    min-height: 0;
    filter: grayscale(0.38) contrast(1.06) brightness(0.86) saturate(0.86);
  }

  .more-works {
    justify-content: flex-start;
    margin-top: -48px;
    padding: 0 22px 70px;
  }

  .behind-grid figure,
  .behind-grid img {
    min-height: 380px;
  }

  .behind-grid figure:nth-child(even) {
    margin-top: 0;
  }

  .contact {
    padding: 28px;
  }

  .contact h2 {
    font-size: clamp(22px, 7vw, 30px);
    white-space: normal;
  }

  .contact-panel a {
    grid-template-columns: 1fr;
    gap: 4px;
    font-size: clamp(16px, 5vw, 20px);
  }

  .contact-panel a span:last-child {
    overflow-wrap: anywhere;
  }

  .modal-copy h2 {
    max-width: 100%;
    padding-right: 80px;
  }
}
