:root {
  --paper: #fff;
  --ink: #050505;
  --muted: #707070;
  --line: rgba(5, 5, 5, 0.16);
  --page: clamp(20px, 3.75vw, 72px);
  --safe-left: max(var(--page), env(safe-area-inset-left));
  --safe-right: max(var(--page), env(safe-area-inset-right));
  --gutter: clamp(18px, 1.8vw, 36px);
  --header-h: 68px;
  --baseline: 8px;
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Times New Roman", Times, serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.012em;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a,
button {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a {
  text-decoration: none;
}

button {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

a:hover,
button:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

a:active,
button:active {
  opacity: 0.55;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 5px;
}

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

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

h1,
h2,
h3 {
  font: inherit;
  text-wrap: balance;
}

ul {
  padding: 0;
  list-style: none;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

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

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

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

.site-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gutter);
  padding-inline: var(--safe-left) var(--safe-right);
}

.grid-guides {
  position: fixed;
  z-index: 90;
  inset: 0 var(--safe-right) 0 var(--safe-left);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gutter);
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.grid-guides::after {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent calc(var(--baseline) - 1px),
    rgba(0, 66, 255, 0.14) calc(var(--baseline) - 1px),
    rgba(0, 66, 255, 0.14) var(--baseline)
  );
  content: "";
}

.grid-guides span {
  background: rgba(0, 66, 255, 0.07);
  border-inline: 1px solid rgba(0, 66, 255, 0.15);
}

.show-grid .grid-guides {
  opacity: 1;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--header-h);
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
}

.brand {
  grid-column: 1 / 2;
  width: fit-content;
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.075em;
}

.brand sup {
  position: relative;
  top: -1.1em;
  margin-left: 4px;
  font-family: var(--font-sans);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0;
}

.site-nav {
  grid-column: 2 / 5;
}

.site-nav ul {
  display: flex;
  justify-content: flex-end;
  gap: clamp(28px, 3.2vw, 62px);
}

.site-nav a,
.site-nav button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}

.site-nav [aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--paper);
}

.hero-slideshow {
  position: absolute;
  inset: var(--header-h) 0 0;
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vh, 64px) var(--safe-right) clamp(36px, 7vh, 88px) var(--safe-left);
}

.hero-slide {
  display: block;
  width: min(78vw, 1320px);
  height: min(70svh, 760px);
  object-fit: contain;
  object-position: center;
}

.cloud-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(72vw, 1240px);
  height: min(68vh, 640px);
  transform: translate(-50%, -44%);
  perspective: 1050px;
}

.cloud-ring {
  position: absolute;
  inset: 8% 3%;
  transform-style: preserve-3d;
  animation: cloud-breathe 10s ease-in-out infinite alternate;
}

.cloud-word {
  position: absolute;
  display: block;
  color: var(--ink);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.07em;
  white-space: nowrap;
  transform-origin: center;
}

.cloud-word:nth-child(1) {
  top: 39%; left: 38%;
  font-family: var(--font-serif);
  font-size: clamp(74px, 10vw, 190px);
  transform: translateZ(120px);
}

.cloud-word:nth-child(2) {
  top: 11%; left: 8%;
  font-size: clamp(28px, 4.4vw, 82px);
  font-weight: 500;
  transform: rotateY(44deg) rotate(-7deg);
}

.cloud-word:nth-child(3) {
  top: 18%; right: 7%;
  font-family: var(--font-serif);
  font-size: clamp(30px, 5vw, 92px);
  transform: rotateY(-47deg) rotate(5deg);
}

.cloud-word:nth-child(4) {
  top: 43%; left: 3%;
  font-size: clamp(32px, 5.6vw, 104px);
  font-weight: 400;
  letter-spacing: -0.09em;
  transform: rotateY(58deg);
}

.cloud-word:nth-child(5) {
  top: 43%; right: 2%;
  font-size: clamp(26px, 4.5vw, 84px);
  transform: rotateY(-58deg);
}

.cloud-word:nth-child(6) {
  bottom: 15%; left: 8%;
  font-size: clamp(24px, 3.7vw, 70px);
  font-weight: 400;
  transform: rotateY(48deg) rotate(4deg);
}

.cloud-word:nth-child(7) {
  right: 6%; bottom: 10%;
  font-size: clamp(22px, 3.2vw, 62px);
  font-weight: 500;
  transform: rotateY(-42deg) rotate(-6deg);
}

.cloud-word:nth-child(8) {
  top: 2%; left: 40%;
  font-size: clamp(20px, 2.7vw, 50px);
  font-weight: 400;
  transform: rotate(-3deg) translateZ(-50px);
}

.cloud-word:nth-child(9) {
  bottom: 2%; left: 4%;
  font-size: clamp(18px, 2.4vw, 46px);
  letter-spacing: -0.035em;
  transform: rotate(2deg) translateZ(-80px);
}

.cloud-word:nth-child(10) {
  top: 29%; left: 26%;
  font-size: clamp(16px, 2.2vw, 40px);
  font-weight: 400;
  transform: rotateY(25deg) translateZ(80px);
}

.cloud-word:nth-child(11) {
  top: 31%; right: 27%;
  font-size: clamp(15px, 2vw, 36px);
  transform: rotateY(-20deg) translateZ(90px);
}

.cloud-word:nth-child(12) {
  bottom: 29%; left: 23%;
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.4vw, 44px);
  transform: rotateY(20deg) translateZ(40px);
}

.cloud-word:nth-child(13) {
  right: 22%; bottom: 30%;
  font-size: clamp(15px, 2vw, 38px);
  font-weight: 400;
  transform: rotateY(-20deg) translateZ(40px);
}

.cloud-word:nth-child(14) {
  top: 4%; right: 30%;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.9vw, 54px);
  transform: rotate(-8deg);
}

.cloud-word:nth-child(15) {
  bottom: 2%; right: 2%;
  font-size: clamp(14px, 2vw, 36px);
  letter-spacing: 0;
  transform: rotate(7deg);
}

@keyframes cloud-breathe {
  from { transform: rotateY(-3deg) rotateX(1deg) scale(0.98); }
  to { transform: rotateY(3deg) rotateX(-1deg) scale(1.02); }
}

.welcome {
  padding-top: 0;
}

.welcome-title,
.welcome-copy {
  font-size: clamp(30px, 2.36vw, 46px);
  line-height: 1.045;
  letter-spacing: -0.035em;
}

.welcome-title {
  grid-column: 1 / 3;
}

.welcome-copy {
  grid-column: 3 / 5;
  max-width: 21ch;
}

.feature-reel {
  position: relative;
  grid-column: 1 / 5;
  aspect-ratio: 16 / 9;
  margin-top: clamp(88px, 9vw, 176px);
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.feature-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
}

.feature-grid span {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-type {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: clamp(76px, 18vw, 340px);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: -0.095em;
  transform: translate(-51%, -51%);
}

.feature-path {
  position: absolute;
  right: 4%;
  bottom: 4%;
  max-width: 34ch;
  font-size: clamp(11px, 0.85vw, 16px);
  line-height: 1.25;
  text-align: right;
  letter-spacing: 0.02em;
}

.feature-cursor {
  position: absolute;
  top: 18%;
  left: 16%;
  width: clamp(22px, 2.2vw, 42px);
  height: clamp(22px, 2.2vw, 42px);
  background: #fff;
  animation: cursor-route 8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes cursor-route {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(42vw, 7vw); }
  50% { transform: translate(50vw, 28vw); }
  75% { transform: translate(12vw, 31vw); }
}

.section-head {
  margin-top: clamp(88px, 7vw, 136px);
}

.section-title {
  grid-column: 1 / 3;
  font-size: clamp(30px, 2.36vw, 46px);
  line-height: 1.045;
  letter-spacing: -0.035em;
}

.project-grid {
  margin-top: clamp(56px, 5.5vw, 104px);
  row-gap: clamp(56px, 5vw, 96px);
}

.project-card {
  grid-column: span 2;
  display: block;
  min-width: 0;
}

.project-card:hover {
  text-decoration: none;
}

.project-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0f0f0;
}

.project-caption {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  padding-top: 8px;
  font-size: 16px;
  line-height: 20px;
}

.project-caption h3,
.project-caption p {
  min-width: 0;
  overflow-wrap: anywhere;
}

.project-caption p:last-child {
  color: var(--muted);
}

.media-os {
  color: #fff;
  background: #050505;
}

.media-os::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 16.666% 100%, 100% 25%;
  content: "";
}

.media-os strong {
  position: absolute;
  top: 6%;
  right: 5%;
  font-size: clamp(90px, 13vw, 250px);
  line-height: 0.85;
  letter-spacing: -0.09em;
}

.media-os span {
  position: absolute;
  right: 5%;
  bottom: 5%;
  font-size: clamp(10px, 0.8vw, 14px);
  letter-spacing: 0.02em;
}

.media-fed {
  color: #fff;
  background: #0647ff;
}

.media-fed strong {
  position: absolute;
  top: 5%;
  left: 5%;
  font-family: var(--font-serif);
  font-size: clamp(66px, 9vw, 176px);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: -0.06em;
}

.media-fed::after {
  position: absolute;
  right: -6%;
  bottom: 13%;
  left: 5%;
  height: 38%;
  border-top: clamp(3px, 0.4vw, 7px) solid #fff;
  border-radius: 50% 50% 0 0;
  transform: rotate(-8deg);
  content: "";
}

.media-bridge {
  color: #050505;
  background: #f6de34;
}

.media-bridge::before,
.media-bridge::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(5, 5, 5, 0.35);
  content: "";
}

.media-bridge::before { left: 33.333%; }
.media-bridge::after { right: 33.333%; }

.media-bridge strong {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: clamp(84px, 13vw, 250px);
  line-height: 0.82;
  letter-spacing: -0.09em;
  transform: translate(-50%, -50%);
}

.media-bridge span {
  position: absolute;
  right: 5%;
  bottom: 5%;
  font-size: clamp(10px, 0.8vw, 14px);
}

.media-editorial {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  padding: 1px;
  color: #fff;
  background: #fff;
}

.media-editorial span {
  display: flex;
  min-width: 0;
  align-items: flex-end;
  padding: 7px;
  overflow: hidden;
  background: #e63226;
  font-size: clamp(18px, 3.3vw, 64px);
  line-height: 0.82;
  writing-mode: vertical-rl;
}

.section-link {
  grid-column: 3 / 5;
  width: fit-content;
  margin-top: clamp(56px, 5vw, 96px);
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
}

.stack-section {
  margin-top: clamp(104px, 9vw, 176px);
}

.stack-grid {
  margin-top: clamp(48px, 4vw, 80px);
  row-gap: clamp(48px, 4vw, 80px);
}

.stack-item {
  grid-column: span 1;
  display: grid;
  min-height: clamp(112px, 11vw, 200px);
  place-items: center;
  text-align: center;
}

.stack-item strong {
  font-size: clamp(20px, 2.2vw, 42px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.stack-item:nth-child(3n + 1) strong {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.9vw, 54px);
}

.stack-item:nth-child(4n) strong {
  font-weight: 400;
  letter-spacing: -0.08em;
}

.notes-section {
  margin-top: clamp(112px, 10vw, 192px);
}

.notes-grid {
  margin-top: clamp(56px, 5vw, 96px);
  align-items: start;
  row-gap: clamp(64px, 6vw, 112px);
}

.notes-grid > .note-card {
  grid-column: span 2;
}

.note-column {
  grid-column: span 1;
  display: grid;
  gap: clamp(48px, 5vw, 96px);
}

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

.note-card:hover,
.journal-entry:hover {
  text-decoration: none;
}

.note-card:hover p,
.journal-entry:hover > p {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.note-art {
  position: relative;
  aspect-ratio: 4 / 3;
  margin-bottom: 8px;
  overflow: hidden;
  background: #eee;
}

.note-art.dark {
  color: #fff;
  background: #050505;
}

.note-art.blue {
  color: #fff;
  background: #0647ff;
}

.note-art.red {
  color: #fff;
  background: #e63226;
}

.note-art.yellow {
  color: #050505;
  background: #f6de34;
}

.note-art.teal {
  color: #fff;
  background: #34898d;
}

.note-art.violet {
  color: #fff;
  background: #5d235d;
}

.note-art.sand {
  color: #111;
  background: #d1ac54;
}

.note-art.orange {
  color: #111;
  background: #ef6a36;
}

.note-art strong {
  position: absolute;
  right: 5%;
  bottom: 4%;
  left: 5%;
  font-size: clamp(44px, 6vw, 116px);
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.note-poster {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2px;
  padding: 6%;
}

.type-line {
  display: block;
  min-height: 1em;
  max-width: 92%;
  overflow: visible;
  font-size: clamp(17px, 1.55vw, 28px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
  white-space: normal;
}

html[lang^="zh"] .projects-lede,
html[lang^="zh"] .profile-statement,
html[lang^="zh"] .journal-statement,
html[lang^="zh"] .case-deck {
  text-wrap: pretty;
}

.type-signature {
  margin-bottom: auto;
  font-size: clamp(12px, 0.85vw, 15px);
  font-weight: 400;
  letter-spacing: 0;
}

.type-title-en {
  text-transform: uppercase;
}

.type-title-zh {
  font-size: clamp(16px, 1.42vw, 25px);
}

.type-cursor {
  display: block;
  width: 0.58em;
  height: 1.05em;
  margin-top: 5px;
  background: currentColor;
  opacity: 0;
}

.type-cursor.is-visible {
  opacity: 1;
  animation: type-cursor-blink 920ms steps(1, end) infinite;
}

@keyframes type-cursor-blink {
  0%, 46% { opacity: 1; }
  47%, 100% { opacity: 0; }
}

.note-card time,
.note-card p {
  display: block;
  font-size: 16px;
  line-height: 20px;
}

.note-card h3 {
  margin-top: 16px;
  font-size: clamp(22px, 1.7vw, 32px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.note-card time {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.note-card p {
  max-width: 30ch;
  margin-top: 2px;
  text-wrap: pretty;
}

.about-section {
  margin-top: clamp(128px, 12vw, 232px);
}

.about-title {
  grid-column: 1 / 3;
  font-size: clamp(30px, 2.36vw, 46px);
  line-height: 1.045;
  letter-spacing: -0.035em;
}

.about-copy {
  grid-column: 3 / 5;
}

.about-copy h3 {
  max-width: 21ch;
  font-size: clamp(30px, 2.36vw, 46px);
  line-height: 1.045;
  letter-spacing: -0.035em;
}

.about-copy p {
  max-width: 54ch;
  margin-top: clamp(48px, 4vw, 80px);
  color: var(--muted);
  font-size: 16px;
  line-height: 22px;
  text-wrap: pretty;
}

.text-button {
  min-height: 44px;
  margin-top: 24px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
}

.contact-section {
  margin-top: clamp(128px, 12vw, 232px);
  padding-bottom: clamp(128px, 12vw, 232px);
}

.contact-title {
  grid-column: 1 / 3;
  font-size: clamp(30px, 2.36vw, 46px);
  line-height: 1.045;
  letter-spacing: -0.035em;
}

.contact-copy {
  grid-column: 3 / 5;
  font-size: clamp(30px, 2.36vw, 46px);
  line-height: 1.045;
  letter-spacing: -0.035em;
}

.contact-email {
  display: inline-block;
  max-width: 100%;
  margin-top: clamp(40px, 4vw, 72px);
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: clamp(20px, 1.9vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.projects-hero,
.profile-hero,
.journal-hero {
  min-height: 100svh;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: initial;
  padding-top: calc(var(--header-h) + clamp(28px, 2.8vw, 52px));
  padding-bottom: var(--page);
}

.page-visual {
  position: relative;
  grid-column: 3 / 5;
  grid-row: 1;
  min-height: 0;
  margin: 0 0 clamp(30px, 2.8vw, 52px);
  overflow: hidden;
  color: #fff;
  background: #101010;
  isolation: isolate;
}

.page-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.12);
}

.page-visual--notes img {
  transform: scale(1.18);
}

.page-visual-word {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 12px;
  margin: 0;
  color: #fff;
  font-size: clamp(56px, 7.25vw, 142px);
  font-weight: 600;
  line-height: 0.78;
  letter-spacing: -0.075em;
  pointer-events: none;
}

.projects-title,
.projects-lede {
  font-size: clamp(30px, 2.36vw, 46px);
  line-height: 1.045;
  letter-spacing: -0.035em;
}

.projects-title {
  grid-column: 1 / 3;
  grid-row: 2;
  align-self: start;
}

.projects-lede {
  grid-column: 3 / 5;
  grid-row: 2;
  align-self: start;
  max-width: 22ch;
}

.projects-index {
  grid-column: 1 / 3;
  align-self: end;
  margin-top: clamp(96px, 12vw, 232px);
  color: var(--muted);
  font-size: 16px;
  line-height: 20px;
  font-variant-numeric: tabular-nums;
}

.projects-count {
  grid-column: 3 / 5;
  align-self: end;
  margin-top: clamp(72px, 9vw, 176px);
  font-size: clamp(120px, 19vw, 360px);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: -0.09em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.projects-directory {
  padding-top: clamp(96px, 9vw, 176px);
  padding-bottom: clamp(128px, 12vw, 232px);
}

.projects-directory-title {
  grid-column: 1 / 3;
  margin-bottom: clamp(56px, 5vw, 96px);
  font-size: clamp(30px, 2.36vw, 46px);
  line-height: 1.045;
  letter-spacing: -0.035em;
}

.vercel-grid {
  grid-column: 1 / 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(64px, 6vw, 112px) var(--gutter);
}

.vercel-card {
  grid-column: span 2;
  min-width: 0;
}

.vercel-art {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #efefef;
}

.vercel-art::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 25% 100%, 100% 25%;
  content: "";
}

.vercel-art strong {
  position: absolute;
  right: 5%;
  bottom: 4%;
  left: 5%;
  font-size: clamp(58px, 8.4vw, 160px);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.08em;
  overflow-wrap: anywhere;
  transition: transform 260ms ease;
}

.vercel-art span {
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 20px;
}

.vercel-card:hover {
  text-decoration: none;
}

.vercel-card:hover .vercel-art strong {
  transform: translateY(-8px);
}

.vercel-caption {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--gutter);
  row-gap: 0;
  padding-top: 8px;
  font-size: 16px;
  line-height: 20px;
}

.vercel-caption h3,
.vercel-caption p {
  min-width: 0;
  overflow-wrap: anywhere;
}

.vercel-caption p {
  color: var(--muted);
}

.vercel-description {
  grid-column: 1 / 3;
  max-width: 54ch;
  margin-top: 10px;
  color: var(--ink) !important;
  text-wrap: pretty;
}

.art-directory {
  color: #fff;
  background: #050505;
}

.art-fed-history {
  color: #fff;
  background: #0647ff;
}

.art-ai-frontier {
  color: #fff;
  background: #e63226;
}

.art-fed-report {
  color: #171109;
  background: #c9a449;
}

.art-gala {
  color: #f2d17b;
  background: #070a25;
}

.art-alumni {
  color: #fff0dc;
  background: #5b174b;
}

.art-teacher {
  color: #050505;
  background: #d7d7d7;
}

.art-hy-design {
  color: #fff;
  background: #3e8187;
}

.art-hy-design strong {
  right: auto;
  left: 5%;
  text-align: left;
}

.art-icodex {
  color: #fff;
  background: #0a243e;
}

.art-cross-agent {
  color: #0a243e;
  background: #d5d36f;
}

.art-editorial-system {
  color: #fff;
  background: #c94758;
}

.art-editorial-system strong {
  font-size: clamp(42px, 6.2vw, 118px);
}

.case-hero {
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
  align-content: initial;
  padding-top: calc(var(--header-h) + clamp(40px, 4vw, 72px));
  padding-bottom: clamp(32px, 3vw, 56px);
}

.case-kicker {
  grid-column: 1 / 3;
  grid-row: 1;
  color: var(--muted);
}

.case-title {
  grid-column: 1 / 5;
  grid-row: 2;
  align-self: center;
  margin-top: 0;
  font-size: clamp(76px, 13.8vw, 264px);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.075em;
}

.case-deck {
  grid-column: 3 / 5;
  grid-row: 3;
  align-self: end;
  max-width: 28ch;
  margin-top: 0;
  font-size: clamp(28px, 2.5vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.case-meta {
  grid-column: 1 / 3;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gutter);
  align-self: end;
  margin: 0;
}

.case-meta div {
  min-width: 0;
}

.case-meta dt {
  color: var(--muted);
}

.case-meta dd {
  margin: 8px 0 0;
}

.case-media {
  margin: 0;
}

.case-media img {
  display: block;
  width: 100%;
  height: auto;
}

.case-media-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gutter);
  padding: var(--page);
  background: #f1f1ef;
}

.case-media-panel {
  aspect-ratio: 1;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #050505;
}

.case-media-panel img,
.case-media-panel video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-media-panel-contain {
  background: #fff;
}

.case-media-panel-contain img {
  object-fit: contain;
}

.case-media-pair-identity {
  grid-template-columns: minmax(0, 16fr) minmax(0, 9fr);
}

.case-media-pair-identity .case-media-panel-contain {
  aspect-ratio: 16 / 9;
}

.case-media-pair-landscape .case-media-panel {
  aspect-ratio: 16 / 9;
}

.case-media-edge {
  background: #d6d4cf;
}

.case-media-inset {
  padding: var(--page);
  background: #f1f1ef;
}

.case-media-inset figcaption {
  margin-top: 12px;
  color: var(--muted);
}

.case-overview {
  min-height: 76svh;
  align-content: center;
  padding-top: clamp(112px, 12vw, 224px);
  padding-bottom: clamp(112px, 12vw, 224px);
}

.case-overview h2 {
  grid-column: 1 / 3;
  max-width: 18ch;
  font-size: clamp(38px, 4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.case-overview-copy {
  grid-column: 3 / 5;
  max-width: 42ch;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.42;
  letter-spacing: -0.018em;
}

.case-overview-copy p + p {
  margin-top: 28px;
}

.case-chapter {
  min-height: 68svh;
  align-content: center;
  padding-top: clamp(112px, 11vw, 208px);
  padding-bottom: clamp(112px, 11vw, 208px);
}

.case-chapter-index {
  grid-column: 1 / 2;
  color: var(--muted);
}

.case-chapter h2 {
  grid-column: 2 / 4;
  max-width: 15ch;
  font-size: clamp(38px, 4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.case-chapter > p:last-child {
  grid-column: 4 / 5;
  max-width: 28ch;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.42;
  letter-spacing: -0.018em;
}

.case-applications {
  padding-top: clamp(112px, 10vw, 192px);
  padding-bottom: clamp(112px, 10vw, 192px);
  color: #fff;
  background: #050505;
}

.case-applications-heading {
  grid-column: 1 / 5;
}

.case-applications-heading p {
  color: #8f8f8f;
}

.case-applications-heading h2 {
  margin-top: 28px;
  font-size: clamp(42px, 5.4vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.case-application-grid {
  grid-column: 1 / 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gutter);
  margin-top: clamp(72px, 7vw, 128px);
}

.case-application {
  display: block;
  min-width: 0;
}

.case-application:hover {
  text-decoration: none;
}

.case-application > div {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid currentColor;
}

.case-application strong {
  position: absolute;
  right: 5%;
  bottom: 5%;
  max-width: 92%;
  font-size: clamp(42px, 4.2vw, 78px);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: -0.085em;
  text-align: right;
  transition: transform 260ms ease;
}

.case-application:hover strong {
  transform: translateY(-8px);
}

.case-application > div span {
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 20px;
}

.case-application h3,
.case-application p {
  padding-inline: 16px;
}

.case-application h3 {
  padding-top: 16px;
  font-size: 20px;
  line-height: 24px;
}

.case-application p {
  max-width: 32ch;
  padding-top: 6px;
  padding-bottom: 20px;
}

.case-chapter-final {
  border-bottom: 1px solid var(--line);
}

.case-next {
  min-height: 48svh;
  align-items: center;
}

.case-next a {
  grid-column: 1 / 5;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--gutter);
}

.case-next strong {
  font-size: clamp(42px, 6vw, 116px);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.065em;
}

.profile-title,
.journal-title {
  grid-column: 1 / 3;
  grid-row: 2;
  align-self: start;
  font-size: clamp(30px, 2.36vw, 46px);
  line-height: 1.045;
  letter-spacing: -0.035em;
}

.profile-statement,
.journal-statement {
  grid-column: 3 / 5;
  grid-row: 2;
  align-self: start;
  max-width: 22ch;
  font-size: clamp(30px, 2.36vw, 46px);
  line-height: 1.045;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.profile-index,
.journal-index {
  grid-column: 1 / 3;
  margin-top: clamp(96px, 12vw, 232px);
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.profile-intro,
.profile-practice,
.journal-directory {
  padding-top: clamp(112px, 10vw, 192px);
}

.profile-section-title,
.journal-directory-title {
  grid-column: 1 / 3;
  font-size: clamp(30px, 2.36vw, 46px);
  line-height: 1.045;
  letter-spacing: -0.035em;
}

.profile-copy {
  grid-column: 3 / 5;
}

.profile-copy .profile-lead {
  max-width: 23ch;
  font-size: clamp(30px, 2.36vw, 46px);
  line-height: 1.045;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.profile-copy p:not(.profile-lead) {
  max-width: 56ch;
  margin-top: clamp(40px, 4vw, 72px);
  color: var(--muted);
  font-size: 16px;
  line-height: 22px;
  text-wrap: pretty;
}

.practice-list {
  grid-column: 1 / 5;
  margin-top: clamp(56px, 5vw, 96px);
  border-top: 1px solid var(--line);
}

.practice-item {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gutter);
  min-height: 128px;
  align-items: start;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
}

.practice-item span {
  grid-column: 1 / 2;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.practice-item h3 {
  grid-column: 2 / 3;
  font-size: clamp(24px, 2vw, 38px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.practice-item p {
  grid-column: 3 / 5;
  max-width: 55ch;
  color: var(--muted);
  line-height: 22px;
  text-wrap: pretty;
}

.profile-practice,
.journal-directory {
  padding-bottom: clamp(128px, 12vw, 232px);
}

.journal-directory-title {
  margin-bottom: clamp(56px, 5vw, 96px);
}

.journal-grid {
  grid-column: 1 / 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(72px, 7vw, 128px) var(--gutter);
}

.journal-entry {
  grid-column: span 2;
  min-width: 0;
}

.journal-entry.wide {
  grid-column: span 2;
}

.journal-entry .note-poster {
  aspect-ratio: 16 / 10;
}

.journal-entry .note-art {
  margin-bottom: 12px;
}

.journal-meta {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.journal-entry h3 {
  margin-top: 18px;
  font-size: clamp(24px, 2vw, 38px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.journal-entry > p {
  width: 100%;
  max-width: none;
  margin-top: 14px;
  color: var(--muted);
  line-height: 22px;
  text-wrap: pretty;
}

.article-page {
  font-family: var(--font-sans);
}

.article-hero {
  min-height: 100svh;
  align-content: end;
  padding-top: calc(var(--header-h) + clamp(80px, 10vw, 192px));
  padding-bottom: clamp(72px, 7vw, 128px);
}

.article-meta {
  grid-column: 1 / 2;
  align-self: start;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.article-meta p + p {
  margin-top: 2px;
}

.article-heading {
  grid-column: 2 / 5;
}

.article-title {
  max-width: 16ch;
  font-size: clamp(54px, 7.6vw, 146px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.article-deck {
  max-width: 42ch;
  margin-top: clamp(36px, 4vw, 72px);
  font-size: clamp(18px, 1.5vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.article-layout {
  padding-top: clamp(72px, 7vw, 128px);
  padding-bottom: clamp(128px, 12vw, 232px);
  border-top: 1px solid var(--line);
}

.article-aside {
  grid-column: 1 / 2;
  align-self: start;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.article-aside a {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
}

.article-toc {
  max-width: 24ch;
  margin-top: 48px;
  color: var(--muted);
}

.article-toc li + li {
  margin-top: 12px;
}

.article-toc a {
  display: block;
  padding: 0;
  border-bottom: 0;
  color: inherit;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.25;
  letter-spacing: -0.012em;
}

.article-toc a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content {
  grid-column: 2 / 4;
  max-width: 760px;
}

.article-summary {
  padding: 24px;
  border: 1px solid var(--line);
}

.article-summary h2 {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 20px;
}

.article-summary li {
  position: relative;
  padding-left: 22px;
  line-height: 22px;
}

.article-summary li::before {
  position: absolute;
  left: 0;
  content: "—";
}

.article-summary li + li {
  margin-top: 12px;
}

.article-body {
  margin-top: clamp(72px, 7vw, 128px);
}

.article-section + .article-section {
  margin-top: clamp(72px, 7vw, 128px);
}

.article-section h2 {
  margin-bottom: 28px;
  font-size: clamp(25px, 1.9vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.article-section p,
.article-section li {
  font-size: clamp(16px, 1.08vw, 20px);
  line-height: 1.5;
  letter-spacing: -0.012em;
}

.article-section p + p {
  margin-top: 24px;
}

.article-quote {
  margin: clamp(56px, 5vw, 96px) 0;
  padding-left: var(--gutter);
  border-left: 2px solid var(--ink);
  font-size: clamp(26px, 2.5vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.site-footer {
  min-height: 320px;
  align-items: start;
  padding-top: 40px;
  padding-bottom: max(40px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
}

.footer-mark {
  grid-column: 1 / 2;
  font-family: var(--font-serif);
  font-size: clamp(56px, 6vw, 112px);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.footer-contact {
  grid-column: 2 / 3;
}

.footer-links {
  grid-column: 3 / 4;
}

.footer-meta {
  grid-column: 4 / 5;
}

.footer-contact,
.footer-links,
.footer-meta {
  font-size: 16px;
  line-height: 20px;
}

.arrow-icon {
  position: relative;
  display: inline-block;
  width: 0.82em;
  height: 0.82em;
  flex: 0 0 auto;
  vertical-align: -0.02em;
}

.arrow-icon::before {
  position: absolute;
  top: 0.08em;
  right: 0.08em;
  width: 0.56em;
  height: 0.56em;
  border-top: 0.08em solid currentColor;
  border-right: 0.08em solid currentColor;
  content: "";
}

.arrow-icon::after {
  position: absolute;
  top: 0.38em;
  left: 0.1em;
  width: 0.75em;
  height: 0.08em;
  background: currentColor;
  content: "";
  transform: rotate(-45deg);
  transform-origin: center;
}

.vercel-art > .arrow-icon,
.case-application > div > .arrow-icon {
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 20px;
}

.project-showcase {
  padding-top: var(--page);
  padding-bottom: var(--page);
}

.project-showcase .vercel-art {
  grid-column: 1 / 5;
  aspect-ratio: 16 / 9;
}

.project-showcase .vercel-art strong {
  font-size: clamp(92px, 16vw, 300px);
}

.project-detail-page .case-title {
  max-width: 13ch;
  font-size: clamp(68px, 10.5vw, 200px);
}

.project-focus {
  padding-top: clamp(96px, 9vw, 176px);
  padding-bottom: clamp(112px, 11vw, 208px);
  color: #fff;
  background: #050505;
}

.project-focus > p {
  grid-column: 1 / 2;
  color: #8f8f8f;
}

.project-focus h2 {
  grid-column: 2 / 4;
  max-width: 15ch;
  font-size: clamp(38px, 4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.project-focus ul {
  grid-column: 4 / 5;
}

.project-focus li {
  padding-block: 12px;
  border-top: 1px solid #555;
  line-height: 1.3;
}

.project-focus li:last-child {
  border-bottom: 1px solid #555;
}

.project-launch {
  min-height: 45svh;
  align-items: center;
}

.project-launch a {
  grid-column: 3 / 5;
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: clamp(28px, 2.5vw, 48px);
  line-height: 1.05;
}

.footer-links li + li,
.footer-meta p + p {
  margin-top: 0;
}

@media (max-width: 1000px) {
  :root {
    --page: clamp(18px, 3vw, 32px);
    --gutter: clamp(14px, 2vw, 24px);
  }

  .site-nav {
    grid-column: 2 / 5;
  }

  .cloud-stage {
    width: 88vw;
  }

  .note-column {
    grid-column: span 2;
  }

  .note-column:nth-child(n + 3) {
    margin-top: 56px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 64px;
    --page: 16px;
    --gutter: 12px;
  }

  body {
    font-size: 15px;
    line-height: 19px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand {
    grid-column: 1 / 2;
    font-size: 40px;
    line-height: 40px;
  }

  .menu-button {
    grid-column: 2 / 3;
    display: inline-flex;
    min-width: 56px;
    min-height: 44px;
    align-items: center;
    justify-content: flex-end;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 22px var(--safe-right) 40px var(--safe-left);
    background: var(--paper);
    overscroll-behavior: contain;
  }

  .menu-open .site-nav {
    display: block;
  }

  .site-nav ul {
    display: block;
  }

  .site-nav li {
    border-top: 1px solid var(--line);
  }

  .site-nav a,
  .site-nav button {
    width: 100%;
    min-height: 54px;
    font-size: 28px;
    line-height: 32px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-slideshow {
    padding-block: 24px 40px;
  }

  .hero-slide {
    width: min(82vw, 620px);
    height: min(66svh, 620px);
  }

  .cloud-stage {
    width: 116vw;
    height: 62vh;
    transform: translate(-50%, -42%);
  }

  .cloud-word:nth-child(9) {
    left: 10%;
  }

  .cloud-word:nth-child(15) {
    right: 10%;
  }

  .welcome-title,
  .welcome-copy,
  .section-title,
  .about-title,
  .about-copy,
  .contact-title,
  .contact-copy,
  .projects-title,
  .projects-lede,
  .projects-index,
  .projects-count,
  .projects-directory-title {
    grid-column: 1 / 5;
  }

  .profile-title,
  .profile-statement,
  .profile-index,
  .profile-section-title,
  .profile-copy,
  .journal-title,
  .journal-statement,
  .journal-index,
  .journal-directory-title {
    grid-column: 1 / 5;
  }

  .welcome-copy,
  .about-copy,
  .contact-copy,
  .projects-lede {
    margin-top: 28px;
  }

  .profile-statement,
  .profile-copy,
  .journal-statement {
    margin-top: 28px;
  }

  .welcome-title,
  .welcome-copy,
  .section-title,
  .about-title,
  .about-copy h3,
  .contact-title,
  .contact-copy,
  .projects-title,
  .projects-lede,
  .projects-directory-title {
    font-size: clamp(28px, 8.2vw, 36px);
    line-height: 1.02;
  }

  .projects-hero,
  .profile-hero,
  .journal-hero {
    min-height: auto;
    grid-template-rows: auto;
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: 80px;
  }

  .page-visual {
    grid-column: 1 / 5;
    grid-row: auto;
    width: 100%;
    aspect-ratio: 4 / 5;
    min-height: auto;
    margin-bottom: 48px;
  }

  .page-visual img {
    object-position: 50% center;
  }

  .projects-title,
  .projects-lede,
  .profile-title,
  .profile-statement,
  .journal-title,
  .journal-statement {
    grid-row: auto;
  }

  .page-visual-word {
    right: 14px;
    bottom: 10px;
    font-size: clamp(42px, 15vw, 68px);
  }

  .profile-title,
  .journal-title {
    font-size: clamp(28px, 8.2vw, 36px);
    line-height: 1.02;
    letter-spacing: -0.035em;
  }

  .profile-statement,
  .journal-statement,
  .profile-section-title,
  .journal-directory-title,
  .profile-copy .profile-lead {
    font-size: clamp(28px, 8.2vw, 36px);
    line-height: 1.02;
  }

  .profile-index,
  .journal-index {
    margin-top: 88px;
  }

  .practice-item {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    row-gap: 28px;
  }

  .practice-item span {
    grid-column: 1 / 2;
  }

  .practice-item h3 {
    grid-column: 2 / 3;
  }

  .practice-item p {
    grid-column: 1 / 3;
  }

  .journal-entry,
  .journal-entry.wide {
    grid-column: 1 / 5;
  }

  .article-meta,
  .article-heading,
  .article-aside,
  .article-content {
    grid-column: 1 / 5;
  }

  .article-hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 72px);
    padding-bottom: 72px;
  }

  .article-heading {
    margin-top: 48px;
  }

  .article-title {
    font-size: clamp(48px, 15vw, 72px);
  }

  .article-aside {
    position: static;
    margin-bottom: 64px;
  }

  .case-kicker,
  .case-title,
  .case-deck,
  .case-meta,
  .case-overview h2,
  .case-overview-copy,
  .case-chapter-index,
  .case-chapter h2,
  .case-chapter > p:last-child,
  .case-applications-heading,
  .case-application-grid,
  .case-next a {
    grid-column: 1 / 5;
  }

  .case-hero {
    min-height: auto;
    grid-template-rows: none;
    align-content: start;
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 48px;
  }

  .case-kicker,
  .case-title,
  .case-deck,
  .case-meta {
    grid-row: auto;
  }

  .case-title {
    margin-top: 42px;
    font-size: clamp(58px, 19vw, 88px);
    line-height: 0.82;
  }

  .project-detail-page .case-title {
    max-width: none;
    font-size: clamp(48px, 14vw, 72px);
    line-height: 0.9;
  }

  .case-deck {
    margin-top: 38px;
    font-size: clamp(22px, 6.8vw, 30px);
  }

  .case-meta {
    grid-template-columns: 1fr;
    row-gap: 20px;
    margin-top: 42px;
  }

  .case-meta dd {
    margin-top: 2px;
  }

  .case-overview,
  .case-chapter {
    min-height: 0;
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .case-overview h2,
  .case-chapter h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .case-overview-copy,
  .case-chapter h2,
  .case-chapter > p:last-child {
    margin-top: 48px;
  }

  .case-media-inset {
    padding: var(--page);
  }

  .case-media-pair {
    grid-template-columns: 1fr;
  }

  .case-application-grid {
    grid-template-columns: 1fr;
  }

  .case-application + .case-application {
    margin-top: 24px;
  }

  .case-application strong {
    font-size: clamp(56px, 17vw, 88px);
  }

  .case-next {
    min-height: 40svh;
  }

  .case-next a {
    display: block;
  }

  .case-next strong {
    display: block;
    margin-top: 32px;
    font-size: clamp(44px, 13vw, 64px);
  }

  .projects-index {
    margin-top: 88px;
  }

  .projects-count {
    margin-top: 48px;
    font-size: min(48vw, 188px);
    line-height: 0.74;
  }

  .vercel-card {
    grid-column: 1 / 5;
  }

  .project-showcase .vercel-art {
    aspect-ratio: 4 / 3;
  }

  .project-showcase .vercel-art strong {
    font-size: clamp(62px, 22vw, 100px);
  }

  .project-focus > p,
  .project-focus h2,
  .project-focus ul,
  .project-launch a {
    grid-column: 1 / 5;
  }

  .project-focus h2,
  .project-focus ul {
    margin-top: 48px;
  }

  .project-launch {
    min-height: 34svh;
  }

  .vercel-caption {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .vercel-description {
    grid-column: 1 / -1;
  }

  .feature-reel {
    aspect-ratio: 4 / 5;
    margin-top: 72px;
  }

  .feature-type {
    font-size: 42vw;
  }

  .feature-cursor {
    animation-name: cursor-route-mobile;
  }

  @keyframes cursor-route-mobile {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(56vw, 13vw); }
    50% { transform: translate(61vw, 82vw); }
    75% { transform: translate(8vw, 91vw); }
  }

  .project-card,
  .stack-item,
  .note-column {
    grid-column: 1 / 5;
  }

  .project-card + .project-card {
    margin-top: 8px;
  }

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

  .section-link {
    grid-column: 1 / 5;
  }

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

  .stack-item {
    grid-column: span 2;
    min-height: 104px;
  }

  .note-column:nth-child(n) {
    margin-top: 0;
  }

  .note-column + .note-column {
    margin-top: 56px;
  }

  .note-card p {
    max-width: none;
  }

  .notes-grid {
    row-gap: 52px;
  }

  .notes-grid .note-card,
  .journal-entry,
  .journal-entry.wide {
    grid-column: 1 / 5;
  }

  .note-poster,
  .journal-entry .note-poster {
    aspect-ratio: 4 / 3;
  }

  .type-line {
    font-size: clamp(17px, 5.2vw, 22px);
  }

  .type-signature {
    font-size: 12px;
  }

  .type-title-zh {
    font-size: clamp(16px, 4.8vw, 20px);
  }

  .site-footer {
    min-height: auto;
    row-gap: 48px;
  }

  .footer-mark {
    grid-column: 1 / 5;
  }

  .footer-contact,
  .footer-links,
  .footer-meta {
    grid-column: span 2;
  }
}

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

  .cloud-ring,
  .feature-cursor,
  .vercel-art strong,
  .case-application strong,
  .type-cursor {
    animation: none;
    transition: none;
  }

  .grid-guides {
    transition: none;
  }
}

@media print {
  .site-header,
  .grid-guides,
  .menu-button,
  .text-button {
    display: none;
  }

  .hero {
    min-height: 70vh;
  }

  .site-grid {
    break-inside: avoid;
  }
}
