:root {
  --paper: #e7e7e2;
  --ink: #171717;
  --muted: #777772;
  --line: rgba(23, 23, 23, 0.2);
  --night: #0b0b0b;
  --serif: Didot, "Bodoni 72", "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.005em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::after {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background:
    repeating-radial-gradient(circle at 18% 27%, transparent 0 1px, #111 1px 1.5px),
    repeating-radial-gradient(circle at 72% 63%, transparent 0 2px, #fff 2px 2.5px);
  background-size: 5px 7px, 7px 5px;
  mix-blend-mode: soft-light;
  transition: opacity 250ms ease;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  color: #f2f2ed;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  mix-blend-mode: difference;
}

.wordmark {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-transform: none;
}

.site-header nav {
  display: flex;
  gap: 28px;
}

.site-header nav a {
  position: relative;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms ease;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #eee;
  background: #161616;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(1) contrast(1.08);
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  animation: settle 2.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 45%, rgba(0, 0, 0, 0.35)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 60%);
}

.hero__title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(88vw, 1180px);
  font-family: var(--serif);
  font-size: clamp(70px, 11vw, 180px);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.065em;
  transform: translate(-50%, -46%);
}

.hero__title span {
  display: block;
}

.hero__title span:last-child {
  margin-left: 17%;
  font-style: italic;
}

.hero__meta {
  position: absolute;
  right: 32px;
  bottom: 26px;
  left: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 60px;
  left: 50%;
  font-size: 20px;
  transform: translateX(-50%);
  animation: drift 2s ease-in-out infinite;
}

.statement {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 7vw 120px 29vw;
}

.eyebrow {
  margin: 0 0 30px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.statement h1 {
  margin: 0 0 0 auto;
  max-width: 850px;
  font-family: var(--serif);
  font-size: clamp(30px, 4.2vw, 64px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-align: right;
}

.projects {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  row-gap: 14vw;
  padding: 3vw 5vw 15vw;
}

.project {
  grid-column: span 6;
}

.project:nth-child(even) {
  align-self: end;
}

.project--wide {
  grid-column: 1 / span 8;
}

.project--wide:first-child {
  grid-column: 1 / span 6;
}

.project--wide:nth-of-type(4) {
  grid-column: 5 / span 8;
}

.project--small {
  grid-column: 9 / span 4;
  padding-top: 13vw;
}

.project--small:nth-of-type(2) {
  padding-top: 15vw;
}

.project--small:nth-of-type(5) {
  grid-column: 1 / span 4;
}

.project--medium {
  grid-column: 3 / span 6;
}

.project--medium:nth-of-type(6) {
  grid-column: 6 / span 7;
}

.project__image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  background: #c7c7c1;
}

/* The page grain stays in place; only an active colour thumbnail rises above it. */
.project__image-wrap:hover,
.project__image-wrap:focus-visible,
.home-film-card:hover .home-film-card__visual,
.home-film-card:focus-visible .home-film-card__visual,
.category-card:hover .category-card__visual,
.category-card:focus-within .category-card__visual {
  z-index: 101;
}

.project__image-wrap img {
  width: 100%;
  min-height: 240px;
  max-height: 70vh;
  filter: grayscale(1) contrast(1.05);
  object-fit: cover;
  transition: filter 650ms ease, transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project__image-wrap:hover img,
.project__image-wrap:focus img,
.project__image-wrap:active img {
  filter: grayscale(0) saturate(0.9);
  transform: scale(1.018);
}

.project__open {
  position: absolute;
  right: 16px;
  bottom: 14px;
  padding: 9px 12px;
  color: #f4f4ef;
  background: rgba(9, 9, 9, 0.72);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 250ms ease, transform 250ms ease;
}

.project__image-wrap:hover .project__open {
  opacity: 1;
  transform: translateY(0);
}

.project__caption {
  display: grid;
  grid-template-columns: 50px 1fr;
  padding-top: 14px;
}

.project__caption > span,
.project__caption p {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project__caption h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 400;
}

.project__caption p {
  margin: 5px 0 0;
}

.film-section {
  position: relative;
  min-height: auto;
  padding: 4vw 6vw 0;
  color: var(--ink);
  background: #d6d6d1;
}

.section-background-link {
  position: absolute;
  inset: 0;
  z-index: 0;
  cursor: pointer;
}

.film-section > :not(.section-background-link),
.photography-section > :not(.section-background-link) {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.film-section .section-title-link,
.photography-section .section-title-link,
.film-section .film-split__panel,
.film-section .project__image-wrap {
  pointer-events: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 4fr 2fr;
  align-items: start;
  margin-bottom: 8vw;
}

.section-heading h2 {
  margin: -0.18em 0 0;
  font-family: var(--serif);
  font-size: clamp(52px, 7.5vw, 112px);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.section-heading--minimal h2 {
  grid-column: 2 / span 1;
}

.section-title-link {
  display: inline-block;
  transition: opacity 250ms ease;
}

.section-title-link:hover,
.section-title-link:focus-visible {
  opacity: 0.55;
}

.section-heading > p:last-child {
  max-width: 290px;
  margin: 0;
  color: #9c9c97;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.35;
}

.film-frame {
  width: min(76vw, 1100px);
  margin: 0 auto;
}

.film-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  filter: grayscale(1) contrast(1.12);
  object-fit: cover;
  transition: filter 700ms ease;
}

.film-frame:hover img {
  filter: grayscale(0.2) saturate(0.55);
}

.film-frame__caption {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-film-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3vw 2vw;
  align-items: start;
}

/* Let a hovered film thumbnail rise above the page-grain overlay. */
.film-section > .home-film-grid {
  z-index: auto;
}

.home-film-card {
  display: block;
  color: inherit;
}

.home-film-card:nth-child(1) {
  width: 92%;
  margin-top: 0;
}

.home-film-card:nth-child(2) {
  width: 84%;
  margin-top: 5vw;
  margin-left: auto;
}

.home-film-card:nth-child(3) {
  width: 95%;
  margin-top: 1.5vw;
}

.home-film-card:nth-child(4) {
  width: 88%;
  margin-top: 3vw;
  margin-left: 7%;
}

.home-film-card:nth-child(5) {
  width: 90%;
  margin-top: 0;
  margin-left: auto;
}

.home-film-card__visual {
  position: relative;
  display: block;
  overflow: hidden;
  background: #1a1a1a;
}

.home-film-card__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transition: filter 650ms ease, transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-film-card:hover .home-film-card__visual img,
.home-film-card:focus-visible .home-film-card__visual img {
  filter: grayscale(0) saturate(0.9);
  transform: scale(1.018);
}

.home-film-card:hover .project__open,
.home-film-card:focus-visible .project__open {
  opacity: 1;
  transform: translateY(0);
}

.home-film-card__title,
.home-film-card__meta {
  display: block;
}

.home-film-card__title {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 34px);
  line-height: 1.05;
}

.home-film-card__meta {
  margin-top: 7px;
  color: #9c9c97;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.photography-section {
  position: relative;
  min-height: 120vh;
  padding: 10vw 6vw 15vw;
}

.section-heading--light {
  grid-template-columns: 1fr 5fr;
}

.photography-section .photo-essay {
  position: relative;
  z-index: 101;
  min-height: 0;
  overflow: visible;
  width: 100%;
}

.photo-essay__track {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, minmax(0, 210px));
  justify-content: center;
  column-gap: 6vw;
  row-gap: 3vw;
  width: 100%;
}

.photo-essay figure {
  width: 100%;
  margin: 0;
}

.photo-essay figure:nth-child(2) {
  transform: translateY(2.8vw);
}

.photo-essay figure:nth-child(3) {
  transform: translateY(-1.4vw);
}

.photo-essay figure:nth-child(4) {
  transform: translate(1.8vw, 1.6vw);
}

.photo-essay figure:nth-child(5) {
  transform: translate(-1.4vw, -1vw);
}

.photo-essay img {
  width: 100%;
  height: auto;
  display: block;
}

.photo-essay__note {
  position: absolute;
  top: 5%;
  right: 3%;
  width: 27%;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.35;
}

.archive {
  padding: 8vw 0 10vw;
  border-top: 1px solid var(--line);
}

.archive__head {
  display: grid;
  grid-template-columns: 1fr 4fr auto;
  align-items: end;
  padding: 0 5vw 5vw;
}

.archive__head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.archive__head--minimal h2 {
  grid-column: 2 / span 1;
}

.archive__head span {
  padding-bottom: 14px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.archive__track {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1.7fr;
  gap: 16px;
  align-items: center;
  padding: 0 5vw;
}

.archive__track figure {
  margin: 0;
}

.archive__track img {
  width: 100%;
  aspect-ratio: 4 / 3;
  filter: grayscale(1);
  object-fit: cover;
}

.archive__track figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.information {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  min-height: 70vh;
  padding: 10vw 6vw;
  color: #e8e8e3;
  background: var(--night);
}

.information h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.information__text {
  max-width: 530px;
  padding-top: 10vw;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.35;
}

.information__text p {
  margin: 0 0 35px;
}

.information__text p:nth-child(2) {
  color: #92928d;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.information__text a,
.contact-placeholder {
  border-bottom: 1px solid currentColor;
}

.information__contact {
  align-self: center;
  max-width: 430px;
  font-style: normal;
}

.information__contact dl,
.information__contact dd {
  margin: 0;
}

.information__contact dl > div {
  margin-bottom: 30px;
}

.information__contact dt {
  margin-bottom: 7px;
  color: #92928d;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.information__contact dd {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

.information__contact a {
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease;
}

.information__contact a:hover {
  border-color: currentColor;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 24px 32px;
  color: #8f8f8a;
  background: var(--night);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inner-page {
  min-height: 100vh;
}

.inner-page .site-header {
  color: var(--ink);
  background: rgba(231, 231, 226, 0.86);
  backdrop-filter: blur(12px);
  mix-blend-mode: normal;
}

.category-hero {
  display: grid;
  grid-template-columns: 1fr 4fr 2fr;
  align-items: end;
  min-height: 62vh;
  padding: 150px 6vw 7vw;
  border-bottom: 1px solid var(--line);
}

.category-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 118px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.category-hero--minimal h1 {
  grid-column: 2 / span 1;
}

.film-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: calc(100vh - 74px);
  padding-top: 74px;
}

.film-split__panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-width: 0;
  padding: 6vw;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 68px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  transition: background-color 350ms ease, color 350ms ease;
}

.film-split__label {
  position: relative;
  z-index: 1;
}

.film-split__previews {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 2.5%;
  opacity: 0;
  transition: opacity 500ms ease;
}

.film-split__previews img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.38;
  transition: filter 500ms ease, opacity 500ms ease;
}

.film-split__panel + .film-split__panel {
  border-left: 1px solid var(--line);
}

.film-split__panel:hover,
.film-split__panel:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

.film-split__panel:hover .film-split__previews,
.film-split__panel:focus-visible .film-split__previews {
  opacity: 1;
}

.film-split__panel:hover .film-split__previews img,
.film-split__panel:focus-visible .film-split__previews img {
  filter: grayscale(0) saturate(0.9);
  opacity: 0.26;
}

.film-split--home {
  min-height: 440px;
  padding-top: 0;
}

.film-section .section-heading {
  margin-bottom: 3vw;
}

.film-section .film-projects {
  row-gap: 7vw;
  padding: 0 0 9vw;
}

.film-projects .project--small:nth-of-type(2) {
  grid-column: 8 / span 4;
  padding-top: 8vw;
}

.film-projects .project--wide:first-child {
  grid-column: 2 / span 5;
}

.film-projects .project--small:nth-of-type(5) {
  grid-column: 8 / span 4;
  padding-top: 0;
}

.film-projects .project--wide:nth-of-type(4) {
  grid-column: 2 / span 5;
}

.film-projects .project:nth-last-child(-n + 2) .project__image-wrap img {
  min-height: 0;
  height: auto;
  object-fit: contain;
}

.film-split--home .film-split__previews {
  inset: 0 26%;
  padding: 0;
  opacity: 1;
}

.film-split--home .film-split__previews img {
  opacity: 0.42;
}

.film-split--home .film-split__panel.is-expanded .film-split__previews {
  inset: 5% 2.5%;
  align-items: center;
}

.film-split--home .film-split__panel.is-expanded .film-split__previews img {
  height: auto;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.32;
}

.film-section .film-split__panel {
  border-color: rgba(232, 232, 227, 0.28);
}

.film-section .film-split__panel + .film-split__panel {
  border-left-color: rgba(232, 232, 227, 0.28);
}

.film-section .film-split__panel:hover,
.film-section .film-split__panel:focus-visible {
  color: var(--ink);
  background: var(--paper);
}

.film-section .film-split__panel:hover .film-split__previews,
.film-section .film-split__panel:focus-visible .film-split__previews {
  opacity: 1;
}

.film-section .film-split__panel:hover .film-split__previews img,
.film-section .film-split__panel:focus-visible .film-split__previews img {
  filter: grayscale(0) saturate(0.9);
  opacity: 0.32;
}

.film-section .film-split--home .film-split__panel.is-expanded .film-split__previews img {
  filter: grayscale(0) saturate(0.9);
  opacity: 0.4;
}

.category-hero__intro {
  max-width: 300px;
  margin: 0 0 8px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  row-gap: 6vw;
  padding: 9vw 6vw 14vw;
}

.category-grid--empty {
  min-height: 38vh;
}

.category-card {
  grid-column: span 5;
  margin: 0;
}

.category-card:nth-child(2) {
  grid-column: 8 / span 5;
  padding-top: 12vw;
}

.category-card:nth-child(3) {
  grid-column: 2 / span 4;
}

.category-card:nth-child(4) {
  grid-column: 7 / span 6;
  padding-top: 6vw;
}

.category-card:nth-child(5) {
  grid-column: 2 / span 4;
}

.category-card:nth-child(6) {
  grid-column: 8 / span 5;
  padding-top: 10vw;
}

/* Give the final two photography projects a little more breathing room. */
.category-card:nth-child(7) {
  grid-column: 1 / span 4;
}

.category-card:nth-child(8) {
  grid-column: 9 / span 4;
  padding-top: 2vw;
  transform: translateX(-7vw);
}

/* Film category pages use slightly larger project thumbnails. */
.film-category-grid .category-card:nth-child(1) {
  grid-column: 1 / span 6;
}

.film-category-grid .category-card:nth-child(2) {
  grid-column: 7 / span 6;
}

.film-category-grid .category-card:nth-child(3) {
  grid-column: 1 / span 5;
}

.film-category-grid .category-card:nth-child(4) {
  grid-column: 7 / span 6;
}

.film-category-grid .category-card:nth-child(5) {
  grid-column: 1 / span 5;
}

.film-category-grid .category-card:nth-child(6) {
  grid-column: 7 / span 6;
}

.category-card img {
  width: 100%;
  max-height: 68vh;
  filter: grayscale(1) contrast(1.06);
  object-fit: cover;
  transition: filter 600ms ease, transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.category-card__visual {
  position: relative;
  display: block;
  overflow: hidden;
}

.category-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  color: #777772;
  background: #d9d9d4;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 64px);
  letter-spacing: 0.04em;
}

.category-card:hover img,
.category-card:focus-within img {
  filter: grayscale(0) saturate(0.88);
  transform: scale(1.012);
}

.category-card:hover .project__open,
.category-card:focus-visible .project__open {
  opacity: 1;
  transform: translateY(0);
}

.category-card figcaption {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  padding-top: 14px;
}

.category-card__number,
.category-card__meta {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.category-card h2 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 400;
  line-height: 1.05;
}

.category-card__meta {
  margin: 0;
}

.category-pagination {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 28px 6vw;
  border-top: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-pagination a:nth-child(2) {
  justify-self: center;
}

.category-pagination a:last-child {
  justify-self: end;
}

.project-page {
  color: var(--ink);
  background: #fff;
}

.project-page::after {
  display: none;
}

.project-title {
  min-height: 0;
  padding: 112px 32px 46px;
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid rgba(23, 23, 23, 0.12);
}

.project-title h1 {
  max-width: none;
  margin: 0.67em 0;
  font-family: inherit;
  font-size: 2em;
  font-weight: 700;
  line-height: normal;
  letter-spacing: normal;
}

.project-title p {
  margin: 1em 0;
  color: inherit;
  font-size: 1em;
  line-height: normal;
  letter-spacing: normal;
  text-transform: none;
}

.project-gallery__frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.project-gallery__frame img {
  width: 100%;
  height: 100svh;
  object-fit: contain;
}

.project-pdf {
  background: #fff;
}

.project-pdf img {
  display: block;
  width: 100%;
  background: #fff;
}


.project-pagination {
  display: flex;
  justify-content: space-between;
  padding: 30px 5vw;
  color: var(--ink);
  background: #fff;
  border-top: 1px solid rgba(23, 23, 23, 0.2);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-empty-hero {
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding: 130px 6vw 7vw;
  color: var(--ink);
  background: #fff;
}

.project-empty-hero h1 {
  max-width: 1000px;
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 118px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.project-empty-hero p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes settle {
  from {
    opacity: 0;
    transform: scale(1.07);
  }
  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 7px);
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    padding: 16px 18px 15px;
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .wordmark {
    font-size: 14px;
  }

  .site-header nav {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: 8px 14px;
    width: 100%;
    align-items: center;
  }

  .site-header nav a:nth-child(1) {
    display: none;
  }

  .site-header nav a:nth-child(4) {
    justify-self: center;
  }

  .site-header nav a:last-child {
    justify-self: end;
  }

  .site-header nav a::after {
    bottom: -4px;
  }

  .inner-page .site-header {
    padding-bottom: 14px;
  }

  .hero__title {
    top: 52%;
    width: calc(100vw - 36px);
    font-size: 19vw;
    line-height: 0.82;
    letter-spacing: -0.055em;
  }

  .hero__title span:last-child {
    margin: 5px 0 0 4%;
  }

  .hero__meta {
    right: 18px;
    bottom: 18px;
    left: 18px;
    font-size: 8px;
  }

  .hero__meta span:last-child {
    display: none;
  }

  .scroll-cue {
    bottom: 48px;
    font-size: 16px;
  }

  .statement {
    min-height: 62vh;
    padding: 96px 20px 82px;
  }

  .eyebrow {
    margin-bottom: 24px;
    font-size: 8px;
  }

  .statement h1 {
    max-width: 92%;
    font-size: clamp(30px, 8.4vw, 42px);
    line-height: 1.08;
  }

  .category-hero {
    display: flex;
    align-items: flex-end;
    min-height: 42vh;
    padding: 130px 18px 52px;
  }

  .category-hero h1 {
    margin: 0;
    font-size: clamp(44px, 12vw, 62px);
    line-height: 0.94;
  }

  .film-split {
    min-height: calc(100svh - 94px);
    padding-top: 94px;
  }

  .film-split--home {
    min-height: 300px;
    padding-top: 0;
  }

  .film-split__panel {
    padding: 24px 12px;
    font-size: clamp(22px, 6.8vw, 32px);
    overflow-wrap: anywhere;
  }

  .film-split:not(.film-split--home) .film-split__panel.is-active .film-split__previews {
    opacity: 1;
  }

  .film-split:not(.film-split--home) .film-split__panel.is-active .film-split__previews img {
    filter: grayscale(0) saturate(0.9);
    opacity: 0.26;
  }

  .category-hero__intro {
    margin-top: 28px;
  }

  .category-grid {
    display: flex;
    flex-direction: column;
    gap: 72px;
    padding: 64px 18px 96px;
  }

  .category-card,
  .category-card:nth-child(2),
  .category-card:nth-child(3),
  .category-card:nth-child(4),
  .category-card:nth-child(5),
  .category-card:nth-child(6) {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .category-card:nth-child(8) {
    transform: none;
  }

  .category-card:nth-child(even) {
    width: 82%;
    margin-left: auto;
  }

  .category-card img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .category-card figcaption {
    grid-template-columns: 30px 1fr;
    gap: 8px;
    padding-top: 11px;
  }

  .category-card h2 {
    font-size: clamp(21px, 6.3vw, 30px);
  }

  .category-card__number,
  .category-card__meta {
    font-size: 8px;
  }

  .category-pagination {
    gap: 8px;
    padding: 22px 18px;
    font-size: 8px;
    line-height: 1.35;
  }

  .category-pagination a:last-child {
    text-align: right;
  }

  .project-gallery__frame,
  .project-gallery__frame img {
    min-height: 100svh;
    height: 100svh;
  }

  .project-title {
    min-height: 0;
    padding: 104px 18px 38px;
  }

  .project-title h1 {
    margin: 0.67em 0;
    font-size: 2em;
    line-height: normal;
  }

  .project-title p {
    font-size: 1em;
  }

  .project-pagination {
    gap: 20px;
    padding: 24px 18px;
  }

  .project-pagination a:last-child {
    text-align: right;
  }

  .project-empty-hero {
    min-height: 100svh;
    padding: 120px 18px 48px;
  }

  .project-empty-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(42px, 13vw, 62px);
  }

  .category-grid--empty {
    min-height: 44vh;
  }

  .projects {
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding: 0 18px 110px;
  }

  .project,
  .project--small,
  .project--medium,
  .project--wide {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .project:nth-child(even) {
    width: 82%;
    margin-left: auto;
  }

  .project__image-wrap img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
  }

  .project__open {
    display: none;
  }

  .project__caption {
    grid-template-columns: 34px 1fr;
    padding-top: 11px;
  }

  .project__caption h2 {
    font-size: clamp(21px, 6.3vw, 30px);
    line-height: 1.05;
  }

  .project__caption > span,
  .project__caption p {
    font-size: 8px;
  }

  .section-heading,
  .section-heading--light {
    display: block;
    margin-bottom: 58px;
  }

  .section-heading h2 {
    font-size: clamp(46px, 13vw, 66px);
    line-height: 0.95;
  }

  .archive__head h2 {
    font-size: clamp(40px, 11vw, 56px);
    line-height: 0.98;
  }

  .section-heading > p:last-child {
    margin-top: 28px;
  }

  .film-section {
    min-height: auto;
    padding: 92px 18px 100px;
  }

  .film-section .film-projects {
    gap: 38px;
    padding: 0 0 80px;
  }

  .film-frame {
    width: 100%;
  }

  .film-frame__caption {
    display: block;
  }

  .film-frame__caption span {
    display: block;
    margin-bottom: 5px;
  }

  .home-film-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 16px;
  }

  .home-film-card,
  .home-film-card:nth-child(n) {
    width: auto;
    margin: 0;
  }

  .photography-section {
    min-height: auto;
    padding: 94px 18px 105px;
  }

  .photo-essay {
    min-height: 0;
  }

  .photo-essay__track {
    gap: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-essay figure {
    width: 100%;
  }

  .photo-essay figure:nth-child(2) {
    transform: translateY(14px);
  }

  .photo-essay figure:nth-child(3) {
    transform: translateY(-6px);
  }

  .photo-essay figure:nth-child(4) {
    transform: translate(9px, 8px);
  }

  .photo-essay figure:nth-child(5) {
    transform: translate(-7px, -5px);
  }

  .photo-essay__one {
    left: 0;
    width: 78%;
    height: 34%;
  }

  .photo-essay__two {
    top: 34%;
    right: 0;
    width: 56%;
    height: 37%;
  }

  .photo-essay__three {
    bottom: 0;
    left: 3%;
    width: 48%;
    height: 28%;
  }

  .photo-essay__note {
    display: none;
  }

  .archive__head {
    display: block;
    padding: 0 18px 48px;
  }

  .archive__track {
    grid-template-columns: 1fr 1fr;
    padding: 0 18px;
  }

  .archive {
    padding: 90px 0 95px;
  }

  .information {
    display: block;
    grid-template-columns: 1fr;
    min-height: 54vh;
    padding: 96px 18px;
  }

  .information h2 {
    max-width: 92%;
    font-size: clamp(54px, 17vw, 82px);
    line-height: 0.86;
  }

  .information__text {
    padding-top: 20px;
  }

  .information__contact {
    padding-top: 54px;
  }

  .information__contact dl > div {
    margin-bottom: 26px;
  }

  .information__contact dd {
    overflow-wrap: anywhere;
  }

  footer {
    gap: 12px;
    padding: 20px 18px;
    font-size: 8px;
  }
}

@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;
  }
}
