:root {
  --paper: #f8f8f6;
  --ink: #111111;
  --muted: #777777;
  --faint: #e9e9e5;
  --line: #d8d8d2;
  --chip: #eeeeeb;
  --accent: #bd3f45;
  --cyan: #0abab5;
  --indigo: #10069f;
  --max: 1216px;
  --play-gutter: clamp(1.5rem, 1.9vw, 2.4rem);
  --case-sidebar: 164px;
}
* {
  box-sizing: border-box;
}
body.is-doodling {
  -webkit-user-select: none;
  user-select: none;
}
html {
  scroll-behavior: smooth;
}
body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  letter-spacing: 0;
}
body.about-body {
  background: var(--paper);
}
body.play-body {
  background: var(--paper);
}
body.play-body main {
  width: 100%;
  max-width: none;
  margin: 0;
}
@media (pointer: fine) {
  body,
  a,
  button {
    cursor: none;
  }
  .bubble-cursor {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.24);
    background:
      radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.96) 0 18%, transparent 19%),
      radial-gradient(circle at 68% 74%, rgba(255, 255, 255, 0.55) 0 16%, transparent 17%),
      radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.42), rgba(210, 215, 218, 0.3) 58%, rgba(0, 0, 0, 0.08));
    box-shadow:
      inset -3px -4px 8px rgba(0, 0, 0, 0.16),
      inset 2px 2px 6px rgba(255, 255, 255, 0.78),
      0 3px 10px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-50%, -50%, 0);
    transition:
      opacity 120ms ease,
      width 120ms ease,
      height 120ms ease;
  }
  .bubble-cursor.is-visible {
    opacity: 1;
  }
  .bubble-cursor.is-drawing {
    width: 14px;
    height: 14px;
  }
}
.doodle-canvas {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 0;
  width: 100%;
  pointer-events: none;
}
a {
  color: inherit;
  text-decoration-color: rgba(17, 17, 17, 0.34);
  text-underline-offset: 0.16em;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease,
    opacity 160ms ease;
}
a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: min(var(--max), calc(100% - 4rem));
  margin: 0 auto;
  padding: 2.2rem 0 1.1rem;
  background: transparent;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: var(--paper);
  transition:
    background-color 180ms ease,
    backdrop-filter 180ms ease;
}

body.is-scrolling .site-header {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.is-scrolling .site-header::before {
  background: rgba(248, 248, 246, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header a,
.site-footer a,
.audience-strip a {
  font-family: "Fragment Mono", monospace;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-decoration: none;
}

.site-header a:hover {
  color: #ff5a1f;
}

.site-header a:nth-child(2),
.site-header a:nth-child(3) {
  text-align: center;
}
.site-header a:last-child {
  text-align: right;
}
main {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 4rem));
  margin: 0 auto;
}
.intro {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2.2rem 0 2.6rem;
  text-align: center;
}
.intro h1 {
  margin: 0.55rem 0 2.35rem;
  font-size: 1rem;
  font-weight: 500;
}
#intro-title {
  display: inline-block;
  width: 16ch;
  max-width: 100%;
  overflow: hidden;
  border-right: 1px solid var(--ink);
  white-space: nowrap;
  animation:
    introTyping 1.25s steps(15, end) 160ms both,
    introCaret 1.25s step-end 160ms forwards;
}
@keyframes introTyping {
  from {
    width: 0;
  }
  to {
    width: 16ch;
  }
}
@keyframes introCaret {
  0% {
    border-color: var(--ink);
  }
  99% {
    border-color: var(--ink);
  }
  100% {
    border-color: transparent;
  }
}
.intro p {
  width: min(410px, 100%);
  margin: 0;
  font-size: 1rem;
  line-height: 1.17;
}
.intro p + p {
  margin-top: 2.35rem;
}
.intro p a {
  color: var(--muted);
}
.muted-emphasis {
  color: var(--muted);
}
.bio-line {
  display: block;
}
.nyu-purple {
  color: #57068c;
}
.previously-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  margin-top: 0.55rem;
}
.company-logo {
  display: inline-block;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}
.company-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 180ms ease, filter 180ms ease;
}
.company-link:hover {
  transform: translateY(-3px) scale(1.06);
  filter: drop-shadow(0 8px 12px rgba(17, 17, 17, 0.14));
}
.phia-logo {
  height: 1.05rem;
}
.expedia-logo {
  height: 1.05rem;
  margin-left: 0.12rem;
}
.company-separator {
  color: var(--muted);
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.35rem;
  margin-top: 3rem;
}
.social-links a,
.about-links a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
}

.social-links a {
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.08);
  filter: drop-shadow(0 8px 12px rgba(17, 17, 17, 0.14));
}

.social-icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.social-icon-gmail {
  width: 28px;
}
.whisper {
  margin-top: 4.7rem !important;
  font-family: "Fragment Mono", monospace;
  font-size: 0.68rem !important;
  line-height: 1 !important;
  color: #bdbdb7;
  text-transform: uppercase;
}
.audience-strip {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.audience-strip a {
  padding: 0.7rem 0.85rem;
  background: rgba(238, 238, 235, 0.76);
  text-align: center;
  color: var(--muted);
}
.work-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  align-items: start;
  width: calc(100vw - 4rem);
  margin-left: 50%;
  transform: translateX(-50%);
}
.work-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  height: calc(100% + 7rem);
  background: var(--paper);
  transform: translateX(-50%);
}
.work-column {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.35rem;
  align-content: start;
}
.project-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}
.project-card.is-active {
  transform: translateY(-3px);
}
.project-card h2 {
  margin: 0.72rem 0 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.12;
}
.project-image {
  position: relative;
  display: grid;
  min-height: 260px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  background: #f2f2ef;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    filter 180ms ease;
}
.work-column:not(:first-child) .project-image {
  aspect-ratio: 1.5;
  min-height: 0;
}
.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248, 248, 246, 0);
  transition: background-color 180ms ease;
  pointer-events: none;
}
.project-image:hover::after {
  background: rgba(248, 248, 246, 0.18);
}
.project-image:hover {
  filter: saturate(1.03) contrast(0.98);
}
.project-image:hover .phone-shell,
.project-image:hover .paper-sheet,
.project-image:hover .dashboard-shell {
  transform: scale(1.025);
}
.project-image:hover strong {
  transform: rotate(-4deg) scale(1.025);
}
.project-photo-frame {
  background: #173a78;
}
.project-photo-frame img,
.project-photo-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}
.project-photo-frame:hover img,
.project-photo-frame:hover video {
  transform: scale(1.025);
}
.span-tall .project-image {
  min-height: 520px;
}
.span-wide {
  grid-column: span 2;
}
.span-wide .project-image {
  min-height: 340px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
  margin-top: 0.85rem;
}
.tags span {
  padding: 0.55rem 0.78rem;
  background: rgba(238, 238, 235, 0.92);
  color: var(--muted);
  font-family: "Fragment Mono", monospace;
  font-size: 0.86rem;
  text-transform: uppercase;
}
.phone-mockup {
  background: linear-gradient(180deg, #f5f2e8, #ece6d8);
}
.phone-shell {
  position: relative;
  width: min(62%, 250px);
  aspect-ratio: 0.51;
  border: 9px solid #101010;
  border-radius: 42px;
  background: #fbf8ec;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  transition: transform 180ms ease;
}
.phone-notch {
  position: absolute;
  left: 50%;
  top: -1px;
  width: 78px;
  height: 24px;
  border-radius: 0 0 17px 17px;
  background: #101010;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-screen {
  display: grid;
  gap: 0.8rem;
  height: 100%;
  padding: 4.6rem 1.05rem 1.05rem;
}
.phone-screen span {
  font-family: "Fragment Mono", monospace;
  font-size: 0.75rem;
  color: var(--muted);
}
.phone-screen strong {
  font-size: 1rem;
}
.phone-screen i {
  display: block;
  min-height: 72px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(189, 63, 69, 0.18), rgba(10, 186, 181, 0.12)),
    #ffffff;
}
.notebook-mockup {
  background: #c8dee1;
}
.paper-sheet {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  width: 74%;
  padding: 1.1rem;
  aspect-ratio: 1.45;
  background: #fbfbf8;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
  transition: transform 180ms ease;
}
.paper-sheet span {
  background:
    repeating-linear-gradient(#d7d7d2 0 1px, transparent 1px 9px),
    linear-gradient(90deg, transparent 48%, rgba(189, 63, 69, 0.3) 48% 50%, transparent 50%);
}
.dashboard-mockup {
  background: #f8f8f6;
}
.dashboard-shell {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  width: 82%;
  aspect-ratio: 1.55;
  border: 1px solid var(--faint);
  background: #ffffff;
  transition: transform 180ms ease;
}
.dashboard-shell aside {
  border-right: 1px solid var(--faint);
  background:
    linear-gradient(#202020 0 0) 28px 28px / 34px 5px no-repeat,
    repeating-linear-gradient(#f0f0ed 0 1px, transparent 1px 24px);
}
.dashboard-shell section {
  display: grid;
  gap: 1rem;
  padding: 2rem;
}
.dashboard-shell span {
  border-radius: 2px;
  background: linear-gradient(90deg, #f2f2ef, #ffffff);
  border: 1px solid var(--faint);
}
.poster-mockup {
  min-height: 360px;
  background: #f4f4f1;
}
.poster-mockup strong {
  color: #ea5a5f;
  font-size: clamp(2.8rem, 5.4vw, 5.5rem);
  line-height: 0.74;
  text-align: center;
  letter-spacing: 0;
  transform: rotate(-4deg);
  transition: transform 180ms ease;
}
.landscape-mockup {
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.landscape-mockup div {
  width: 100%;
  height: 100%;
}
.landscape-mockup div:nth-child(1) {
  background:
    radial-gradient(circle at 42% 35%, rgba(255, 255, 255, 0.9), transparent 16%),
    linear-gradient(160deg, #f5cf94, #b9ced6 52%, #7f9374);
}
.landscape-mockup div:nth-child(2) {
  background:
    linear-gradient(165deg, transparent 35%, rgba(17, 17, 17, 0.12) 36% 38%, transparent 39%),
    linear-gradient(180deg, #dcd7cb, #9fae98);
}
.landscape-mockup div:nth-child(3) {
  background:
    radial-gradient(circle at 64% 34%, #f8f8f6 0 12%, transparent 13%),
    linear-gradient(180deg, #a9d4d0, #dfc3b2);
}
.play-section {
  position: relative;
  isolation: isolate;
  padding: 4.4rem 0 2.2rem;
  overflow: hidden;
}
.play-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  height: 300px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  transform: translateX(-50%);
}
.play-bubble-field {
  position: absolute;
  top: 0;
  left: 50%;
  height: 290px;
  width: calc(100vw - (var(--play-gutter) * 2));
  pointer-events: none;
  overflow: hidden;
  transform: translateX(-50%);
  z-index: 1;
}
.play-bubble-field span {
  position: absolute;
  display: block;
  width: var(--size);
  height: var(--size);
  left: var(--x);
  top: var(--y);
  border-radius: 48% 54% 45% 58%;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.96) 0 13%, transparent 14%),
    radial-gradient(circle at 67% 72%, rgba(255, 255, 255, 0.36) 0 18%, transparent 19%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(235, 238, 236, 0.22) 44%, rgba(255, 255, 255, 0.52));
  box-shadow:
    inset -7px -8px 16px rgba(0, 0, 0, 0.2),
    inset 6px 8px 18px rgba(255, 255, 255, 0.82),
    0 8px 18px rgba(17, 17, 17, 0.08);
  opacity: 0.78;
  filter: contrast(1.06);
  transform: translate3d(0, 0, 0) scale(0.9) rotate(var(--tilt));
  animation: playBubbleBounce var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
}
.play-bubble-field span:nth-child(1) {
  --size: 86px;
  --x: 8%;
  --y: 42%;
  --x1: 190px;
  --y1: -94px;
  --x2: 410px;
  --y2: 22px;
  --x3: 96px;
  --y3: 38px;
  --tilt: -12deg;
  --duration: 9s;
  --delay: -4s;
}
.play-bubble-field span:nth-child(2) {
  --size: 32px;
  --x: 22%;
  --y: 8%;
  --x1: -96px;
  --y1: 126px;
  --x2: 210px;
  --y2: 116px;
  --x3: -42px;
  --y3: 52px;
  --tilt: 18deg;
  --duration: 7s;
  --delay: -1s;
}
.play-bubble-field span:nth-child(3) {
  --size: 118px;
  --x: 42%;
  --y: 34%;
  --x1: -260px;
  --y1: -118px;
  --x2: 210px;
  --y2: 58px;
  --x3: -88px;
  --y3: 52px;
  --tilt: 8deg;
  --duration: 11s;
  --delay: -7s;
}
.play-bubble-field span:nth-child(4) {
  --size: 46px;
  --x: 53%;
  --y: 44%;
  --x1: 180px;
  --y1: 26px;
  --x2: -230px;
  --y2: -72px;
  --x3: 74px;
  --y3: -124px;
  --tilt: -22deg;
  --duration: 8s;
  --delay: -5s;
}
.play-bubble-field span:nth-child(5) {
  --size: 72px;
  --x: 68%;
  --y: 38%;
  --x1: -140px;
  --y1: 44px;
  --x2: 238px;
  --y2: -48px;
  --x3: -98px;
  --y3: -110px;
  --tilt: 14deg;
  --duration: 10s;
  --delay: -6s;
}
.play-bubble-field span:nth-child(6) {
  --size: 26px;
  --x: 79%;
  --y: 7%;
  --x1: 120px;
  --y1: 118px;
  --x2: -170px;
  --y2: 118px;
  --x3: 92px;
  --y3: 44px;
  --tilt: -7deg;
  --duration: 6.8s;
  --delay: -2.5s;
}
.play-bubble-field span:nth-child(7) {
  --size: 54px;
  --x: 86%;
  --y: 40%;
  --x1: -230px;
  --y1: -94px;
  --x2: 72px;
  --y2: 54px;
  --x3: -164px;
  --y3: 48px;
  --tilt: 24deg;
  --duration: 8.6s;
  --delay: -3.5s;
}
.play-bubble-field span:nth-child(8) {
  --size: 22px;
  --x: 32%;
  --y: 18%;
  --x1: 112px;
  --y1: -42px;
  --x2: -150px;
  --y2: 52px;
  --x3: 60px;
  --y3: 96px;
  --tilt: 4deg;
  --duration: 6.5s;
  --delay: -4.5s;
}
@keyframes playBubbleBounce {
  0% {
    transform: translate3d(0, 0, 0) scale(0.9) rotate(var(--tilt));
  }
  28% {
    transform: translate3d(var(--x1), var(--y1), 0) scale(1) rotate(calc(var(--tilt) * -0.5));
  }
  54% {
    transform: translate3d(var(--x2), var(--y2), 0) scale(0.84) rotate(calc(var(--tilt) * 1.2));
  }
  78% {
    transform: translate3d(var(--x3), var(--y3), 0) scale(1.04) rotate(calc(var(--tilt) * -1));
  }
  100% {
    transform: translate3d(0, 0, 0) scale(0.9) rotate(var(--tilt));
  }
}
@media (prefers-reduced-motion: reduce) {
  .play-bubble-field span,
  .footer-bubble-field span {
    animation: none;
    opacity: 0.5;
    transform: translate3d(0, 0, 0) scale(0.9) rotate(var(--tilt));
  }
  #play-title {
    animation: none;
    width: 24ch;
  }
}
.play-intro {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.play-mark {
  width: clamp(190px, 20vw, 260px);
  height: auto;
  margin-bottom: 0.85rem;
  transform: scaleX(-1);
}

.play-intro h1,
.play-intro h2 {
  margin: 0;
  font-family: "Fragment Mono", monospace;
  font-size: clamp(1.3rem, 2.1vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}

#play-title {
  display: inline-block;
  width: 25ch;
  max-width: 100%;
  overflow: hidden;
  color: #777777;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.05vw, 1.95rem);
  font-weight: 300;
  white-space: nowrap;
  animation: playTitleReveal 1.45s steps(25, end) 180ms both;
}

@keyframes playTitleReveal {
  from {
    width: 0;
  }

  to {
    width: 25ch;
  }
}

.play-intro p {
  width: min(300px, 100%);
  margin: 0.7rem 0 0;
  font-size: 1rem;
  line-height: 1.2;
}

.play-masonry {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.55rem, 0.78vw, 1rem);
  align-items: start;
  width: 100%;
  margin: 0;
  padding-inline: var(--play-gutter);
}

.play-column {
  display: grid;
  gap: clamp(0.55rem, 0.78vw, 1rem);
}

.play-piece {
  position: relative;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  background: #eeeeea;
}

.play-info {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: grid;
  min-width: min(150px, calc(100% - 2rem));
  gap: 0.22rem;
  padding: 0.55rem 0.68rem 0.62rem;
  background: rgba(248, 248, 246, 0.78);
  border: 1px solid rgba(216, 216, 210, 0.82);
  color: var(--muted);
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translate(-50%, -48%) scale(0.98);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.play-info strong {
  color: var(--ink);
  font-size: clamp(0.95rem, 1.35vw, 1.32rem);
  font-weight: 400;
  line-height: 1.05;
}

.play-info span {
  display: block;
  font-family: "Fragment Mono", monospace;
  font-size: clamp(0.62rem, 0.95vw, 0.86rem);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.play-piece:hover .play-info,
.play-piece:focus-within .play-info {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.play-image-card {
  aspect-ratio: auto;
  background: transparent;
}

.play-image-card img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 180ms ease, filter 180ms ease;
}

.play-image-card:hover img {
  filter: saturate(1.02) contrast(0.98);
  transform: scale(1.018);
}

.play-card-tall {
  aspect-ratio: 0.78;
}

.play-card-wide {
  aspect-ratio: 1.36;
}

.play-image-card.play-card-tall,
.play-image-card.play-card-wide {
  aspect-ratio: auto;
}

.play-piece::before,
.play-piece::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.piece-wide-soft {
  aspect-ratio: 1.5;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.92) 0 16%, transparent 17%),
    linear-gradient(135deg, #d7efe8, #f2efe7 48%, #cfc7ee);
}

.piece-square-blue {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.9) 0 18%, transparent 19%),
    linear-gradient(135deg, #0f46ff, #133bd1);
}

.piece-square-glass {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 28% 35%, rgba(255, 255, 255, 0.85) 0 19%, transparent 20%),
    radial-gradient(circle at 70% 62%, rgba(255, 255, 255, 0.76) 0 26%, transparent 27%),
    linear-gradient(120deg, #f8f8f6, #dfe5e7);
}

.piece-portrait-photo {
  aspect-ratio: 0.81;
  background:
    radial-gradient(circle at 46% 30%, rgba(255, 255, 255, 0.72) 0 13%, transparent 14%),
    linear-gradient(180deg, #c7d3cf 0 42%, #4d4d49 43% 66%, #dbd0bd 67%);
}

.piece-short-type {
  aspect-ratio: 2;
  display: grid;
  place-items: center;
  background: #f7f5ee;
  font-family: "Fragment Mono", monospace;
  font-size: 2.2rem;
}

.piece-short-type::before {
  content: "PLAY";
  position: static;
}

.piece-medium-card {
  aspect-ratio: 1.32;
  background:
    linear-gradient(90deg, transparent 10%, rgba(17, 17, 17, 0.14) 11% 12%, transparent 13%),
    radial-gradient(circle at 62% 44%, #bd3f45 0 15%, transparent 16%),
    #e9e1d6;
}

.piece-tall-metal {
  aspect-ratio: 0.87;
  background:
    radial-gradient(ellipse at 50% 28%, rgba(255, 255, 255, 0.88) 0 17%, transparent 18%),
    conic-gradient(from 130deg, #101010, #f2f4ff, #20242b, #ffffff, #101010);
}

.piece-square-orange {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 34% 38%, #f5d76a 0 18%, transparent 19%),
    linear-gradient(135deg, #d85830, #201716 66%, #5c4aa0);
}

.piece-portrait-mono {
  aspect-ratio: 0.76;
  background:
    repeating-linear-gradient(90deg, #111111 0 24px, #f4f4f0 25px 48px),
    linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.18));
  filter: grayscale(1);
}

.piece-wide-sky {
  aspect-ratio: 1.5;
  background:
    radial-gradient(circle at 70% 34%, #ffffff 0 12%, transparent 13%),
    linear-gradient(180deg, #b9d8dc 0 52%, #d9c1a7 53%);
}

.piece-long-liquid {
  aspect-ratio: 0.5;
  background:
    radial-gradient(ellipse at 48% 30%, rgba(255, 255, 255, 0.86) 0 16%, transparent 17%),
    radial-gradient(ellipse at 55% 68%, rgba(255, 255, 255, 0.72) 0 21%, transparent 22%),
    linear-gradient(160deg, #101010, #f5f7fb 46%, #1c1d23);
}

.piece-wide-night {
  aspect-ratio: 1.5;
  background:
    radial-gradient(circle at 72% 30%, #f0efe6 0 9%, transparent 10%),
    linear-gradient(135deg, #10069f, #111111 58%, #bd3f45);
}

.about-page {
  position: relative;
  width: calc(100vw - 4.5rem);
  margin-left: calc(50% - 50vw + 2.25rem);
  padding: clamp(9rem, 18vh, 14rem) 0 3.5rem;
}

.about-mark {
  display: block;
  width: min(300px, 48vw);
  height: auto;
  margin: 0 auto 2.9rem;
  transform: scaleX(-1);
}

.about-row {
  display: grid;
  grid-template-columns: clamp(150px, 12.5vw, 220px) minmax(430px, 740px) minmax(360px, 1fr);
  gap: clamp(2.8rem, 4.8vw, 6.2rem);
  width: 100%;
  margin-bottom: 5.1rem;
  align-items: start;
}

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

.about-row h1,
.about-row h2 {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(0.9rem, 0.98vw, 1.08rem);
  font-weight: 400;
  line-height: 1.18;
  text-transform: uppercase;
  color: var(--muted);
}

.about-row h1 {
  text-transform: none;
}

.about-copy p {
  margin: 0;
  max-width: 740px;
  font-size: clamp(1rem, 1.05vw, 1.18rem);
  line-height: 1.14;
}

.about-copy p + p {
  margin-top: 1.38rem;
}

.about-copy a,
.about-links a {
  color: var(--muted);
}

.about-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  margin-top: 1.65rem;
}

.about-list p + p {
  margin-top: 0.25rem;
}

.about-list p:nth-child(3),
.about-list p:nth-child(4),
.about-list p:nth-child(5) {
  margin-top: 1.25rem;
}

.about-media {
  position: absolute;
  top: clamp(9rem, 18vh, 14rem);
  right: 0;
  left: clamp(850px, 56vw, 1180px);
  width: auto;
  min-width: 0;
}

.about-photo-strip {
  display: flex;
  gap: 1rem;
  width: 100%;
  margin-top: 0;
  overflow-x: auto;
  padding-bottom: 0.45rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.about-photo-strip::-webkit-scrollbar {
  height: 7px;
}

.about-photo-strip::-webkit-scrollbar-thumb {
  background: rgba(17, 17, 17, 0.22);
}

.about-photo-strip::-webkit-scrollbar-track {
  background: rgba(17, 17, 17, 0.06);
}

.about-photo {
  flex: 0 0 clamp(340px, 24vw, 430px);
  position: relative;
  aspect-ratio: 0.6;
  margin: 0;
  overflow: hidden;
  background: #ededeb;
  scroll-snap-align: start;
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-orientation: from-image;
}

.about-photo::before,
.about-photo::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.photo-one {
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.78) 0 14%, transparent 15%),
    linear-gradient(180deg, #d7e7e3 0 36%, #222222 37% 64%, #dbc6b7 65%);
}

.photo-two {
  background:
    linear-gradient(160deg, transparent 40%, rgba(17, 17, 17, 0.2) 41% 44%, transparent 45%),
    linear-gradient(180deg, #f2dacb, #8fa99b);
}

.photo-three {
  background:
    radial-gradient(circle at 42% 38%, #ffffff 0 11%, transparent 12%),
    linear-gradient(140deg, #0abab5, #f4f4f0 54%, #bd3f45);
}

.photo-four {
  background:
    radial-gradient(circle at 65% 32%, #f5d76a 0 13%, transparent 14%),
    linear-gradient(180deg, #d9d2c0, #111111 72%);
}

.site-footer {
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  margin: 2.7rem 0 0;
  padding: 1.6rem 2rem 2rem;
  overflow: hidden;
  border-top: 0;
  color: var(--muted);
  background:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  background: var(--line);
  transform: translateX(-50%);
}

.footer-bubble-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer-bubble-field span {
  position: absolute;
  display: block;
  width: var(--size);
  height: var(--size);
  left: var(--x);
  top: var(--y);
  border-radius: 48% 54% 45% 58%;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.96) 0 13%, transparent 14%),
    radial-gradient(circle at 67% 72%, rgba(255, 255, 255, 0.36) 0 18%, transparent 19%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(235, 238, 236, 0.22) 44%, rgba(255, 255, 255, 0.52));
  box-shadow:
    inset -7px -8px 16px rgba(0, 0, 0, 0.2),
    inset 6px 8px 18px rgba(255, 255, 255, 0.82),
    0 8px 18px rgba(17, 17, 17, 0.08);
  opacity: 0.6;
  filter: contrast(1.06);
  transform: translate3d(0, 0, 0) scale(0.9) rotate(var(--tilt));
  animation: playBubbleBounce var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
}

.footer-bubble-field span:nth-child(1) {
  --size: 80px;
  --x: 8%;
  --y: 40%;
  --x1: 180px;
  --y1: -74px;
  --x2: -46px;
  --y2: 58px;
  --x3: 94px;
  --y3: 26px;
  --tilt: -12deg;
  --duration: 9s;
  --delay: -4s;
}

.footer-bubble-field span:nth-child(2) {
  --size: 28px;
  --x: 25%;
  --y: 18%;
  --x1: -86px;
  --y1: 72px;
  --x2: 120px;
  --y2: 122px;
  --x3: -40px;
  --y3: 28px;
  --tilt: 18deg;
  --duration: 7s;
  --delay: -1s;
}

.footer-bubble-field span:nth-child(3) {
  --size: 105px;
  --x: 48%;
  --y: 28%;
  --x1: -230px;
  --y1: -46px;
  --x2: 150px;
  --y2: 52px;
  --x3: -88px;
  --y3: 76px;
  --tilt: 8deg;
  --duration: 11s;
  --delay: -7s;
}

.footer-bubble-field span:nth-child(4) {
  --size: 58px;
  --x: 70%;
  --y: 52%;
  --x1: -148px;
  --y1: 76px;
  --x2: 170px;
  --y2: -54px;
  --x3: -70px;
  --y3: -82px;
  --tilt: 14deg;
  --duration: 10s;
  --delay: -6s;
}

.footer-bubble-field span:nth-child(5) {
  --size: 24px;
  --x: 88%;
  --y: 26%;
  --x1: 88px;
  --y1: 54px;
  --x2: -140px;
  --y2: 92px;
  --x3: 60px;
  --y3: 22px;
  --tilt: -7deg;
  --duration: 6.8s;
  --delay: -2.5s;
}

.footer-bubble-field span:nth-child(6) {
  --size: 42px;
  --x: 16%;
  --y: 8%;
  --x1: 132px;
  --y1: 118px;
  --x2: 330px;
  --y2: 32px;
  --x3: 62px;
  --y3: 150px;
  --tilt: 20deg;
  --duration: 8.4s;
  --delay: -5.2s;
}

.footer-bubble-field span:nth-child(7) {
  --size: 128px;
  --x: 77%;
  --y: 12%;
  --x1: -250px;
  --y1: 84px;
  --x2: -86px;
  --y2: -32px;
  --x3: -330px;
  --y3: 112px;
  --tilt: -18deg;
  --duration: 12s;
  --delay: -8s;
}

.footer-bubble-field span:nth-child(8) {
  --size: 34px;
  --x: 58%;
  --y: 70%;
  --x1: 140px;
  --y1: -120px;
  --x2: -180px;
  --y2: -54px;
  --x3: 88px;
  --y3: -20px;
  --tilt: 11deg;
  --duration: 7.2s;
  --delay: -3.4s;
}

.footer-bubble-field span:nth-child(9) {
  --size: 64px;
  --x: 36%;
  --y: 58%;
  --x1: -170px;
  --y1: -96px;
  --x2: 210px;
  --y2: -24px;
  --x3: -70px;
  --y3: 44px;
  --tilt: 28deg;
  --duration: 9.8s;
  --delay: -6.6s;
}

.site-footer nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-bottom: 1.2rem;
}

.site-footer p {
  position: relative;
  z-index: 1;
  margin: 0.35rem 0 0;
  font-family: "Fragment Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.intro-mark {
  display: block;
  width: clamp(148px, 18vw, 220px);
  height: auto;
  margin: 0 0 1.15rem;
  transform: scaleX(-1);
  transform-origin: center;
  object-fit: contain;
}

@media (max-width: 920px) {
  :root {
    --play-gutter: clamp(1.5rem, 1.9vw, 2.4rem);
  }

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

  .play-masonry {
    gap: 0.6rem;
  }

  .play-column {
    gap: 0.6rem;
  }

  .about-row {
    grid-template-columns: 118px minmax(0, 1fr);
  }

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

  .site-header,
  main {
    width: min(100% - 2rem, var(--max));
  }

  .site-footer {
    width: 100%;
    padding-inline: 1rem;
  }

  .intro {
    min-height: 68vh;
  }

}

@media (max-width: 640px) {
  body {
    background-size: 34px 34px;
  }

  .site-header {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 1.25rem 0 2rem;
  }

  .site-header a:nth-child(2),
  .site-header a:nth-child(3) {
    text-align: center;
  }

  .site-header a:last-child {
    text-align: right;
  }

  .intro {
    min-height: auto;
    padding: 2rem 0 3.2rem;
  }

  .intro p + p,
  .social-links {
    margin-top: 2.1rem;
  }

  .previously-line {
    flex-wrap: wrap;
  }

  .social-links {
    gap: 1.2rem;
  }

  .audience-strip {
    display: none;
  }

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

  .span-wide {
    grid-column: auto;
  }

  .play-section {
    padding-top: 3.6rem;
  }

  .play-bubble-field {
    height: 275px;
  }

  .play-intro {
    min-height: 220px;
  }

  .play-masonry {
    gap: 0.42rem;
  }

  .play-column {
    gap: 0.42rem;
  }

  .about-page {
    padding-top: 0.4rem;
  }

  .about-mark {
    width: min(300px, 76vw);
    margin-bottom: 2.4rem;
  }

  .about-row {
    display: block;
    margin-bottom: 3.35rem;
  }

  .about-row h1,
  .about-row h2 {
    margin-bottom: 1.1rem;
  }

  .about-links {
    gap: 1.4rem;
  }

  .about-photo-strip {
    width: 100%;
    gap: 0.45rem;
    margin-top: 1.7rem;
  }

  .project-image,
  .span-tall .project-image,
  .span-wide .project-image {
    min-height: 320px;
  }
}

body.play-body main {
  width: 100%;
  max-width: none;
  margin: 0;
}

body.play-body .play-masonry {
  width: 100%;
  padding-left: var(--play-gutter);
  padding-right: var(--play-gutter);
}

body.play-body .play-column {
  min-width: 0;
}

body.play-body .play-section {
  padding-bottom: 0.45rem;
}

body.play-body .site-footer {
  margin-top: 0.45rem;
}

.expedia-coming-soon .project-image {
  border: 0;
}

.project-bubble-note {
  position: absolute;
  left: 50%;
  top: 44%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  color: #ffffff;
  background: #ff5a1f;
  font-family: "Fragment Mono", monospace;
  font-size: clamp(0.82rem, 1vw, 1.08rem);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 14px 24px rgba(255, 90, 31, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.78);
  transition:
    opacity 170ms ease,
    transform 170ms ease;
}

.expedia-coming-soon:hover .project-bubble-note {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

body.about-body {
  color: #111111;
  background: #f8f8f6;
}

body.about-body main {
  width: 100%;
  max-width: none;
  margin: 0;
}

body.about-body .about-page {
  position: relative;
  display: grid;
  grid-template-columns: clamp(150px, 12.7vw, 220px) minmax(430px, 730px) minmax(420px, 1fr);
  column-gap: clamp(3rem, 4.8vw, 6.2rem);
  row-gap: 0;
  width: calc(100vw - 4.5rem);
  min-height: 165vh;
  margin-left: calc(50% - 50vw + 2.25rem);
  padding: clamp(10.5rem, 19vh, 15rem) 0 7rem;
}

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

body.about-body .about-row h1,
body.about-body .about-row h2 {
  grid-column: 1;
  margin: 0;
  color: #777777;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(0.92rem, 0.98vw, 1.08rem);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.about-body .about-row h1 {
  text-transform: uppercase;
}

body.about-body .about-copy {
  grid-column: 2;
  min-width: 0;
}

body.about-body .about-copy p {
  max-width: 720px;
  margin: 0;
  color: #111111;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1rem, 1.06vw, 1.18rem);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: 0;
}

body.about-body .about-copy p + p {
  margin-top: 1.42rem;
}

body.about-body .about-copy a,
body.about-body .about-links a,
body.about-body .muted-emphasis {
  color: #8f8f8f;
  text-decoration: none;
}

body.about-body .about-copy a:hover,
body.about-body .about-links a:hover {
  text-decoration: none;
}

body.about-body .nyu-purple {
  color: #57068c;
}

body.about-body .about-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  margin-top: 1.8rem;
}

body.about-body .about-links a {
  width: 30px;
  height: 30px;
}

body.about-body .about-links img {
  max-width: 24px;
  max-height: 24px;
  filter: grayscale(1);
  opacity: 0.78;
}

body.about-body .about-hero h1,
body.about-body .about-hero .about-copy {
  grid-row: 1;
}

body.about-body .about-page > .about-row:nth-of-type(2) h2,
body.about-body .about-page > .about-row:nth-of-type(2) .about-copy {
  grid-row: 2;
  margin-top: clamp(4.2rem, 7.2vh, 6.5rem);
}

body.about-body .about-page > .about-row:nth-of-type(3) h2,
body.about-body .about-page > .about-row:nth-of-type(3) .about-copy {
  grid-row: 3;
  margin-top: clamp(4.8rem, 8.2vh, 7.4rem);
}

body.about-body .about-list p + p {
  margin-top: 0.2rem;
}

body.about-body .about-list p:nth-child(3),
body.about-body .about-list p:nth-child(4),
body.about-body .about-list p:nth-child(5) {
  margin-top: 1.35rem;
}

body.about-body .about-media {
  position: sticky;
  top: clamp(8rem, 14vh, 11rem);
  grid-column: 3;
  grid-row: 1 / span 3;
  align-self: start;
  width: 100%;
  min-width: 0;
  height: min(62vh, 620px);
  overflow: hidden;
}

body.about-body .about-photo-strip {
  display: flex;
  gap: 1.05rem;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-snap-type: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: auto;
}

body.about-body .about-photo-strip::-webkit-scrollbar {
  display: none;
}

body.about-body .about-photo {
  flex: 0 0 clamp(320px, 25vw, 430px);
  aspect-ratio: 0.62;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #eeeeeb;
  scroll-snap-align: none;
}

body.about-body .about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-orientation: from-image;
}

body.about-body .about-photo::before,
body.about-body .about-photo::after {
  content: none;
}

@media (max-width: 1120px) {
  body.about-body .about-page {
    display: block;
    width: min(100% - 2rem, var(--max));
    min-height: auto;
    margin: 0 auto;
    padding-top: 4rem;
  }

  body.about-body .about-row {
    display: block;
    margin-bottom: 3.5rem;
  }

  body.about-body .about-row h1,
  body.about-body .about-row h2 {
    margin-bottom: 1rem;
  }

  body.about-body .about-media {
    position: relative;
    top: auto;
    height: 420px;
    margin-top: 2rem;
  }
}

/* Single-screen about layout */
body.about-body {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

body.about-body main {
  flex: 1 1 auto;
  min-height: 0;
}

body.about-body .about-page {
  display: grid;
  grid-template-columns: clamp(120px, 10vw, 170px) minmax(360px, 640px) minmax(360px, 1fr);
  column-gap: clamp(2rem, 3.5vw, 4.4rem);
  width: calc(100vw - 4rem);
  min-height: 0;
  height: 100%;
  margin-left: 2rem;
  padding: clamp(1.1rem, 2.4vh, 1.8rem) 0 clamp(0.8rem, 1.8vh, 1.2rem);
}

body.about-body .about-row {
  display: contents;
  margin-bottom: 0;
}

body.about-body .about-copy p {
  font-size: clamp(0.86rem, 0.92vw, 1rem);
  line-height: 1.12;
}

body.about-body .about-copy p + p {
  margin-top: 0.82rem;
}

body.about-body .about-links {
  margin-top: 0.95rem;
}

body.about-body .about-page > .about-row:nth-of-type(2) h2,
body.about-body .about-page > .about-row:nth-of-type(2) .about-copy {
  margin-top: clamp(1.25rem, 2.7vh, 2.1rem);
}

body.about-body .about-page > .about-row:nth-of-type(3) h2,
body.about-body .about-page > .about-row:nth-of-type(3) .about-copy {
  margin-top: clamp(1.25rem, 2.8vh, 2.2rem);
}

body.about-body .about-list p:nth-child(3),
body.about-body .about-list p:nth-child(4),
body.about-body .about-list p:nth-child(5) {
  margin-top: 0.75rem;
}

body.about-body .about-media {
  position: relative;
  top: auto;
  left: auto;
  height: 100%;
  min-height: 320px;
  max-height: min(58vh, 520px);
  align-self: stretch;
}

/* Reference-style about body */
body.about-body {
  height: 100vh;
  overflow: hidden;
}

body.about-body main {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  max-width: none;
  margin: 0;
}

body.about-body .about-page {
  display: grid;
  grid-template-columns: minmax(205px, 0.78fr) minmax(420px, 2.7fr) minmax(420px, 3.25fr);
  column-gap: clamp(2rem, 4.4vw, 5.2rem);
  row-gap: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: clamp(6.5rem, 15vh, 11rem) clamp(2rem, 3.25vw, 3rem) clamp(2rem, 5vh, 3.7rem);
  align-content: center;
}

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

body.about-body .about-row h1,
body.about-body .about-row h2 {
  grid-column: 1;
  margin: 0;
  color: #777777;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(0.74rem, 0.92vw, 0.95rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

body.about-body .about-copy {
  grid-column: 2;
  min-width: 0;
}

body.about-body .about-copy p {
  max-width: 705px;
  margin: 0;
  color: #111111;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(0.86rem, 0.98vw, 1.02rem);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
}

body.about-body .about-copy p + p {
  margin-top: clamp(1.15rem, 2.1vh, 1.55rem);
}

body.about-body .about-copy strong {
  font-weight: 700;
}

body.about-body .about-copy a,
body.about-body .about-links a,
body.about-body .muted-emphasis {
  color: #8f8f8f;
  text-decoration: none;
}

body.about-body .about-links {
  display: flex;
  align-items: center;
  gap: clamp(1.8rem, 2.8vw, 2.7rem);
  margin-top: clamp(1.2rem, 2.5vh, 1.8rem);
}

body.about-body .about-links a {
  display: inline;
  width: auto;
  height: auto;
  color: #8f8f8f;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(0.86rem, 0.98vw, 1.02rem);
  text-transform: none;
  text-decoration: none;
}

body.about-body .about-links a:hover {
  color: #ff5a1f;
  text-decoration: none;
}

body.about-body .about-copy a:hover {
  color: #ff5a1f;
  text-decoration: none;
}

body.about-body .about-links s {
  text-decoration-thickness: 1px;
  text-decoration-color: #8f8f8f;
}

body.about-body .about-hero h1,
body.about-body .about-hero .about-copy {
  grid-row: 1;
}

body.about-body .about-page > .about-row:nth-of-type(2) h2,
body.about-body .about-page > .about-row:nth-of-type(2) .about-copy {
  grid-row: 2;
  margin-top: clamp(2rem, 4.6vh, 3.8rem);
}

body.about-body .about-page > .about-row:nth-of-type(3) h2,
body.about-body .about-page > .about-row:nth-of-type(3) .about-copy {
  grid-row: 3;
  margin-top: clamp(3.2rem, 6.2vh, 5.2rem);
}

body.about-body .about-list p + p {
  margin-top: clamp(1.25rem, 2.7vh, 1.9rem);
}

body.about-body .about-list p {
  line-height: 1.28;
}

body.about-body .about-list br {
  display: block;
  content: "";
}

body.about-body .about-media {
  position: relative;
  top: auto;
  left: auto;
  grid-column: 3;
  grid-row: 1 / span 3;
  width: calc(100% + clamp(1rem, 2vw, 2rem));
  height: auto;
  min-height: 0;
  max-height: none;
  align-self: stretch;
  overflow: hidden;
}

body.about-body .about-photo-strip {
  display: flex;
  gap: clamp(1rem, 1.65vw, 1.45rem);
  width: 100%;
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-snap-type: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: auto;
}

body.about-body .about-photo-strip::-webkit-scrollbar {
  display: none;
}

body.about-body .about-photo {
  flex: 0 0 clamp(310px, 30vw, 520px);
  height: 100%;
  aspect-ratio: 0.66;
  margin: 0;
  overflow: hidden;
  background: #eeeeeb;
  scroll-snap-align: none;
}

body.about-body .about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-orientation: from-image;
}

body.about-body .about-photo::before,
body.about-body .about-photo::after {
  content: none;
}

body.about-body .ps-notes {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1vw, 0.9rem);
  max-width: 100%;
  overflow: visible;
}

body.about-body .ps-notes img {
  display: block;
  width: auto;
  height: clamp(42px, 5.6vw, 74px);
  max-width: 18%;
  object-fit: contain;
  background: transparent;
  transform-origin: center;
  transition: transform 180ms ease, filter 180ms ease;
}

body.about-body .ps-notes img:hover {
  transform: translateY(-4px) scale(1.08);
  filter: drop-shadow(0 8px 12px rgba(17, 17, 17, 0.14));
}

body.about-body .ps-notes img:nth-child(3),
body.about-body .ps-notes img:nth-child(4) {
  height: clamp(52px, 6.8vw, 88px);
}

body.about-body .ps-notes img:nth-child(5) {
  height: clamp(38px, 5vw, 66px);
}

@media (max-width: 1120px) {
  body.about-body {
    height: auto;
    overflow: auto;
  }

  body.about-body .about-page {
    display: block;
    padding: 3.2rem 1.3rem;
  }

  body.about-body .about-row {
    display: block;
    margin-bottom: 3rem;
  }

  body.about-body .about-row h1,
  body.about-body .about-row h2 {
    margin-bottom: 0.9rem;
  }

  body.about-body .about-media {
    width: 100%;
    height: 420px;
    min-height: 320px;
    margin-top: 2rem;
  }
}

@media (max-width: 640px) {
  body.about-body {
    display: block;
    width: 100%;
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
  }

  body.about-body main {
    width: 100%;
    min-height: 0;
    overflow: visible;
  }

  body.about-body .about-page {
    display: block;
    width: 100%;
    height: auto;
    padding: 2rem 1rem 4rem;
  }

  body.about-body .about-row {
    display: block;
    margin-bottom: 3.5rem;
  }

  body.about-body .about-row h1,
  body.about-body .about-row h2 {
    margin-bottom: 1rem;
    white-space: normal;
  }

  body.about-body .about-copy {
    width: 100%;
  }

  body.about-body .about-copy p {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  body.about-body .about-media {
    width: 100%;
    height: auto;
    min-height: 0;
    margin-top: 2rem;
    overflow: visible;
  }

  body.about-body .about-photo-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    width: 100%;
    height: auto;
    overflow: visible;
  }

  body.about-body .about-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  body.about-body .ps-notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    overflow: visible;
  }

  body.about-body .ps-notes img,
  body.about-body .ps-notes img:nth-child(3),
  body.about-body .ps-notes img:nth-child(4),
  body.about-body .ps-notes img:nth-child(5) {
    width: 100%;
    max-width: none;
    height: auto;
  }
}

/* Emmi-style project case studies */
body.project-detail-body {
  background: var(--paper);
}

body.project-detail-body main {
  width: 100%;
  max-width: none;
  margin: 0;
}

.case-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0 0 6rem var(--case-sidebar);
}

.case-page > * {
  order: 10;
}

.case-hero-image {
  order: 1;
}

.case-hero {
  order: 2;
  display: block;
  width: min(100% - clamp(3rem, 7vw, 9rem), 1420px);
  margin: clamp(2.15rem, 4vw, 4rem) auto 0;
  padding-bottom: clamp(0.9rem, 1.8vw, 1.5rem);
}

.case-kicker {
  margin: 0;
  color: var(--muted);
  font-family: "Fragment Mono", monospace;
  font-size: clamp(0.78rem, 0.88vw, 0.95rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.case-hero h1 {
  margin: 0;
  max-width: 1100px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.45vw, 2.55rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.case-summary {
  max-width: 670px;
  margin: clamp(0.9rem, 1.8vw, 1.55rem) 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.35vw, 1.38rem);
  line-height: 1.22;
}

.case-summary--single-line {
  max-width: none;
}

@media (min-width: 900px) {
  .case-summary--single-line {
    white-space: nowrap;
  }
}

.case-meta {
  order: 3;
  display: grid;
  grid-template-columns: 1.12fr 1.18fr 1.12fr 0.72fr;
  gap: clamp(2.5rem, 5.5vw, 7rem);
  width: min(100% - clamp(3rem, 7vw, 9rem), 1420px);
  margin: 0 auto;
  padding: clamp(1.35rem, 2.6vw, 2.35rem) 0 clamp(1.8rem, 3.4vw, 2.9rem);
  border-bottom: 1px solid var(--line);
}

.case-meta h2 {
  margin: 0 0 0.65rem;
  color: #0a54fe;
  font-family: "Fragment Mono", monospace;
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
}

.case-meta p {
  max-width: 320px;
  margin: 0;
  font-size: clamp(0.92rem, 1.05vw, 1.08rem);
  line-height: 1.18;
}

.case-hero-image {
  width: 100%;
  margin: 0;
  background: transparent;
  overflow: hidden;
}

.case-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.case-jump {
  position: fixed;
  z-index: 30;
  top: var(--header-height, 4rem);
  left: 0;
  bottom: 0;
  order: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: var(--case-sidebar);
  padding: 1.65rem 1.25rem;
  gap: 1.42rem;
  background: var(--paper);
  border-right: 1px solid var(--line);
}

.case-jump a {
  color: var(--muted);
  font-family: "Fragment Mono", monospace;
  font-size: clamp(0.72rem, 0.82vw, 0.88rem);
  font-weight: 400;
  line-height: 1.15;
  text-decoration: none;
  text-transform: uppercase;
}

.case-jump a:hover {
  color: #ff5a1f;
}

.case-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  column-gap: clamp(2rem, 6vw, 7rem);
  width: min(100% - clamp(3rem, 7vw, 9rem), 1420px);
  margin: 0 auto;
  padding: clamp(3.4rem, 6vw, 6.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.case-section-label {
  margin: 0;
  color: var(--muted);
  font-family: "Fragment Mono", monospace;
  font-size: 0.8rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.case-section-copy {
  max-width: 780px;
}

.case-section-copy h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.75rem, 3.15vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}

.case-section-copy p {
  margin: 0;
  max-width: 720px;
  font-size: clamp(1.02rem, 1.35vw, 1.35rem);
  line-height: 1.18;
}

.case-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.2vw, 1rem);
  width: min(100% - clamp(3rem, 7vw, 9rem), 1420px);
  margin: 0 auto;
  padding: clamp(1.2rem, 2.5vw, 2.2rem) 0;
}

.case-image-grid img {
  display: block;
  width: 100%;
  height: min(56vw, 680px);
  object-fit: cover;
  background: #eeeeeb;
}

.case-detail-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 2.4vw, 2.75rem);
  width: min(100% - clamp(3rem, 7vw, 9rem), 1420px);
  margin: clamp(3rem, 5vw, 5rem) auto clamp(2.5rem, 4vw, 4rem);
}

.case-detail-stack img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--paper);
}

.case-labeled-detail-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3.4rem);
  width: min(100% - clamp(3rem, 7vw, 9rem), 1420px);
  margin: clamp(3rem, 5vw, 5rem) auto clamp(2.5rem, 4vw, 4rem);
}

.case-labeled-detail-group {
  display: grid;
  grid-template-columns: minmax(120px, 0.16fr) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: start;
}

.case-labeled-detail-group h2 {
  position: sticky;
  top: calc(var(--header-height, 4rem) + 1.25rem);
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-family: "Fragment Mono", monospace;
  font-size: clamp(0.78rem, 0.9vw, 0.95rem);
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
}

.case-labeled-detail-images {
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 2vw, 2rem);
}

.case-labeled-detail-group > .case-labeled-detail-images:only-child {
  grid-column: 1 / -1;
}

.case-labeled-detail-images img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--paper);
}

@media (max-width: 820px) {
  body.project-detail-body main {
    width: 100%;
  }

  .case-page {
    padding: 4.75rem 0.75rem 4rem;
  }

  .case-jump {
    position: static;
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 0;
    margin-bottom: 1rem;
    gap: 0.75rem;
  }

  .case-hero,
  .case-section {
    display: block;
    width: 100%;
  }

  .case-hero h1 {
    margin-top: 1.3rem;
  }

  .case-summary {
    width: 100%;
  }

  .case-meta,
  .case-image-grid,
  .case-detail-stack,
  .case-labeled-detail-stack {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .case-detail-stack {
    gap: 1.25rem;
    margin: 2rem 0 2.5rem;
  }

  .case-labeled-detail-stack {
    gap: 1.75rem;
    margin: 2rem 0 2.5rem;
  }

  .case-labeled-detail-group {
    display: block;
  }

  .case-labeled-detail-group h2 {
    position: static;
    margin: 0 0 0.75rem;
  }

  .case-labeled-detail-images {
    gap: 1.25rem;
  }
}
