@font-face {
  font-family: "Archivo";
  src: url("./assets/fonts/Archivo-Italic-Latin-VF.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("./assets/fonts/BodoniModa-Latin-VF.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("./assets/fonts/BodoniModa-Italic-Latin-VF.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --black: #030303;
  --graphite: #111111;
  --graphite-raised: #181818;
  --ivory: #f0ede7;
  --smoke: #aaa59e;
  --rule: #353330;
  --rule-soft: #22211f;
  --signal: #e94f86;
  --signal-deep: #b62f62;
  --signal-bright: #ff6fa7;
  --placeholder: #807b74;
  --focus: #ffffff;
  --sans: "Archivo", "Arial Narrow", Arial, sans-serif;
  --display: "Bodoni Moda", Didot, "Times New Roman", serif;
  --title-tracking: -0.008333em;
  --title-word-spacing: -0.06em;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --page-rail: clamp(110rem, 91.6667vw, 144rem);
  --page-gutter: clamp(1.25rem, 4vw, 5rem);
  --rail-gutter: max(var(--page-gutter), calc((100vw - var(--page-rail)) / 2));
  --edge-left: max(var(--rail-gutter), var(--safe-left));
  --edge-right: max(var(--rail-gutter), var(--safe-right));
  --component-pad: clamp(1.5rem, 3.5vw, 4.5rem);
  --header-height: 4.875rem;
}

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

html {
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body[data-menu-open="true"] {
  overflow: hidden;
}

main h1,
main h2,
main h3 {
  word-spacing: var(--title-word-spacing);
}

img,
picture,
svg {
  display: block;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex="-1"]:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

::selection {
  background: var(--signal-deep);
  color: var(--ivory);
}

.skip-link {
  position: fixed;
  top: max(0.75rem, var(--safe-top));
  left: max(0.75rem, var(--safe-left));
  z-index: 100;
  min-height: 44px;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  background: var(--ivory);
  color: var(--black);
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: calc(var(--header-height) + var(--safe-top));
  padding-top: var(--safe-top);
  padding-right: var(--edge-right);
  padding-left: var(--edge-left);
  border-bottom: 1px solid transparent;
  background-color: transparent;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header[data-scrolled="true"] {
  border-color: var(--rule-soft);
  background-color: rgba(3, 3, 3, 0.96);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  width: 6.25rem;
  min-height: 44px;
  text-decoration: none;
}

.wordmark svg {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 2.5rem);
}

.primary-nav a,
.header-inquiry,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: var(--ivory);
  font-size: 0.875rem;
  font-weight: 520;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.primary-nav a {
  position: relative;
  min-width: 44px;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.55rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a[aria-current="location"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-inquiry {
  display: none;
  color: var(--signal-bright);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.arrival {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--black);
}

.arrival.has-parallax {
  min-height: 135dvh;
  overflow: clip;
}

.arrival-visual {
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow: hidden;
}

.arrival.has-parallax .arrival-copy {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
}

.arrival-media,
.arrival-shade,
.exposure-field {
  position: absolute;
  inset: 0;
}

.arrival-media img {
  object-position: 50% 35%;
}

.arrival-alley .arrival-media img {
  object-position: 50% 50%;
}

.arrival-shade {
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}

.exposure-field {
  z-index: 2;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0;
  mix-blend-mode: screen;
}

.arrival-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100dvh;
  padding-top: calc(var(--header-height) + var(--safe-top) + 4rem);
  padding-right: var(--edge-right);
  padding-bottom: max(clamp(2rem, 5vw, 4.5rem), var(--safe-bottom));
  padding-left: var(--edge-left);
}

.arrival-copy h1 {
  max-width: 11ch;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: clamp(4.5rem, 7.25vw, 7.5rem);
  font-stretch: 78%;
  font-weight: 420;
  letter-spacing: -0.02em;
  line-height: 0.91;
  text-wrap: balance;
}

.positioning {
  max-width: 49ch;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0 0;
  color: #d5d1cb;
  font-size: clamp(1.0625rem, 1.45vw, 1.35rem);
  line-height: 1.45;
}

.arrival-action {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: end;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.arrow-link {
  display: inline-flex;
  gap: 0.9rem;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  color: var(--signal-bright);
  font-size: 0.875rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.arrow-link span {
  font-size: 1.2rem;
  transition: transform 160ms ease;
}

.audience-signature {
  justify-self: end;
  max-width: 28ch;
  margin: 0;
  color: #d5d1cb;
  font-size: 1rem;
  text-align: right;
}

body[data-motion="full"] .arrival.is-exposed .exposure-field {
  animation: exposure 280ms ease-out both;
}

@keyframes exposure {
  0%, 100% { opacity: 0; }
  18% { opacity: 0.48; }
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(1rem, 2vw, 2rem);
}

.work {
  padding: clamp(6rem, 12vw, 11rem) 0 0;
  background: var(--black);
}

.work-intro,
.study-heading,
.method-intro {
  padding-right: var(--edge-right);
  padding-left: var(--edge-left);
}

.work-intro h2 {
  grid-column: 1 / span 7;
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.75rem, 6.5vw, 6rem);
  font-stretch: 80%;
  font-weight: 430;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.work-intro > p {
  grid-column: 9 / -1;
  align-self: end;
  max-width: 33rem;
  margin: 0;
  color: var(--smoke);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.55;
}

.study {
  padding-top: clamp(7rem, 12vw, 12rem);
}

.study-heading {
  padding-top: 1.5rem;
  padding-bottom: clamp(3rem, 5vw, 5rem);
  border-top: 1px solid var(--rule);
}

.study-meta {
  grid-column: 1 / span 3;
  padding-top: 0.5rem;
}

.study-meta p {
  margin: 0 0 0.45rem;
  color: var(--smoke);
  font-size: 0.78rem;
  line-height: 1.45;
}

.study-meta p:first-child {
  color: var(--ivory);
  font-weight: 650;
}

.study-heading > div:last-child {
  grid-column: 5 / -1;
}

.study-entry {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}

.study-entry h3 {
  margin: 0;
  font-size: clamp(3.25rem, 6.3vw, 6rem);
  font-stretch: 78%;
  font-weight: 430;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.study-summary {
  max-width: 48rem;
  margin: 1.5rem 0 0;
  color: var(--smoke);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.5;
}

.identity-field {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(20rem, 1fr));
  min-height: min(56rem, 86vh);
  border-block: 1px solid var(--rule);
  overflow: hidden;
}

.identity-mark,
.identity-signal,
.identity-type,
.identity-message {
  position: relative;
  overflow: hidden;
}

.identity-mark {
  grid-column: 1 / span 7;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--component-pad);
  border-right: 1px solid var(--rule);
  background: var(--black);
}

.identity-mark svg {
  width: min(88%, 56rem);
  height: auto;
  color: var(--ivory);
  transform: translateX(-6.4%);
}

.identity-mark p {
  margin: 0 0 0 10%;
  color: var(--smoke);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 768px), (orientation: landscape) and (max-height: 512px) and (max-width: 1024px) {
  .identity-mark svg {
    transform: translateX(-7.8%);
  }
}

.identity-signal {
  grid-column: 8 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  padding: 1.5rem;
  background: var(--signal);
  color: var(--black);
}

.identity-signal span {
  writing-mode: vertical-rl;
  font-size: clamp(1.6rem, 2.5vw, 3rem);
  font-stretch: 76%;
  font-weight: 650;
  line-height: 1;
}

.identity-type {
  grid-column: 8 / span 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: var(--ivory);
  color: var(--black);
  font-size: 0.75rem;
  line-height: 1.45;
}

.identity-type .type-large {
  margin-bottom: auto;
  font-family: var(--display);
  font-size: clamp(5rem, 8vw, 8rem);
  line-height: 0.8;
}

.identity-message {
  grid-column: 10 / -1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border-left: 1px solid var(--rule);
  background: var(--graphite);
}

.identity-message p {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 4.25rem);
  font-stretch: 76%;
  font-weight: 430;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.identity-message span {
  color: var(--smoke);
  font-size: 0.75rem;
}

.registration-mark {
  position: absolute;
  inset: 8% 6%;
  border: 1px solid rgba(240, 237, 231, 0.25);
  pointer-events: none;
}

body[data-motion="full"] .study-house.is-in-view .registration-mark {
  animation: register 520ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

@keyframes register {
  0% { transform: translate3d(1.5rem, -1rem, 0); opacity: 0.25; }
  100% { transform: translate3d(0, 0, 0); opacity: 1; }
}

.hours-anchor {
  position: relative;
  height: clamp(36rem, 82vh, 58rem);
  margin: 0;
  overflow: hidden;
}

.hours-anchor picture,
.hours-anchor img,
.hours-frame picture,
.hours-frame img,
.sequence-frame picture,
.sequence-frame img,
.authorship-image picture,
.authorship-image img,
.office-flower picture,
.office-flower img {
  width: 100%;
  height: 100%;
}

.hours-anchor img {
  object-position: 50% 45%;
}

.hours-anchor figcaption,
.hours-frame figcaption,
.sequence-frame figcaption,
.authorship-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.7rem 0.9rem;
  background: var(--black);
  color: var(--smoke);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.hours-flash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.72);
  opacity: 0;
  mix-blend-mode: screen;
}

body[data-motion="full"] .study-hours.is-in-view .hours-flash {
  animation: exposure 280ms 90ms ease-out both;
}

.hours-sequence {
  display: grid;
  grid-template-columns: 7fr 5fr;
  grid-template-rows: minmax(32rem, 68vh) minmax(26rem, 56vh);
  border-bottom: 1px solid var(--rule);
}

.hours-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.hours-frame-table {
  border-right: 1px solid var(--rule);
}

.hours-frame-table img {
  object-position: 50% 12%;
}

.hours-frame-ritual img {
  object-position: 52% 50%;
}

.hours-frame-motion {
  grid-column: 1 / -1;
  border-top: 1px solid var(--rule);
}

.hours-frame-motion img {
  object-position: 50% 62%;
}

.public-sequence {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1.05fr 0.85fr;
  min-height: clamp(34rem, 66vh, 48rem);
  border-block: 1px solid var(--rule);
  overflow: hidden;
}

.sequence-frame {
  position: relative;
  min-width: 0;
  margin: 0;
  border-right: 1px solid var(--rule);
  overflow: hidden;
}

.sequence-frame:last-child {
  border-right: 0;
}

.sequence-still-life img {
  object-position: 50% 50%;
}

.sequence-detail img {
  object-position: 60% 50%;
}

.sequence-copy,
.sequence-social {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1rem, 2vw, 2rem);
}

.sequence-copy {
  background: var(--signal);
  color: var(--black);
}

.sequence-copy span,
.sequence-copy small,
.sequence-social span {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.sequence-copy strong,
.sequence-social strong {
  font-size: clamp(2rem, 3.7vw, 4.5rem);
  font-stretch: 76%;
  font-weight: 480;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.sequence-social {
  gap: 1rem;
  background: var(--graphite);
}

.sequence-social strong {
  margin-top: auto;
}

body[data-motion="full"] .sequence-frame {
  transition: opacity 220ms ease, transform 220ms ease;
}

body[data-motion="full"] .study-public.is-in-view .sequence-frame:nth-child(2),
body[data-motion="full"] .study-public.is-in-view .sequence-frame:nth-child(4) {
  transform: translate3d(0, -0.75rem, 0);
}

/* Editorial motion language: paced entrances, registration lines, and restrained camera drift. */
html[data-editorial-motion="ready"] [data-editorial-motion="chapter"] > *,
html[data-editorial-motion="ready"] [data-editorial-motion="details"] > * {
  opacity: 0;
  transform: translate3d(0, 1.15rem, 0);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--motion-order, 0) * 72ms);
}

html[data-editorial-motion="ready"] [data-editorial-motion="visual"] {
  clip-path: inset(0 0 5% 0);
  opacity: 0.72;
  transform: translate3d(0, 1.35rem, 0);
  transition:
    clip-path 900ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 720ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-editorial-motion="ready"] [data-editorial-visible="true"] > *,
html[data-editorial-motion="ready"] [data-editorial-motion="visual"][data-editorial-visible="true"] {
  clip-path: inset(0);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html[data-editorial-motion="ready"] .study-heading[data-editorial-motion="chapter"] {
  position: relative;
  border-top-color: transparent;
}

html[data-editorial-motion="ready"] .study-heading[data-editorial-motion="chapter"]::before {
  position: absolute;
  top: 0;
  right: var(--edge-right);
  left: var(--edge-left);
  height: 1px;
  background: var(--rule);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 880ms cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-editorial-motion="ready"] .study-heading[data-editorial-visible="true"]::before {
  transform: scaleX(1);
}

@supports (animation-timeline: view()) {
  body[data-motion="full"] .hours-anchor img,
  body[data-motion="full"] .hours-frame img,
  body[data-motion="full"] .sequence-frame img,
  body[data-motion="full"] .office-flower img {
    animation: editorial-camera-drift linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
    will-change: transform;
  }
}

@keyframes editorial-camera-drift {
  0% { transform: translate3d(0, -1.25%, 0) scale(1.035); }
  50% { transform: translate3d(0, 0, 0) scale(1.018); }
  100% { transform: translate3d(0, 1.25%, 0) scale(1.035); }
}

.rights-note {
  max-width: 62rem;
  margin: 1rem var(--edge-right) 0 var(--edge-left);
  color: #8c8882;
  font-size: 0.78rem;
}

.authorship {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  margin-top: clamp(8rem, 14vw, 14rem);
  border-block: 1px solid var(--rule);
}

.authorship-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 9rem) var(--component-pad);
}

.authorship-copy h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 6.4vw, 6rem);
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 0.93;
}

.authorship-copy p {
  max-width: 51rem;
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  color: var(--smoke);
  font-size: clamp(1.0625rem, 1.45vw, 1.3rem);
  line-height: 1.55;
}

.authorship-copy .authorship-credit {
  display: grid;
  grid-template-columns: minmax(5rem, 8rem) 1fr;
  gap: 1rem;
  max-width: 32rem;
  margin-top: clamp(2.5rem, 5vw, 5rem);
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  color: var(--ivory);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.authorship-credit strong {
  font-weight: 750;
}

.authorship-credit span {
  color: var(--smoke);
  text-align: right;
}

.authorship-image {
  position: relative;
  min-height: 70svh;
  margin: 0;
  border-top: 1px solid var(--rule);
  overflow: hidden;
}

.authorship-image img {
  object-position: 58% 55%;
}

.authorship-image-plate {
  background: var(--black);
}

.authorship-image-plate img {
  object-fit: contain;
  object-position: center;
}

.method {
  padding-top: clamp(8rem, 14vw, 14rem);
}

.method-intro {
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

.method-intro h2 {
  grid-column: 1 / span 6;
  margin: 0;
  font-size: clamp(3.75rem, 6vw, 6rem);
  font-stretch: 78%;
  font-weight: 430;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.method-intro p {
  grid-column: 9 / -1;
  align-self: end;
  max-width: 30rem;
  margin: 0;
  color: var(--smoke);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding-right: var(--edge-right);
  padding-left: var(--edge-left);
  border-top: 1px solid var(--rule);
}

.method-artifact-stage {
  display: none;
  position: sticky;
  top: 14vh;
  align-self: start;
  height: 68vh;
  max-height: 44rem;
  margin-top: 7vh;
  border: 1px solid var(--rule);
  overflow: hidden;
}

.method-artifact {
  position: absolute;
  inset: 0;
  background: var(--graphite);
  overflow: hidden;
  opacity: 0.08;
  transform: translate3d(0, 0.75rem, 0);
  transition: opacity 240ms ease, transform 240ms ease;
}

.method-proof-image,
.method-proof-image img,
.method-sequence-proof,
.method-sequence-proof picture,
.method-sequence-proof img {
  width: 100%;
  height: 100%;
}

.method-proof-image {
  position: absolute;
  inset: 0;
}

.method-proof-image img,
.method-sequence-proof img {
  object-fit: cover;
}

.artifact-distill .method-proof-image img {
  object-position: 52% 62%;
}

.artifact-capture .method-proof-image img {
  object-position: 58% 45%;
}

.method-proof-caption {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(7rem, 1fr) 2fr;
  gap: 1rem;
  align-items: end;
  padding: 1rem clamp(1rem, 2vw, 1.75rem);
  border-top: 1px solid var(--rule);
  background: rgba(3, 3, 3, 0.94);
}

.method-proof-caption span {
  color: var(--smoke);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.method-proof-caption strong {
  justify-self: end;
  max-width: 16rem;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 540;
  line-height: 1;
  text-align: right;
}

.artifact-design {
  display: grid;
  background: var(--signal);
  color: var(--black);
}

.method-proof-identity {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 3.5vw, 3.5rem);
}

.method-proof-identity > span {
  font-size: clamp(4rem, 7vw, 7rem);
  font-stretch: 72%;
  font-weight: 760;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.method-proof-identity p {
  max-width: 9ch;
  margin: auto 0 3rem auto;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-align: right;
}

.artifact-design .method-proof-caption {
  border-color: rgba(3, 3, 3, 0.3);
  background: var(--ivory);
  color: var(--black);
}

.artifact-design .method-proof-caption span {
  color: #56524c;
}

.artifact-choreograph {
  background: var(--black);
}

.method-sequence-proof {
  position: absolute;
  inset: 0 0 4.75rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.method-sequence-proof picture:first-child {
  border-right: 1px solid var(--rule);
}

.method-sequence-proof picture:first-child img {
  object-position: 58% 50%;
}

.method-sequence-proof picture:last-child img {
  object-position: 62% 50%;
}

.method-artifact-stage[data-current="distill"] [data-method-artifact="distill"],
.method-artifact-stage[data-current="design"] [data-method-artifact="design"],
.method-artifact-stage[data-current="capture"] [data-method-artifact="capture"],
.method-artifact-stage[data-current="choreograph"] [data-method-artifact="choreograph"] {
  z-index: 2;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.method-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-step {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: clamp(1rem, 2.5vw, 2.5rem);
  align-content: center;
  min-height: 0;
  padding: 4rem 0;
  border-bottom: 1px solid var(--rule);
}

.method-number {
  grid-row: 1 / span 2;
  padding-top: 0.75rem;
  color: var(--smoke);
  font-size: 0.82rem;
}

.method-step h3 {
  margin: 0;
  font-size: clamp(3.25rem, 5.25vw, 5.5rem);
  font-stretch: 76%;
  font-weight: 430;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.method-step > p {
  max-width: 33rem;
  margin: 1.5rem 0 0;
  color: var(--smoke);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.5;
}

.method-inline-artifact {
  display: grid;
  grid-column: 2;
  min-height: 12rem;
  margin-top: 2rem;
  align-content: end;
  padding: 1rem;
  background-color: var(--graphite);
  background-position: center;
  background-size: cover;
}

.method-inline-artifact span {
  justify-self: start;
  max-width: 19rem;
  padding: 0.55rem 0.7rem;
  background: rgba(3, 3, 3, 0.94);
  color: var(--ivory);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

[data-method-step="distill"] .method-inline-artifact {
  background-image: image-set(
    url("assets/images/work-1-960.webp") 1x,
    url("assets/images/work-1-1800.webp") 2x
  );
  background-position: 50% 62%;
}

[data-method-step="design"] .method-inline-artifact {
  background: var(--signal);
}

[data-method-step="design"] .method-inline-artifact span {
  background: var(--ivory);
  color: var(--black);
}

[data-method-step="capture"] .method-inline-artifact {
  background-image: image-set(
    url("assets/images/work-feature-960.webp") 1x,
    url("assets/images/work-feature-1800.webp") 2x
  );
  background-position: 58% 45%;
}

[data-method-step="choreograph"] .method-inline-artifact {
  background-image: image-set(
    url("assets/images/work-3-960.webp") 1x,
    url("assets/images/work-3-1800.webp") 2x
  );
  background-position: 58% 50%;
}

.office {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
  margin-top: clamp(8rem, 14vw, 14rem);
  border-block: 1px solid var(--rule);
}

.office-artifacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1.6fr 0.8fr 0.8fr;
  min-height: 78svh;
  border-bottom: 1px solid var(--rule);
  min-width: 0;
}

.office-flower {
  grid-column: 1 / -1;
  position: relative;
  min-height: 40vh;
  margin: 0;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.office-flower img {
  object-position: 50% 25%;
}

.office-proof {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 14rem;
  padding: clamp(1rem, 2vw, 2rem);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.office-proof:nth-of-type(even) {
  border-right: 0;
}

.office-proof-mark {
  justify-content: center;
  background: var(--graphite);
  font-size: clamp(3rem, 5vw, 6rem);
  font-stretch: 72%;
  font-weight: 700;
}

.office-proof-note span,
.office-proof-red span,
.office-proof-type span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.office-proof-note p {
  margin: 0;
  color: var(--smoke);
  font-size: 1rem;
}

.office-proof-red {
  background: var(--signal);
  color: var(--black);
}

.office-proof-red strong {
  font-size: clamp(1.65rem, 2.6vw, 2.8rem);
  font-stretch: 76%;
  line-height: 0.9;
}

.office-proof-type {
  justify-content: space-between;
  border-bottom: 0;
  background: var(--ivory);
  color: var(--black);
}

.office-proof-type p {
  max-width: 9ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 0.92;
}

.office-copy {
  align-self: center;
  min-width: 0;
  padding: clamp(5rem, 8vw, 9rem) var(--component-pad);
}

.office-copy > h2 {
  margin: 0 0 2rem;
  color: var(--signal-bright);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.office-statement {
  max-width: 17ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.roster-line {
  margin: clamp(2rem, 4vw, 3.5rem) 0;
  color: var(--smoke);
  font-size: 1rem;
}

.commission-list {
  border-bottom: 1px solid var(--rule);
}

.commission-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  min-height: 7rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--rule);
  text-decoration: none;
}

.commission-link > span:first-child {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(10rem, 0.9fr) minmax(16rem, 1.25fr);
  gap: 1.5rem;
  align-items: baseline;
}

.commission-link strong {
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 500;
}

.commission-link small {
  color: var(--smoke);
  font-size: 0.88rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.commission-link > span:last-child {
  color: var(--signal-bright);
  font-size: 1.5rem;
  transition: transform 160ms ease;
}

.inquiry {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 7vw, 9rem);
  padding-top: clamp(8rem, 14vw, 14rem);
  padding-right: var(--edge-right);
  padding-bottom: max(clamp(6rem, 10vw, 10rem), var(--safe-bottom));
  padding-left: var(--edge-left);
  border-bottom: 1px solid var(--rule);
}

.inquiry-intro h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 6vw, 6rem);
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 0.93;
}

.inquiry-intro p {
  max-width: 41rem;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  color: var(--smoke);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.55;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem clamp(1rem, 2vw, 2rem);
  align-self: start;
}

.field-group {
  position: relative;
}

.field-moment,
.field-relationship,
.field-source,
.inquiry-submit,
.form-status {
  grid-column: 1 / -1;
}

.field-group label {
  display: block;
  margin-bottom: 0.35rem;
  color: #d7d3cd;
  font-size: 0.82rem;
}

.field-group input,
.field-group select,
.field-group textarea {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 0.65rem 0;
  border: 0;
  border-bottom: 1px solid #77726c;
  border-radius: 0;
  background: transparent;
  color: var(--ivory);
  font-size: 1.0625rem;
  line-height: 1.45;
}

.field-group textarea {
  min-height: 7rem;
  resize: vertical;
}

.field-group select {
  color-scheme: dark;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: var(--placeholder);
  opacity: 1;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--ivory);
}

.field-group [aria-invalid="true"] {
  border-color: var(--signal-bright);
}

.field-error {
  display: block;
  min-height: 1.25rem;
  padding-top: 0.25rem;
  color: #ff5366;
  font-size: 0.78rem;
}

.inquiry-submit {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 64px;
  margin-top: 0.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--signal-deep);
  border-radius: 0;
  background: var(--signal-deep);
  color: var(--ivory);
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
  transition: background-color 140ms ease, transform 120ms ease;
}

.inquiry-submit:active {
  transform: scale(0.98);
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--smoke);
  font-size: 0.88rem;
}

.direct-email,
.inquiry noscript p {
  grid-column: 1;
  margin: 0;
  color: var(--smoke);
  font-size: 0.9rem;
}

.direct-email a,
.inquiry noscript a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ivory);
  text-underline-offset: 0.25rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  padding-top: 2rem;
  padding-right: var(--edge-right);
  padding-bottom: max(2rem, var(--safe-bottom));
  padding-left: var(--edge-left);
  color: var(--smoke);
  font-size: 0.82rem;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  color: var(--ivory);
  font-size: 2rem;
  font-stretch: 72%;
  font-weight: 800;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-underline-offset: 0.25rem;
}

.site-footer p {
  margin: 0;
}

/* Editorial inquiry and compact footer on the main page. */
@media (min-width: 48.01rem) {
  .home-page .inquiry {
    grid-template-columns: minmax(14rem, 0.78fr) minmax(28rem, 1.22fr);
    grid-template-rows: auto 1fr;
    gap: 3rem clamp(2.5rem, 6vw, 7rem);
    align-items: start;
    padding-top: clamp(8rem, 10vw, 10rem);
    padding-bottom: clamp(5rem, 7vw, 7rem);
  }

  .home-page .inquiry-intro {
    grid-column: 1;
    grid-row: 1;
  }

  .home-page .inquiry-intro h2 {
    max-width: 10ch;
    font-size: clamp(3.75rem, 5vw, 5.4rem);
    line-height: 0.95;
  }

  .home-page .inquiry-intro p {
    max-width: 34rem;
    margin-top: 2rem;
  }

  .home-page .inquiry-form {
    grid-column: 2;
    grid-row: 1 / span 2;
    padding-top: 0.4rem;
  }

  .home-page .direct-email {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
  }

  .home-page .site-footer {
    grid-template-columns: 1fr auto auto;
    gap: clamp(2rem, 4vw, 5rem);
    min-height: 86px;
    padding-top: 1.25rem;
    padding-bottom: max(1.25rem, var(--safe-bottom));
  }

  .home-page .footer-mark {
    font-size: 1.7rem;
  }
}

@media (min-width: 48.01rem) and (max-width: 70rem) {
  .home-page .inquiry {
    grid-template-columns: minmax(18rem, 0.9fr) minmax(24rem, 1.1fr);
    gap: 3rem 2.25rem;
  }

  .home-page .inquiry-intro h2 {
    max-width: 11ch;
    font-size: 3rem;
  }

  .home-page .inquiry-intro p {
    font-size: 0.95rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .primary-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .arrow-link:hover span {
    transform: translateY(0.25rem);
  }

  .study-entry:hover h3 {
    color: var(--signal-bright);
  }

  .commission-link:hover > span:last-child {
    transform: translateX(0.4rem);
  }

  .inquiry-submit:hover {
    background: var(--signal-deep);
  }
}

@media (max-width: 70rem) {
  :root {
    --gutter: clamp(1.5rem, 4vw, 3.5rem);
  }

  .office {
    grid-template-columns: 1fr 1fr;
  }

  .office-copy {
    padding-left: clamp(2rem, 4vw, 4rem);
  }

  .commission-link > span:first-child {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .inquiry {
    gap: 4rem;
  }
}

@media (max-width: 48rem) {
  :root {
    --gutter: 1rem;
    --header-height: 4.5rem;
  }

  body[data-menu-open="true"] {
    overflow: hidden;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 0.25rem;
    padding-inline: 1rem;
  }

  .wordmark {
    width: 5.75rem;
  }

  .menu-toggle,
  .header-inquiry {
    display: inline-flex;
    padding-inline: 0.7rem;
  }

  .header-inquiry {
    border-left: 1px solid var(--rule);
  }

  .primary-nav {
    position: absolute;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 0 1rem 1rem;
    border-bottom: 1px solid var(--rule);
    background: var(--black);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -120%, 0);
    transition: transform 220ms ease, opacity 160ms ease, visibility 0s 220ms;
  }

  .primary-nav a {
    justify-content: flex-start;
    min-height: 56px;
    border-top: 1px solid var(--rule-soft);
  }

  body[data-menu-open="true"] .primary-nav,
  .no-js .primary-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }

  .no-js .menu-toggle {
    display: none;
  }

  .arrival-media img {
    object-position: 74% 50%;
  }

  .arrival-shade {
    background: rgba(0, 0, 0, 0.4);
  }

  .arrival-copy {
    padding: calc(var(--header-height) + 2rem) 1rem 1.5rem;
  }

  .arrival-copy h1 {
    max-width: 8.6ch;
    font-size: clamp(3.2rem, 14vw, 4.25rem);
    line-height: 0.93;
  }

  .positioning {
    max-width: 34ch;
    margin-top: 1.25rem;
    font-size: 1.0625rem;
  }

  .arrival-action {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    margin-top: 1.4rem;
  }

  .audience-signature {
    justify-self: start;
    font-size: 0.95rem;
    text-align: left;
  }

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

  .work {
    padding-top: 6rem;
  }

  .work-intro h2,
  .work-intro > p,
  .study-meta,
  .study-heading > div:last-child,
  .method-intro h2,
  .method-intro p {
    grid-column: 1;
  }

  .work-intro h2,
  .method-intro h2 {
    font-size: 3.25rem;
  }

  .work-intro > p,
  .method-intro p {
    margin-top: 1.5rem;
    font-size: 1.0625rem;
  }

  .study {
    padding-top: 6rem;
  }

  .study-heading {
    gap: 2.5rem;
    padding-bottom: 2.75rem;
  }

  .study-entry h3 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .identity-field {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 55vh 18rem 18rem;
    min-height: 0;
  }

  .identity-mark {
    grid-column: 1 / -1;
    grid-row: 1;
    padding: 2rem 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .identity-mark svg {
    width: 100%;
  }

  .identity-signal {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .identity-type {
    grid-column: 1;
    grid-row: 3;
  }

  .identity-message {
    grid-column: 2;
    grid-row: 3;
  }

  .identity-message p {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
  }

  .hours-anchor {
    height: 60vh;
    min-height: 30rem;
  }

  .hours-anchor img {
    object-position: 60% 50%;
  }

  .hours-sequence {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(26rem, 58vh));
  }

  .hours-frame-table,
  .hours-frame-ritual {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .hours-frame-motion {
    grid-column: 1;
    border-top: 0;
  }

  .public-sequence {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 84vw;
    grid-template-columns: none;
    min-height: 68vh;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
  }

  .sequence-frame {
    scroll-snap-align: start;
  }

  .rights-note {
    margin-inline: 1rem;
  }

  .authorship {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 8rem;
  }

  .authorship-copy {
    padding: 6rem 1rem;
  }

  .authorship-copy h2 {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .authorship-copy p {
    font-size: 1.0625rem;
  }

  .authorship-image {
    min-height: 70vh;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .method {
    padding-top: 7rem;
  }

  .method-intro {
    padding-bottom: 3rem;
  }

  .method-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding-inline: 1rem;
  }

  .method-artifact-stage {
    display: none;
  }

  .method-step {
    grid-template-columns: 3rem 1fr;
    min-height: 0;
    padding: 4rem 0;
  }

  .method-step h3 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .method-step > p {
    font-size: 1.0625rem;
  }

  .method-inline-artifact {
    display: grid;
    grid-column: 2;
    margin-top: 2rem;
  }

  .office {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 8rem;
  }

  .office-artifacts {
    min-height: 78vh;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .office-copy {
    padding: 6rem 1rem;
  }

  .office-statement {
    max-width: 18ch;
    font-size: clamp(3rem, 13vw, 4.25rem);
  }

  .commission-link > span:first-child {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .commission-link small {
    font-size: 0.92rem;
  }

  .inquiry {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 7rem 1rem 6rem;
  }

  .inquiry-intro h2 {
    font-size: clamp(3.5rem, 15.5vw, 5rem);
  }

  .inquiry-intro p {
    font-size: 1.0625rem;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .field-group,
  .inquiry-submit,
  .form-status {
    grid-column: 1;
  }

  .direct-email,
  .inquiry noscript p {
    grid-column: 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2.5rem 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 22rem) {
  .header-inquiry,
  .menu-toggle {
    padding-inline: 0.45rem;
    font-size: 0.8rem;
  }

  .wordmark {
    width: 5.2rem;
  }

  .arrival-copy h1 {
    font-size: 3rem;
  }

  .identity-field {
    grid-template-columns: 1fr;
    grid-template-rows: 52vh 16rem 16rem 18rem;
  }

  .identity-signal,
  .identity-type,
  .identity-message {
    grid-column: 1;
  }

  .identity-signal { grid-row: 2; }
  .identity-type { grid-row: 3; }
  .identity-message { grid-row: 4; }
}

@media (prefers-reduced-motion: reduce) {
  html[data-editorial-motion="ready"] [data-editorial-motion],
  html[data-editorial-motion="ready"] [data-editorial-motion] > * {
    clip-path: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  html[data-editorial-motion="ready"] .study-heading[data-editorial-motion="chapter"]::before {
    transform: scaleX(1);
    transition: none;
  }

  .hours-anchor img,
  .hours-frame img,
  .sequence-frame img,
  .office-flower img {
    animation: none;
  }

  .arrival.has-parallax {
    min-height: 100dvh;
  }

  .arrival-visual {
    position: absolute;
    inset: 0;
    height: auto;
  }

  .site-header,
  .primary-nav,
  .primary-nav a::after,
  .arrow-link span,
  .commission-link > span:last-child,
  .inquiry-submit,
  .method-artifact,
  .sequence-frame {
    transition-duration: 0.01ms;
  }

  .exposure-field,
  .hours-flash {
    display: none;
  }

  .registration-mark,
  .sequence-frame {
    animation: none;
    transform: none;
  }

  .method-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .method-artifact-stage {
    display: none;
  }

  .method-step {
    grid-template-columns: 4rem 1fr;
    min-height: 0;
    padding: 4rem 0;
  }

  .method-inline-artifact {
    display: grid;
    grid-column: 2;
    margin-top: 2rem;
  }
}

/* Responsive composition system: structural width modes with orthogonal height and ratio modes. */
@media (min-width: 769px) and (max-width: 1120px) {
  :root {
    --page-gutter: clamp(1.5rem, 4vw, 3.5rem);
    --component-pad: clamp(2.5rem, 6vw, 5rem);
  }

  .identity-field {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: minmax(24rem, 56svh) minmax(22rem, 44svh);
    min-height: 0;
  }

  .identity-mark {
    grid-column: 1;
    grid-row: 1;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  .identity-signal {
    grid-column: 2;
    grid-row: 1;
    border-bottom: 1px solid rgba(3, 3, 3, 0.28);
  }

  .identity-type {
    grid-column: 1;
    grid-row: 2;
  }

  .identity-message {
    grid-column: 2;
    grid-row: 2;
  }

  .public-sequence {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: repeat(2, minmax(24rem, 46svh));
    min-height: 0;
  }

  .sequence-frame:nth-child(2) {
    border-right: 0;
  }

  .sequence-frame:nth-child(-n + 2) {
    border-bottom: 1px solid var(--rule);
  }

  .authorship-copy {
    padding-right: max(var(--component-pad), var(--safe-right));
    padding-left: max(var(--component-pad), var(--safe-left));
  }

  .authorship-image {
    min-height: 72svh;
  }

  .method-layout {
    padding-right: var(--edge-right);
    padding-left: var(--edge-left);
  }

  .inquiry {
    gap: clamp(4rem, 8vw, 7rem);
  }
}

@media (min-width: 769px) and (min-height: 641px) {
  .office {
    grid-template-columns: 1fr 1fr;
    min-height: 100svh;
  }

  .office-artifacts {
    min-height: 100svh;
    border-right: 1px solid var(--rule);
    border-bottom: 0;
  }
}

@media (min-width: 1121px) and (min-height: 641px) {
  .office {
    grid-template-columns: 5fr 7fr;
  }
}

@media (min-width: 1121px) {
  .inquiry {
    grid-template-columns: 6fr 6fr;
  }

  .direct-email,
  .inquiry noscript p {
    grid-column: 2;
  }
}

@media (min-width: 1121px) and (min-height: 737px) {
  .authorship {
    grid-template-columns: 2fr 1fr;
    min-height: 92svh;
  }

  .authorship-image {
    min-height: 92svh;
    border-top: 0;
    border-left: 1px solid var(--rule);
  }
}

@media (min-width: 1121px) and (min-height: 737px) and (prefers-reduced-motion: no-preference) {
  .method-layout {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(2rem, 5vw, 6rem);
  }

  .method-artifact-stage {
    display: block;
  }

  .method-step {
    min-height: clamp(28rem, 52vh, 34rem);
  }

  .method-inline-artifact {
    display: none;
  }
}

@media (max-width: 768px), (orientation: landscape) and (max-height: 512px) and (max-width: 1024px) {
  :root {
    --page-gutter: 1rem;
    --component-pad: 1rem;
    --header-height: 4.5rem;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 0.25rem;
    padding-right: max(1rem, var(--safe-right));
    padding-left: max(1rem, var(--safe-left));
  }

  .wordmark {
    width: 5.75rem;
  }

  .menu-toggle,
  .header-inquiry {
    display: inline-flex;
    padding-inline: 0.7rem;
  }

  .header-inquiry {
    border-left: 1px solid var(--rule);
  }

  .primary-nav {
    position: absolute;
    inset: calc(var(--header-height) + var(--safe-top)) 0 auto;
    display: grid;
    gap: 0;
    padding: 0 max(1rem, var(--safe-right)) max(1rem, var(--safe-bottom)) max(1rem, var(--safe-left));
    border-bottom: 1px solid var(--rule);
    background: var(--black);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -120%, 0);
    transition: transform 220ms ease, opacity 160ms ease, visibility 0s 220ms;
  }

  .primary-nav a {
    justify-content: flex-start;
    min-height: 56px;
    border-top: 1px solid var(--rule-soft);
  }

  body[data-menu-open="true"] .primary-nav,
  .no-js .primary-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }

  .no-js .menu-toggle {
    display: none;
  }

  .arrival-media img {
    object-position: 50% 50%;
  }

  .arrival-shade {
    background: rgba(0, 0, 0, 0.4);
  }

  .arrival-copy {
    padding-top: calc(var(--header-height) + var(--safe-top) + 2rem);
    padding-right: max(1rem, var(--safe-right));
    padding-bottom: max(1.5rem, var(--safe-bottom));
    padding-left: max(1rem, var(--safe-left));
  }

  .arrival-copy h1 {
    max-width: 8.6ch;
    font-size: clamp(3.2rem, 14vw, 4.25rem);
    line-height: 0.93;
  }

  .positioning {
    max-width: 34ch;
    margin-top: 1.25rem;
    font-size: 1.0625rem;
  }

  .arrival-action {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    margin-top: 1.4rem;
  }

  .audience-signature {
    justify-self: start;
    font-size: 0.95rem;
    text-align: left;
  }

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

  .work {
    padding-top: 6rem;
  }

  .work-intro h2,
  .work-intro > p,
  .study-meta,
  .study-heading > div:last-child,
  .method-intro h2,
  .method-intro p {
    grid-column: 1;
  }

  .work-intro h2,
  .method-intro h2 {
    font-size: 3.25rem;
  }

  .work-intro > p,
  .method-intro p {
    margin-top: 1.5rem;
    font-size: 1.0625rem;
  }

  .study {
    padding-top: 6rem;
  }

  .study-heading {
    gap: 2.5rem;
    padding-bottom: 2.75rem;
  }

  .study-entry h3 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .identity-field {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 55svh 18rem 18rem;
    min-height: 0;
  }

  .identity-mark {
    grid-column: 1 / -1;
    grid-row: 1;
    padding: 2rem max(1rem, var(--safe-right)) 2rem max(1rem, var(--safe-left));
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .identity-mark svg {
    width: 100%;
  }

  .identity-signal {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .identity-type {
    grid-column: 1;
    grid-row: 3;
  }

  .identity-message {
    grid-column: 2;
    grid-row: 3;
  }

  .identity-message p {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
  }

  .hours-anchor {
    height: 60svh;
    min-height: 30rem;
  }

  .hours-anchor img {
    object-position: 60% 50%;
  }

  .hours-sequence {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(26rem, 58svh));
  }

  .hours-frame-table,
  .hours-frame-ritual {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .hours-frame-motion {
    grid-column: 1;
    border-top: 0;
  }

  .public-sequence {
    grid-auto-flow: column;
    grid-auto-columns: 84vw;
    grid-template-columns: none;
    grid-template-rows: 1fr;
    min-height: 68svh;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-color: var(--signal) var(--black);
  }

  .sequence-frame {
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .rights-note {
    margin-right: max(1rem, var(--safe-right));
    margin-left: max(1rem, var(--safe-left));
  }

  .authorship {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 8rem;
  }

  .authorship-copy {
    padding: 6rem max(1rem, var(--safe-right)) 6rem max(1rem, var(--safe-left));
  }

  .authorship-copy h2 {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .authorship-copy p {
    font-size: 1.0625rem;
  }

  .authorship-image {
    min-height: 70svh;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .method {
    padding-top: 7rem;
  }

  .method-intro {
    padding-bottom: 3rem;
  }

  .method-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding-right: max(1rem, var(--safe-right));
    padding-left: max(1rem, var(--safe-left));
  }

  .method-artifact-stage {
    display: none;
  }

  .method-step {
    grid-template-columns: 3rem minmax(0, 1fr);
    min-height: 0;
    padding: 4rem 0;
  }

  .method-step h3 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .method-step > p {
    font-size: 1.0625rem;
  }

  .method-inline-artifact {
    display: grid;
    grid-column: 2;
    margin-top: 2rem;
  }

  .office {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    margin-top: 8rem;
  }

  .office-artifacts {
    min-height: 78svh;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .office-copy {
    padding: 6rem max(1rem, var(--safe-right)) 6rem max(1rem, var(--safe-left));
  }

  .office-statement {
    max-width: 18ch;
    font-size: clamp(3rem, 13vw, 4.25rem);
  }

  .commission-link > span:first-child {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .commission-link small {
    font-size: 0.92rem;
  }

  .inquiry {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-top: 7rem;
    padding-right: max(1rem, var(--safe-right));
    padding-bottom: max(6rem, var(--safe-bottom));
    padding-left: max(1rem, var(--safe-left));
  }

  .inquiry-intro h2 {
    font-size: clamp(3.5rem, 15.5vw, 5rem);
  }

  .inquiry-intro p {
    font-size: 1.0625rem;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .field-group,
  .inquiry-submit,
  .form-status,
  .direct-email,
  .inquiry noscript p {
    grid-column: 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 2.5rem;
    padding-right: max(1rem, var(--safe-right));
    padding-bottom: max(2.5rem, var(--safe-bottom));
    padding-left: max(1rem, var(--safe-left));
  }

  .footer-links {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 352px) {
  :root {
    --page-gutter: 0.75rem;
    --component-pad: 0.75rem;
  }

  .header-inquiry,
  .menu-toggle {
    padding-inline: 0.35rem;
    font-size: 0.76rem;
  }

  .wordmark {
    width: clamp(4.55rem, 25vw, 5.1rem);
  }

  .arrival-copy {
    padding-right: max(0.75rem, var(--safe-right));
    padding-left: max(0.75rem, var(--safe-left));
  }

  .arrival-copy h1 {
    max-width: 8.8ch;
    font-size: clamp(2.7rem, 15.5vw, 3.2rem);
  }

  .positioning {
    font-size: 0.98rem;
  }

  .identity-field {
    grid-template-columns: 1fr;
    grid-template-rows: 52svh 16rem 16rem 18rem;
  }

  .identity-signal,
  .identity-type,
  .identity-message {
    grid-column: 1;
  }

  .identity-signal { grid-row: 2; }
  .identity-type { grid-row: 3; }
  .identity-message { grid-row: 4; }

  .public-sequence {
    grid-auto-columns: calc(100vw - 2.25rem);
  }
}

@media (max-height: 736px) {
  .arrival-copy {
    padding-top: calc(var(--header-height) + var(--safe-top) + 0.75rem);
    padding-bottom: max(0.85rem, var(--safe-bottom));
  }

  .arrival-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.75rem, min(7vw, 11svh), 5rem);
    line-height: 0.9;
  }

  .positioning {
    max-width: 45ch;
    margin-top: 0.7rem;
    font-size: clamp(0.9rem, 2.4svh, 1rem);
    line-height: 1.35;
  }

  .arrival-action {
    grid-template-columns: auto 1fr;
    gap: 1rem;
    margin-top: 0.75rem;
  }

  .audience-signature {
    justify-self: end;
    font-size: 0.82rem;
    text-align: right;
  }

  .authorship {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .authorship-copy {
    padding-top: clamp(4rem, 12svh, 6rem);
    padding-bottom: clamp(4rem, 12svh, 6rem);
  }

  .authorship-image {
    min-height: 62svh;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }
}

@media (max-height: 640px) {
  .office {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .office-artifacts {
    min-height: 86svh;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
}

@media (orientation: landscape) and (max-height: 512px) and (max-width: 1024px) {
  :root {
    --header-height: 4.15rem;
  }

  .arrival-copy {
    padding-top: calc(var(--header-height) + var(--safe-top) + 0.4rem);
    padding-bottom: max(0.55rem, var(--safe-bottom));
  }

  .arrival-copy h1 {
    max-width: 13ch;
    font-size: clamp(2.65rem, 6vw, 3.5rem);
    line-height: 0.88;
  }

  .positioning {
    max-width: 49ch;
    margin-top: 0.4rem;
    font-size: clamp(0.82rem, 2.8svh, 0.94rem);
  }

  .arrival-action {
    grid-template-columns: auto 1fr;
    gap: 1rem;
    margin-top: 0.4rem;
  }

  .arrow-link {
    font-size: 0.76rem;
  }

  .audience-signature {
    justify-self: end;
    max-width: 32ch;
    font-size: 0.76rem;
    text-align: right;
  }

  .hours-anchor {
    height: calc(100svh - var(--header-height));
    min-height: 18rem;
  }

  .hours-sequence {
    grid-auto-flow: column;
    grid-auto-columns: 78vw;
    grid-template-columns: none;
    grid-template-rows: 1fr;
    height: min(82svh, 24rem);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
  }

  .hours-frame {
    border-right: 1px solid var(--rule);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .hours-frame-motion {
    grid-column: auto;
  }

  .public-sequence {
    min-height: 78svh;
  }

  .authorship-copy,
  .office-copy,
  .inquiry {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .authorship-image {
    min-height: 100svh;
  }

  .method-inline-artifact {
    min-height: min(72svh, 18rem);
  }
}

@media (min-width: 1920px) {
  :root {
    --page-gutter: clamp(3rem, 3vw, 6rem);
    --component-pad: clamp(3.5rem, 4vw, 7rem);
  }

  .wordmark {
    width: 7rem;
  }

  .primary-nav a {
    font-size: 0.95rem;
  }

  .arrival-copy h1 {
    max-width: 10.5ch;
    font-size: clamp(7rem, 6.4vw, 10rem);
  }

  .work-intro h2,
  .method-intro h2 {
    font-size: clamp(5.5rem, 5.8vw, 8.5rem);
  }

  .study-entry h3 {
    font-size: clamp(5.5rem, 5.8vw, 8.75rem);
  }

  .authorship-copy h2,
  .inquiry-intro h2 {
    font-size: clamp(5.5rem, 5.5vw, 8.5rem);
  }

  .office-statement {
    font-size: clamp(4.5rem, 4vw, 7rem);
  }
}

@media (min-width: 2560px) {
  :root {
    --page-gutter: clamp(4rem, 3vw, 8rem);
    --component-pad: clamp(4rem, 4.5vw, 9rem);
  }

  .arrival-copy h1 {
    font-size: clamp(8.5rem, min(5.2vw, 14svh), 12rem);
  }

  .positioning {
    max-width: 54ch;
    font-size: clamp(1.25rem, 1.1vw, 1.65rem);
  }

  .identity-field {
    grid-template-rows: repeat(2, minmax(26rem, 1fr));
    min-height: min(68rem, 82svh);
  }

  .sequence-copy strong,
  .sequence-social strong {
    font-size: clamp(3.5rem, 3vw, 6.5rem);
  }
}

@media (min-width: 1920px) and (min-aspect-ratio: 21 / 9) {
  .arrival-shade {
    background: rgba(0, 0, 0, 0.34);
  }

  .arrival-copy h1 {
    font-size: clamp(7rem, min(5.5vw, 14svh), 11rem);
  }

  .hours-anchor {
    height: min(84svh, 68rem);
  }

  .public-sequence {
    height: min(72svh, 58rem);
    min-height: 0;
  }

  .authorship {
    grid-template-columns: 1.7fr 1fr;
    min-height: 86svh;
  }

  .authorship-image {
    min-height: 86svh;
  }
}

@media (min-width: 3840px) and (min-aspect-ratio: 3 / 1) {
  .arrival-copy h1 {
    max-width: 10ch;
    font-size: clamp(9rem, min(4.5vw, 13svh), 11.5rem);
  }

  .arrival-action {
    max-width: var(--page-rail);
  }

  .public-sequence {
    grid-template-columns: 1.45fr 0.72fr 1.12fr 0.82fr;
  }

  .authorship-copy > * {
    width: min(100%, 58rem);
    margin-right: auto;
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .method-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .method-artifact-stage {
    display: none;
  }

  .method-step {
    min-height: 0;
  }

  .method-inline-artifact {
    display: grid;
  }
}

@media (max-width: 352px) {
  .arrival-action {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    margin-top: 0.65rem;
  }

  .arrow-link {
    font-size: 0.72rem;
  }

  .audience-signature {
    justify-self: start;
    max-width: 25ch;
    font-size: 0.76rem;
    text-align: left;
  }

  .commission-link {
    gap: 0.75rem;
  }

  .method-step {
    grid-template-columns: 2rem minmax(0, 1fr);
    column-gap: 0.5rem;
  }

  .method-step h3 {
    font-size: clamp(2.35rem, 13vw, 3rem);
    letter-spacing: -0.055em;
  }

  .office-statement {
    font-size: clamp(2.35rem, 13vw, 3rem);
    letter-spacing: -0.045em;
  }

  .office-proof-red strong {
    font-size: 1.45rem;
  }
}

/* JavaScript is optional: keep the complete Method narrative visible without a frozen stage. */
.no-js .method-layout {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.no-js .method-artifact-stage {
  display: none;
}

.no-js .method-step {
  min-height: 0;
}

.no-js .method-inline-artifact {
  display: grid;
}

/* The selected Arial titles use the proportional tracking of the NIX. wordmark. */
#work-title,
#house-image-title,
#after-hours-title,
#public-sequence-title,
.sequence-copy strong,
.sequence-social strong,
#method-title,
[data-method-step="distill"] h3,
[data-method-step="design"] h3,
[data-method-step="capture"] h3,
[data-method-step="choreograph"] h3 {
  font-family: Arial, sans-serif;
  letter-spacing: var(--title-tracking);
}

/* Align the summary's A beneath the vertical stem, not the overhanging top bar, of the Arial T. */
.study-house .study-summary {
  margin-left: clamp(0.6825rem, 1.323vw, 1.26rem);
}

@media (max-width: 1120px) {
  .study-house .study-summary {
    margin-left: clamp(0.63rem, 3.15vw, 0.945rem);
  }
}

@media (min-width: 1920px) {
  .study-house .study-summary {
    margin-left: clamp(1.155rem, 1.218vw, 1.8375rem);
  }
}

/* Work navigation dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ivory);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 520;
  letter-spacing: 0.035em;
  cursor: pointer;
}

.nav-dropdown-icon {
  color: var(--signal-bright);
  font-size: 1rem;
  line-height: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  display: grid;
  min-width: 13rem;
  padding: 0.45rem;
  border: 1px solid var(--rule);
  background: var(--graphite-raised);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.35rem) scale(0.985);
  transform-origin: top left;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s 220ms;
}

.nav-dropdown-menu a {
  justify-content: flex-start;
  min-height: 48px;
  padding: 0 0.75rem;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a[aria-current="page"] {
  color: var(--ivory);
  background: color-mix(in srgb, var(--signal) 12%, transparent);
  box-shadow: inset 2px 0 0 var(--signal-bright);
}

.nav-dropdown[data-open="true"] .nav-dropdown-menu,
.no-js .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.nav-dropdown[data-open="true"] .nav-dropdown-toggle {
  color: var(--signal-bright);
}

.no-js .nav-dropdown-toggle {
  display: none;
}

.typography {
  padding: clamp(7rem, 12vw, 12rem) 0;
  border-bottom: 1px solid var(--rule);
}

.typography-intro {
  padding-right: var(--edge-right);
  padding-left: var(--edge-left);
}

.typography-intro h1,
.typography-intro h2 {
  grid-column: 1 / span 7;
  margin: 0;
  font-size: clamp(3.75rem, 6.5vw, 6rem);
  font-stretch: 80%;
  font-weight: 430;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

/* Main portfolio page-title preview: match the selected Arial title system. */
.typography-intro h1 {
  font-family: Arial, sans-serif;
  letter-spacing: var(--title-tracking);
}

.typography-page .site-header {
  border-color: var(--rule-soft);
  background-color: rgba(3, 3, 3, 0.96);
}

.typography-page .typography {
  min-height: 100dvh;
  padding-top: calc(var(--header-height) + var(--safe-top) + clamp(4rem, 8vw, 8rem));
}

.typography-intro p {
  grid-column: 9 / -1;
  align-self: end;
  max-width: 33rem;
  margin: 0;
  color: var(--smoke);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.55;
}

.typography-gallery {
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  margin-top: clamp(4rem, 7vw, 7rem);
  padding-right: var(--edge-right);
  padding-left: var(--edge-left);
}

.typography-piece {
  margin: 0;
}

.typography-piece img {
  width: 100%;
  height: auto;
  border: 1px solid var(--rule-soft);
  background: var(--ivory);
  object-fit: contain;
}

.typography-piece figcaption {
  padding-top: 0.8rem;
  color: var(--smoke);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.typography-project-intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: clamp(3rem, 6vw, 6rem);
  padding-top: clamp(2rem, 4vw, 4rem);
  border-top: 1px solid var(--rule);
}

.typography-project-intro h2 {
  grid-column: 1 / span 7;
  margin: 0;
  font-size: clamp(2.75rem, 5vw, 5rem);
  font-stretch: 80%;
  font-weight: 430;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.typography-project-intro p {
  grid-column: 9 / -1;
  align-self: end;
  margin: 0;
  color: var(--smoke);
  line-height: 1.55;
}

.typography-expressive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.typography-publication-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem) clamp(1rem, 2vw, 2rem);
}

.editorial-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem) clamp(1rem, 2vw, 2rem);
  align-items: start;
}

.photography-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  align-items: start;
}

.photography-piece {
  grid-column: span 3;
  margin: 0;
  overflow: hidden;
  background: var(--graphite-raised);
}

.photography-piece-three-up {
  grid-column: span 2;
}

.photography-piece-wide {
  grid-column: 1 / -1;
}

.photography-piece img {
  display: block;
  width: 100%;
  height: auto;
}

.photography-piece figcaption {
  padding-top: 0.65rem;
  background: var(--black);
  color: var(--smoke);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.photography-crop img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: 74% 50%;
}

.typography-piece img[role="button"],
.photography-piece img[role="button"] {
  cursor: zoom-in;
  transition: filter 180ms ease;
}

.typography-piece img[role="button"]:focus-visible,
.photography-piece img[role="button"]:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

.lightbox-open {
  overflow: hidden;
}

.portfolio-lightbox[hidden] {
  display: none;
}

.portfolio-lightbox-nav[hidden] {
  display: none;
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: max(1rem, var(--safe-top)) max(1rem, var(--safe-right)) max(1rem, var(--safe-bottom)) max(1rem, var(--safe-left));
  background: rgb(3 3 3 / 96%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.portfolio-lightbox[data-open="true"] {
  opacity: 1;
}

.portfolio-lightbox-figure {
  display: grid;
  gap: 0.85rem;
  place-items: center;
  width: min(88vw, 110rem);
  max-height: calc(100dvh - 7rem);
  margin: 0;
  touch-action: pan-y;
  user-select: none;
}

.portfolio-lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100dvh - 10rem);
  border: 1px solid var(--rule-soft);
  object-fit: contain;
}

.portfolio-lightbox-caption {
  max-width: 52rem;
  color: var(--smoke);
  font-size: 0.8rem;
  letter-spacing: 0.035em;
  line-height: 1.45;
  text-align: center;
}

.portfolio-lightbox-meta {
  position: absolute;
  top: max(1rem, var(--safe-top));
  left: max(1rem, var(--safe-left));
  color: var(--smoke);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.portfolio-lightbox-close,
.portfolio-lightbox-nav {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--rule);
  background: rgb(24 24 24 / 86%);
  color: var(--ivory);
  font: inherit;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.portfolio-lightbox-close {
  top: max(1rem, var(--safe-top));
  right: max(1rem, var(--safe-right));
  font-size: 1.6rem;
}

.portfolio-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

.portfolio-lightbox-prev {
  left: max(1rem, var(--safe-left));
}

.portfolio-lightbox-next {
  right: max(1rem, var(--safe-right));
}

@media (hover: hover) and (pointer: fine) {
  .typography-piece img[role="button"]:hover,
  .photography-piece img[role="button"]:hover {
    filter: brightness(0.92);
  }

  .portfolio-lightbox-close:hover,
  .portfolio-lightbox-nav:hover {
    border-color: var(--signal-bright);
    background: var(--graphite-raised);
    color: var(--signal-bright);
  }
}

@media (max-width: 48rem) {
  [data-method-step="choreograph"] h3 {
    font-size: clamp(2.75rem, 12vw, 3.25rem);
  }

  #work-title span {
    display: block;
    width: max-content;
    max-width: 100%;
  }

  #work-title span + span {
    transform: translateX(-0.035em);
  }

  .portfolio-lightbox-figure {
    width: calc(100vw - 2rem);
    max-height: calc(100dvh - 8rem);
  }

  .portfolio-lightbox-image {
    max-height: calc(100dvh - 12rem);
  }

}

@media (prefers-reduced-motion: reduce) {
  .portfolio-lightbox,
  .portfolio-lightbox-close,
  .portfolio-lightbox-nav,
  .typography-piece img[role="button"],
  .photography-piece img[role="button"] {
    transition: none;
  }
}

.typography-rights-note {
  max-width: 62rem;
  margin: -1rem 0 0;
  color: #8c8882;
  font-size: 0.78rem;
  line-height: 1.5;
}

/* Balanced spacing shared by the dedicated portfolio pages. */
body.typography-page .typography {
  padding-bottom: clamp(5rem, 8vw, 7rem);
}

body.typography-page .typography-gallery {
  gap: clamp(2rem, 3.5vw, 3.75rem);
  margin-top: clamp(3rem, 5vw, 5rem);
}

body.typography-page .typography-project-intro {
  margin-top: clamp(2.5rem, 4vw, 4.5rem);
  padding-top: clamp(1.75rem, 3vw, 3rem);
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

body.typography-page .typography-piece figcaption {
  padding-top: 0.65rem;
}

body.typography-page .typography-rights-note {
  margin-top: -0.25rem;
}

/* Spacious editorial rhythm for the dedicated portfolio pages on mobile. */
@media (max-width: 48rem) {
  body.typography-page .typography {
    padding-top: calc(var(--header-height) + var(--safe-top) + 4.75rem);
    padding-bottom: 5.5rem;
  }

  body.typography-page .typography-intro h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 13vw, 3.25rem);
    line-height: 0.96;
  }

  body.typography-page .typography-intro p {
    max-width: 28rem;
    margin-top: 1.35rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  body.typography-page .typography-gallery {
    gap: 2.35rem;
    margin-top: 4.5rem;
  }

  body.typography-page .typography-project-intro {
    margin-top: 4.75rem;
    padding-top: 2rem;
  }

  body.typography-page .typography-project-intro:first-child {
    margin-top: 0;
  }

  body.typography-page .typography-project-intro h2 {
    max-width: 10ch;
    font-size: clamp(2.5rem, 11vw, 3.25rem);
    line-height: 0.98;
  }

  body.typography-page .typography-project-intro p {
    max-width: 30rem;
    margin-top: 1.15rem;
    line-height: 1.6;
  }

  body.typography-page .typography-piece figcaption {
    padding-top: 0.75rem;
    font-size: 0.75rem;
    line-height: 1.45;
  }

  body.typography-page .typography-expressive-grid,
  body.typography-page .typography-publication-grid,
  body.typography-page .editorial-support-grid,
  body.typography-page .photography-grid {
    gap: 2.35rem;
  }

  body.typography-page .typography-rights-note {
    margin-top: 0.25rem;
    line-height: 1.6;
  }
}

@media (hover: hover) and (pointer: fine) {
  .nav-dropdown-menu a:hover {
    background: var(--rule-soft);
    color: var(--signal-bright);
  }
}

@media (max-width: 48rem), (orientation: landscape) and (max-height: 512px) and (max-width: 1024px) {
  .typography-publication-grid,
  .editorial-support-grid {
    grid-template-columns: 1fr;
  }

  .photography-grid {
    grid-template-columns: 1fr;
  }

  .photography-piece,
  .photography-piece-three-up,
  .photography-piece-wide {
    grid-column: 1 / -1;
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
    min-height: 56px;
    border-top: 1px solid var(--rule-soft);
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 0.5rem 1rem;
    border: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown[data-open="true"] .nav-dropdown-menu,
  .no-js .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown-menu a {
    min-height: 48px;
    border-top: 1px solid var(--rule-soft);
    color: var(--smoke);
  }

  .typography-intro h1,
  .typography-intro h2,
  .typography-intro p {
    grid-column: 1;
  }

  .typography-intro p {
    margin-top: 1.5rem;
  }

  .typography-project-intro {
    grid-template-columns: 1fr;
  }

  .typography-project-intro h2,
  .typography-project-intro p {
    grid-column: 1;
  }

  .typography-project-intro p {
    margin-top: 1rem;
  }
}

/* Sequenced hero: copy rises into a pin beneath the header, then the image releases behind it. */
.arrival.has-parallax {
  min-height: 160dvh;
  overflow: clip;
}

.arrival.has-parallax .arrival-visual {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 135dvh;
  overflow: visible;
}

.arrival-stage {
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow: hidden;
}

.arrival.has-parallax .arrival-copy {
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  width: 100%;
  /* Release the pinned headline before the anchored calls-to-action begin
     their final exit, preserving a clean editorial handoff into the work. */
  height: calc(100% - 50dvh);
  min-height: 0;
  padding: 0 var(--edge-right) max(1.25rem, var(--safe-bottom)) var(--edge-left);
  pointer-events: none;
}

.arrival-copy-inner {
  position: sticky;
  top: calc(var(--header-height) + var(--safe-top) + 1rem);
  z-index: 3;
  width: 100%;
  margin-top: 42dvh;
  pointer-events: auto;
}

.arrival-action-layer {
  --arrival-action-y: 77.3dvh;
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  padding-right: var(--edge-right);
  padding-left: var(--edge-left);
  pointer-events: none;
}

.arrival-action-layer .arrival-action {
  position: sticky;
  top: var(--arrival-action-y);
  margin-top: var(--arrival-action-y);
  pointer-events: auto;
}

@media (max-width: 48rem) {
  .arrival.has-parallax {
    min-height: 165dvh;
  }

  .arrival.has-parallax .arrival-visual {
    height: 137dvh;
  }

  .arrival-copy-inner {
    top: calc(var(--header-height) + var(--safe-top) + 0.85rem);
    margin-top: 38dvh;
  }

  .arrival-action-layer {
    --arrival-action-y: 69.8dvh;
  }
}

@media (orientation: landscape) and (max-height: 512px) and (max-width: 1024px) {
  .arrival.has-parallax {
    min-height: 170dvh;
  }

  .arrival.has-parallax .arrival-visual {
    height: 140dvh;
  }

  .arrival-copy-inner {
    top: calc(var(--header-height) + var(--safe-top) + 0.4rem);
    margin-top: 28dvh;
  }

  .arrival-action-layer {
    --arrival-action-y: 63.2dvh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .arrival.has-parallax {
    min-height: 100dvh;
  }

  .arrival.has-parallax .arrival-visual,
  .arrival-stage {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
  }

  .arrival.has-parallax .arrival-copy {
    display: flex;
    inset: 0;
    height: 100%;
    min-height: 100dvh;
    padding-top: calc(var(--header-height) + var(--safe-top) + 4rem);
    padding-right: var(--edge-right);
    padding-bottom: max(clamp(2rem, 5vw, 4.5rem), var(--safe-bottom));
    padding-left: var(--edge-left);
  }

  .arrival-copy-inner {
    position: static;
    margin-top: 0;
  }

  .arrival-action-layer {
    position: static;
    margin-top: clamp(2rem, 4vw, 3.5rem);
  }

  .arrival-action-layer .arrival-action {
    position: static;
    margin-top: 0;
  }
}
