@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/Syne-Variable.ttf") format("truetype-variations");
}

@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("../fonts/Figtree-Variable.ttf") format("truetype-variations");
}

@font-face {
  font-family: "Recoleta";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Recoleta-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Recoleta";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Recoleta-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "Windsor Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/WindsorPro-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Windsor Pro";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/WindsorPro-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/InstrumentSans-Variable.woff2") format("woff2-variations");
}

@font-face {
  font-family: "Neue Haas Grotesk Display Trial";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/NeueHaasGroteskDisplay-Roman-Trial.woff2") format("woff2");
}

@font-face {
  font-family: "Neue Haas Grotesk Display Trial";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/NeueHaasGroteskDisplay-Bold-Trial.woff2") format("woff2");
}

:root {
  --paper: #fff;
  --white: #fff;
  --ink: #111;
  --muted: #70706b;
  --line: #d9d9d4;
  --header-height: 68px;
  --gutter: clamp(16px, 2vw, 32px);
  --section-title-space: clamp(38px, 5vw, 78px);
  --display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --hero-display: "Neue Haas Grotesk Display Trial", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

#works,
#about,
#contact,
#press,
#current {
  scroll-margin-top: 0;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.35;
}

body.is-locked {
  overflow: hidden;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

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

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

button:focus-visible,
a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 9px 12px;
  background: var(--white);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 60;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 var(--gutter);
  color: var(--white);
  transition: color 240ms ease, background-color 240ms ease;
}

.site-header.is-solid,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(246, 246, 243, 0.96);
  backdrop-filter: blur(10px);
}

.wordmark {
  width: fit-content;
  font-family: var(--display);
  font-size: clamp(29px, 2.6vw, 43px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.primary-nav {
  display: flex;
  grid-column: 2;
  grid-row: 1;
  align-items: center;
  gap: clamp(17px, 2vw, 34px);
  font-size: clamp(12px, 0.95vw, 15px);
}

.primary-nav a,
.contact-links a,
.text-link {
  transition: opacity 160ms ease;
}

.primary-nav a:hover,
.contact-links a:hover,
.text-link:hover {
  opacity: 0.48;
}

.menu-toggle {
  display: none;
  z-index: 2;
  font-size: 30px;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #141414;
  color: var(--white);
}

.hero-media-stack,
.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center 42%;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 5s ease;
}

.hero-media.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.18)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent 55%);
}

.hero-copy {
  position: absolute;
  z-index: 2;
  inset: var(--header-height) var(--gutter) 0;
  display: grid;
  place-items: center;
  padding: clamp(60px, 8vh, 120px) 0;
}

.hero-message {
  width: min(94%, 980px);
  text-align: center;
}

.hero h1 {
  display: grid;
  width: 100%;
  margin: 0;
  text-align: center;
}

.hero-statement {
  position: relative;
  display: block;
  justify-self: start;
  width: max-content;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.96);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(48px, 6.7vw, 122px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-align: left;
  -webkit-text-stroke: 0.8px transparent;
  clip-path: inset(-0.08em 100% -0.18em 0);
  filter: blur(4px);
  transform: translateY(14px);
  animation: hero-statement-reveal 900ms cubic-bezier(0.16, 1, 0.3, 1) 150ms forwards;
  will-change: clip-path, filter, transform;
}

.hero-statement::after {
  position: absolute;
  top: -0.06em;
  bottom: -0.02em;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
  content: "";
  opacity: 0;
  animation: hero-statement-scan 1050ms cubic-bezier(0.16, 1, 0.3, 1) 100ms forwards;
}

@keyframes hero-statement-reveal {
  0% {
    color: transparent;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.55);
    clip-path: inset(-0.08em 100% -0.18em 0);
    filter: blur(4px);
    transform: translateY(14px);
  }

  58% {
    color: rgba(255, 255, 255, 0.55);
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.45);
  }

  100% {
    color: rgba(255, 255, 255, 0.96);
    -webkit-text-stroke-color: transparent;
    clip-path: inset(-0.08em 0 -0.18em 0);
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes hero-statement-scan {
  0% {
    left: 0;
    opacity: 0;
  }

  10%,
  78% {
    opacity: 1;
  }

  100% {
    left: calc(100% + 10px);
    opacity: 0;
  }
}

.hero-word-frame {
  display: grid;
  min-height: 0.88em;
  padding-left: 51.5%;
  overflow: visible;
  font-family: var(--hero-display);
  font-size: clamp(46px, 7.8vw, 140px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.hero-word-measure {
  grid-area: 1 / 1;
  justify-self: start;
  width: max-content;
  max-width: 100%;
  visibility: hidden;
  text-align: left;
}

.hero.uses-typewriter .hero-statement {
  min-height: 0.92em;
  clip-path: none;
  filter: none;
  transform: none;
  animation: none;
}

.hero.uses-typewriter .hero-statement::after {
  display: none;
  animation: none;
}

.hero.uses-typewriter .hero-word-measure {
  color: transparent;
  visibility: visible;
  -webkit-text-stroke: clamp(1.1px, 0.12vw, 1.8px) rgba(255, 255, 255, 0.96);
}

.hero.uses-typewriter .hero-word-measure.is-statement-style {
  color: rgba(255, 255, 255, 0.96);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(48px, 6.7vw, 122px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
  -webkit-text-stroke-color: transparent;
}

.hero.uses-typewriter .typewriter-active::after {
  position: static;
  display: inline-block;
  width: 0.035em;
  height: 0.76em;
  margin-left: 0.075em;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
  content: "";
  opacity: 1;
  vertical-align: 0.02em;
  animation: typewriter-cursor 760ms steps(1, end) infinite;
}

@keyframes typewriter-cursor {
  50% {
    opacity: 0;
  }
}

.hero-reveal-stage,
.hero-word-reveal {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-reveal-stage {
  z-index: 1;
  overflow: hidden;
}

.hero-reveal-stage.uses-image-masks::before {
  position: absolute;
  z-index: 0;
  top: var(--hero-focus-band-y, 42%);
  right: 0;
  left: 0;
  height: var(--hero-focus-band-height, 180px);
  background: rgba(0, 0, 0, 0.03);
  content: "";
  -webkit-backdrop-filter: blur(1.5px) saturate(0.75) brightness(0.82);
  backdrop-filter: blur(1.5px) saturate(0.75) brightness(0.82);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 42%, #000 58%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 42%, #000 58%, transparent);
}

.hero-word-reveal {
  z-index: 1;
  overflow: hidden;
}

.hero-word-outline {
  fill: transparent;
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: clamp(1.1px, 0.12vw, 1.8px);
  vector-effect: non-scaling-stroke;
}

.hero-disciplines {
  margin: clamp(20px, 2.4vw, 38px) 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(13px, 1.1vw, 17px);
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(8px);
  animation: hero-disciplines-reveal 500ms ease-out 1500ms forwards;
}

@keyframes hero-disciplines-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: clamp(28px, 4vw, 68px);
  font-size: 28px;
  transform: translateY(5px);
}

.works-section,
.page-section,
.contact-section {
  min-height: 100svh;
  padding: calc(var(--header-height) + var(--section-title-space)) var(--gutter) clamp(92px, 10vw, 170px);
}

.hero,
.contact-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.works-section {
  position: relative;
  isolation: isolate;
}

.section-intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  margin-bottom: var(--section-title-space);
  scroll-margin-top: calc(var(--header-height) + var(--section-title-space));
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.works-section > .section-intro {
  position: relative;
  z-index: 3;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-intro .eyebrow {
  grid-column: 1 / span 2;
  align-self: start;
  padding-top: 8px;
}

.section-intro h2,
.contact-section h2 {
  grid-column: 1 / span 9;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 9vw, 170px);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.8;
}

.filter-toggle {
  grid-column: 11 / span 2;
  justify-self: end;
  padding-bottom: 5px;
  font-size: 12px;
  text-transform: uppercase;
}

.work-filters {
  grid-column: 1 / span 9;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding-top: 24px;
}

.work-filters[hidden] {
  display: none;
}

.work-filters button {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.work-filters button.is-active {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.archive-layout {
  position: relative;
  z-index: 2;
}

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

.work-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(58px, 0.16fr) minmax(420px, 1fr) clamp(82px, 8vw, 126px) minmax(124px, 0.42fr) 18px;
  gap: clamp(10px, 1.15vw, 22px);
  align-items: center;
  overflow: hidden;
  min-height: clamp(80px, 7vw, 112px);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  transition: color 180ms ease, opacity 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.work-index:has(.work-row:hover) .work-row:not(:hover),
.work-index:has(.work-row:focus-within) .work-row:not(:focus-within) {
  opacity: 0.22;
}

.work-row:hover,
.work-row:focus-within,
.work-row.is-active {
  color: var(--ink);
}

.work-row:hover,
.work-row:focus-within {
  background: rgba(17, 17, 17, 0.045);
  box-shadow: inset 0 1px 0 currentColor, inset 0 -1px 0 currentColor;
  opacity: 1;
}

.work-row button {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  overflow: hidden;
}

.work-row button:focus-visible {
  outline-offset: -3px;
}

.work-type,
.work-year,
.work-arrow {
  font-size: clamp(10px, 0.8vw, 12px);
  line-height: 1.2;
  text-transform: uppercase;
}

.work-title {
  grid-column: 2;
  min-width: 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.05vw, 38px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.section-cross,
.work-cross {
  color: var(--ink);
  font-weight: 700;
  paint-order: stroke fill;
  -webkit-text-stroke: 0.018em rgba(255, 255, 255, 0.82);
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.9);
}

.section-cross {
  display: inline-block;
  margin: 0 0.08em;
  -webkit-text-stroke-width: 0.01em;
  text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.82);
}

.work-context-group {
  display: inline;
}

.work-cross {
  display: inline-block;
  margin: 0 0.12em;
}

.work-context {
  color: currentColor;
  opacity: 1;
  transition: opacity 180ms ease;
}

.work-row:hover .work-context,
.work-row:focus-within .work-context,
.work-row.is-active .work-context {
  opacity: 1;
}

.work-arrow {
  grid-column: 5;
  font-size: 18px;
}

.work-thumb {
  display: block;
  grid-column: 3;
  grid-row: 1;
  width: 100%;
  height: clamp(54px, 5vw, 74px);
  object-fit: cover;
  opacity: 0.78;
  transition: opacity 180ms ease;
}

.work-year {
  grid-column: 1;
  white-space: nowrap;
}

.work-type {
  grid-column: 4;
}

.work-row:hover .work-thumb,
.work-row:focus-within .work-thumb,
.work-row.is-active .work-thumb {
  opacity: 1;
}

.work-preview {
  position: fixed;
  z-index: 1;
  inset: 0;
  visibility: hidden;
  overflow: hidden;
  background: #111;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 0s linear 260ms;
}

.works-section.has-preview .work-preview {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.preview-media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #111;
}

.preview-media::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  content: "";
}

.preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 560ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.preview-media img.is-changing {
  opacity: 0;
  transform: scale(1.015);
}

.preview-caption {
  display: none;
}

.works-section.has-preview .section-intro,
.works-section.has-preview .work-row,
.works-section.has-preview .work-row:hover,
.works-section.has-preview .work-row:focus-within,
.works-section.has-preview .work-row.is-active,
.works-section.has-preview .filter-toggle,
.works-section.has-preview .work-filters button,
.works-section.has-preview .work-filters button.is-active {
  color: var(--white);
}

.works-section.has-preview .work-index,
.works-section.has-preview .work-row {
  border-color: rgba(255, 255, 255, 0.4);
}

.works-section.has-preview .work-row:not(.is-active) {
  opacity: 0.58;
}

.works-section.has-preview .work-row:hover,
.works-section.has-preview .work-row:focus-within {
  background: rgba(255, 255, 255, 0.14);
}

.page-section {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  border-top: 1px solid var(--line);
}

.page-section > .section-intro {
  grid-column: 1 / -1;
}

.about-visual {
  grid-column: 1 / span 6;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-copy {
  grid-column: 8 / span 4;
}

.about-copy p {
  max-width: 48ch;
  margin: 0 0 24px;
}

.about-copy .about-lead {
  margin-bottom: 40px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1;
}

.cv-list {
  margin: 50px 0;
  border-top: 1px solid var(--line);
}

.cv-list div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.cv-list dt,
.cv-list dd {
  margin: 0;
  font-size: 12px;
}

.date-list,
.reference-list {
  grid-column: 3 / span 10;
}

.date-list,
.reference-list {
  border-top: 1px solid var(--line);
}

.date-row,
.reference-row {
  display: grid;
  grid-template-columns: 110px minmax(260px, 1fr) minmax(170px, 0.7fr) minmax(130px, 0.5fr);
  gap: 20px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.date-row p,
.date-row h3,
.reference-row span,
.reference-row strong {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
}

.date-row h3,
.reference-row strong {
  font-family: var(--display);
  font-size: clamp(25px, 2.6vw, 46px);
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.reference-row {
  transition: opacity 160ms ease;
}

.reference-row:hover {
  opacity: 0.5;
}

.reference-row span:last-child {
  justify-self: end;
  font-size: 20px;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.contact-section > div:first-child {
  grid-column: 1 / span 7;
}

.contact-section h2 {
  margin-top: 18px;
}

.contact-links {
  grid-column: 8 / span 5;
  align-self: end;
  display: grid;
  border-top: 1px solid var(--line);
}

.contact-links a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.footer-note {
  grid-column: 1 / -1;
  align-self: end;
  margin: 60px 0 0;
  color: #929292;
  font-size: 11px;
}

.project-viewer {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: var(--paper);
  color: var(--ink);
}

.project-viewer[hidden] {
  display: none;
}

.viewer-topbar,
.viewer-bottombar {
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 20px;
  padding: 16px var(--gutter);
}

.viewer-topbar {
  border-bottom: 1px solid var(--line);
}

.viewer-topbar h2,
.viewer-topbar p,
.viewer-bottombar p {
  margin: 0;
}

.viewer-topbar h2 {
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 44px);
  font-weight: 300;
  line-height: 0.9;
}

.viewer-project,
.viewer-heading {
  min-width: 0;
}

.viewer-heading {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1vw, 16px);
}

.viewer-topbar > div > p,
.viewer-bottombar p,
.viewer-count {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.info-toggle {
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.info-toggle:hover {
  transform: scale(1.08);
}

.info-toggle[aria-expanded="true"] {
  background: var(--paper);
  box-shadow: inset 0 0 0 1px var(--ink);
  color: var(--ink);
}

.viewer-count {
  justify-self: center;
}

.viewer-close {
  justify-self: end;
  font-size: 36px;
  font-weight: 200;
  line-height: 0.65;
}

.viewer-stage {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.viewer-figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: clamp(22px, 3vw, 48px) clamp(70px, 8vw, 135px) 10px;
}

.viewer-figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 180ms ease, transform 240ms ease;
}

.viewer-figure img.is-leaving-left {
  opacity: 0;
  transform: translateX(-30px);
}

.viewer-figure img.is-leaving-right {
  opacity: 0;
  transform: translateX(30px);
}

.viewer-figure figcaption {
  min-height: 26px;
  padding-top: 8px;
  color: var(--muted);
  font-size: 11px;
}

.viewer-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 72px;
  height: 110px;
  font-family: Arial, sans-serif;
  font-size: clamp(52px, 6vw, 100px);
  font-weight: 200;
  line-height: 1;
  transform: translateY(-50%);
}

.viewer-arrow:disabled {
  opacity: 0.14;
  cursor: default;
}

.viewer-arrow-prev {
  left: 0;
}

.viewer-arrow-next {
  right: 0;
}

.viewer-bottombar {
  align-items: end;
  border-top: 1px solid var(--line);
}

.viewer-bottombar p {
  grid-column: 3;
  justify-self: end;
  text-align: right;
}

.viewer-info {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(480px, 92vw);
  padding: 22px clamp(24px, 3vw, 46px);
  overflow-y: auto;
  border-left: 1px solid var(--line);
  background: var(--paper);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.06);
}

.viewer-info[hidden] {
  display: none;
}

.viewer-info > button {
  display: block;
  margin-left: auto;
  font-size: 30px;
}

.viewer-info > p {
  margin: clamp(70px, 12vh, 130px) 0 48px;
  font-family: var(--display);
  font-size: clamp(25px, 2.3vw, 38px);
  line-height: 1.08;
}

.viewer-info dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.viewer-info dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 15px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.viewer-info dt,
.viewer-info dd {
  margin: 0;
  font-size: 11px;
}

.viewer-info dt {
  color: var(--muted);
}

.viewer-info a {
  display: inline-block;
  margin-top: 40px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
}

@media (max-width: 900px) {
  :root {
    --header-height: 58px;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    grid-column: auto;
    grid-row: auto;
    min-height: calc(100svh - var(--header-height));
    padding: 30px var(--gutter) 50px;
    background: var(--paper);
    color: var(--ink);
  }

  .site-header.menu-open .primary-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .primary-nav a {
    font-family: var(--display);
    font-size: clamp(48px, 14vw, 90px);
    line-height: 0.96;
  }

  .hero h1 {
    font-size: clamp(58px, 17vw, 130px);
  }

  .section-intro .eyebrow {
    grid-column: 1 / span 3;
  }

  .section-intro h2 {
    grid-column: 1 / span 9;
  }

  .filter-toggle {
    grid-column: 10 / span 3;
    grid-row: 1;
  }

  .work-filters {
    grid-column: 1 / span 9;
  }

  .archive-layout {
    grid-template-columns: 1fr;
  }

  .work-preview {
    display: none;
  }

  .work-row {
    grid-template-columns: 58px 92px minmax(0, 1fr) 18px;
    grid-template-rows: auto auto;
    min-height: 0;
    padding: 12px 0;
  }

  .work-thumb {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: block;
    width: 92px;
    height: 78px;
    object-fit: cover;
  }

  .work-title {
    grid-column: 3;
    grid-row: 1;
    align-self: end;
    font-size: clamp(24px, 6vw, 38px);
  }

  .work-context-group {
    display: block;
    margin-top: 2px;
  }

  .work-type {
    grid-column: 3;
    grid-row: 2;
    align-self: start;
    margin-top: 6px;
  }

  .work-year {
    display: block;
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .work-arrow {
    grid-column: 4;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .about-visual {
    grid-column: 1 / span 7;
  }

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

  .date-list,
  .reference-list {
    grid-column: 1 / -1;
  }

  .date-row,
  .reference-row {
    grid-template-columns: 80px minmax(220px, 1fr) minmax(150px, 0.6fr) auto;
  }
}

@media (max-width: 640px) {
  .hero-media {
    object-position: 58% center;
  }

  .hero-word-frame {
    padding-left: 20%;
  }

  .works-section,
  .page-section,
  .contact-section {
    padding-top: calc(var(--header-height) + var(--section-title-space));
    padding-bottom: 86px;
  }

  .section-intro {
    display: block;
  }

  .section-intro .eyebrow {
    padding: 0;
    margin-bottom: 14px;
  }

  .section-intro h2 {
    font-size: clamp(64px, 23vw, 112px);
  }

  .filter-toggle {
    margin-top: 30px;
  }

  .work-filters {
    padding-top: 18px;
  }

  .work-row {
    grid-template-columns: 52px 76px minmax(0, 1fr) 16px;
    gap: 8px;
    min-height: 0;
    padding: 10px 0;
  }

  .work-thumb {
    width: 76px;
    height: 66px;
  }

  .work-type {
    margin-top: 5px;
    font-size: 9px;
    white-space: normal;
  }

  .work-title {
    font-size: clamp(21px, 5.5vw, 34px);
  }

  .page-section {
    display: block;
  }

  .about-visual {
    margin-bottom: 38px;
  }

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

  .date-row,
  .reference-row {
    grid-template-columns: 55px 1fr auto;
    gap: 12px;
  }

  .date-row > :nth-child(3),
  .date-row > :nth-child(4),
  .reference-row > :nth-child(3) {
    grid-column: 2 / span 2;
  }

  .reference-row span:last-child {
    grid-column: 3;
    grid-row: 1;
  }

  .contact-section {
    display: block;
  }

  .contact-section h2 {
    font-size: 82px;
  }

  .contact-links {
    margin-top: 120px;
  }

  .viewer-topbar,
  .viewer-bottombar {
    padding: 12px 14px;
  }

  .viewer-topbar {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .viewer-topbar h2 {
    font-size: 25px;
  }

  .viewer-topbar > div > p {
    max-width: 29ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .viewer-figure {
    padding: 24px 18px 8px;
  }

  .viewer-arrow {
    top: auto;
    bottom: 0;
    width: 56px;
    height: 60px;
    font-size: 55px;
    transform: none;
  }

  .viewer-arrow-prev {
    left: calc(50% - 60px);
  }

  .viewer-arrow-next {
    right: calc(50% - 60px);
  }

  .viewer-figure figcaption {
    padding-bottom: 62px;
  }

  .viewer-bottombar {
    grid-template-columns: 1fr auto;
  }

  .viewer-bottombar p {
    grid-column: 2;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .hero-statement,
  .hero-disciplines {
    clip-path: none;
    filter: none;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-statement::after {
    display: none;
    animation: none;
  }

  .hero.uses-typewriter .typewriter-active::after {
    display: none;
    animation: none;
  }
}
