:root {
  --paper: #f7f8f3;
  --white: #ffffff;
  --ink: #171a1c;
  --muted: #62686d;
  --line: rgba(23, 26, 28, 0.16);
  --blue: #2e6bff;
  --cyan: #56d2cb;
  --coral: #ff6b5d;
  --lime: #dcf36b;
  --pink: #f3bfd3;
  --radius: 8px;
  --shadow: 0 22px 50px rgba(30, 36, 42, 0.12);
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

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

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

p,
h1,
h2,
h3,
dl,
dd,
figure {
  margin: 0;
}

[hidden] {
  display: none !important;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 160;
  inset: 0 0 auto;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left center;
}

.section-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding-right: 48px;
  padding-left: 48px;
}

.site-header {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 42px;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  border-color: var(--line);
  background: rgba(247, 248, 243, 0.9);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: flex;
  width: max-content;
  align-items: baseline;
  gap: 10px;
}

.wordmark strong {
  font-size: 18px;
  font-weight: 800;
}

.wordmark span {
  font-family: "Times New Roman", "Songti SC", serif;
  font-size: 12px;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  padding: 7px 0;
  font-size: 13px;
  color: #383d41;
}

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

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

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 16px;
}

.resume-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.56);
  transition: color 160ms ease, background-color 160ms ease;
}

.resume-link:hover {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 1px);
  right: 14px;
  left: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.mobile-menu a {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 24px;
}

.mobile-menu a::after {
  content: "↘";
  font-size: 16px;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  display: flex;
  height: 88svh;
  max-height: 920px;
  min-height: 560px;
  align-items: flex-end;
  overflow: hidden;
  background: #dae8c2;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) brightness(1.12) contrast(0.9);
  transform: scale(1.02);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: rgba(247, 248, 243, 0.42);
}

.hero-media-controls {
  position: absolute;
  z-index: 3;
  top: 92px;
  right: 38px;
  display: flex;
  gap: 8px;
}

.hero-media-control {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(23, 26, 28, 0.34);
  border-radius: 50%;
  font-size: 15px;
  line-height: 1;
  background: rgba(247, 248, 243, 0.74);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.hero-media-control:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.hero-media-control:disabled {
  opacity: 0.54;
  cursor: default;
  transform: none;
}

.hero-video-toggle span {
  display: block;
  transform: translateX(1px);
}

.hero-video-toggle.is-playing span {
  transform: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(900px, 80%);
  margin: 0 0 88px 7vw;
  transition: opacity 600ms ease 120ms, transform 600ms ease 120ms;
}

.is-loading .hero-copy {
  opacity: 0;
  transform: translateY(24px);
}

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid rgba(23, 26, 28, 0.4);
  border-radius: 999px;
  background: rgba(247, 248, 243, 0.65);
}

.hero h1 {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  line-height: 0.78;
}

.hero h1 span {
  font-size: 116px;
  font-weight: 850;
}

.hero h1 em {
  margin-left: 122px;
  font-family: "Times New Roman", "Songti SC", serif;
  font-size: 76px;
  font-weight: 400;
}

.hero-statement {
  margin-top: 28px;
  font-family: "Times New Roman", "Songti SC", serif;
  font-size: 19px;
  line-height: 1.4;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
}

.button-primary:hover {
  color: var(--ink);
  background: var(--lime);
}

.button-secondary {
  background: rgba(247, 248, 243, 0.7);
}

.button-secondary:hover {
  background: var(--white);
}

.hero-meta {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 28px;
  left: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 38px;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  transform: translateY(-50%);
}

.scroll-cue span {
  writing-mode: vertical-rl;
}

.scroll-cue b {
  font-size: 16px;
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.ticker {
  height: 52px;
  overflow: hidden;
  border-top: 1px solid rgba(23, 26, 28, 0.3);
  border-bottom: 1px solid rgba(23, 26, 28, 0.3);
  background: var(--lime);
}

.ticker-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  font-size: 13px;
  font-weight: 850;
  animation: ticker 24s linear infinite;
}

.ticker-track b {
  font-size: 15px;
}

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

.section-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
}

.section-kicker span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.about {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 130px;
  padding-bottom: 150px;
}

.about-lead {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  margin-top: 56px;
}

.about h2,
.work-heading h2,
.experience-heading h2,
.awards h2 {
  font-family: "Times New Roman", "Songti SC", serif;
  font-size: 78px;
  font-weight: 400;
  line-height: 1.02;
}

.about-copy {
  max-width: 620px;
  padding-top: 10px;
}

.about-copy p {
  color: #4f565b;
  font-size: 16px;
  line-height: 1.85;
}

.about-copy .lead-copy {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 650;
  line-height: 1.55;
}

.trait-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.trait-line span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 46px;
  margin-top: 88px;
  align-items: stretch;
}

.about-portrait {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.about-portrait figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: var(--white);
  font-family: "Times New Roman", serif;
  font-size: 13px;
  background: rgba(23, 26, 28, 0.7);
}

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

.metrics div {
  display: flex;
  min-height: 235px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.metrics div:nth-child(1) { background: #e9f5ff; }
.metrics div:nth-child(2) { background: #f2f7d1; }
.metrics div:nth-child(3) { background: #ffe8df; }
.metrics div:nth-child(4) { background: #e7f5f1; }

.metrics dt {
  font-family: "Times New Roman", serif;
  font-size: 74px;
  line-height: 1;
}

.metrics dd {
  max-width: 180px;
  color: #3f4549;
  font-size: 13px;
  line-height: 1.5;
}

.work {
  border-top: 1px solid var(--line);
}

.work-heading {
  display: block;
  padding-top: 118px;
  padding-bottom: 70px;
}

.work-heading h2 {
  margin-top: 48px;
}

.work-heading > p {
  align-self: end;
  max-width: 460px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 34px;
}

.project-filter {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.project-filter button {
  min-height: 36px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  background: transparent;
  cursor: pointer;
}

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

.filter-status {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
}

.filter-status span {
  font-size: 20px;
  font-weight: 750;
}

.project {
  min-height: 740px;
  padding: 96px 0;
  border-top: 1px solid rgba(23, 26, 28, 0.15);
  transition: opacity 260ms ease;
}

.project-jian { background: #e8f7f3; }
.project-w680 { background: #fff0f5; }
.project-numo { background: #edf0f4; }
.project-qingflow { background: #f4f5e8; }
.project-valune { background: #eaf3ff; }

.project-inner {
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.42fr);
  gap: 70px;
  align-items: center;
}

.project-copy {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: center;
}

.project-index {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
}

.project-index span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(23, 26, 28, 0.25);
  border-radius: 50%;
}

.project h3 {
  margin-top: 34px;
  font-size: 72px;
  line-height: 0.94;
}

.project h3 em {
  font-family: "Times New Roman", "Songti SC", serif;
  font-size: 42px;
  font-weight: 400;
}

.project-summary {
  max-width: 450px;
  margin-top: 30px;
  color: #3f464a;
  font-size: 17px;
  line-height: 1.72;
}

.project-facts {
  max-width: 490px;
  margin-top: 30px;
  border-top: 1px solid rgba(23, 26, 28, 0.2);
}

.project-facts div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(23, 26, 28, 0.2);
  font-size: 12px;
}

.project-facts dt {
  color: var(--muted);
}

.project-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}

.text-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  background: var(--ink);
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease;
}

.text-button:hover {
  color: var(--ink);
  background: var(--lime);
}

.icon-link {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 18px;
  background: transparent;
  transition: color 160ms ease, background-color 160ms ease;
}

.icon-link:hover {
  color: var(--white);
  background: var(--blue);
}

.project-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 26, 28, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 160ms ease, box-shadow 220ms ease;
}

.project-visual:hover {
  box-shadow: 0 30px 65px rgba(30, 36, 42, 0.17);
}

.project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.project-visual:hover img {
  transform: scale(1.018);
}

.project-visual > span {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 11px;
  border: 1px solid rgba(23, 26, 28, 0.18);
  border-radius: 999px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.project-numo .project-visual img {
  object-position: center;
}

.project-qingflow .project-visual img {
  object-position: left top;
}

.experience {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 150px;
}

.experience::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(247, 248, 243, 0.38);
  backdrop-filter: blur(12px);
  content: "";
  pointer-events: none;
}

.experience > :not(.experience-background) {
  position: relative;
  z-index: 2;
}

.experience-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  opacity: 0.46;
  filter: saturate(0.78) brightness(1.08);
  pointer-events: none;
  transform: scale(1.035);
}

.experience-heading {
  display: block;
  margin-top: 56px;
}

.experience-heading h2 {
  max-width: none;
  white-space: nowrap;
}

.experience-heading > p {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.timeline {
  margin: 90px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 120px;
  gap: 30px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.timeline time,
.timeline > li > span {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
}

.timeline > li > span {
  justify-self: end;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.timeline h3 {
  font-size: 24px;
  font-weight: 680;
}

.timeline p {
  max-width: 740px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.interests {
  border-top: 1px solid var(--line);
}

.interests-heading {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 80px;
  padding-top: 122px;
  padding-bottom: 82px;
  align-items: start;
}

.interests-heading h2 {
  max-width: 970px;
  font-family: "Times New Roman", "Songti SC", serif;
  font-size: 74px;
  font-weight: 400;
  line-height: 1.04;
}

.interest-band,
.interest-food,
.interest-film {
  border-top: 1px solid rgba(23, 26, 28, 0.2);
}

.interest-band {
  background: #dceefe;
}

.interest-band-inner,
.interest-food-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: 76px;
  padding-top: 84px;
  padding-bottom: 84px;
  align-items: center;
}

.interest-copy {
  min-width: 0;
}

.interest-number {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 750;
}

.interest-copy h3 {
  margin-top: 22px;
  font-family: "Times New Roman", "Songti SC", serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 1.05;
}

.interest-copy > p:last-child,
.interest-film-heading > p {
  max-width: 390px;
  margin-top: 28px;
  color: #484f53;
  font-size: 15px;
  line-height: 1.75;
}

.band-video {
  width: 100%;
  aspect-ratio: 40 / 23;
  border: 1px solid rgba(23, 26, 28, 0.22);
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.interest-food {
  background: #f7e8ef;
}

.interest-food h3 {
  white-space: nowrap;
}

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

.food-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(23, 26, 28, 0.18);
  border-radius: var(--radius);
  object-fit: cover;
}

.interest-film {
  padding: 88px 0 100px;
  background: #edf5d7;
}

.interest-film-heading {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 70px;
  align-items: end;
}

.interest-film-heading > p {
  justify-self: end;
  margin-top: 0;
}

.abstract-reel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 52px;
  align-items: end;
}

.abstract-reel video {
  width: 100%;
  border: 1px solid rgba(23, 26, 28, 0.2);
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--ink);
}

.abstract-reel .video-9x16 { aspect-ratio: 9 / 16; }
.abstract-reel .video-5x8 { aspect-ratio: 5 / 8; }
.abstract-reel .video-15x17 { aspect-ratio: 15 / 17; }
.abstract-reel .video-square { aspect-ratio: 1; }

.abstract-reel video:fullscreen,
.band-video:fullscreen,
.abstract-reel video:-webkit-full-screen,
.band-video:-webkit-full-screen {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.awards {
  padding: 120px 0;
  border-top: 1px solid var(--line);
  background: #e9edda;
}

.awards-inner {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.awards-heading h2 {
  margin-top: 46px;
}

.award-list {
  border-top: 1px solid rgba(23, 26, 28, 0.25);
}

.award {
  display: grid;
  grid-template-columns: 70px 1fr 36px;
  min-height: 92px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(23, 26, 28, 0.25);
  transition: padding 180ms ease, background-color 180ms ease;
}

a.award:hover {
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.54);
}

.award span,
.award b {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.award b {
  justify-self: end;
}

.award h3 {
  font-size: 23px;
  font-weight: 620;
}

.contact {
  position: relative;
  display: grid;
  min-height: 820px;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  background: var(--coral);
}

.contact-photo {
  min-height: 820px;
  overflow: hidden;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.8) contrast(0.95);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px 80px;
}

.contact h2 {
  margin-top: 30px;
  font-family: "Times New Roman", "Songti SC", serif;
  font-size: 88px;
  font-weight: 400;
  line-height: 1;
}

.contact-email {
  display: flex;
  width: 100%;
  max-width: 620px;
  align-items: center;
  justify-content: space-between;
  margin-top: 64px;
  padding: 18px 0;
  border-top: 1px solid rgba(23, 26, 28, 0.45);
  border-bottom: 1px solid rgba(23, 26, 28, 0.45);
  font-size: 21px;
  font-weight: 680;
}

.contact-support {
  display: flex;
  width: 100%;
  max-width: 620px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
}

.contact-support > p {
  max-width: 230px;
  padding-bottom: 4px;
  font-size: 12px;
  line-height: 1.6;
}

.wechat-qr {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  width: min(100%, 356px);
  align-items: center;
  gap: 14px;
  padding: 10px;
  border: 1px solid rgba(23, 26, 28, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
  transition: background-color 160ms ease, transform 160ms ease;
}

.wechat-qr:hover {
  background: rgba(255, 255, 255, 0.68);
  transform: translateY(-2px);
}

.wechat-qr img {
  width: 108px;
  height: 108px;
  padding: 4px;
  object-fit: contain;
  background: var(--white);
}

.wechat-qr span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.wechat-qr small {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}

.wechat-qr strong {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.35;
}

.wechat-qr em {
  margin-top: 10px;
  font-size: 10px;
  font-style: normal;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
  padding: 0 40px;
  color: var(--white);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  background: var(--ink);
}

.site-footer p:nth-child(2) {
  justify-self: center;
}

.site-footer a {
  justify-self: end;
}

.case-dialog {
  width: min(1160px, calc(100% - 32px));
  max-width: none;
  height: min(92svh, 900px);
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.28);
}

.case-dialog::backdrop {
  background: rgba(16, 18, 20, 0.68);
  backdrop-filter: blur(6px);
}

.contact-dialog {
  width: min(760px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100svh - 32px);
  padding: 0;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #f1f7dc;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.24);
}

.contact-dialog::backdrop {
  background: rgba(16, 18, 20, 0.62);
  backdrop-filter: blur(6px);
}

.contact-dialog-close {
  position: sticky;
  z-index: 2;
  top: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0 0 3px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 27px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  margin: 16px 16px -58px auto;
}

.contact-dialog-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(220px, 0.88fr);
  gap: 48px;
  padding: 66px 54px 54px;
  align-items: center;
}

.contact-dialog-copy h2 {
  margin-top: 20px;
  font-family: "Times New Roman", "Songti SC", serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.02;
}

.contact-dialog-copy > p:last-of-type {
  max-width: 380px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.contact-dialog-copy > a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 18px;
  margin-top: 38px;
  padding: 15px 0;
  border-top: 1px solid rgba(23, 26, 28, 0.28);
  border-bottom: 1px solid rgba(23, 26, 28, 0.28);
}

.contact-dialog-copy > a small {
  grid-column: 1 / -1;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 750;
}

.contact-dialog-copy > a strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 14px;
}

.contact-dialog-qr {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
}

.contact-dialog-qr img {
  width: min(100%, 270px);
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--white);
}

.contact-dialog-qr figcaption {
  display: flex;
  width: min(100%, 270px);
  flex-direction: column;
  margin-top: 14px;
}

.contact-dialog-qr small {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 750;
}

.contact-dialog-qr strong {
  margin-top: 5px;
  font-size: 14px;
}

.dialog-close {
  position: fixed;
  z-index: 5;
  top: max(24px, calc(4svh + 10px));
  right: max(24px, calc((100vw - min(1160px, calc(100vw - 32px))) / 2 + 18px));
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0 0 3px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.dialog-content {
  height: 100%;
  padding: 70px 54px 60px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.dialog-header {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 50px;
  align-items: end;
}

.dialog-header > p:first-child {
  grid-column: 1 / -1;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
}

.dialog-header h2 {
  font-family: "Times New Roman", "Songti SC", serif;
  font-size: 65px;
  font-weight: 400;
  line-height: 1;
}

.dialog-header > p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.dialog-media {
  margin-top: 48px;
}

.dialog-media > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.dialog-media > img.is-portrait {
  height: min(72svh, 760px);
  aspect-ratio: 3 / 4;
}

.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.gallery-controls button {
  min-width: 38px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  background: var(--white);
  cursor: pointer;
}

.gallery-controls button[aria-pressed="true"] {
  color: var(--white);
  background: var(--ink);
}

.dialog-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 58px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.dialog-details section > p {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
}

.dialog-details h3 {
  margin-top: 8px;
  font-size: 21px;
}

.dialog-details section div {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.dialog-details section div p + p {
  margin-top: 10px;
}

.dialog-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
}

.dialog-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 20px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.dialog-footer a:first-child {
  color: var(--white);
  background: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

noscript {
  position: fixed;
  z-index: 300;
  right: 18px;
  bottom: 18px;
  max-width: 360px;
  padding: 14px;
  color: var(--white);
  background: var(--ink);
}

@media (max-width: 1120px) {
  .site-header {
    padding: 0 24px;
  }

  .hero h1 span {
    font-size: 96px;
  }

  .hero h1 em {
    margin-left: 98px;
    font-size: 64px;
  }

  .interests-heading h2 {
    font-size: 64px;
  }

  .experience-heading h2 {
    font-size: 56px;
  }

  .project-inner {
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: 44px;
  }

  .project h3 {
    font-size: 58px;
  }

  .project h3 em {
    font-size: 34px;
  }

  .contact-copy {
    padding: 60px;
  }

  .contact h2 {
    font-size: 72px;
  }

  .interest-band-inner,
  .interest-food-inner {
    gap: 44px;
  }
}

@media (max-width: 900px) {
  .section-shell {
    padding-right: 28px;
    padding-left: 28px;
  }

  .about-lead,
  .experience-heading,
  .awards-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about h2,
  .work-heading h2,
  .experience-heading h2,
  .awards h2 {
    font-size: 64px;
  }

  .experience-heading h2 {
    font-size: 47px;
  }

  .interests-heading,
  .interest-film-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .interest-band-inner,
  .interest-food-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .interest-film-heading > p {
    justify-self: start;
    margin-top: 0;
  }

  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
  }

  .project {
    padding: 72px 0;
  }

  .project-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .project-copy {
    min-height: 0;
  }

  .project h3 {
    font-size: 68px;
  }

  .project h3 em {
    font-size: 38px;
  }

  .timeline li {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .timeline > li > span {
    display: none;
  }

  .contact {
    min-height: 780px;
    grid-template-columns: 0.75fr 1.25fr;
  }

  .contact-photo {
    min-height: 780px;
  }

  .contact-copy {
    padding: 42px 34px;
  }

  .contact h2 {
    font-size: 58px;
  }

  .contact-email {
    font-size: 16px;
  }

  .dialog-header {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 720px) {
  .section-shell {
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 62px;
    padding: 0 14px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .wordmark span {
    display: none;
  }

  .resume-link {
    min-height: 42px;
  }

  .hero {
    height: 87svh;
    min-height: 530px;
  }

  .hero-media {
    object-position: center;
  }

  .hero-media-controls {
    top: 76px;
    right: 18px;
  }

  .hero-scrim {
    background: rgba(247, 248, 243, 0.6);
  }

  .hero-copy {
    width: calc(100% - 36px);
    margin: 0 18px 78px;
  }

  .hero-copy .eyebrow {
    min-height: 29px;
    font-size: 9px;
  }

  .hero h1 {
    margin-top: 0;
  }

  .hero h1 span {
    font-size: 68px;
  }

  .hero h1 em {
    margin-left: 54px;
    font-size: 45px;
  }

  .hero-statement {
    margin-top: 22px;
    font-size: 15px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .button {
    gap: 16px;
    padding: 0 15px;
  }

  .hero-meta {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .hero-meta span:last-child,
  .scroll-cue {
    display: none;
  }

  .ticker {
    height: 46px;
  }

  .about {
    padding-top: 92px;
    padding-bottom: 100px;
  }

  .about-lead {
    margin-top: 42px;
  }

  .experience-background {
    object-position: center 28%;
    opacity: 0.42;
  }

  .about h2,
  .work-heading h2,
  .experience-heading h2,
  .awards h2 {
    font-size: 52px;
  }

  .experience-heading h2 {
    font-size: 38px;
  }

  .interests-heading {
    display: block;
    padding-top: 88px;
    padding-bottom: 58px;
  }

  .interests-heading h2 {
    margin-top: 38px;
    font-size: 52px;
  }

  .interest-band-inner,
  .interest-food-inner {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .interest-copy h3 {
    font-size: 48px;
  }

  .interest-film {
    padding: 66px 0 76px;
  }

  .abstract-reel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
  }

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

  .about-copy .lead-copy {
    font-size: 21px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .about-portrait {
    min-height: 500px;
  }

  .metrics div {
    min-height: 175px;
    padding: 20px;
  }

  .metrics dt {
    font-size: 54px;
  }

  .work-heading {
    padding-top: 90px;
    padding-bottom: 50px;
  }

  .work-heading h2 {
    margin-top: 38px;
  }

  .filter-row {
    display: block;
    overflow: hidden;
  }

  .project-filter {
    display: flex;
    width: max-content;
    max-width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    border-radius: var(--radius);
    scrollbar-width: none;
  }

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

  .project-filter button {
    flex: 0 0 auto;
  }

  .filter-status {
    margin-top: 15px;
  }

  .project {
    min-height: 0;
    padding: 64px 0;
  }

  .project h3 {
    margin-top: 28px;
    font-size: 52px;
  }

  .project h3 em {
    font-size: 31px;
  }

  .project-summary {
    font-size: 16px;
  }

  .project-visual {
    aspect-ratio: 4 / 3;
  }

  .project-visual img {
    object-fit: cover;
  }

  .experience {
    padding-top: 96px;
    padding-bottom: 105px;
  }

  .timeline {
    margin-top: 60px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 27px 0;
  }

  .timeline h3 {
    font-size: 21px;
  }

  .awards {
    padding: 90px 0;
  }

  .award {
    grid-template-columns: 48px 1fr 24px;
  }

  .award h3 {
    font-size: 17px;
  }

  .contact {
    display: block;
    min-height: 930px;
  }

  .contact-photo {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .contact-photo img {
    filter: saturate(0.66) brightness(1.18) contrast(0.82);
  }

  .contact::after {
    position: absolute;
    inset: 0;
    background: rgba(255, 107, 93, 0.68);
    content: "";
  }

  .contact-copy {
    position: relative;
    z-index: 1;
    min-height: 930px;
    padding: 60px 18px;
  }

  .contact h2 {
    font-size: 64px;
  }

  .contact-email {
    align-items: flex-start;
    overflow-wrap: anywhere;
    font-size: 16px;
  }

  .contact-support {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-support > p {
    max-width: none;
  }

  .wechat-qr {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 20px 18px;
  }

  .site-footer p:nth-child(2) {
    display: none;
  }

  .dialog-content {
    padding: 66px 18px 44px;
  }

  .dialog-header h2 {
    font-size: 48px;
  }

  .dialog-details {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .dialog-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .dialog-footer a {
    justify-content: space-between;
  }

  .contact-dialog-inner {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 60px 22px 30px;
  }

  .contact-dialog-copy h2 {
    font-size: 48px;
  }

  .contact-dialog-qr {
    align-items: flex-start;
  }

  .contact-dialog-qr img,
  .contact-dialog-qr figcaption {
    width: min(100%, 250px);
  }
}

@media (max-width: 430px) {
  .hero h1 span {
    font-size: 59px;
  }

  .hero h1 em {
    margin-left: 38px;
    font-size: 39px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 210px;
  }

  .about h2,
  .work-heading h2,
  .experience-heading h2,
  .awards h2,
  .contact h2 {
    font-size: 46px;
  }

  .interests-heading h2 {
    font-size: 46px;
  }

  .interest-food h3 {
    font-size: 46px;
  }

  .experience-heading h2 {
    font-size: 23px;
  }

  .hero-statement {
    font-size: 13px;
  }

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

  .metrics div {
    min-height: 145px;
  }

  .project h3 {
    font-size: 46px;
  }

  .project h3 em {
    font-size: 27px;
  }

  .project-facts div {
    grid-template-columns: 68px 1fr;
  }

  .dialog-header h2 {
    font-size: 43px;
  }

  .contact-dialog-copy h2 {
    font-size: 43px;
  }
}

@media (max-height: 690px) and (min-width: 721px) {
  .hero-copy {
    margin-bottom: 56px;
  }

  .hero h1 span {
    font-size: 86px;
  }

  .hero h1 em {
    margin-left: 90px;
    font-size: 56px;
  }

  .hero-statement {
    margin-top: 24px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
