:root {
  --bg: #000;
  --fg: #f2f2f0;
  --muted: #8a8a86;
  --muted-2: #5d5d59;
  --line: rgba(255, 255, 255, 0.18);
  --line-soft: rgba(255, 255, 255, 0.085);
  --page: clamp(18px, 2.2vw, 38px);
  --header-h: 68px;
  --font: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}
* {
  box-sizing: border-box;
}
html {
  background: var(--bg);
  color-scheme: dark;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5000;
  opacity: 0.025;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(255, 255, 255, 0.45) 4px
  );
  mix-blend-mode: screen;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
}
img,
video {
  display: block;
  max-width: 100%;
}
figure {
  margin: 0;
}
::selection {
  background: #efefed;
  color: #000;
}

/* HEADER */
.site-header {
  position: fixed;
  z-index: 1200;
  left: 0;
  right: 0;
  top: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 0 var(--page);
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(10px);
  transition: background 0.2s ease;
}
.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.96);
}
.site-mark {
  font-family: var(--font);
  font-size: clamp(24px, 2.15vw, 35px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.048em;
  white-space: nowrap;
}
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}
.site-nav a,
.lang-toggle {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #a0a09c;
  background: none;
  border: 0;
  padding: 9px 0;
  cursor: pointer;
  transition: color 0.18s ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"],
.lang-toggle:hover {
  color: #fff;
}
.lang-toggle {
  display: flex;
  gap: 7px;
  align-items: center;
}
.lang-toggle span {
  opacity: 0.42;
}
.lang-toggle span.active {
  opacity: 1;
  color: #fff;
}

/* WORK HOVER INDEX */
.work-index-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-h);
  z-index: 1100;
  background: rgba(0, 0, 0, 0.985);
  border-bottom: 1px solid var(--line);
  padding: 22px var(--page) 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-7px);
  transition:
    opacity 0.16s ease,
    transform 0.2s var(--ease),
    visibility 0.16s;
  pointer-events: none;
}
.work-index-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}
.work-index-panel__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 11px;
  color: #7a7a76;
}
.work-index-panel__top strong {
  font-weight: 400;
  color: #c6c6c1;
}
.work-index-panel__top strong::before {
  content: "[ ";
  color: #73736f;
}
.work-index-panel__top strong::after {
  content: " ]";
  color: #73736f;
}
.work-index-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(36px, 7vw, 120px);
}
.work-index-list li {
  border-bottom: 1px solid var(--line-soft);
}
.work-index-list a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 52px;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  color: #b7b7b2;
  transition:
    color 0.15s ease,
    padding-left 0.2s var(--ease);
}
.work-index-list a:hover {
  color: #fff;
  padding-left: 5px;
}
.work-index-list__num,
.work-index-list__year {
  font-size: 10px;
  color: #676763;
}
.work-index-list__year {
  text-align: right;
}
.work-index-list__title {
  font-size: 14px;
  letter-spacing: -0.01em;
}

/* HOME */
.home-page {
  padding-top: var(--header-h);
  overflow: hidden;
  position: relative;
}
.work-stream {
  padding-bottom: clamp(210px, 18vw, 300px);
}
.home-work {
  --w: 88vw;
  width: min(var(--w), 1540px);
  margin: 0 auto clamp(128px, 12vw, 220px);
  position: relative;
}
.home-work--first {
  width: 100%;
  max-width: none;
  margin-top: 0;
  margin-bottom: clamp(150px, 13vw, 240px);
}
.home-work--wide {
  --w: 92vw;
}
.home-work--left {
  --w: 76vw;
  margin-left: var(--page);
  margin-right: auto;
}
.home-work--right {
  --w: 76vw;
  margin-left: auto;
  margin-right: var(--page);
}
.home-work__link {
  display: block;
}
.home-work__media {
  background: #050505;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.home-work__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition:
    transform 0.65s var(--ease),
    filter 0.35s ease;
}
.home-work__media--contain {
  padding: clamp(20px, 4vw, 62px);
}
.home-work__media--contain img {
  max-height: 78vh;
  margin: 0 auto;
  width: auto;
  max-width: 100%;
}
.home-work__link:hover .home-work__media img {
  transform: scale(1.006);
  filter: contrast(1.035);
}
.home-work__caption {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) minmax(190px, 0.34fr);
  gap: 18px;
  padding: 18px 0 0;
  border-top: 0;
  align-items: start;
}
.home-work--first .home-work__caption {
  padding-left: var(--page);
  padding-right: var(--page);
}
.home-work__num {
  font-size: 11px;
  color: #6b6b67;
  padding-top: 8px;
}
.home-work__title {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(38px, 4.8vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.048em;
  margin: 0;
  color: #f2f2ef;
}
.home-work__meta {
  font-size: 12px;
  line-height: 1.55;
  color: #8a8a86;
  text-align: right;
  padding-top: 6px;
}
.ascii-tag {
  display: block;
  margin-top: 9px;
  font-size: 10px;
  line-height: 1;
  color: #676763;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
.home-work:nth-child(2n) .ascii-tag {
  opacity: 0.78;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.home-work--first.reveal {
  opacity: 1;
  transform: none;
}
.fixed-traffic-desk {
  position: absolute;
  z-index: 30;
  right: var(--page);
  bottom: 108px;
  width: clamp(130px, 13vw, 192px);
  pointer-events: none;
  user-select: none;
}
.fixed-traffic-desk img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.02);
  opacity: 0.97;
}

/* PROJECTS */
.project-page {
  padding-top: var(--header-h);
}
.project-top {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(240px, 0.42fr);
  gap: clamp(28px, 5vw, 92px);
  padding: clamp(48px, 6vw, 90px) var(--page) clamp(46px, 5vw, 74px);
  border-bottom: 1px solid var(--line-soft);
}
.project-breadcrumb {
  font-size: 10px;
  color: #6f6f6b;
  margin-bottom: 22px;
}
.project-breadcrumb a:hover {
  color: #fff;
}
.project-title {
  font-family: var(--font);
  font-size: clamp(46px, 5.8vw, 90px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.052em;
  margin: 0 0 18px;
  max-width: 1100px;
}
.project-subtitle {
  font-size: 12px;
  color: #8b8b87;
}
.project-deck {
  align-self: end;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #b6b6b1;
  max-width: 430px;
}
.project-hero {
  margin: 0 var(--page);
  padding: clamp(24px, 3vw, 48px) 0 clamp(56px, 7vw, 100px);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: center;
  background: #000;
}
.project-hero img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}
.project-hero.poster img {
  width: auto;
  max-width: min(820px, 88vw);
  max-height: 84vh;
}
.project-overview {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1.2fr);
  gap: clamp(40px, 7vw, 130px);
  padding: clamp(72px, 8vw, 120px) var(--page);
  border-bottom: 1px solid var(--line-soft);
}
.project-aside {
  align-self: start;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.section-kicker {
  font-size: 11px;
  font-weight: 400;
  color: #767672;
  margin: 0 0 24px;
  letter-spacing: 0.02em;
  text-transform: none;
}
.section-kicker::before {
  content: "// ";
  color: #9b9b96;
}
.project-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-soft);
}
.project-facts li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 11px;
  line-height: 1.45;
  color: #b9b9b4;
}
.project-facts li span:first-child {
  color: #686864;
}
.project-copy {
  max-width: 880px;
}
.project-copy p {
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.62;
  letter-spacing: -0.012em;
  color: #d5d5d0;
  margin: 0 0 1.35em;
}
.project-section {
  padding: clamp(72px, 8vw, 120px) var(--page);
  border-bottom: 1px solid var(--line-soft);
}
.video-wrap {
  position: relative;
  width: min(1180px, 100%);
  aspect-ratio: 16/9;
  background: #050505;
  border: 1px solid var(--line-soft);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.external-video-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  color: #8a8a86;
  border-bottom: 1px solid #343432;
  padding-bottom: 3px;
}
.external-video-link:hover {
  color: #fff;
  border-color: #888;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 1.5vw, 24px);
  align-items: start;
}
.gallery figure {
  grid-column: span 7;
  margin-bottom: clamp(28px, 4vw, 70px);
  background: #030303;
  overflow: hidden;
}
.gallery figure:nth-child(2n) {
  grid-column: 6/13;
}
.gallery figure:nth-child(3n) {
  grid-column: 2/11;
}
.gallery figure:nth-child(5n) {
  grid-column: 1/13;
}
.gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.boundary-gallery figure:nth-child(1) {
  grid-column: 1/13;
}
.boundary-gallery figure:nth-child(2) {
  grid-column: 2/12;
}
.boundary-gallery figure:nth-child(3) {
  grid-column: 1/10;
}
.boundary-gallery figure:nth-child(4) {
  grid-column: 4/13;
}
.boundary-gallery figure:nth-child(5) {
  grid-column: 1/13;
}
.boundary-gallery figure:nth-child(6) {
  grid-column: 2/11;
}
.project-secondary {
  padding: clamp(72px, 8vw, 120px) var(--page);
  border-bottom: 1px solid var(--line-soft);
}
.secondary-block {
  display: grid;
  grid-template-columns: minmax(230px, 0.44fr) minmax(0, 1.2fr);
  gap: clamp(44px, 8vw, 150px);
}
.secondary-block h2 {
  font-size: clamp(31px, 4vw, 66px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 400;
  margin: 0;
}
.secondary-copy {
  max-width: 900px;
}
.secondary-copy p {
  font-size: 17px;
  line-height: 1.62;
  color: #cfcfca;
  margin: 0 0 1.25em;
}
.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 28px;
}
.project-links a {
  font-size: 11px;
  color: #8b8b86;
  border-bottom: 1px solid #3b3b39;
  padding-bottom: 3px;
}
.project-links a:hover {
  color: #fff;
  border-color: #8c8c88;
}
.secondary-media {
  margin-top: 36px;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.secondary-media img {
  width: 100%;
  height: auto;
}
.credits-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1.2fr);
  gap: clamp(40px, 7vw, 130px);
}
.credits-copy {
  font-size: 12px;
  line-height: 1.7;
  color: #b9b9b4;
  white-space: normal;
  max-width: 800px;
}
.project-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 var(--page);
  padding: 28px 0 58px;
  gap: 24px;
  border-top: 0;
}
.project-nav a {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    opacity 0.18s ease,
    transform 0.25s var(--ease);
}
.project-nav a:hover {
  opacity: 0.72;
  transform: translateY(-2px);
}
.project-nav a:last-child {
  text-align: right;
  align-items: flex-end;
}
.project-nav__label {
  font-size: 10px;
  color: #696965;
}
.project-nav__title {
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

/* Recognition / labels */
.recognition-strip {
  padding: clamp(58px, 7vw, 96px) var(--page);
  border-bottom: 1px solid var(--line-soft);
}
.recognition-strip__head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
  margin-bottom: 28px;
}
.recognition-strip__head h2 {
  font-size: 11px;
  font-weight: 400;
  color: #747470;
  margin: 0;
}
.recognition-strip__head h2::before {
  content: "// ";
  color: #9b9b96;
}
.recognition-strip__head span {
  font-size: 10px;
  color: #5f5f5b;
}
.recognition-labels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.3vw, 18px);
}
.recognition-label {
  border: 1px solid var(--line-soft);
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #020202;
  position: relative;
}
.recognition-label::before {
  content: attr(data-order);
  position: absolute;
  left: 9px;
  top: 8px;
  font-size: 9px;
  color: #555551;
}
.recognition-label img {
  max-width: 100%;
  max-height: 145px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.recognition-feature {
  margin-top: 18px;
}
.recognition-feature img {
  width: 100%;
  height: auto;
  max-width: 360px;
}

/* BIO */
.bio-page {
  padding: calc(var(--header-h) + clamp(44px, 5vw, 72px)) var(--page) 74px;
}
.bio-lead {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1.1fr);
  gap: clamp(42px, 7vw, 120px);
  padding-bottom: clamp(78px, 8vw, 120px);
}
.bio-portrait {
  max-width: 340px;
  align-self: start;
  background: #050505;
  overflow: hidden;
}
.bio-portrait img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(0.88);
}
.bio-role {
  font-size: 11px;
  color: #777773;
  margin-bottom: 20px;
}
.bio-role::before {
  content: "[ ";
  color: #555551;
}
.bio-role::after {
  content: " ]";
  color: #555551;
}
.bio-name {
  font-size: clamp(40px, 4.6vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.048em;
  font-weight: 400;
  margin: 0 0 clamp(30px, 3.5vw, 48px);
}
.bio-name span {
  display: block;
  color: #777773;
  font-size: 0.32em;
  letter-spacing: -0.02em;
  margin-top: 12px;
}
.bio-statement {
  max-width: 850px;
}
.bio-statement p {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.64;
  letter-spacing: -0.008em;
  color: #d0d0cb;
  margin: 0 0 1.18em;
}
.bio-social {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 22px;
  margin-top: 30px;
}
.bio-social a,
.cv-link {
  font-size: 11px;
  color: #92928d;
  border-bottom: 1px solid #383836;
  padding-bottom: 3px;
}
.bio-social a:hover,
.cv-link:hover {
  color: #fff;
  border-color: #888;
}
.bio-sections {
  border-top: 1px solid var(--line);
}
.bio-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 100px);
  padding: 30px 0;
  border-bottom: 1px solid var(--line-soft);
}
.bio-section h2 {
  font-size: 11px;
  letter-spacing: 0.01em;
  color: #747470;
  font-weight: 400;
  margin: 3px 0 0;
  text-transform: none;
}
.bio-section h2::before {
  content: "// ";
  color: #9b9b96;
}
.bio-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 1040px;
}
.bio-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 6px 0;
  font-size: 13px;
  line-height: 1.45;
  color: #c9c9c4;
}
.bio-list .year {
  font-size: 11px;
  color: #6e6e69;
  padding-top: 2px;
}
.bio-list--no-year li {
  grid-template-columns: 1fr;
}
.bio-education p {
  font-size: 14px;
  line-height: 1.52;
  margin: 0 0 9px;
  color: #cecec9;
}

/* FOOTER */
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
  padding: 26px var(--page) 34px;
  border-top: 1px solid var(--line-soft);
  font-size: 10px;
  color: #70706c;
}
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-links a:hover {
  color: #fff;
}
.fade-in {
  animation: pageIn 0.35s ease both;
}
body.is-leaving {
  opacity: 0;
  transition: opacity 0.14s ease;
}
@keyframes pageIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* PROJECT BACKGROUND IMAGES — original BG assets stay out of galleries */
body.has-project-bg {
  background-color: #000;
  background-image: linear-gradient(rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.86)), var(--project-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
body.has-project-bg .project-page {
  background: transparent;
}
body.has-project-bg .project-hero {
  background: rgba(0, 0, 0, 0.38);
}
body.has-project-bg .gallery figure {
  background: rgba(0, 0, 0, 0.46);
}
body.has-project-bg .site-footer {
  background: rgba(0, 0, 0, 0.52);
}

/* HUM DOOM / SYNTHUX SELECTED WORK */
.synthux-selection-section {
  padding: clamp(54px, 6vw, 82px) var(--page);
  border-bottom: 1px solid var(--line-soft);
}
.synthux-selection-kicker {
  font-size: 11px;
  color: #777773;
  margin-bottom: 22px;
}
.synthux-selection {
  display: grid;
  grid-template-columns: clamp(100px, 11vw, 160px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 46px);
  align-items: center;
  width: min(680px, 100%);
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.synthux-selection img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.synthux-selection__copy {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.synthux-selection__copy strong {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.035em;
}
.synthux-selection__copy small {
  font-size: 11px;
  color: #858581;
}
.synthux-selection:hover .synthux-selection__copy small {
  color: #fff;
}

@media (max-width: 980px) {
  :root {
    --header-h: 62px;
    --page: 18px;
  }
  .site-mark {
    font-size: 26px;
  }
  .work-index-list {
    grid-template-columns: 1fr;
  }
  .home-work--left,
  .home-work--right {
    --w: 90vw;
    margin-left: auto;
    margin-right: auto;
  }
  .home-work__caption {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }
  .home-work__meta {
    grid-column: 2;
    text-align: left;
    padding-top: 0;
  }
  .project-top,
  .project-overview,
  .secondary-block,
  .credits-grid,
  .bio-lead,
  .bio-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .project-aside {
    position: static;
  }
  .project-deck {
    max-width: 700px;
  }
  .bio-portrait {
    max-width: 300px;
  }
  .recognition-labels {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 58px;
    --page: 14px;
  }
  body {
    font-size: 13px;
  }
  .site-header {
    padding: 0 var(--page);
  }
  .site-mark {
    font-size: 23px;
  }
  .site-nav {
    gap: 13px;
  }
  .site-nav a,
  .lang-toggle {
    font-size: 10px;
  }
  .work-index-panel {
    padding: 15px 14px 20px;
  }
  .work-index-list a {
    grid-template-columns: 34px minmax(0, 1fr) 40px;
    padding: 8px 0;
  }
  .work-index-list__title {
    font-size: 12px;
  }
  .home-work {
    --w: 100%;
    width: 100%;
    margin-bottom: 98px;
  }
  .home-work--wide,
  .home-work--left,
  .home-work--right {
    --w: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .home-work:not(.home-work--first) .home-work__media {
    margin: 0 var(--page);
  }
  .home-work__caption,
  .home-work--first .home-work__caption {
    padding: 12px var(--page) 0;
    grid-template-columns: 34px minmax(0, 1fr);
  }
  .home-work__title {
    font-size: clamp(35px, 11vw, 52px);
  }
  .home-work__meta {
    font-size: 10px;
  }
  .ascii-tag {
    font-size: 9px;
  }
  .fixed-traffic-desk {
    width: 92px;
    right: 10px;
    bottom: 118px;
    opacity: 0.9;
  }
  .project-top {
    padding-top: 34px;
    padding-bottom: 34px;
  }
  .project-title {
    font-size: clamp(38px, 11vw, 58px);
  }
  .project-hero {
    margin: 0 var(--page);
    padding-bottom: 54px;
  }
  .project-hero.poster img {
    max-height: none;
    width: 100%;
    max-width: 100%;
  }
  .project-overview {
    padding-top: 58px;
    padding-bottom: 62px;
  }
  .project-copy p {
    font-size: 17px;
  }
  .project-section,
  .project-secondary,
  .recognition-strip {
    padding-top: 58px;
    padding-bottom: 62px;
  }
  .gallery figure,
  .gallery.boundary-gallery figure {
    grid-column: 1/13 !important;
    margin-bottom: 24px;
  }
  .secondary-media {
    grid-template-columns: 1fr;
  }
  .recognition-labels {
    grid-template-columns: 1fr 1fr;
  }
  .recognition-label {
    min-height: 112px;
    padding: 12px;
  }
  .recognition-label img {
    max-height: 105px;
  }
  .synthux-selection {
    grid-template-columns: 86px 1fr;
    padding: 16px 0;
  }
  .project-nav {
    margin: 0;
    padding: 24px 0 40px;
  }
  .bio-page {
    padding-top: calc(var(--header-h) + 34px);
  }
  .bio-name {
    font-size: clamp(36px, 12vw, 54px);
    margin-bottom: 30px;
  }
  .bio-statement p {
    font-size: 16px;
  }
  .bio-section {
    padding: 26px 0;
  }
  .bio-list li {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    font-size: 12px;
  }
  .bio-list--no-year li {
    grid-template-columns: 1fr;
  }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 14px;
    padding-right: 14px;
  }
  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
