:root {
  --bg: #101111;
  --fg: #c8d2c4;
  --muted: rgba(200, 210, 196, 0.54);
  --project: #b4735e;
  --project-bg: #c9ccc5;
  --ink: #151515;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body {
  cursor: default;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

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

.site {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.025) 48%, transparent 68%),
    var(--bg);
  transition: background-color 700ms var(--ease), color 700ms var(--ease);
}

.site.is-hovering-gallery {
  color: color-mix(in srgb, var(--project) 42%, var(--fg));
}

.site.is-home-preview {
  background: var(--project-bg);
  color: var(--project);
}

.site.is-project {
  background: var(--project-bg, #d7d9d3);
  color: var(--project);
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 19px 23px;
  mix-blend-mode: overlay;
}

.chrome {
  position: absolute;
  inset: 34px 38px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  align-items: start;
  pointer-events: auto;
}

.brand,
.text-link {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.brand,
.project-title,
.thumb-title {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site.is-project .chrome {
  z-index: 50;
}

.brand {
  display: inline-block;
  width: min-content;
  font-size: 42px;
  line-height: 0.8;
  transform: scaleX(0.58);
  transform-origin: left top;
  padding: 10px 18px 12px 8px;
  margin: -10px 0 0 -8px;
}

.text-link {
  position: relative;
  justify-self: end;
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
}

.text-link::after,
.home-social a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 420ms var(--ease);
}

.text-link:hover::after,
.home-social a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

#about-toggle::after {
  transform: scaleX(1);
}

.progress {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
  line-height: 10px;
}

.progress-ticks {
  display: grid;
  grid-auto-flow: column;
  gap: 5px;
}

.progress-ticks i {
  display: block;
  width: 2px;
  height: 16px;
  background: currentColor;
  opacity: 0.22;
  transform-origin: center;
  transition: opacity 320ms var(--ease), transform 320ms var(--ease);
}

.progress-ticks i.is-active {
  opacity: 1;
}

.home-view,
.project-view,
.about-view {
  position: absolute;
  inset: 0;
}

.home-view {
  z-index: 5;
  opacity: 1;
  transition: opacity 700ms var(--ease), transform 900ms var(--ease);
}

.site.is-project .home-view {
  opacity: 0;
  transform: scale(0.985);
  pointer-events: none;
}

.gallery-stage {
  position: absolute;
  inset: 0;
  perspective: 720px;
  perspective-origin: 50% 52%;
  transform-style: preserve-3d;
  transition: opacity 520ms var(--ease), transform 900ms var(--ease);
}

.gallery-stage::before {
  content: "";
  position: absolute;
  top: 26%;
  left: 50%;
  width: min(760px, 76vw);
  height: 38%;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--project) 26%, transparent),
    rgba(255, 255, 255, 0.08),
    transparent
  );
  filter: blur(18px);
  transition: opacity 560ms var(--ease), transform 900ms var(--ease);
}

.site.is-hovering-gallery .gallery-stage::before {
  opacity: 0.42;
  transform: translateX(-50%) scaleX(1.06);
}

.site.is-home-preview .gallery-stage {
  opacity: 0.06;
  transform: scale(0.985);
  transition: opacity 520ms var(--ease), transform 900ms var(--ease);
}

.gallery-track {
  position: absolute;
  top: 54%;
  left: 50%;
  width: 1px;
  height: 1px;
  transform-style: preserve-3d;
}

.home-preview {
  position: absolute;
  inset: 0;
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  color: var(--project);
  transition: opacity 520ms linear;
}

.site.is-home-preview .home-preview {
  opacity: 1;
}

.home-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--project-bg);
  opacity: 0.96;
}

.site.is-home-preview.is-home-true-color .home-preview::before {
  background: transparent;
  opacity: 0;
}

.home-preview-side,
.home-preview-media {
  --image-x: 50%;
  background-image:
    linear-gradient(180deg, color-mix(in srgb, var(--project-bg) 18%, transparent), rgba(0, 0, 0, 0.22)),
    var(--image);
  background-size: cover;
  background-position: var(--image-x) center;
}

.site.is-home-preview.is-home-true-color .home-preview-media {
  background-image: var(--image);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: none;
}

.home-preview-side {
  position: absolute;
  z-index: 1;
  top: 26.5%;
  width: 12.8vw;
  min-width: 128px;
  height: 53.5%;
  opacity: 0;
  filter: grayscale(0.92) brightness(0.86) contrast(0.95);
  transition: opacity 1100ms var(--ease), transform 1400ms var(--ease);
}

.home-preview-side-left {
  left: 0;
  --image-x: 18%;
  transform: translateX(-26px);
}

.home-preview-side-right {
  right: 0;
  --image-x: 82%;
  transform: translateX(26px);
}

.site.is-home-preview .home-preview-side {
  opacity: 0.34;
  transform: translateX(0);
  transition-delay: 120ms;
}

.home-preview-media {
  position: absolute;
  z-index: 2;
  top: 26.5%;
  left: 22.6%;
  right: 17.8%;
  height: 53.5%;
  opacity: 0;
  overflow: hidden;
  filter: grayscale(0.38) brightness(0.88) contrast(1.08) saturate(0.78);
  transform: scaleX(0.9) translateY(10px);
  transform-origin: center;
  transition: opacity 1000ms var(--ease), transform 1350ms var(--ease), filter 1200ms var(--ease);
}

.site.is-home-preview .home-preview-media {
  opacity: 1;
  transform: scaleX(1) translateY(0);
  filter: grayscale(0.24) brightness(0.96) contrast(1.08) saturate(0.9);
  transition-delay: 60ms;
}

.home-preview-copy {
  position: absolute;
  z-index: 4;
  top: 17%;
  left: 3.25vw;
  width: 94vw;
}

.home-preview-copy p {
  margin: 0 0 16px;
  font-size: 11px;
  line-height: 11px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 680ms var(--ease), transform 900ms var(--ease);
}

.site.is-home-preview .home-preview-copy p {
  opacity: 0.7;
  transform: translateY(0);
  transition-delay: 300ms;
}

.home-preview-title {
  width: 138%;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(122px, 16.8vw, 245px);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: scaleX(0.74);
  transform-origin: left top;
  mix-blend-mode: multiply;
}

.home-preview-line {
  display: block;
  height: 0.74em;
  overflow: hidden;
  white-space: nowrap;
  transform: translateX(var(--line-x, 0vw));
}

.home-preview-line span {
  display: inline-block;
  transform: translateY(118%) scaleY(0.76) scaleX(1.12);
  transform-origin: left 100%;
  filter: blur(2px);
}

.site.is-home-preview .home-preview-line span {
  animation: homePreviewTitleIn 1260ms var(--ease) both;
  animation-delay: calc(180ms + var(--delay));
}

@keyframes homePreviewTitleIn {
  0% {
    filter: blur(2px);
    transform: translateY(118%) scaleY(0.76) scaleX(1.12);
  }

  62% {
    filter: blur(0);
    transform: translateY(-5%) scaleY(1.06) scaleX(0.97);
  }

  100% {
    filter: blur(0);
    transform: translateY(0) scaleY(1) scaleX(1);
  }
}

.home-preview-meta {
  position: absolute;
  z-index: 5;
  left: 270px;
  right: 210px;
  bottom: 47px;
  display: grid;
  grid-template-columns: minmax(310px, 470px) auto minmax(250px, 420px);
  gap: 52px;
  align-items: end;
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 740ms var(--ease), transform 920ms var(--ease);
}

.site.is-home-preview .home-preview-meta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 500ms;
}

.home-preview-meta dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
}

.home-preview-meta dt,
.home-preview-meta dd,
.home-preview-meta p {
  margin: 0;
}

.home-preview-meta dt {
  opacity: 0.55;
}

.home-preview-meta p {
  max-width: 420px;
  opacity: 0.76;
}

.home-preview-explore {
  justify-self: center;
  pointer-events: auto;
  color: currentColor;
  min-width: 128px;
  height: 40px;
  padding: 0 20px;
  border: 1.5px solid currentColor;
  background: color-mix(in srgb, var(--project-bg) 62%, rgba(255, 255, 255, 0.22));
  font-size: 13px;
  letter-spacing: 0.9px;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 0 0 2px color-mix(in srgb, currentColor 20%, transparent), 0 8px 20px rgba(0, 0, 0, 0.12);
  animation: explorePulse 1.8s ease-in-out infinite;
}

.home-preview-explore:hover {
  background: color-mix(in srgb, var(--project-bg) 38%, rgba(255, 255, 255, 0.34));
  transform: translateY(-1px);
}

@keyframes explorePulse {
  0%,
  100% {
    box-shadow: 0 0 0 2px color-mix(in srgb, currentColor 20%, transparent), 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  50% {
    box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 32%, transparent), 0 10px 24px rgba(0, 0, 0, 0.16);
  }
}

.thumb {
  --x: 0px;
  --y: 0px;
  --z: 0px;
  --r: 0deg;
  --rz: 0deg;
  --s: 1;
  --o: 1;
  --heat: 0;
  --glow: 0;
  --hover: 0;
  --shadow-y: 18px;
  --shadow-blur: 50px;
  position: absolute;
  left: -36px;
  top: -134px;
  width: 72px;
  height: 268px;
  overflow: hidden;
  opacity: var(--o);
  transform:
    translate3d(var(--x), var(--y), var(--z))
    rotateY(var(--r))
    rotateZ(var(--rz))
    scale(var(--s));
  transform-style: preserve-3d;
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform, opacity;
  transition: border-color 420ms var(--ease);
  cursor: pointer;
  border-left: 1px solid rgba(255, 255, 255, 0.045);
  border-right: 1px solid rgba(0, 0, 0, 0.34);
  filter:
    grayscale(calc(1 - var(--heat)))
    brightness(calc(0.52 + var(--heat) * 0.5))
    contrast(calc(1.18 - var(--heat) * 0.12))
    saturate(calc(0.72 + var(--heat) * 0.48));
  box-shadow:
    0 var(--shadow-y) var(--shadow-blur) rgba(0, 0, 0, 0.18),
    0 0 calc(var(--glow) * 18px) color-mix(in srgb, var(--project) 18%, transparent);
}

.thumb.is-hovered {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 calc(var(--shadow-y) + 6px) calc(var(--shadow-blur) + 12px) rgba(0, 0, 0, 0.28),
    0 0 calc(12px + var(--glow) * 28px) color-mix(in srgb, var(--project) 42%, transparent),
    0 0 calc(var(--hover) * 22px) rgba(255, 255, 255, 0.12);
  z-index: 520 !important;
}

.thumb.is-active {
  border-color: rgba(255, 255, 255, 0.075);
}

.thumb.is-center {
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow:
    0 var(--shadow-y) var(--shadow-blur) rgba(0, 0, 0, 0.2),
    0 0 calc(var(--glow) * 18px) color-mix(in srgb, var(--project) 18%, transparent);
}

.thumb-visual,
.project-media,
.rail-thumb,
.burst-media {
  --image-x: 50%;
  background-image:
    linear-gradient(135deg, color-mix(in srgb, var(--visual-a) 34%, transparent), transparent 58%),
    radial-gradient(circle at 74% 22%, rgba(255, 255, 255, 0.52), transparent 13%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.42)),
    var(--image, linear-gradient(180deg, var(--visual-b), var(--visual-c)));
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, var(--image-x) center;
}

.thumb-visual {
  position: absolute;
  inset: 0;
  transform: scale(calc(1.18 - var(--heat) * 0.1 + var(--hover) * 0.12)) translateX(var(--pan, 0px));
  transition: transform 380ms var(--ease);
}

.thumb-poster {
  position: absolute;
  z-index: 2;
  right: 3px;
  bottom: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  max-width: calc(100% - 5px);
  pointer-events: none;
  text-align: right;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  font-size: 9px;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #ffffff;
  mix-blend-mode: normal;
  transform: scaleX(calc(0.82 + var(--hover) * 0.06));
  transform-origin: right bottom;
  transition: transform 380ms var(--ease);
}

.thumb-poster-line {
  display: block;
  max-width: 72px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thumb-title {
  display: none;
}

.home-meta,
.home-social {
  position: absolute;
  z-index: 12;
  bottom: 48px;
  font-size: 10px;
  line-height: 11px;
}

.home-meta {
  text-transform: uppercase;
}

.home-social {
  text-transform: none;
  letter-spacing: 0.02em;
}

.home-meta {
  left: 50px;
  color: var(--muted);
}

.home-meta p {
  margin: 0;
}

.home-social {
  right: 50px;
  display: grid;
  gap: 4px;
  justify-items: end;
  max-width: min(380px, calc(100vw - 120px));
}

.home-social a {
  position: relative;
  text-transform: none;
  text-align: right;
  word-break: break-all;
}

.title-burst {
  position: absolute;
  inset: 0;
  z-index: 32;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  color: var(--project);
  background: var(--project-bg);
  transition: opacity 100ms linear;
}

.site.is-bursting .title-burst {
  opacity: 1;
}

.burst-title {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100vw - 76px));
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(104px, 19vw, 270px);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: 0;
  text-transform: uppercase;
}

.burst-media {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: min(720px, calc(100vw - 430px));
  height: 390px;
  opacity: 0;
  overflow: hidden;
  transform: translate(-50%, -46%) scale(0.92);
  filter: brightness(0.88) saturate(0.86);
}

.burst-media::before {
  content: attr(data-label);
  position: absolute;
  left: 36px;
  top: 28px;
  max-width: 390px;
  color: rgba(255, 255, 255, 0.86);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 86px;
  line-height: 0.8;
  text-transform: uppercase;
}

.burst-media::after {
  content: attr(data-note);
  position: absolute;
  left: 38px;
  bottom: 34px;
  width: 240px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 13px;
  text-transform: uppercase;
}

.site.is-bursting .burst-media {
  animation: burstMediaIn 560ms var(--ease) 40ms forwards;
}

.burst-line {
  display: block;
  height: 0.74em;
  overflow: hidden;
  white-space: nowrap;
}

.burst-line span {
  display: inline-block;
  transform: translateY(112%) scaleY(0.82);
  transform-origin: 50% 100%;
}

.site.is-bursting .burst-line span {
  animation: burstIn 560ms var(--ease) forwards;
  animation-delay: calc(40ms + var(--delay));
}

@keyframes burstIn {
  0% {
    transform: translateY(112%) scaleY(0.82);
  }

  64% {
    transform: translateY(-8%) scaleY(1.05);
  }

  100% {
    transform: translateY(0) scaleY(1);
  }
}

@keyframes burstMediaIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -42%) scale(0.92);
  }

  58% {
    opacity: 1;
    transform: translate(-50%, -47%) scale(1.025);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -47%) scale(1);
  }
}

.project-view {
  z-index: 7;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  color: var(--project);
  transition: opacity 460ms linear, visibility 0s linear 460ms;
}

.project-view::before,
.project-view::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 26.5%;
  width: 12.8vw;
  height: 53.5%;
  min-width: 128px;
  opacity: 0;
  pointer-events: none;
  background-image:
    linear-gradient(180deg, color-mix(in srgb, var(--project-bg) 28%, transparent), rgba(0, 0, 0, 0.28)),
    var(--image);
  background-size: cover;
  filter: grayscale(0.88) brightness(0.8) contrast(0.95);
  transition: opacity 1200ms var(--ease), transform 1500ms var(--ease);
}

.project-view::before {
  left: 0;
  background-position: 18% center;
  transform: translateX(-24px);
}

.project-view::after {
  right: 0;
  background-position: 82% center;
  transform: translateX(24px);
}

.site.is-project .project-view {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity 460ms linear;
}

.site.is-project .project-view::before,
.site.is-project .project-view::after {
  opacity: 0.32;
  transform: translateX(0);
  transition-delay: 260ms;
}

.site.is-returning .project-view {
  opacity: 0;
  transition-duration: 150ms;
}

.project-copy {
  position: absolute;
  z-index: 4;
  top: 17%;
  left: 38px;
  width: min(1180px, calc(100% - 330px));
  pointer-events: none;
}

.project-copy p {
  margin: 0 0 20px;
  font-size: 11px;
  line-height: 11px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 900ms var(--ease), transform 1100ms var(--ease);
}

.site.is-project .project-copy p {
  opacity: 0.72;
  transform: translateY(0);
  transition-delay: 520ms;
}

.project-title {
  width: 138%;
  max-width: none;
  color: currentColor;
  font-size: clamp(130px, 16.5vw, 235px);
  line-height: 0.72;
  transform: scaleX(0.74);
  transform-origin: left top;
  mix-blend-mode: multiply;
}

.title-line {
  display: block;
  height: 0.74em;
  overflow: hidden;
  white-space: nowrap;
  transform: translateX(var(--line-x, 0vw));
}

.title-line span {
  display: inline-block;
  transform: translateY(124%) scaleY(0.7) scaleX(1.18);
  transform-origin: left 100%;
  filter: blur(2px);
  will-change: transform;
}

.site.is-project .title-line span {
  animation: projectTitleIn 1500ms var(--ease) both;
  animation-delay: calc(150ms + var(--delay));
}

@keyframes projectTitleIn {
  0% {
    filter: blur(2px);
    transform: translateY(124%) scaleY(0.7) scaleX(1.18);
  }

  62% {
    filter: blur(0);
    transform: translateY(-5%) scaleY(1.08) scaleX(0.96);
  }

  100% {
    filter: blur(0);
    transform: translateY(0) scaleY(1) scaleX(1);
  }
}

.project-media-shell {
  position: absolute;
  z-index: 6;
  --video-progress: 0;
  left: 50%;
  top: 50%;
  width: min(760px, calc(100vw - 455px));
  height: 400px;
  opacity: 0;
  transform: translate(-46%, -44%) scaleX(0.88);
  transform-origin: center center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  transition: opacity 1100ms var(--ease), transform 1500ms var(--ease);
}

.project-view.is-image-sequence .project-media-shell {
  cursor: pointer;
}

.image-nav {
  position: absolute;
  z-index: 7;
  inset: 0;
  display: none;
  pointer-events: none;
}

.project-view.is-image-sequence .image-nav {
  display: flex;
}

.image-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: color-mix(in srgb, var(--project-bg) 74%, rgba(255, 255, 255, 0.22));
  color: currentColor;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.image-nav-btn:hover {
  background: color-mix(in srgb, var(--project-bg) 56%, rgba(255, 255, 255, 0.3));
}

.project-view.has-video-project .image-nav {
  display: none !important;
}

.image-nav-prev {
  left: 12px;
}

.image-nav-next {
  right: 12px;
}

.project-media-shell::after {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(
      105deg,
      transparent 0%,
      rgba(255, 255, 255, 0.13) 44%,
      rgba(255, 255, 255, 0.04) 48%,
      transparent 62%
    );
  mix-blend-mode: screen;
  transform: translateX(-56%);
  transition: opacity 520ms var(--ease);
}

.project-media-shell.is-playing::after {
  opacity: 0.55;
  animation: videoSweep 4200ms linear infinite;
}

.site.is-project .project-media-shell {
  opacity: 1;
  transform: translate(-46%, -44%) scaleX(1);
  transition-delay: 110ms;
}

.project-media {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  filter: grayscale(0.48) brightness(0.72) contrast(1.06) saturate(0.72);
  transition:
    opacity 1100ms var(--ease),
    transform 1500ms var(--ease),
    filter 1200ms var(--ease),
    background-position 680ms linear;
  transition-delay: 110ms;
  will-change: transform, opacity;
}

.project-media.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: grayscale(0.26) brightness(0.9) contrast(1.08) saturate(0.84);
}

.project-media.is-visible.is-playing {
  transform: scale(1.025);
  filter: grayscale(0.16) brightness(0.96) contrast(1.12) saturate(0.9);
}

.project-view.is-true-color .project-media {
  background-image: var(--image) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  filter: none !important;
}

.project-view.is-true-color .project-media-shell {
  top: 53%;
  width: min(980px, calc(100vw - 280px));
  aspect-ratio: 1024 / 672;
  height: auto;
  max-height: calc(100vh - 110px);
  background: transparent;
}

.project-view.is-true-color .project-media-shell::after {
  display: none;
}

.project-view.is-true-color .rail-thumb {
  background-image: var(--image) !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.fullscreen-viewer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.fullscreen-viewer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.fullscreen-image {
  width: min(96vw, 1800px);
  height: min(96vh, 1100px);
  object-fit: contain;
  image-rendering: auto;
}

.fullscreen-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.local-video,
.video-frame {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  pointer-events: none;
  background: #000;
  transform: scale(1.01);
  transition: opacity 620ms var(--ease), transform 900ms var(--ease);
}

.project-media-shell.has-local-video .local-video,
.project-media-shell.has-youtube.is-playing .video-frame {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.local-video {
  object-fit: cover;
}

@keyframes videoSweep {
  0% {
    transform: translateX(-58%) skewX(-10deg);
  }

  100% {
    transform: translateX(58%) skewX(-10deg);
  }
}

.project-media::before {
  content: attr(data-label);
  position: absolute;
  left: 34px;
  top: 28px;
  max-width: 390px;
  color: rgba(255, 255, 255, 0.86);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 86px;
  line-height: 0.8;
  text-transform: uppercase;
  mix-blend-mode: screen;
  display: none;
}

.project-media::after {
  content: attr(data-note);
  position: absolute;
  left: 38px;
  bottom: 34px;
  width: 210px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  line-height: 13px;
  text-transform: uppercase;
  display: none;
}

.project-view:not(.has-video-project) .video-toggle,
.project-view:not(.has-video-project) .video-time,
.project-view:not(.has-video-project) .video-timeline,
.project-view:not(.has-video-project) .chapter-panel {
  display: none;
}

.video-toggle {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  min-width: 102px;
  height: 52px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 38px;
  line-height: 0.8;
  text-transform: uppercase;
  letter-spacing: 0;
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0.7);
  mix-blend-mode: screen;
  transition: opacity 460ms var(--ease), transform 560ms var(--ease);
}

.site.is-project .video-toggle {
  opacity: 0.66;
  pointer-events: auto;
  transition-delay: 760ms;
}

.project-media-shell:hover .video-toggle,
.project-media-shell.is-playing .video-toggle {
  opacity: 1;
  transform: translate(-50%, -50%) scaleX(0.72);
  transition-delay: 0ms;
}

.project-media-shell.is-playing .video-toggle {
  opacity: 0.28;
}

.project-media-shell.has-local-video .video-toggle,
.project-media-shell.has-youtube.is-playing .video-toggle {
  opacity: 0;
  pointer-events: none;
}

.project-media-shell.has-local-video .video-time {
  opacity: 0;
}

.video-time {
  position: absolute;
  z-index: 5;
  left: 22px;
  right: 22px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  line-height: 10px;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 680ms var(--ease), transform 760ms var(--ease);
}

.site.is-project .video-time {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 820ms;
}

.video-timeline {
  --video-progress: 0;
  --video-progress-pct: 0%;
  position: absolute;
  z-index: 16;
  left: 50%;
  top: calc(50% + 226px);
  width: min(760px, calc(100vw - 455px));
  color: currentColor;
  opacity: 0;
  pointer-events: none;
  transform: translate(-46%, 18px);
  transition: opacity 780ms var(--ease), transform 980ms var(--ease);
}

.site.is-project .video-timeline {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-46%, 0);
  transition-delay: 800ms;
}

.video-timeline-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 11px;
  font-size: 10px;
  line-height: 10px;
  text-transform: uppercase;
  opacity: 0.72;
}

.video-track {
  position: relative;
  height: 38px;
  cursor: ew-resize;
  outline: none;
  touch-action: none;
}

.video-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: currentColor;
  opacity: 0.28;
}

.video-track::after {
  content: "";
  position: absolute;
  left: var(--video-progress-pct);
  top: 50%;
  width: 8px;
  height: 24px;
  border: 1px solid currentColor;
  background: var(--project-bg);
  transform: translate(-50%, -50%);
}

.video-progress {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
}

.video-chapters {
  position: absolute;
  inset: 0;
}

.chapter-marker {
  position: absolute;
  top: 4px;
  bottom: 4px;
  min-width: 18px;
  border-left: 1px solid currentColor;
  opacity: 0.34;
  transition: opacity 320ms var(--ease), background 320ms var(--ease);
}

.chapter-marker::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 50%;
  height: 1px;
  background: currentColor;
  opacity: 0.38;
}

.chapter-marker.is-active {
  opacity: 1;
  background: color-mix(in srgb, currentColor 10%, transparent);
}

.chapter-panel {
  position: absolute;
  z-index: 15;
  right: 50px;
  top: 51%;
  width: 230px;
  color: currentColor;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-26%) translateX(16px);
  transition: opacity 760ms var(--ease), transform 960ms var(--ease);
}

.site.is-project .chapter-panel {
  opacity: 1;
  transform: translateY(-26%) translateX(0);
  transition-delay: 900ms;
}

.chapter-panel p,
.chapter-panel h2 {
  margin: 0;
  text-transform: uppercase;
}

.chapter-panel > p:first-child {
  margin-bottom: 18px;
  font-size: 10px;
  line-height: 10px;
  opacity: 0.55;
}

.chapter-panel h2 {
  width: 136%;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 58px;
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0;
  transform: scaleX(0.7);
  transform-origin: left top;
}

.chapter-panel #chapter-summary {
  margin-top: 18px;
  max-width: 210px;
  font-size: 10px;
  line-height: 13px;
  opacity: 0.72;
}

.chapter-panel ul {
  display: grid;
  gap: 7px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  font-size: 9px;
  line-height: 10px;
  text-transform: uppercase;
  opacity: 0.62;
}

.chapter-panel li {
  position: relative;
  padding-left: 18px;
}

.chapter-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 1px;
  background: currentColor;
}

.project-rail {
  position: absolute;
  z-index: 12;
  top: 19.5%;
  right: 48px;
  display: none;
  gap: 19px;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 900ms var(--ease), transform 1100ms var(--ease);
}

.site.is-project .project-view.is-image-sequence .project-rail {
  display: grid;
  opacity: 1;
  transform: translateX(0);
}

.rail-thumb {
  width: 76px;
  height: 44px;
  opacity: 0.48;
  border: 1px solid transparent;
  transition: opacity 420ms var(--ease), transform 420ms var(--ease), border-color 420ms var(--ease);
}

.rail-thumb.is-active {
  opacity: 1;
  border-color: currentColor;
  transform: translateX(-8px) scale(1.08);
}

.project-meta {
  position: absolute;
  z-index: 10;
  left: 50px;
  right: 160px;
  bottom: 47px;
  display: grid;
  grid-template-columns: minmax(300px, 460px) auto minmax(180px, 320px);
  gap: 48px;
  align-items: end;
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 900ms var(--ease), transform 1100ms var(--ease);
}

.site.is-project .project-meta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 720ms;
}

.project-meta dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin: 0;
}

.visit-site {
  align-self: end;
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;
  position: relative;
}

.project-meta dt,
.project-meta dd,
.project-meta p {
  margin: 0;
}

.project-meta dt {
  opacity: 0.5;
}

.project-meta p {
  max-width: 380px;
  opacity: 0.72;
}

.project-close {
  position: absolute;
  z-index: 30;
  top: 66px;
  left: 50%;
  transform: translateX(-50%);
  color: currentColor;
  display: grid;
  justify-items: center;
  gap: 13px;
}

.project-close::before {
  content: "x";
  font-size: 11px;
  line-height: 11px;
  text-transform: none;
  opacity: 0.8;
}

.about-view {
  --about-accent: #9aab96;
  --about-accent-dim: color-mix(in srgb, var(--about-accent) 55%, transparent);
  --about-surface: rgba(255, 255, 255, 0.035);
  --about-surface-hover: rgba(255, 255, 255, 0.055);
  --about-line: rgba(200, 210, 196, 0.12);
  --about-text: #eef1eb;
  --about-text-muted: rgba(200, 210, 196, 0.88);
  --about-text-soft: rgba(200, 210, 196, 0.52);
  --about-fg: #eef1eb;
  --about-fg-soft: rgba(200, 210, 196, 0.88);
  --about-fg-muted: rgba(200, 210, 196, 0.72);
  --about-fg-faint: rgba(200, 210, 196, 0.38);
  z-index: 35;
  display: block;
  padding: 0;
  color: var(--about-text-muted);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 520ms var(--ease), transform 650ms var(--ease);
  overflow: hidden;
  background-color: #0a0b0b;
  background-image:
    radial-gradient(ellipse 120% 80% at 0% 0%, rgba(154, 171, 150, 0.09), transparent 55%),
    radial-gradient(ellipse 90% 70% at 100% 12%, rgba(120, 140, 160, 0.06), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 38%);
}

.site.is-about .about-view {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.about-inner {
  position: relative;
  box-sizing: border-box;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(56px, 8vh, 88px) clamp(24px, 4vw, 56px) 48px;
  max-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.about-home {
  position: absolute;
  z-index: 4;
  top: clamp(14px, 2.2vh, 22px);
  left: clamp(12px, 2.5vw, 28px);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--about-line);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(200, 210, 196, 0.85);
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.about-home:hover {
  color: #f2f6f0;
  border-color: color-mix(in srgb, var(--about-accent) 45%, var(--about-line));
  background: rgba(255, 255, 255, 0.06);
}

.about-home:focus-visible {
  outline: 2px solid var(--about-accent);
  outline-offset: 2px;
}

.about-home-icon {
  display: block;
}

.about-frame {
  pointer-events: none;
  position: absolute;
  inset: clamp(20px, 3vh, 36px) clamp(16px, 3vw, 40px) 24px;
  border: 1px solid var(--about-line);
  border-radius: 1px;
  opacity: 0.85;
}

.about-frame::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 48px;
  width: 1px;
  height: 20px;
  background: var(--about-accent);
  opacity: 0.9;
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 260px);
  gap: clamp(28px, 4vw, 48px);
  align-items: end;
  padding-bottom: clamp(28px, 4vh, 40px);
  margin-bottom: clamp(24px, 3vh, 36px);
  border-bottom: 1px solid var(--about-line);
}

.about-hero-main {
  min-width: 0;
}

.about-kicker {
  margin: 0 0 12px;
  font-family: ui-monospace, "Cascadia Mono", "SF Mono", Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--about-accent);
}

.about-name {
  margin: 0;
  font-size: clamp(52px, 11vw, 118px);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--about-text);
}

.about-name-line {
  display: inline-block;
}

.about-role {
  margin: 16px 0 0;
  max-width: 36em;
  font-family: ui-monospace, "Cascadia Mono", "SF Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--about-text-soft);
  line-height: 1.5;
}

.about-role-cn {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--about-text-muted);
  line-height: 1.45;
}

.about-contact {
  margin: 0;
  padding: 0 0 4px 20px;
  border-left: 1px solid var(--about-line);
  display: grid;
  gap: 16px;
  font-family: ui-monospace, "Cascadia Mono", "SF Mono", Menlo, Consolas, monospace;
}

.about-contact div {
  display: grid;
  gap: 4px;
}

.about-contact dt {
  margin: 0;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--about-fg-faint);
}

.about-contact dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--about-fg-soft);
}

.about-contact a {
  color: #f2f6f0;
  text-decoration: none;
  border-bottom: 1px solid var(--about-accent-dim);
  padding-bottom: 1px;
  transition: border-color 180ms ease, color 180ms ease;
}

.about-contact a:hover {
  color: #fff;
  border-bottom-color: var(--about-accent);
}

.about-lede {
  margin: 0 0 clamp(28px, 4vh, 40px);
  padding: 0 0 0 clamp(18px, 2.5vw, 28px);
  border-left: 3px solid var(--about-accent);
  max-width: min(52rem, 100%);
}

.about-lede p {
  margin: 0;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--about-fg-soft);
  text-transform: none;
}

.about-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px 16px;
  align-items: stretch;
}

.about-card {
  position: relative;
  box-sizing: border-box;
  padding: 22px 22px 20px;
  background: var(--about-surface);
  border: 1px solid var(--about-line);
  border-radius: 2px;
  transition: border-color 220ms ease, background 220ms ease;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--about-accent-dim), transparent 72%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.about-card:hover {
  border-color: color-mix(in srgb, var(--about-accent) 38%, var(--about-line));
  background: var(--about-surface-hover);
}

.about-card:hover::before {
  opacity: 1;
}

.about-card-title {
  margin: 0 0 14px;
  font-family: ui-monospace, "Cascadia Mono", "SF Mono", Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--about-accent);
}

.about-card-lead {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--about-fg);
}

.about-card-text {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.62;
  letter-spacing: 0.03em;
  color: var(--about-fg-muted);
}

.about-card--identity {
  grid-column: span 4;
}

.about-card--education {
  grid-column: span 4;
}

.about-card--honors {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.about-honors-scroll {
  flex: 1;
  min-height: 0;
  max-height: clamp(72px, 11vh, 104px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 6px;
  margin-right: -4px;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--about-accent) 55%, transparent) transparent;
}

.about-honors-scroll:focus-visible {
  outline: 2px solid var(--about-accent);
  outline-offset: 2px;
}

.about-honors-scroll::-webkit-scrollbar {
  width: 5px;
}

.about-honors-scroll::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--about-accent) 60%, transparent);
  border-radius: 99px;
}

.about-honors-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.about-card--tools {
  grid-column: span 5;
}

.about-card--research {
  grid-column: span 7;
}

.about-dl {
  margin: 0;
  display: grid;
  gap: 10px 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-dl div {
  display: grid;
  gap: 3px;
}

.about-dl dt {
  margin: 0;
  font-family: ui-monospace, "Cascadia Mono", "SF Mono", Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--about-fg-faint);
}

.about-dl dd {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--about-fg-soft);
}

.about-metrics {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.about-metrics li {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--about-line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
}

.about-metrics-value {
  font-family: ui-monospace, "Cascadia Mono", "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #f0f4ec;
}

.about-metrics-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200, 210, 196, 0.45);
}

.about-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: rgba(200, 210, 196, 0.82);
}

.about-list--ruled li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(200, 210, 196, 0.08);
}

.about-list--ruled li:first-child {
  padding-top: 0;
}

.about-list--ruled li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-tags {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-tags li {
  padding: 6px 12px;
  font-family: ui-monospace, "Cascadia Mono", "SF Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(230, 235, 227, 0.88);
  border: 1px solid var(--about-line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
}

@media (min-width: 1500px) {
  .project-title {
    font-size: 232px;
  }

  .project-media-shell {
    width: 850px;
    height: 460px;
  }
}

@media (max-width: 980px) {
  .chrome {
    inset: 24px 24px auto;
    grid-template-columns: 95px 1fr 80px;
  }

  .brand {
    font-size: 34px;
  }

  .thumb {
    width: 58px;
    height: 188px;
    left: -29px;
    top: -94px;
  }

  .thumb-poster {
    font-size: 8px;
    right: 2px;
    bottom: 3px;
  }

  .thumb-poster-line {
    max-width: 56px;
  }

  .project-copy {
    top: 105px;
    left: 24px;
    width: calc(100% - 48px);
  }

  .project-title {
    font-size: 112px;
  }

  .project-media-shell {
    top: 54%;
    width: calc(100vw - 48px);
    height: 320px;
  }

  .project-view.is-true-color .project-media-shell {
    top: 53%;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 96px);
  }

  .video-timeline {
    top: calc(54% + 188px);
    width: calc(100vw - 48px);
  }

  .chapter-panel {
    right: 24px;
    top: calc(54% + 228px);
    width: 210px;
    transform: translateY(0) translateX(16px);
  }

  .site.is-project .chapter-panel {
    transform: translateY(0) translateX(0);
  }

  .project-view::before,
  .project-view::after,
  .home-preview-side {
    display: none;
  }

  .home-preview-copy {
    top: 120px;
    left: 24px;
    width: calc(100vw - 48px);
    overflow: hidden;
  }

  .home-preview-title {
    width: 150%;
    font-size: 112px;
    transform: scaleX(0.72);
  }

  .home-preview-media {
    top: 42%;
    left: 24px;
    right: 24px;
    height: 320px;
  }

  .home-preview-meta {
    left: 24px;
    right: 24px;
    bottom: 30px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-preview-meta dl {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 22px;
  }

  .burst-media {
    top: 54%;
    width: calc(100vw - 48px);
    height: 320px;
  }

  .project-rail {
    right: 24px;
    top: auto;
    bottom: 132px;
    grid-auto-flow: column;
    gap: 10px;
  }

  .rail-thumb {
    width: 58px;
    height: 36px;
  }

  .project-meta {
    left: 24px;
    right: 24px;
    bottom: 30px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-meta {
    left: 24px;
    bottom: 28px;
  }

  .home-social {
    right: 24px;
    bottom: 28px;
  }

  .explore {
    bottom: 86px;
  }

  .about-inner {
    padding: 72px 20px 36px;
    max-height: 100vh;
  }

  .about-frame {
    inset: 16px 14px 16px;
  }

  .about-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
    padding-bottom: 28px;
  }

  .about-contact {
    padding: 18px 0 0;
    border-left: none;
    border-top: 1px solid var(--about-line);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 14px;
  }

  .about-name {
    font-size: clamp(48px, 14vw, 76px);
  }

  .about-bento {
    grid-template-columns: 1fr;
  }

  .about-card--identity,
  .about-card--education,
  .about-card--honors,
  .about-card--tools,
  .about-card--research {
    grid-column: span 1;
  }

  .about-dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .chrome {
    grid-template-columns: 80px 1fr 70px;
  }

  .progress {
    transform: scale(0.82);
  }

  .project-title {
    font-size: 72px;
  }

  .home-preview-title {
    width: 190%;
    font-size: 72px;
    transform: scaleX(0.62);
  }

  .home-preview-media {
    top: 41%;
    height: 330px;
  }

  #home-preview-description {
    max-width: 250px;
  }

  .project-media-shell {
    height: 250px;
  }

  .project-view.is-true-color .project-media-shell {
    width: calc(100vw - 14px);
    max-height: calc(100vh - 84px);
  }

  .video-timeline {
    top: calc(54% + 150px);
  }

  .chapter-panel {
    display: none;
  }

  .burst-media {
    height: 250px;
  }

  .project-media::before {
    font-size: 52px;
  }

  .project-meta {
    bottom: 54px;
    gap: 14px;
  }

  .project-meta dl {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
  }

  .visit-site {
    display: none;
  }

  .home-social {
    right: 24px;
    bottom: 28px;
    font-size: 9px;
    line-height: 12px;
    max-width: calc(100vw - 48px);
  }

  .home-social a {
    text-align: right;
  }
}
