:root {
  --paper: #f8f7f4;
  --beige: #e8e4dc;
  --ink: #1d1d1d;
  --blue: #0230a7;
  --oxide: #b13a2f;
  --line: rgba(248, 247, 244, 0.52);
  --muted: #767675;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

button {
  color: inherit;
  font: inherit;
}

.visual-home {
  min-height: 100vh;
  overflow: hidden;
}

.visual-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto 0;
  height: 92px;
  padding: 18px 28px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 36px;
  align-items: start;
  color: var(--ink);
  transition: color 180ms ease;
}

.has-stage-image .visual-header {
  color: var(--paper);
}

.visual-brand {
  width: max-content;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 0.95;
  text-transform: lowercase;
}

.visual-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  font-size: 11px;
  font-weight: 700;
}

.visual-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  text-transform: lowercase;
}

.visual-nav a,
.visual-language button {
  position: relative;
}

.visual-nav a::after,
.visual-language button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transition: right 180ms ease;
}

.visual-nav a:hover::after,
.visual-language button:hover::after,
.visual-language button.active::after {
  right: 0;
}

.visual-language {
  display: flex;
  gap: 8px;
}

.visual-language button,
.index-switch button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-transform: lowercase;
}

.visual-language button {
  font-size: 13px;
}

.visual-stage {
  position: relative;
  min-height: 100vh;
  color: var(--ink);
  background: var(--beige);
  transition: color 180ms ease;
}

.has-stage-image .visual-stage {
  color: var(--paper);
}

.stage-media,
.stage-media img,
.stage-tint {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.stage-media {
  overflow: hidden;
  background: var(--beige);
}

.stage-media img {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.015);
  filter: saturate(0.88) contrast(1.02);
  transition: opacity 260ms ease, transform 900ms cubic-bezier(0.2, 0.7, 0, 1);
}

.has-stage-image .stage-media img {
  opacity: 1;
}

.stage-media img.switching {
  opacity: 0;
  transform: scale(1.04);
}

.stage-tint {
  background:
    linear-gradient(to top, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.05) 58%),
    linear-gradient(to right, rgba(10, 10, 10, 0.16), transparent 55%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.has-stage-image .stage-tint {
  opacity: 1;
}

.stage-caption {
  position: absolute;
  z-index: 3;
  left: 28px;
  top: 104px;
  display: grid;
  gap: 4px;
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
}

.stage-caption span:last-child {
  color: var(--muted);
}

.has-stage-image .stage-caption span:last-child {
  color: rgba(248, 247, 244, 0.66);
}

.stage-about {
  position: absolute;
  z-index: 6;
  top: 104px;
  right: 28px;
  width: min(430px, calc(100vw - 56px));
}

.stage-about summary {
  width: max-content;
  margin-left: auto;
  padding: 0 0 6px;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  list-style: none;
  font-size: 11px;
  text-transform: uppercase;
}

.stage-about summary::after {
  content: " +";
}

.stage-about[open] summary::after {
  content: " −";
}

.stage-about > div {
  margin-top: 12px;
  padding: 22px;
  color: var(--ink);
  background: rgba(248, 247, 244, 0.95);
}

.stage-about h2 {
  margin: 0 0 40px;
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 400;
  line-height: 0.9;
}

.stage-about p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
}

.visual-index {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 24px;
  left: 28px;
}

.index-switch {
  margin-bottom: 12px;
  display: flex;
  gap: 20px;
}

.index-switch button {
  color: rgba(29, 29, 29, 0.46);
  font-size: clamp(24px, 2.3vw, 38px);
  line-height: 1;
}

.index-switch button.active {
  color: var(--ink);
}

.has-stage-image .index-switch button {
  color: rgba(248, 247, 244, 0.55);
}

.has-stage-image .index-switch button.active {
  color: var(--paper);
}

.index-panel {
  border-top: 1px solid rgba(29, 29, 29, 0.3);
}

.has-stage-image .index-panel {
  border-top-color: var(--line);
}

.index-row {
  min-height: 76px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 230px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(29, 29, 29, 0.3);
  color: rgba(29, 29, 29, 0.58);
  transition: color 180ms ease, padding-left 180ms ease;
}

.index-row:hover,
.index-row.active {
  padding-left: 10px;
  color: var(--blue);
}

.has-stage-image .index-row {
  border-bottom-color: var(--line);
  color: rgba(248, 247, 244, 0.58);
}

.has-stage-image .index-row:hover,
.has-stage-image .index-row.active {
  color: var(--paper);
}

.index-row span {
  font-size: 12px;
}

.index-row strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: clamp(30px, 4.3vw, 72px);
  font-weight: 400;
  line-height: 0.9;
}

.index-row em {
  justify-self: end;
  font-size: 12px;
  font-style: normal;
  text-align: right;
  text-transform: uppercase;
}

.page-wipe {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: var(--blue);
  transform: translateY(100%);
  transition: transform 360ms cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}

body.is-leaving .page-wipe {
  transform: translateY(0);
}

.visual-cursor {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid var(--oxide);
  background: rgba(177, 58, 47, 0.14);
  box-shadow: inset 0 0 0 1px rgba(177, 58, 47, 0.08);
  opacity: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  mix-blend-mode: multiply;
  backdrop-filter: saturate(1.16) contrast(1.03);
  transition:
    width 90ms ease,
    height 90ms ease,
    background 90ms ease,
    border-color 90ms ease,
    box-shadow 90ms ease,
    opacity 90ms ease,
    transform 60ms ease;
}

.visual-cursor.visible {
  opacity: 1;
}

.visual-cursor.active {
  width: 28px;
  height: 28px;
  border-color: var(--blue);
  background: rgba(177, 58, 47, 0.2);
  box-shadow: inset 0 0 0 2px rgba(2, 48, 167, 0.22);
  transform: translate(-50%, -50%);
}

.visual-cursor.pressed {
  width: 10px;
  height: 10px;
  background: rgba(2, 48, 167, 0.22);
  transform: translate(-50%, -50%);
}

.cursor-blue {
  color: var(--blue) !important;
  transition: color 90ms linear;
}

.project-code {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.inner-page {
  min-height: 100vh;
  background: var(--paper);
}

.inner-page .visual-header {
  color: var(--ink);
  mix-blend-mode: normal;
}

.inner-main {
  padding: 124px 28px 60px;
}

.inner-kicker {
  margin: 0 0 28px;
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
}

.inner-title {
  max-width: 1200px;
  margin: 0;
  font-size: clamp(56px, 10vw, 170px);
  font-weight: 400;
  line-height: 0.82;
}

.practice-lead {
  min-height: calc(100vh - 124px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 60px;
  align-items: end;
  padding-bottom: 54px;
}

.practice-copy {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.practice-copy p {
  margin: 0 0 18px;
}

.method-block {
  padding: 42px 0 80px;
  border-top: 1px solid #d8d5cc;
}

.method-block > header {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.method-block h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 94px);
  font-weight: 400;
  line-height: 0.9;
}

.method-rows {
  border-bottom: 1px solid #d8d5cc;
}

.method-row {
  min-height: 116px;
  display: grid;
  grid-template-columns: 60px minmax(250px, 0.7fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: center;
  border-top: 1px solid #d8d5cc;
}

.method-row span {
  color: var(--blue);
}

.method-row strong {
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 400;
  line-height: 0.95;
}

.method-row p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.4;
}

.profile-strip {
  padding: 54px 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  border-top: 1px solid #d8d5cc;
}

.profile-strip h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 90px);
  font-weight: 400;
  line-height: 0.9;
}

.profile-strip div {
  align-self: end;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.project-page {
  min-height: 100vh;
  background: var(--ink);
  color: var(--paper);
}

.project-page .visual-header {
  color: var(--paper);
  mix-blend-mode: difference;
}

.project-page.no-project-image {
  color: var(--ink);
  background: var(--beige);
}

.project-page.no-project-image .visual-header {
  color: var(--ink);
  mix-blend-mode: normal;
}

.project-page.no-project-image .project-hero {
  background: var(--beige);
}

.project-page.no-project-image .project-hero > img,
.project-page.no-project-image .project-overlay {
  display: none;
}

.project-hero {
  position: relative;
  min-height: 100vh;
}

.project-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.74), transparent 62%);
}

.project-heading {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 30px;
  align-items: end;
}

.project-heading h1 {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(62px, 9vw, 158px);
  font-weight: 400;
  line-height: 0.82;
}

.project-heading p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  text-align: right;
  text-transform: uppercase;
}

.project-scroll {
  display: inline-block;
  margin-top: 8px;
  border-bottom: 1px solid currentColor;
}

.project-info {
  padding: 30px 28px 80px;
  color: var(--ink);
  background: var(--paper);
}

.project-info details {
  border-top: 1px solid #d8d5cc;
  border-bottom: 1px solid #d8d5cc;
}

.project-info summary {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  text-transform: uppercase;
}

.project-info summary::after {
  content: "+";
  color: var(--blue);
  font-size: 22px;
}

.project-info details[open] summary::after {
  content: "−";
}

.project-info-content {
  max-width: 760px;
  padding: 18px 0 42px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.objects-hero {
  min-height: 72vh;
  padding: 124px 28px 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(480px, 1fr);
  gap: 40px;
  align-items: end;
}

.objects-hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
}

.objects-visual-grid {
  height: min(62vh, 620px);
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1px;
  background: #d8d5cc;
  overflow: hidden;
}

.objects-hero h1 {
  margin: 0;
  font-size: clamp(58px, 8vw, 130px);
  font-weight: 400;
  line-height: 0.84;
}

.objects-index {
  padding: 28px;
  border-top: 1px solid #d8d5cc;
}

.objects-row {
  padding: 26px 0;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 220px;
  gap: 20px;
  border-bottom: 1px solid #d8d5cc;
  align-items: center;
}

.objects-row strong {
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.92;
}

.objects-row em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  text-align: right;
  text-transform: uppercase;
}

.content-page {
  --line: #d8d5cc;
  --soft: #ece9e1;
  cursor: none;
}

@media (pointer: fine) {
  body {
    cursor: none;
  }

  a,
  button,
  summary {
    cursor: none;
  }
}

.content-page .visual-header {
  color: var(--ink);
  background: rgba(248, 247, 244, 0.97);
  border-bottom: 1px solid var(--line);
  mix-blend-mode: normal;
}

.content-main {
  padding-top: 92px;
}

.content-main > section,
.content-main > footer {
  border-bottom: 1px solid var(--line);
}

.content-page-title {
  min-height: 38vh;
  padding: 56px 28px 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid var(--line);
}

.content-page-title h1 {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(64px, 10vw, 164px);
  font-weight: 400;
  line-height: 0.82;
}

.content-main h2,
.content-main p {
  margin-top: 0;
}

.content-main h2 {
  margin-bottom: 0;
  font-size: clamp(46px, 5.8vw, 88px);
  font-weight: 400;
  line-height: 0.9;
}

.content-main .intro {
  min-height: calc(100vh - 92px);
  padding: 70px 28px 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 70px;
  align-content: end;
}

.content-main .intro > .meta {
  grid-column: 1 / -1;
  align-self: start;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.content-main .intro h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(64px, 9vw, 146px);
  font-weight: 400;
  line-height: 0.84;
}

.content-main .intro-copy {
  align-self: end;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.content-main .intro-copy p {
  margin-bottom: 0;
}

.content-main .intro-copy p + p {
  margin-top: 24px;
}

.content-main .statement {
  min-height: 520px;
  padding: 56px 28px 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 70px;
}

.content-main .big-line {
  max-width: 930px;
  margin: 0;
  font-size: clamp(40px, 4.8vw, 76px);
  line-height: 0.94;
}

.content-main .statement-grid {
  align-self: end;
  display: grid;
  gap: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.42;
}

.content-main .statement-grid p {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.content-main .profile-section,
.content-main .architecture-section,
.content-main .method-section,
.content-main .capabilities-section,
.content-main .market-notes-section,
.content-main .field-notes,
.content-main .materials,
.content-main .objects {
  padding: 48px 28px 76px;
}

.content-main .section-head {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.content-main .section-head p {
  margin: 0;
}

.content-main .profile-grid,
.content-main .architecture-grid,
.content-main .method-intro,
.content-main .market-notes-grid,
.content-main .material-grid,
.content-main .object-intro,
.content-main .collection-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 70px;
}

.content-main .profile-copy,
.content-main .architecture-copy,
.content-main .method-intro > p,
.content-main .market-note-copy,
.content-main .object-intro > p {
  align-self: end;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.content-main .profile-copy p,
.content-main .architecture-copy p,
.content-main .market-note-copy p {
  margin-bottom: 22px;
}

.content-main .profile-trajectory {
  margin-top: 58px;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 36px;
  align-items: stretch;
}

.content-main .profile-portrait {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--beige);
}

.content-main .profile-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 54% 36%;
}

.content-main .profile-panel {
  min-height: 100%;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.content-main .profile-panel-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.content-main .profile-panel h3 {
  margin: 0 0 18px;
  max-width: 12ch;
  font-size: clamp(34px, 3.7vw, 58px);
  font-weight: 400;
  line-height: 0.96;
}

.content-main .profile-panel-copy {
  margin: 0 0 28px;
  max-width: 34rem;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.45;
}

.content-main .profile-facts {
  margin: 0;
  display: grid;
  gap: 18px;
}

.content-main .profile-facts div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
}

.content-main .profile-facts dt {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.content-main .profile-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.42;
}

.content-main .method-list,
.content-main .architecture-list {
  margin-top: 66px;
  border-bottom: 1px solid var(--line);
}

.content-main .architecture-diagram {
  position: relative;
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-left: 0;
}

.content-main .architecture-diagram::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  border-top: 1px solid rgba(32, 70, 196, 0.18);
  pointer-events: none;
}

.content-main .architecture-diagram article {
  position: relative;
  min-height: 340px;
  padding: 24px 26px 28px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
  background: rgba(248, 247, 244, 0.72);
  border-left: 1px solid var(--line);
}

.content-main .architecture-diagram article::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: -5px;
  width: 10px;
  height: 10px;
  background: var(--paper);
  border: 1px solid rgba(32, 70, 196, 0.24);
}

.content-main .architecture-diagram article:last-child::after {
  display: none;
}

.content-main .architecture-diagram span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.content-main .architecture-diagram strong {
  max-width: 9ch;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 0.96;
}

.content-main .architecture-diagram p {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.42;
}

.content-main .architecture-diagram-caption {
  display: flex;
  justify-content: flex-end;
  padding-top: 16px;
}

.content-main .architecture-diagram-caption p {
  max-width: 36rem;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
  text-align: right;
}

.content-main .method-list > div,
.content-main .architecture-list > div {
  min-height: 118px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 64px minmax(240px, 0.72fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: baseline;
  border-top: 1px solid var(--line);
}

.content-main .method-list span,
.content-main .architecture-list span {
  color: var(--blue);
  font-weight: 700;
}

.content-main .method-list strong,
.content-main .architecture-list strong {
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 400;
  line-height: 0.98;
}

.content-main .method-list p,
.content-main .architecture-list p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.42;
}

.content-main .capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.content-main .capability-grid article {
  min-height: 230px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.content-main .capability-grid span {
  color: var(--blue);
  font-weight: 700;
}

.content-main .capability-grid p {
  margin: 58px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.42;
}

.content-main .note-entry {
  border-top: 1px solid var(--line);
}

.content-main .note-entry:last-child {
  border-bottom: 1px solid var(--line);
}

.content-main .note-title {
  width: 100%;
  min-height: 104px;
  padding: 0;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 230px;
  gap: 18px;
  align-items: baseline;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.content-main .note-title span {
  color: var(--blue);
  font-weight: 700;
}

.content-main .note-title strong {
  max-width: 780px;
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 0.96;
}

.content-main .note-title em {
  color: var(--muted);
  font-style: normal;
}

.content-main .note-title:hover,
.content-main .note-title[aria-expanded="true"] {
  color: var(--blue);
}

.content-main .note-body {
  display: none;
  max-width: 900px;
  margin-left: 80px;
  padding: 0 0 48px;
  font-size: 19px;
  line-height: 1.5;
}

.content-main .note-body.visible {
  display: block;
}

.content-main .material-list {
  align-self: end;
  border-bottom: 1px solid var(--line);
  font-size: 20px;
  line-height: 1.35;
}

.content-main .material-list p {
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.content-main .material-list b {
  color: var(--blue);
}

.content-main .object-intro > p {
  margin: 0;
}

.object-editorial-visual {
  height: clamp(420px, 54vw, 720px);
  margin-top: 58px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr 0.9fr;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.object-editorial-visual img {
  width: 100%;
  height: 100%;
  padding: 3%;
  object-fit: contain;
  background: var(--soft);
  mix-blend-mode: multiply;
  filter: contrast(1.03) saturate(0.94);
}

.content-main .market-tabs {
  margin-top: 58px;
  display: flex;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.content-main .market-tabs button {
  min-width: 150px;
  padding: 18px 28px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}

.content-main .market-tabs button:hover,
.content-main .market-tabs button.active {
  color: var(--paper);
  background: var(--blue);
}

.content-main .market-panel {
  display: none;
}

.content-main .market-panel.active {
  display: block;
}

.content-main .collection-head {
  min-height: 210px;
  padding: 34px 0 42px;
  align-items: end;
}

.content-main .collection-head p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.content-main .chair-list {
  border-bottom: 1px solid var(--line);
}

.content-main .chair-row {
  min-height: 102px;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 58px minmax(210px, 0.8fr) minmax(150px, 0.5fr) minmax(280px, 1.1fr);
  gap: 22px;
  align-items: baseline;
  border-top: 1px solid var(--line);
}

.content-main .chair-row span {
  color: var(--blue);
  font-weight: 700;
}

.content-main .chair-row strong {
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 400;
  line-height: 0.98;
}

.content-main .chair-row p,
.content-main .chair-row em {
  margin: 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.35;
}

.content-main .chair-row:hover {
  color: var(--blue);
}

.content-footer {
  min-height: 230px;
  padding: 54px 28px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.content-footer p {
  margin-bottom: 0;
}

.content-footer a {
  border-bottom: 1px solid currentColor;
}

.contact-main {
  min-height: 100vh;
  padding-top: 92px;
  display: grid;
  grid-template-rows: minmax(420px, 1fr) auto auto;
}

.contact-intro {
  padding: 64px 28px 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 60px;
  align-content: end;
  border-bottom: 1px solid var(--line);
}

.contact-intro .inner-kicker {
  grid-column: 1 / -1;
  align-self: start;
}

.contact-intro h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(72px, 11vw, 176px);
  font-weight: 400;
  line-height: 0.82;
}

.contact-lead {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.contact-links {
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
}

.contact-links a {
  min-height: 92px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 58px minmax(180px, 0.5fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.contact-links a:first-child {
  border-top: 0;
}

.contact-links span {
  color: var(--blue);
  font-weight: 700;
}

.contact-links strong {
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 400;
}

.contact-links em {
  justify-self: end;
  color: var(--muted);
  font-style: normal;
  text-align: right;
}

.contact-signature {
  min-height: 120px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.contact-signature p {
  margin: 0;
}

@media (max-width: 1040px) {
  .content-main .statement,
  .content-main .intro,
  .content-main .profile-grid,
  .content-main .architecture-grid,
  .content-main .method-intro,
  .content-main .market-notes-grid,
  .content-main .material-grid,
  .content-main .object-intro,
  .content-main .collection-head {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .content-main .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-main .architecture-diagram {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-main .architecture-diagram article:last-child {
    grid-column: 1 / -1;
  }

  .market-visual-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .field-notes-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-main .method-list > div,
  .content-main .architecture-list > div {
    grid-template-columns: 56px minmax(200px, 0.8fr) minmax(240px, 1fr);
  }

  .content-main .chair-row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .content-main .chair-row p,
  .content-main .chair-row em {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .visual-home {
    overflow: auto;
  }

  .visual-header {
    height: 132px;
    padding: 16px 18px;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 12px 14px;
  }

  .visual-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    gap: 18px;
    font-size: 13px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .visual-language {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .visual-stage {
    min-height: 100svh;
  }

  .stage-caption {
    top: 138px;
    left: 18px;
  }

  .stage-about {
    top: 138px;
    right: 18px;
    width: calc(100vw - 36px);
  }

  .stage-about > div {
    margin-top: 10px;
  }

  .visual-index {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .index-row {
    min-height: 66px;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
  }

  .index-row strong {
    font-size: clamp(30px, 9vw, 48px);
  }

  .index-row em {
    display: none;
  }

  .visual-cursor {
    display: none;
  }

  .inner-main {
    padding: 154px 18px 42px;
  }

  .practice-lead {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 70px;
  }

  .method-block > header,
  .profile-strip,
  .project-heading,
  .objects-hero {
    grid-template-columns: 1fr;
  }

  .method-row {
    padding: 24px 0;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .method-row p {
    grid-column: 2;
  }

  .project-heading {
    right: 18px;
    bottom: 20px;
    left: 18px;
  }

  .project-heading p {
    text-align: left;
  }

  .project-info {
    padding-right: 18px;
    padding-left: 18px;
  }

  .objects-hero {
    padding: 154px 18px 28px;
  }

  .objects-visual-grid {
    height: 46vh;
    min-height: 360px;
  }

  .objects-index {
    padding: 18px;
  }

  .objects-row {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .objects-row em {
    grid-column: 2;
    text-align: left;
  }

  .content-main {
    padding-top: 132px;
  }

  .content-page-title {
    min-height: 34vh;
    padding: 42px 18px 30px;
  }

  .content-page-title h1 {
    font-size: clamp(58px, 19vw, 100px);
  }

  .content-main .statement,
  .content-main .intro,
  .content-main .profile-section,
  .content-main .architecture-section,
  .content-main .method-section,
  .content-main .capabilities-section,
  .content-main .market-notes-section,
  .content-main .field-notes,
  .content-main .materials,
  .content-main .objects {
    padding-right: 18px;
    padding-left: 18px;
  }

  .content-main .statement {
    min-height: 0;
  }

  .content-main .intro {
    min-height: calc(100svh - 132px);
    padding: 48px 18px 44px;
  }

  .content-main .method-list > div,
  .content-main .architecture-list > div,
  .content-main .note-title {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    padding: 24px 0;
  }

  .content-main .method-list p,
  .content-main .architecture-list p,
  .content-main .note-title em {
    grid-column: 2;
  }

  .content-main .note-body {
    margin-left: 38px;
    font-size: 18px;
  }

  .content-main .capability-grid {
    grid-template-columns: 1fr;
  }

  .content-main .profile-trajectory,
  .content-main .profile-facts div {
    grid-template-columns: 1fr;
  }

  .content-main .profile-panel h3 {
    max-width: 14ch;
  }

  .content-main .architecture-diagram {
    grid-template-columns: 1fr;
    border-left: 1px solid var(--line);
  }

  .content-main .architecture-diagram::before,
  .content-main .architecture-diagram article::after {
    display: none;
  }

  .content-main .architecture-diagram article,
  .content-main .architecture-diagram article:last-child {
    min-height: 0;
    grid-column: 1;
  }

  .content-main .architecture-diagram-caption {
    justify-content: flex-start;
  }

  .content-main .architecture-diagram-caption p {
    text-align: left;
  }

  .object-editorial-visual {
    height: auto;
    grid-template-columns: 1fr;
  }

  .object-editorial-visual img {
    height: 52vh;
    min-height: 360px;
  }

  .content-main .market-tabs {
    overflow-x: auto;
  }

  .content-main .collection-head {
    min-height: 0;
  }

  .content-footer {
    display: grid;
    gap: 36px;
  }

  .contact-main {
    padding-top: 132px;
  }

  .contact-intro {
    padding: 46px 18px 38px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-intro .inner-kicker {
    grid-column: auto;
  }

  .contact-intro h1 {
    font-size: clamp(64px, 20vw, 112px);
  }

  .contact-links {
    padding: 0 18px;
  }

  .contact-links a {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .contact-links em {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .contact-signature {
    padding: 28px 18px;
    display: grid;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Editorial journal */
.journal-index-intro {
  max-width: 720px;
  margin: 0 0 54px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.42;
}

.journal-note-list {
  border-top: 1px solid var(--line);
}

.market-visual-panel {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 12px;
}

.market-visual-panel figure {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft);
}

.market-visual-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.field-notes-strip {
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.field-notes-strip a {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}

.field-notes-strip img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.field-notes-strip a:hover img {
  transform: scale(1.03);
}

.journal-note-link {
  min-height: 132px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 190px 110px;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: color 140ms ease, padding-left 140ms ease;
}

.journal-note-link:hover {
  padding-left: 10px;
  color: var(--blue);
}

.journal-note-link > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.journal-note-link strong {
  max-width: 980px;
  font-size: clamp(36px, 4.7vw, 76px);
  font-weight: 400;
  line-height: 0.92;
}

.journal-note-link em,
.journal-note-link b {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}

.journal-note-link em {
  color: var(--muted);
}

.journal-note-link b {
  justify-self: end;
  border-bottom: 1px solid currentColor;
}

.materials-gateway {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 40px;
  align-items: end;
}

.materials-gateway > div {
  align-self: start;
}

.materials-gateway h2 {
  max-width: 850px;
}

.materials-gateway p {
  max-width: 660px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.42;
}

.materials-gateway img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.materials-gateway.media-placeholder > img {
  display: none;
}

.materials-gateway.media-placeholder::after {
  content: "";
  width: 100%;
  aspect-ratio: 3 / 2;
  display: block;
  background: var(--beige);
}

.materials-gateway > span {
  grid-column: 1 / -1;
  justify-self: end;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  font-size: 13px;
  text-transform: uppercase;
}

/* Field note articles */
.article-main,
.materials-main,
.objects-main {
  padding-top: 92px;
}

.article-hero {
  min-height: 72vh;
  padding: 36px 28px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid var(--line);
}

.article-meta {
  margin-bottom: auto;
  display: flex;
  justify-content: space-between;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.article-meta a {
  border-bottom: 1px solid currentColor;
}

.article-hero h1 {
  max-width: 1450px;
  margin: 0;
  font-size: clamp(68px, 10vw, 172px);
  font-weight: 400;
  line-height: 0.82;
}

.article-deck {
  max-width: 720px;
  margin: 38px 0 0 auto;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.28;
}

.article-image,
.materials-figure {
  margin: 0;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.article-image.media-placeholder::before,
.materials-figure.media-placeholder::before {
  content: "";
  width: 100%;
  aspect-ratio: 3 / 2;
  display: block;
  background: var(--beige);
}

.article-image.media-placeholder > img,
.materials-figure.media-placeholder > img {
  display: none;
}

.article-image img,
.materials-figure img {
  width: 100%;
  max-height: 82vh;
  display: block;
  object-fit: cover;
}

.object-study-image img {
  padding: clamp(32px, 6vw, 96px);
  object-fit: contain;
  background: var(--soft);
  mix-blend-mode: multiply;
}

.article-image figcaption,
.materials-figure figcaption {
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.article-body {
  padding: 68px 28px 84px;
  display: grid;
  grid-template-columns: 90px minmax(0, 720px) minmax(220px, 1fr);
  gap: 44px;
  border-bottom: 1px solid var(--line);
}

.article-number {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.article-copy {
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.46;
}

.article-copy p {
  margin: 0;
}

.article-copy p + p {
  margin-top: 1.35em;
}

.article-aside {
  align-self: end;
  justify-self: end;
  max-width: 260px;
  color: var(--blue);
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
}

.article-diagram {
  padding: 42px 28px 76px;
  border-bottom: 1px solid var(--line);
}

.diagram-caption {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.chair-diagram,
.space-diagram,
.wood-diagram,
.table-diagram {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background-color: #f1efe9;
  background-image:
    linear-gradient(rgba(29, 29, 29, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 29, 29, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.chair-desk {
  position: absolute;
  right: 17%;
  bottom: 34%;
  width: 34%;
  height: 9px;
  background: var(--ink);
}

.chair-desk::after {
  content: "";
  position: absolute;
  right: 14%;
  top: 0;
  width: 7px;
  height: 190px;
  background: var(--ink);
}

.chair-screen {
  position: absolute;
  right: 25%;
  bottom: 35.5%;
  width: 105px;
  height: 78px;
  border: 5px solid var(--blue);
  background: var(--paper);
}

.chair-seat {
  position: absolute;
  left: 33%;
  bottom: 34%;
  width: 160px;
  height: 12px;
  background: var(--oxide);
}

.chair-seat::after {
  content: "";
  position: absolute;
  left: 70px;
  top: 12px;
  width: 8px;
  height: 120px;
  background: var(--ink);
}

.chair-back {
  position: absolute;
  left: 33%;
  bottom: 35%;
  width: 12px;
  height: 145px;
  background: var(--oxide);
}

.chair-person {
  position: absolute;
  left: 40%;
  bottom: 36%;
  width: 155px;
  height: 235px;
}

.chair-person::before {
  content: "";
  position: absolute;
  left: 48px;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
}

.chair-person i,
.chair-person b,
.chair-person em {
  position: absolute;
  display: block;
  background: var(--blue);
  transform-origin: left center;
}

.chair-person i {
  left: 66px;
  top: 39px;
  width: 8px;
  height: 115px;
  transform: rotate(-8deg);
}

.chair-person b {
  left: 64px;
  top: 93px;
  width: 112px;
  height: 7px;
  transform: rotate(8deg);
}

.chair-person em {
  left: 65px;
  top: 148px;
  width: 120px;
  height: 8px;
  transform: rotate(72deg);
}

.chair-label,
.space-label,
.table-label {
  position: absolute;
  max-width: 190px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.chair-label::before,
.space-label::before,
.table-label::before {
  content: "";
  position: absolute;
  width: 80px;
  border-top: 1px solid var(--blue);
}

.chair-label.l1 { left: 55%; bottom: 12%; }
.chair-label.l1::before { right: calc(100% + 10px); top: 7px; }
.chair-label.l2 { right: 8%; top: 38%; }
.chair-label.l2::before { right: calc(100% + 10px); top: 7px; }
.chair-label.l3 { left: 16%; bottom: 31%; }
.chair-label.l3::before { left: calc(100% + 10px); top: 7px; }
.chair-label.l4 { right: 11%; top: 16%; }
.chair-label.l4::before { right: calc(100% + 10px); top: 7px; }

.space-room {
  position: absolute;
  inset: 10% 18%;
  border: 8px solid var(--ink);
  background: var(--paper);
}

.space-object {
  position: absolute;
  display: block;
  background: var(--ink);
}

.space-object.a { inset: 8% auto auto 7%; width: 28%; height: 22%; }
.space-object.b { right: 7%; bottom: 8%; width: 22%; height: 34%; background: var(--oxide); }
.space-object.c { left: 8%; bottom: 9%; width: 16%; height: 16%; background: var(--blue); }

.space-path {
  position: absolute;
  left: 40%;
  top: -8px;
  bottom: -8px;
  width: 17%;
  display: block;
  border-right: 1px dashed var(--blue);
  border-left: 1px dashed var(--blue);
  background: rgba(2, 48, 167, 0.1);
}

.space-label.s1 { left: 44%; bottom: 4%; }
.space-label.s1::before { display: none; }
.space-label.s2 { right: 4%; top: 22%; }
.space-label.s2::before { right: calc(100% + 10px); top: 7px; }
.space-label.s3 { left: 4%; top: 28%; }
.space-label.s3::before { left: calc(100% + 10px); top: 7px; }
.space-label.s4 { left: 43%; top: 3%; }
.space-label.s4::before { display: none; }

.wood-diagram {
  min-height: 480px;
  padding: 70px;
  display: grid;
  grid-template-columns: 6fr 3fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.wood-bar {
  padding: 22px;
  display: flex;
  align-items: flex-end;
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.wood-bar.oak { background: #b99468; }
.wood-bar.walnut { background: #4b2e22; }
.wood-bar.pine { background: #d99a3d; }
.wood-diagram > p { position: absolute; right: 70px; bottom: 26px; color: var(--blue); font-size: 12px; text-transform: uppercase; }

.table-clearance {
  position: absolute;
  inset: 12% 19%;
  border: 1px dashed var(--blue);
  background: rgba(2, 48, 167, 0.06);
}

.table-top {
  position: absolute;
  inset: 22% 15%;
  background: #8b6849;
  box-shadow: inset 0 0 0 4px #6f5139;
}

.table-clearance .seat {
  position: absolute;
  width: 13%;
  height: 12%;
  border: 4px solid var(--ink);
  background: var(--paper);
}

.table-clearance .top-a { left: 16%; top: 5%; }
.table-clearance .top-b { left: 43.5%; top: 5%; }
.table-clearance .top-c { right: 16%; top: 5%; }
.table-clearance .bottom-a { left: 16%; bottom: 5%; }
.table-clearance .bottom-b { left: 43.5%; bottom: 5%; }
.table-clearance .bottom-c { right: 16%; bottom: 5%; }
.table-label.t1 { left: 21%; top: 3%; }
.table-label.t1::before { display: none; }
.table-label.t2 { left: 38%; top: 47%; color: white; }
.table-label.t2::before { display: none; }
.table-label.t3 { right: 3%; bottom: 15%; }
.table-label.t3::before { right: calc(100% + 10px); top: 7px; }
.table-label.t4 { left: 3%; bottom: 12%; }
.table-label.t4::before { left: calc(100% + 10px); top: 7px; }

/* Material studies */
.materials-hero {
  min-height: 78vh;
  padding: 38px 28px 54px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid var(--line);
}

.materials-hero h1 {
  max-width: 1350px;
  margin: 0;
  font-size: clamp(68px, 9.2vw, 158px);
  font-weight: 400;
  line-height: 0.82;
}

.materials-lead {
  max-width: 900px;
  margin: 46px 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.42;
}

.materials-lead p {
  margin: 0;
}

.material-protocol,
.material-chapters {
  padding: 50px 28px 78px;
  border-bottom: 1px solid var(--line);
}

.protocol-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.protocol-steps article {
  min-height: 330px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.protocol-steps span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.protocol-steps h2 {
  margin: 18px 0 auto;
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 400;
}

.protocol-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
}

.material-chapter {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 0.8fr minmax(360px, 1fr) 0.8fr;
  gap: 44px;
  align-items: end;
  border-top: 1px solid var(--line);
}

.material-chapter header {
  align-self: start;
}

.material-chapter header span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.material-chapter h2 {
  margin: 20px 0 0;
  font-size: clamp(40px, 4.6vw, 72px);
  font-weight: 400;
  line-height: 0.92;
}

.material-chapter > img,
.material-swatch,
.metal-field,
.textile-field {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.material-chapter.media-visual-placeholder > img {
  background: var(--beige);
}

.material-chapter > div:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.46;
}

.material-chapter small {
  display: block;
  margin-top: 28px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-size: 11px;
  text-transform: uppercase;
}

.material-swatch {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.colour-swatch i:nth-child(1) { grid-row: 1 / 3; background: var(--blue); }
.colour-swatch i:nth-child(2) { background: #d8d1c2; }
.colour-swatch i:nth-child(3) { background: var(--oxide); }
.colour-swatch i:nth-child(4) { position: absolute; width: 0; }

.metal-field {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e4e5e5, #7d8183 48%, #f4f4f1 49%, #a7aaac);
}

.metal-field i {
  position: absolute;
  width: 42%;
  height: 7%;
  background: var(--oxide);
  box-shadow: 0 18px 24px rgba(0, 0, 0, 0.18);
  transform: rotate(-24deg);
}

.metal-field i:nth-child(1) { left: 4%; top: 23%; }
.metal-field i:nth-child(2) { right: 2%; top: 48%; background: var(--blue); }
.metal-field i:nth-child(3) { left: 26%; bottom: 16%; background: #222; }

.textile-field {
  position: relative;
  overflow: hidden;
  background: repeating-linear-gradient(0deg, #14377f 0 3px, #0a276b 3px 6px);
}

.textile-field i {
  position: absolute;
  inset: 16% 12%;
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.textile-field i:nth-child(2) { inset: 28% 24%; border-color: var(--oxide); }
.textile-field i:nth-child(3) { inset: 40% 36%; border-color: var(--paper); }

/* Object curation */
.objects-editorial-hero {
  min-height: 72vh;
  padding: 44px 28px 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.4fr);
  gap: 48px;
  align-content: end;
  border-bottom: 1px solid var(--line);
}

.objects-editorial-hero .inner-kicker {
  grid-column: 1 / -1;
  align-self: start;
}

.objects-editorial-hero h1 {
  margin: 0;
  font-size: clamp(70px, 10vw, 170px);
  font-weight: 400;
  line-height: 0.82;
}

.objects-editorial-hero > p:last-child {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.42;
}

.object-market-tabs {
  position: sticky;
  z-index: 10;
  top: 92px;
  padding: 16px 28px;
  display: flex;
  gap: 8px;
  background: rgba(248, 247, 244, 0.96);
  border-bottom: 1px solid var(--line);
}

.object-market-tabs button {
  min-width: 130px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  text-align: left;
}

.object-market-tabs button:hover,
.object-market-tabs button.active {
  color: var(--paper);
  background: var(--blue);
  border-color: var(--blue);
}

.objects-main .market-panel {
  display: none;
}

.objects-main .market-panel.active {
  display: block;
}

.object-market-panel {
  padding: 48px 28px 90px;
}

.object-market-panel .collection-head {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 50px;
  align-items: end;
}

.object-market-panel .collection-head h2 {
  margin: 10px 0 0;
  font-size: clamp(54px, 7vw, 112px);
  font-weight: 400;
  line-height: 0.86;
}

.object-market-panel .collection-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.42;
}

.object-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 68px 18px;
}

.object-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.object-image-link {
  margin-bottom: 18px;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--soft);
}

.object-image-link img {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  transition: transform 260ms cubic-bezier(0.2, 0.7, 0, 1);
}

.object-image-link.image-fallback img,
.image-failed {
  display: none;
}

.object-image-link:hover img {
  transform: scale(1.035);
}

.object-card-meta {
  display: flex;
  justify-content: space-between;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.object-card-meta p {
  margin: 0;
  text-align: right;
}

.object-card h3 {
  margin: 12px 0 18px;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  line-height: 0.94;
}

.object-card > p {
  max-width: 470px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.object-source {
  width: max-content;
  margin-top: auto;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  font-size: 11px;
  text-transform: uppercase;
}

.object-variants {
  margin-top: auto;
  display: grid;
  gap: 9px;
  font-size: 11px;
  text-transform: uppercase;
}

.object-variants span {
  margin-bottom: 4px;
  color: var(--muted);
}

.object-variants a {
  width: max-content;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
}

.objects-disclaimer {
  margin: 0;
  padding: 22px 28px 50px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .journal-note-link {
    grid-template-columns: 52px minmax(0, 1fr) 140px;
  }

  .journal-note-link b {
    display: none;
  }

  .article-body {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .article-aside {
    grid-column: 2;
    justify-self: start;
  }

  .protocol-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .material-chapter {
    grid-template-columns: 0.7fr 1fr;
  }

  .material-chapter > div:last-child {
    grid-column: 2;
  }

  .object-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .journal-index-intro {
    margin-bottom: 32px;
    font-size: 18px;
  }

  .journal-note-link {
    min-height: 118px;
    padding: 18px 0;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 8px 14px;
    align-items: start;
  }

  .journal-note-link:hover {
    padding-left: 0;
  }

  .journal-note-link strong {
    font-size: clamp(32px, 10vw, 48px);
  }

  .journal-note-link em {
    grid-column: 2;
  }

  .materials-gateway {
    grid-template-columns: 1fr;
  }

  .materials-gateway img,
  .materials-gateway > span {
    grid-column: 1;
  }

  .market-visual-panel,
  .field-notes-strip {
    grid-template-columns: 1fr;
  }

  .article-hero,
  .materials-hero,
  .objects-editorial-hero {
    min-height: 78vh;
    padding-right: 18px;
    padding-left: 18px;
  }

  .article-hero h1,
  .materials-hero h1,
  .objects-editorial-hero h1 {
    font-size: clamp(52px, 17vw, 84px);
  }

  .article-deck {
    margin-top: 26px;
    font-size: 19px;
  }

  .article-image,
  .materials-figure {
    padding: 18px;
  }

  .article-image figcaption,
  .materials-figure figcaption {
    gap: 16px;
  }

  .article-body {
    padding: 44px 18px 58px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .article-aside {
    grid-column: 1;
  }

  .article-diagram {
    padding: 34px 18px 50px;
  }

  .chair-diagram,
  .space-diagram,
  .wood-diagram,
  .table-diagram {
    min-height: 440px;
  }

  .chair-person { left: 24%; }
  .chair-seat, .chair-back { left: 18%; }
  .chair-desk { right: 6%; width: 42%; }
  .chair-screen { right: 12%; }
  .chair-label::before, .space-label::before, .table-label::before { width: 26px; }
  .chair-label.l1 { left: 39%; }
  .chair-label.l2 { right: 2%; top: 20%; }
  .chair-label.l3 { left: 3%; bottom: 19%; }
  .chair-label.l4 { right: 2%; top: 3%; }

  .space-room { inset: 12% 8%; }
  .space-label.s2 { right: 1%; top: 4%; }
  .space-label.s3 { left: 1%; top: 4%; }

  .wood-diagram {
    padding: 34px 18px 70px;
    grid-template-columns: 1fr;
    grid-template-rows: 6fr 3fr 1fr;
  }

  .wood-diagram > p {
    right: 18px;
  }

  .table-clearance { inset: 18% 5%; }
  .table-label.t1 { left: 9%; }
  .table-label.t2 { left: 20%; }
  .table-label.t3 { right: 1%; bottom: 4%; }
  .table-label.t4 { left: 1%; bottom: 4%; }

  .materials-lead {
    grid-template-columns: 1fr;
  }

  .material-protocol,
  .material-chapters,
  .object-market-panel {
    padding-right: 18px;
    padding-left: 18px;
  }

  .protocol-steps {
    grid-template-columns: 1fr;
  }

  .protocol-steps article {
    min-height: 230px;
  }

  .material-chapter {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .material-chapter > div:last-child {
    grid-column: 1;
  }

  .objects-editorial-hero {
    grid-template-columns: 1fr;
  }

  .object-market-tabs {
    top: 76px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .object-market-panel .collection-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .object-card-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .object-image-link {
    aspect-ratio: 1 / 1;
  }
}
