:root {
  --ink: #11100e;
  --paper: #ffffff;
  --quiet: #817d74;
  --rule: rgba(17, 16, 14, .24);
  --page: min(92vw, 1440px);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Helvetica Neue", "Arial Nova", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
img { display: block; width: 100%; height: auto; }
cite { font-style: italic; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  transform: translateY(-200%);
  background: var(--paper);
  padding: .6rem .9rem;
}
.skip-link:focus { transform: none; }

.threshold {
  position: fixed;
  z-index: 900;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: #0b0b0a;
  cursor: pointer;
  transition: opacity 1.25s ease, visibility 1.25s;
}
.threshold::after {
  content: "";
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(242,239,232,.14);
}
.threshold p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -.035em;
  transition: filter 1.1s ease, opacity 1.1s ease, letter-spacing 1.1s ease;
}
.threshold button {
  position: absolute;
  z-index: 2;
  right: 2.5rem;
  bottom: 2.2rem;
  border: 0;
  color: inherit;
  background: transparent;
  font: 10px var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
}
.threshold.is-leaving p {
  opacity: 0;
  filter: blur(18px);
  letter-spacing: .02em;
}
.threshold.is-gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2.2rem;
  color: var(--paper);
  mix-blend-mode: difference;
  font: 11px var(--sans);
  letter-spacing: .13em;
  text-transform: uppercase;
}
.site-header a { text-decoration: none; }
.site-header.menu-open {
  color: var(--ink);
  mix-blend-mode: normal;
}
.wordmark { font-weight: 600; }
.site-header nav { display: flex; gap: 2rem; }
.site-header nav a { transition: filter .25s, opacity .25s; }
.site-header nav a:hover { filter: blur(2px); opacity: .65; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}
.hero-image {
  width: min(70vw, 880px);
  opacity: 1;
}
.hero-image img {
  max-height: 76svh;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: none;
}
.hero-caption {
  position: absolute;
  left: 2.2rem;
  bottom: 2rem;
  max-width: 22rem;
}
.hero-caption h1 {
  margin: .25rem 0 .4rem;
  font-weight: 400;
  font-size: clamp(1.35rem, 2vw, 2.2rem);
}
.hero-caption p:last-child {
  margin: 0;
  color: rgba(17,16,14,.62);
  font-size: .78rem;
}
.folio {
  margin: 0 0 .35rem;
  color: var(--quiet);
  font: 10px var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.continue {
  position: absolute;
  right: 2.2rem;
  bottom: 2rem;
  color: rgba(17,16,14,.7);
  font: 10px var(--sans);
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.chapter,
.project,
.about,
footer {
  width: var(--page);
  margin-inline: auto;
}
.chapter { padding: 11rem 0 9rem; }
.chapter-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
}
.chapter-heading .folio { grid-column: 1; }
.chapter-heading h2 {
  grid-column: 1 / -1;
  margin: 4rem 0 5rem;
  font-size: clamp(3.8rem, 11vw, 11rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .82;
}
.chapter-note {
  grid-column: 2;
  max-width: 34rem;
  margin: 0 0 10rem;
  font-size: 1.25rem;
}
.blur-title {
  filter: blur(var(--blur, 0px));
  opacity: var(--title-opacity, 1);
  transition: filter .08s linear;
}

.plate { margin-bottom: 12rem; }
.plate figure { margin: 0; }
.plate img {
  max-height: 78svh;
  object-fit: contain;
  mix-blend-mode: normal;
}
.plate figcaption {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 1.2rem;
  padding-top: .75rem;
  border-top: 1px solid var(--rule);
  font-size: .84rem;
}
.plate figcaption div { display: flex; gap: 2rem; }
.plate figcaption span {
  color: var(--quiet);
  font: 10px var(--sans);
}
.plate figcaption p { margin: 0; color: #4e4b45; }
.plate-wide { width: 92%; margin-inline: auto; }
.plate-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: start;
}
.plate-lower { margin-top: 17rem; }
.plate-last { margin-bottom: 2rem; }
.closing-pair {
  margin-top: 12rem;
  margin-bottom: 1rem;
}

.project,
.about {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 10vw;
  padding: 10rem 0;
  border-top: 1px solid var(--rule);
}
.about {
  color: #f7f7f4;
  background: #0b0b0a;
  box-shadow: 0 0 0 100vmax #0b0b0a;
  clip-path: inset(0 -100vmax);
  border-top-color: rgba(255, 255, 255, .28);
}
.about .folio,
.about .about-text p:not(.lead) {
  color: rgba(247, 247, 244, .7);
}
.about .text-link {
  color: #f7f7f4;
}
.project-heading,
.about > div:first-child { position: sticky; top: 7rem; align-self: start; }
.project h2,
.about h2 {
  margin: 1rem 0 2rem;
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .88;
}
.project-dates { color: var(--quiet); font-size: .85rem; }
.project-text,
.about-text { max-width: 41rem; }
.installation-views {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 3vw;
  align-items: end;
  margin-top: 7rem;
}
.installation-views figure { margin: 0; }
.installation-views img {
  width: 100%;
  height: auto;
}
.installation-views figcaption {
  margin-top: .7rem;
  color: var(--quiet);
  font: 10px var(--sans);
  letter-spacing: .06em;
}
.lead {
  margin-top: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
  line-height: 1.25;
}
blockquote {
  margin: 5rem 0 0;
  padding: 2rem 0 0 15%;
  border-top: 1px solid var(--rule);
  font-size: 1.4rem;
  font-style: italic;
}
.text-link {
  display: inline-block;
  margin-top: 4rem;
  padding-bottom: .25rem;
  border-bottom: 1px solid;
  font: 11px var(--sans);
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--rule);
  font-size: .85rem;
}
footer p { margin: 0; }
footer a { text-underline-offset: .18em; }
.copyright { text-align: right; color: var(--quiet); }

.record-page { padding-top: 6rem; }
.record-header {
  color: var(--ink);
  background: rgba(242, 239, 232, .9);
  mix-blend-mode: normal;
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(12px);
}
.record-header nav a[aria-current="page"] { font-weight: 700; }
.record-main {
  width: var(--page);
  margin-inline: auto;
}
.record-title {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 10vw;
  padding: 7rem 0 5rem;
  border-top: 1px solid var(--rule);
}
.record-title .folio { grid-column: 1 / -1; }
.record-title h1 {
  margin: 0;
  font-size: clamp(5rem, 12vw, 12rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .8;
}
.record-title h1 span { color: var(--quiet); }
.record-intro {
  align-self: end;
  max-width: 37rem;
  font-size: 1.35rem;
}
.record-portrait {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 2rem;
  margin: 0 0 10rem;
}
.record-portrait img {
  grid-column: 1;
  max-height: 75svh;
  object-fit: cover;
  object-position: center 25%;
  filter: grayscale(1) contrast(.94);
}
.record-portrait figcaption,
.studio-feature figcaption {
  align-self: end;
  padding-top: .65rem;
  border-top: 1px solid var(--rule);
  color: var(--quiet);
  font-size: .75rem;
}
.record-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6vw;
  padding: 6rem 0;
  border-top: 1px solid var(--rule);
}
.record-section > h2,
.split-record h2 {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.chronology {
  grid-column: 2;
  margin: 0;
  padding: 0;
  list-style: none;
}
.chronology li {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  padding: .8rem 0;
  border-top: 1px solid rgba(17, 16, 14, .13);
}
.chronology time {
  color: var(--quiet);
  font: 10px var(--sans);
  letter-spacing: .1em;
}
.chronology div { display: grid; grid-template-columns: minmax(13rem, .9fr) 1.1fr; gap: 1rem; }
.chronology span { color: #5f5b54; font-size: .86rem; }
.split-record {
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.split-record .chronology { grid-column: auto; }
.split-record .chronology li { grid-template-columns: 4rem 1fr; }
.split-record .chronology div { display: block; }
.split-record .chronology span { display: block; margin-top: .2rem; }
.commission-feature {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 10vw;
  padding: 9rem 0;
  border-top: 1px solid var(--rule);
}
.commission-feature h2 {
  max-width: 8ch;
  margin: 1.5rem 0 0;
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .9;
}
.studio-feature { margin: 0 0 10rem; }
.studio-feature img {
  max-height: 80svh;
  object-fit: cover;
  filter: grayscale(1) contrast(.95);
}
.installation-feature {
  width: min(72%, 760px);
  margin: 2rem 0 10rem auto;
}
.installation-feature img {
  max-height: 88svh;
  object-fit: contain;
}
.installation-feature figcaption,
.studio-feature figcaption {
  margin-top: .65rem;
  color: var(--quiet);
  font-size: .75rem;
}
.press-record {
  grid-column: 2;
}
.press-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.press-card {
  display: block;
  color: inherit;
  text-decoration: none;
}
.press-card figure { margin: 0; }
.press-card img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid rgba(17, 16, 14, .13);
  filter: grayscale(1);
  transition: filter .35s ease, opacity .35s ease;
}
.press-card:hover img,
.press-card:focus-visible img {
  filter: grayscale(0);
  opacity: .88;
}
.press-card figcaption {
  display: grid;
  gap: .35rem;
  padding-top: .8rem;
}
.press-card figcaption span,
.press-more {
  color: var(--quiet);
  font: 10px var(--sans);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.press-card figcaption strong {
  font-weight: 400;
  line-height: 1.25;
}
.press-more {
  margin: 0 0 .5rem;
}
.press-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.press-list li {
  display: grid;
  grid-template-columns: 4rem 1fr 10rem;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(17, 16, 14, .13);
}
.press-list span,
.press-list small {
  color: var(--quiet);
  font: 10px var(--sans);
  letter-spacing: .08em;
}
.press-list a { text-underline-offset: .2em; }
.record-note {
  max-width: 43rem;
  margin: 1rem 0 8rem auto;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  color: var(--quiet);
  font-size: .78rem;
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .site-header { padding: 1.1rem 1.2rem; }
  .record-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .menu-toggle {
    display: block;
    border: 0;
    color: inherit;
    background: none;
    font: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
  }
  .site-header nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 1.3rem;
    padding: 5.5rem 2.2rem 3rem;
    color: var(--ink);
    background: var(--paper);
    mix-blend-mode: normal;
    font: 1.65rem var(--serif);
    letter-spacing: -.02em;
    text-transform: none;
  }
  .site-header nav::before,
  .site-header nav::after {
    content: "";
    position: absolute;
    left: 2.2rem;
    right: 2.2rem;
    height: 1px;
    background: var(--rule);
  }
  .site-header nav::before { top: 5rem; }
  .site-header nav::after { bottom: 2.5rem; }
  .site-header nav.is-open { display: flex; }
  body.menu-is-open { overflow: hidden; }
  .site-header nav a {
    width: 100%;
    padding: .35rem 0;
  }
  .site-header .wordmark,
  .site-header .menu-toggle {
    position: relative;
    z-index: 70;
  }
  .hero-image { width: 94vw; }
  .hero-caption { left: 1.2rem; right: 1.2rem; bottom: 1.2rem; }
  .continue { display: none; }
  .chapter { padding: 7rem 0 5rem; }
  .chapter-heading { display: block; }
  .chapter-heading h2 { margin: 3rem 0; }
  .chapter-note { margin: 0 0 6rem 15%; }
  .plate-pair { display: block; }
  .plate,
  .plate-lower { margin: 0 0 7rem; }
  .plate-wide { width: 100%; }
  .plate figcaption { grid-template-columns: 1fr; gap: .5rem; }
  .plate figcaption p { padding-left: 2rem; }
  .project,
  .about {
    display: block;
    padding: 7rem 0;
  }
  .installation-views {
    display: block;
    margin-top: 5rem;
  }
  .installation-views figure + figure { margin-top: 3rem; }
  .project-heading,
  .about > div:first-child { position: static; margin-bottom: 4rem; }
  footer { grid-template-columns: 1fr 1fr; }
  footer .copyright { text-align: left; }
  .record-page { padding-top: 4rem; }
  .record-header nav { color: var(--ink); }
  .record-title,
  .record-section,
  .commission-feature { display: block; }
  .record-title { padding: 5rem 0 4rem; }
  .record-title h1 { margin-bottom: 4rem; }
  .record-intro { font-size: 1.1rem; }
  .record-portrait {
    display: block;
    margin-bottom: 7rem;
  }
  .record-portrait figcaption { margin-top: .6rem; }
  .record-section { padding: 4.5rem 0; }
  .record-section > h2 { margin-bottom: 3rem; }
  .chronology li { grid-template-columns: 3.5rem 1fr; gap: .75rem; }
  .chronology div { display: block; }
  .chronology span { display: block; margin-top: .25rem; }
  .split-record > div + div { margin-top: 5rem; }
  .commission-feature { padding: 6rem 0; }
  .commission-feature h2 { margin-bottom: 4rem; }
  .studio-feature { margin-bottom: 6rem; }
  .installation-feature {
    width: 100%;
    margin-bottom: 6rem;
  }
  .press-record { grid-column: auto; }
  .press-features {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .press-list li {
    grid-template-columns: 3.5rem 1fr;
  }
  .press-list small { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .blur-title { filter: none !important; opacity: 1 !important; }
}
/* Next.js production wrapper; preserve the original document structure visually. */
.site-root {
  display: contents;
}
