:root {
  --black: #050505;
  --white: #f0eee8;
  --acid: #ff3b70;
  --sand: #c7b89f;
  --blue: #08111d;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --grotesk: Arial, Helvetica, sans-serif;
  --condensed: "Arial Narrow", "HelveticaNeue-CondensedBold", "Helvetica Neue", Arial, sans-serif;
  --grain-texture: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { background: var(--black); scroll-behavior: smooth; }
body { margin: 0; color: var(--white); background: var(--black); font-family: var(--grotesk); overflow-x: hidden; }
body.index-open, body.viewer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
::selection { color: #000; background: #ff3b70; }
:focus-visible { outline: 1px solid currentColor; outline-offset: 5px; }

.grain { display: none; }

.cursor { position: fixed; left: 0; top: 0; width: 54px; height: 54px; z-index: 300; pointer-events: none; border: 1px solid rgba(255,255,255,.96); border-radius: 50%; mix-blend-mode: normal; box-shadow: 0 0 0 1px rgba(5,5,5,.72), 0 0 18px rgba(5,5,5,.16); transform: translate(-50%,-50%); opacity: 0; transition: width .25s, height .25s, opacity .2s, background-color .25s, border-color .25s, box-shadow .25s; }
.cursor span { position: absolute; width: 4px; height: 4px; left: 50%; top: 50%; transform: translate(-50%,-50%); border-radius: 50%; background: #fff; box-shadow: 0 0 0 1px rgba(5,5,5,.78); }
.cursor.is-on { opacity: 1; }
.cursor.is-active { width: 86px; height: 86px; background: rgba(255,255,255,.12); }
.cursor.is-text { width: 112px; height: 112px; border-color: var(--acid); box-shadow: 0 0 0 1px rgba(5,5,5,.62), 0 0 0 1px rgba(255,59,112,.18) inset, 0 0 34px rgba(255,59,112,.22); }

.hud { position: fixed; inset: 0 0 auto; height: 70px; padding: 13px 20px; z-index: 120; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; color: #fff; mix-blend-mode: difference; pointer-events: none; }
.hud > * { pointer-events: auto; }
.monogram { justify-self: start; display: flex; gap: 5px; align-items: flex-start; }
.monogram span { font-size: 1.2rem; font-weight: 900; letter-spacing: -.08em; line-height: .9; }
.monogram i { font: normal 7px/1 var(--mono); letter-spacing: .04em; }
.hud-title { justify-self: center; margin: 0; text-align: center; font: 9px/1.35 var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.instagram-hud { width: 28px; height: 28px; display: grid; place-items: center; opacity: .82; transition: color .3s ease, opacity .3s ease, transform .3s ease; }
.instagram-hud svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.instagram-hud:hover { color: var(--acid); opacity: 1; transform: scale(1.08); }
.index-toggle { justify-self: end; display: flex; align-items: center; gap: 12px; border: 0; background: none; padding: 0; text-transform: uppercase; font: 9px/1 var(--mono); letter-spacing: .1em; }
.index-toggle i { position: relative; display: block; width: 31px; height: 31px; border: 1px solid currentColor; border-radius: 50%; }
.index-toggle i::before, .index-toggle i::after { content: ""; position: absolute; left: 8px; right: 8px; top: 14px; height: 1px; background: currentColor; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.index-toggle i::after { transform: rotate(90deg); }
.index-close { display: none; }
.index-open .index-open { display: none; }
.index-open .index-close { display: inline; }
.index-open .index-toggle i::before { transform: rotate(45deg); }
.index-open .index-toggle i::after { transform: rotate(-45deg); }

.index { position: fixed; inset: 0; z-index: 110; padding: 90px 20px 20px; color: var(--white); background: #0a0a0a; visibility: hidden; clip-path: inset(0 0 100% 0); transition: clip-path .75s cubic-bezier(.85,0,.15,1), visibility 0s .75s; display: grid; grid-template-columns: 32vw 1fr; gap: 5vw; }
.index[aria-hidden="false"] { visibility: visible; clip-path: inset(0); transition-delay: 0s; }
.index-visual { position: relative; height: calc(100vh - 150px); overflow: hidden; background: #111; }
.index-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); transition: opacity .18s, transform .6s cubic-bezier(.2,.8,.2,1); }
.index-visual img.is-contained { object-fit: contain; }
.index-visual span { position: absolute; left: 10px; bottom: 10px; font: 9px/1 var(--mono); }
.index ol { align-self: center; list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.25); }
.index li { border-bottom: 1px solid rgba(255,255,255,.25); }
.index li a { min-height: 86px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; transition: padding .3s, color .3s; }
.index li a:hover, .index li a:focus-visible { padding-left: 20px; color: #ff3b70; }
.index sup { align-self: start; margin-top: 21px; font: 8px/1 var(--mono); }
.index li span { font-size: clamp(1.7rem,3.4vw,4.4rem); line-height: .88; letter-spacing: -.07em; text-transform: uppercase; font-weight: 700; }
.index em { font: normal 8px/1 var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.index-foot { position: absolute; left: calc(32vw + 5vw + 20px); right: 20px; bottom: 18px; display: grid; grid-template-columns: auto auto 1fr; gap: 30px; font: 8px/1 var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.index-foot span { justify-self: end; opacity: .5; }

.chapter-rail { position: fixed; right: 19px; top: 50%; transform: translateY(-50%); z-index: 80; display: flex; flex-direction: column; gap: 10px; mix-blend-mode: difference; opacity: 0; pointer-events: none; transition: opacity .4s; }
body.in-corpus .chapter-rail { opacity: 1; pointer-events: auto; }
.chapter-rail a { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; border: 1px solid transparent; color: #fff; font: 7px/1 var(--mono); transition: border-color .25s, transform .25s; }
.chapter-rail a:hover, .chapter-rail a.is-active { border-color: #fff; transform: scale(1.15); }

.field { position: relative; height: 100svh; min-height: 620px; overflow: hidden; background: #050505; isolation: isolate; }
#image-field { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.field-fallback { position: absolute; left: 50%; top: 9vh; transform: translateX(-50%); width: min(52vw,780px); height: 82vh; z-index: 0; transition: opacity .6s; }
.field-fallback img { width: 100%; height: 100%; object-fit: cover; }
.canvas-ready .field-fallback { opacity: 0; }
.field::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(circle at 50% 50%, transparent 0 28%, rgba(0,0,0,.18) 63%, rgba(0,0,0,.65)); }
.field-flash { position: absolute; inset: 0; z-index: 20; pointer-events: none; background: #ff3b70; mix-blend-mode: screen; opacity: 0; }
.field.is-flashing .field-flash { animation: flash .48s steps(2); }
@keyframes flash { 0% { opacity: .65; transform: scaleY(.02) } 20% { opacity: .14; transform: scaleY(1) } 50% { opacity: .35; clip-path: inset(28% 0 45%) } 100% { opacity: 0; clip-path: inset(0) } }

.wordmark { position: absolute; inset: 0; z-index: 5; margin: 0; pointer-events: none; font-size: clamp(7rem,18.5vw,18rem); line-height: .68; font-weight: 900; letter-spacing: -.095em; text-transform: uppercase; white-space: nowrap; }
.word { position: absolute; left: -1.2vw; display: block; transform: scaleX(.82); transform-origin: left center; }
.cursor-origin-letter { display: inline-block; }
.word-one { top: 10vh; }
.word-two { bottom: 10vh; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.95); text-stroke: 1.5px rgba(255,255,255,.95); }
.field-code, .field-instruction { position: absolute; z-index: 8; margin: 0; text-transform: uppercase; font: 8px/1.4 var(--mono); letter-spacing: .08em; }
.field-code { left: 20px; top: 45%; }
.field-instruction { right: 20px; top: 44%; text-align: right; }
.field-instruction span { opacity: .45; }
.mutate { position: absolute; left: 20px; bottom: 20px; z-index: 12; width: 145px; height: 42px; padding: 0 12px; border: 1px solid rgba(255,255,255,.7); border-radius: 30px; background: rgba(0,0,0,.14); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: space-between; font: 8px/1 var(--mono); text-transform: uppercase; letter-spacing: .06em; }
.mutate b { font-weight: 400; opacity: .5; }
.field-caption { position: absolute; right: 20px; bottom: 20px; z-index: 8; display: grid; width: 250px; grid-template-columns: 1fr auto; text-transform: uppercase; font: 8px/1.35 var(--mono); letter-spacing: .06em; }
.field-caption span { grid-column: 1/3; opacity: .5; margin-bottom: 4px; }
.field-caption strong { font-weight: 400; }
.field-caption small { font: inherit; opacity: .55; }
.down { position: absolute; left: 50%; bottom: 17px; z-index: 10; transform: translateX(-50%); width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; font: 14px/1 var(--mono); }
.down span { animation: bounce 1.6s ease-in-out infinite; }
@keyframes bounce { 50% { transform: translateY(5px) } }

.position { min-height: 135svh; position: relative; padding: 15vh 20px; color: #080808; background-color: #efede7; background-image: var(--grain-texture); background-size: 180px 180px; overflow: hidden; }
.position-code { margin: 0; font: 8px/1.55 var(--mono); text-transform: uppercase; letter-spacing: .07em; }
.position h2 { margin: 24vh 0 0; font-size: clamp(4.7rem,14vw,14rem); line-height: .7; letter-spacing: -.095em; font-weight: 900; }
.position h2 > span { display: block; transform: scaleX(.84); transform-origin: left; }
.position h2 > span:nth-child(2) { margin-left: 12vw; color: transparent; -webkit-text-stroke: 1.5px #111; }
.position h2 > span:nth-child(3) { margin-left: 3vw; }
.period { color: #ff3b70; }
.position-end { position: absolute; right: 6vw; bottom: 9vh; margin: 0; font-size: clamp(1rem,1.6vw,1.6rem); line-height: 1.15; letter-spacing: -.04em; }

.ticker { height: 78px; overflow: hidden; border-top: 1px solid rgba(255,255,255,.35); border-bottom: 1px solid rgba(255,255,255,.35); background: #050505; }
.ticker div { width: max-content; height: 100%; display: flex; align-items: center; gap: 3vw; animation: ticker 23s linear infinite; }
.ticker span { font-size: 3.4rem; line-height: 1; font-weight: 800; letter-spacing: -.07em; }
.ticker i { color: #ff3b70; font: normal 1rem/1 var(--mono); }
@keyframes ticker { to { transform: translateX(-50%) } }

.chapter { position: relative; min-height: 190svh; padding: 15vh 20px 10vh; overflow: hidden; }
.chapter-meta { position: relative; z-index: 6; display: grid; grid-template-columns: 1fr 1fr 1fr; margin-bottom: 10vh; font: 8px/1.3 var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.chapter-meta span:nth-child(2) { text-align: center; }
.chapter-meta span:last-child { text-align: right; }
.chapter-title { position: relative; z-index: 5; margin: 0; font-size: clamp(5rem,13.4vw,13rem); line-height: .72; letter-spacing: -.095em; font-weight: 900; text-transform: uppercase; pointer-events: none; }
.chapter-title span { display: block; transform: scaleX(.84); transform-origin: left; }
.chapter-title span:nth-child(2) { margin-left: 10vw; color: transparent; -webkit-text-stroke: 1.4px currentColor; }
.chapter-note { position: relative; z-index: 6; width: max-content; margin: 6vh 5vw 0 auto; font-size: clamp(1.2rem,2vw,2rem); line-height: 1.05; letter-spacing: -.05em; }
.composition { position: relative; z-index: 2; min-height: 115vh; margin-top: -3vh; }
.frame { position: absolute; margin: 0; will-change: transform; transform: translate3d(0,calc(var(--progress, 0) * var(--drift)),0); }
.artwork { position: relative; width: 100%; height: 100%; display: block; padding: 0; border: 0; background: #111; overflow: hidden; }
.artwork::after { content: "VIEW +"; position: absolute; right: 9px; bottom: 9px; padding: 7px 9px; color: #fff; background: #050505; opacity: 0; transform: translateY(5px); transition: opacity .25s, transform .25s; font: 7px/1 var(--mono); letter-spacing: .08em; }
.artwork:hover::after, .artwork:focus-visible::after { opacity: 1; transform: none; }
.artwork img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.8,.2,1), filter .5s; }
.artwork:hover img { transform: scale(1.025); filter: contrast(1.04); }
.frame figcaption { display: grid; grid-template-columns: 35px 1fr auto; gap: 6px; margin-top: 8px; text-transform: uppercase; font: 7px/1.2 var(--mono); letter-spacing: .07em; }
.frame figcaption b { font-weight: 400; opacity: .45; }
.frame figcaption small { font: inherit; opacity: .45; }
.roster { position: absolute; left: 20px; right: 20px; bottom: 25px; z-index: 6; padding-top: 10px; border-top: 1px solid currentColor; margin: 0; font: 7px/1.7 var(--mono); text-transform: uppercase; letter-spacing: .08em; opacity: .55; }

.chapter-peaux { color: #f2efe8; background-color: #090807; background-image: var(--grain-texture); background-size: 180px 180px; }
.chapter-peaux .chapter-title > span:first-child { width: 72%; }
.chapter-peaux .chapter-title > span:nth-child(2) { margin: .03em 4vw 0 0; color: transparent; -webkit-text-stroke: 1.2px #f2efe8; transform: scaleX(.74); transform-origin: right center; text-align: right; font: 900 .48em/.82 var(--condensed); letter-spacing: -.085em; text-transform: uppercase; }
.frame-peaux-a { left: 5vw; top: 12vh; width: 38vw; aspect-ratio: 1613 / 2400; }
.frame-peaux-b { right: 9vw; top: 57vh; width: 27vw; aspect-ratio: 1370 / 2048; }

.chapter-memoires { color: #100d09; background-color: var(--sand); background-image: var(--grain-texture); background-size: 180px 180px; }
.chapter-memoires::after { content: "02"; position: absolute; right: -3vw; bottom: 6vh; font-size: 31vw; line-height: .7; font-weight: 900; letter-spacing: -.1em; color: rgba(0,0,0,.055); }
.frame-matiere-a { left: 6vw; top: 4vh; width: 31vw; aspect-ratio: 1370 / 2048; z-index: 2; }
.frame-matiere-b { right: 5vw; top: 54vh; width: 58vw; aspect-ratio: 2048 / 1370; z-index: 1; }

.chapter-architectures { color: #eef3f7; background-color: var(--blue); background-image: var(--grain-texture); background-size: 180px 180px; }
.chapter-architectures::before { content: ""; position: absolute; inset: 0; opacity: .3; background: linear-gradient(90deg, transparent 49.9%, rgba(161,199,255,.2) 50%, transparent 50.1%), linear-gradient(0deg, transparent 49.9%, rgba(161,199,255,.13) 50%, transparent 50.1%); background-size: 11vw 11vw; }
.frame-architecture-a { left: 2vw; top: 10vh; width: 63vw; aspect-ratio: 2400 / 1613; z-index: 2; }
.frame-architecture-b { right: 2vw; top: 70vh; width: 47vw; aspect-ratio: 2048 / 1370; z-index: 3; }

.chapter-lisieres { color: #101416; background-color: #d8dfe1; background-image: var(--grain-texture); background-size: 180px 180px; }
.chapter-lisieres::before { content: ""; position: absolute; inset: 0; background: linear-gradient(112deg, transparent 0 51%, rgba(255,255,255,.35) 51.2% 53%, transparent 53.2%); }
.frame-lisiere { left: 31vw; top: 0; width: 38vw; aspect-ratio: 1370 / 2048; z-index: 3; }

.chapter-spectres { min-height: 205svh; color: #fff; background-color: #08050d; background-image: var(--grain-texture); background-size: 180px 180px; }
.chapter-spectres .chapter-title span:nth-child(2) { margin-left: 30vw; }
.spectral-machine { position: absolute; left: 0; right: 0; top: 50vh; height: 88vh; z-index: 1; overflow: hidden; transform: skewY(-4deg); }
/* Duration's luminous screen blend is contained inside an opaque layer, so the
   moving television grain remains behind the coloured bands. */
.chapter-spectres .spectral-machine { isolation: isolate; background: #08050d; }
.spectral-slice { position: absolute; left: -3%; width: 106%; height: 25%; overflow: hidden; mix-blend-mode: screen; }
.spectral-slice img { width: 100%; height: 88vh; max-width: none; object-fit: cover; filter: saturate(1.25) contrast(1.08); animation: spectral 14s ease-in-out infinite alternate; }
.slice-a { top: 0; }.slice-a img { transform: translateY(0); }
.slice-b { top: 25%; }.slice-b img { transform: translateY(-25%); animation-delay: -3s; }
.slice-c { top: 50%; }.slice-c img { transform: translateY(-50%); animation-delay: -7s; }
.slice-d { top: 75%; }.slice-d img { transform: translateY(-75%); animation-delay: -10s; }
@keyframes spectral { from { margin-left: -2%; width: 104%; filter: saturate(1.05) hue-rotate(-8deg) } to { margin-left: 2%; width: 100%; filter: saturate(1.5) hue-rotate(15deg) } }
.frame-silicon { right: 7vw; top: 80vh; width: 48vw; aspect-ratio: 2400 / 1613; z-index: 4; }

.afterimage { position: relative; min-height: 100svh; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; color: #050505; background-color: #ff3b70; background-image: var(--grain-texture); background-size: 180px 180px; overflow: hidden; }
.afterimage > p { margin: 0; font: 8px/1 var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.afterimage-word { margin: auto 0; font-size: clamp(5.5rem,16vw,16rem); line-height: .66; font-weight: 900; letter-spacing: -.105em; }
.afterimage-word span { display: block; transform: scaleX(.8); transform-origin: left; }
.afterimage-word span:last-child { margin-left: 6vw; color: transparent; -webkit-text-stroke: 1.5px #050505; }

.curatorial {
  position: relative;
  min-height: 165svh;
  padding: 14vh 20px 12vh;
  overflow: hidden;
  color: #f0eee8;
  background-color: #090807;
  background-image: var(--grain-texture);
  background-size: 180px 180px;
}
.curatorial::after {
  content: "CR";
  position: absolute;
  right: -1.5vw;
  bottom: 1vh;
  color: rgba(255,255,255,.025);
  font-size: 31vw;
  font-weight: 900;
  line-height: .68;
  letter-spacing: -.12em;
  pointer-events: none;
}
.curatorial-meta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font: 8px/1.3 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.curatorial-meta > span:nth-child(2), .curatorial-meta > span:nth-child(3) { text-align: center; }
.curatorial-meta > span:last-child { text-align: right; }
.curatorial h2 {
  position: relative;
  z-index: 2;
  margin: 20vh 0 0;
  font-size: clamp(4.8rem, 12.5vw, 12.5rem);
  font-weight: 900;
  line-height: .72;
  letter-spacing: -.095em;
  text-transform: uppercase;
}
.curatorial h2 > span { display: block; transform: scaleX(.84); transform-origin: left; }
.curatorial h2 > span:nth-child(2), .curatorial h2 > span:nth-child(4) {
  margin: .08em 0 0 10vw;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--acid);
  font-family: var(--condensed);
  font-style: normal;
  font-weight: 900;
  letter-spacing: -.09em;
  text-transform: uppercase;
  transform: scaleX(.76);
  transform-origin: left center;
}
.curatorial-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.35fr);
  gap: 10vw;
  margin-top: 24vh;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.45);
}
.curatorial-lead {
  margin: 0;
  font-size: clamp(2.1rem, 3.8vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.curatorial-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.6vw;
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  line-height: 1.62;
}
.curatorial-copy p { margin: 0; }
.curatorial-copy i, .practice-copy i { font-family: inherit; font-size: .92em; font-style: normal; font-weight: 800; letter-spacing: .015em; text-transform: uppercase; }
.curatorial-foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin: 16vh 0 0;
  padding-top: 11px;
  border-top: 1px solid rgba(255,255,255,.45);
  font: 8px/1.3 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about { padding: 15vh 20px 10vh; color: #12110f; background-color: #eeeae2; background-image: var(--grain-texture); background-size: 180px 180px; }
.about-head { display: grid; grid-template-columns: 1fr 3fr; gap: 5vw; align-items: start; padding-bottom: 13vh; }
.about-head > p { margin: 0; font: 8px/1.55 var(--mono); text-transform: uppercase; letter-spacing: .07em; }
.about h2 { margin: 0; font-size: clamp(4rem,9vw,9rem); line-height: .78; letter-spacing: -.085em; font-weight: 800; }
.about h2 i { display: inline-block; margin-top: .08em; color: transparent; -webkit-text-stroke: 1.35px #12110f; font-family: var(--condensed); font-style: normal; font-weight: 900; line-height: .86; letter-spacing: -.085em; text-transform: uppercase; transform: scaleX(.78); transform-origin: left center; }
.about-body { display: grid; grid-template-columns: 1.25fr 1fr; gap: 9vw; padding: 11vh 0; border-top: 1px solid #151515; }
.about-body p { margin: 0; }
.about-lead { font-size: clamp(2.2rem,4vw,4.5rem); line-height: .95; letter-spacing: -.06em; }
.about-body > div { display: grid; grid-template-columns: 1fr 1fr; gap: 4vw; font-size: clamp(.95rem,1.2vw,1.2rem); line-height: 1.55; }
.milestones { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1fr; gap: 3vw; padding-top: 12px; border-top: 1px solid #151515; font: 8px/1.45 var(--mono); text-transform: uppercase; letter-spacing: .05em; }
.milestones > span { opacity: .5; }
.milestones p { margin: 0; }
.milestones b { display: block; margin-bottom: 9px; font-weight: 400; opacity: .5; }

.contact { position: relative; min-height: 100svh; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; color: #fff; background: #090909; isolation: isolate; }
.contact > img { position: absolute; inset: -10%; width: 120%; height: 120%; max-width: none; z-index: -2; object-fit: cover; filter: saturate(1.35) contrast(1.2) brightness(.72); animation: contactImage 12s ease-in-out infinite alternate; }
.contact::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(8,0,12,.28); mix-blend-mode: multiply; }
@keyframes contactImage { from { transform: scale(1.02) translate(-2%,0); filter: saturate(1.2) contrast(1.2) brightness(.67) hue-rotate(-8deg) } to { transform: scale(1.12) translate(2%,-2%); filter: saturate(1.65) contrast(1.1) brightness(.82) hue-rotate(17deg) } }
.contact > p { margin: 0; font: 8px/1 var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.contact h2 { margin: auto 0; font-size: clamp(6rem,18vw,18rem); line-height: .64; letter-spacing: -.105em; font-weight: 900; }
.contact h2 span { display: block; margin-left: 8vw; color: transparent; -webkit-text-stroke: 1.5px white; }
.contact-link { align-self: center; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%) rotate(-8deg); width: 145px; height: 145px; display: grid; place-items: center; border-radius: 50%; color: #080808; background: #fff; text-transform: uppercase; font: 9px/1 var(--mono); letter-spacing: .07em; transition: color .3s, background .3s; }
.contact-link:hover { color: #fff; background: #ff3b70; }
.contact-foot { display: flex; justify-content: space-between; font: 8px/1 var(--mono); text-transform: uppercase; letter-spacing: .07em; }
.contact-foot b { font-weight: 400; }

.viewer { position: relative; width: 100vw; max-width: none; height: 100svh; max-height: none; margin: 0; padding: 20px; border: 0; color: #fff; background: rgba(3,3,3,.98); opacity: 0; transition: opacity .35s; }
.viewer[open] { display: grid; grid-template-rows: 42px 1fr 34px; }
.viewer.is-visible { opacity: 1; }
.viewer::backdrop { background: #000; }
.viewer-close { justify-self: end; border: 0; background: none; padding: 0; text-transform: uppercase; font: 8px/1 var(--mono); letter-spacing: .08em; }
.viewer-close span { display: inline-grid; width: 26px; height: 26px; margin-left: 9px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 15px; }
.viewer-stage { min-height: 0; display: grid; place-items: center; overflow: auto; }
.viewer-media { width: min(82vw, 1440px); height: calc(100svh - 116px); display: grid; place-items: center; padding: 0; border: 0; color: inherit; background: transparent; transition: transform .36s cubic-bezier(.2,.8,.2,1); cursor: default; }
.viewer.can-zoom .viewer-media { cursor: zoom-in; }
.viewer.can-zoom.is-zoomed .viewer-media { transform: scale(var(--viewer-zoom, 1.2)); cursor: zoom-out; }
.viewer-image { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; image-rendering: auto; }
.viewer-diptych { display: none; width: min(82vw, 1400px); max-height: calc(100svh - 130px); }
.viewer.shows-diptych .viewer-image { display: none; }
.viewer.shows-diptych .viewer-diptych { display: grid; background: var(--sand); }
.viewer-nav { position: absolute; z-index: 3; top: 50%; display: flex; align-items: center; gap: 10px; padding: 12px 0; border: 0; color: #fff; background: none; text-transform: uppercase; font: 7px/1 var(--mono); letter-spacing: .08em; transform: translateY(-50%); }
.viewer-nav span { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; font-size: 14px; transition: color .25s, background .25s; }
.viewer-nav:hover span, .viewer-nav:focus-visible span { color: #050505; background: #fff; }
.viewer-nav b { font: inherit; font-weight: 400; }
.viewer-previous { left: 20px; }
.viewer-next { right: 20px; }
.viewer > p { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: end; margin: 13px 0 0; text-transform: uppercase; font: 8px/1 var(--mono); letter-spacing: .07em; }
.viewer > p strong { font-weight: 400; }
.viewer > p span { opacity: .5; }
.viewer-meta { text-align: right; }
body.viewer-open .cursor { display: none; }

@media (any-pointer: fine) {
  body, a, button { cursor: none; }
  body.viewer-open, body.viewer-open a, body.viewer-open button { cursor: auto; }
  body.viewer-open .viewer-close, body.viewer-open .viewer-nav { cursor: pointer; }
}

@media (max-width: 800px) {
  .hud { height: 60px; padding: 12px; grid-template-columns: 1fr 1fr; }
  .hud-title { display: none; }
  .index { padding: 75px 12px 12px; display: block; }
  .index-visual { display: none; }
  .index li a { min-height: 90px; grid-template-columns: 33px 1fr; }
  .index li span { font-size: clamp(2rem,9vw,3.4rem); }
  .index em { display: none; }
  .index-foot { left: 12px; right: 12px; bottom: 12px; grid-template-columns: auto auto; }
  .index-foot span { display: none; }
  .chapter-rail { right: 8px; gap: 5px; }
  .field { min-height: 590px; }
  .field-fallback { width: 78vw; height: 76vh; top: 12vh; }
  .wordmark { font-size: clamp(6.2rem,31vw,10.5rem); line-height: .68; }
  .word-one { top: 13vh; }
  .word-two { bottom: 17vh; }
  .field-code { left: 12px; top: 43%; }
  .field-instruction { right: 12px; top: 43%; }
  .mutate { left: 12px; bottom: 12px; width: 130px; }
  .field-caption { right: 12px; bottom: 12px; width: 155px; text-align: right; }
  .field-caption small { display: none; }
  .down { display: none; }
  .position { min-height: 105svh; padding: 13vh 12px; }
  .position h2 { margin-top: 23vh; font-size: 21vw; line-height: .74; }
  .position h2 > span:nth-child(2) { margin-left: 5vw; }
  .position-end { right: 12px; bottom: 7vh; }
  .ticker { height: 55px; }
  .ticker span { font-size: 2.3rem; }
  .chapter { min-height: 1500px; padding: 12vh 12px 70px; }
  .chapter-meta { grid-template-columns: 1fr 1fr; margin-bottom: 9vh; }
  .chapter-meta span:nth-child(2) { text-align: right; }
  .chapter-meta span:last-child { display: none; }
  .chapter-title { font-size: 19vw; line-height: .75; }
  .chapter-title span:nth-child(2) { margin-left: 5vw; }
  .chapter-peaux .chapter-title > span:first-child { width: 100%; }
  .chapter-peaux .chapter-title > span:nth-child(2) { margin-top: .05em; margin-right: 2vw; font-size: .7em; }
  .chapter-note { margin-top: 7vh; margin-right: 5vw; font-size: 1.2rem; }
  .composition { min-height: 1050px; margin-top: 0; }
  .frame figcaption { grid-template-columns: 28px 1fr auto; }
  .roster { left: 12px; right: 12px; bottom: 18px; }
  .frame-peaux-a { left: 0; top: 8vh; width: 67vw; }
  .frame-peaux-b { right: 1vw; top: 65vh; width: 43vw; }
  .frame-matiere-a { left: 0; top: 5vh; width: 56vw; }
  .frame-matiere-b { right: -2vw; top: 75vh; width: 80vw; }
  .frame-architecture-a { left: 0; top: 12vh; width: 85vw; }
  .frame-architecture-b { right: -2vw; top: 67vh; width: 72vw; }
  .frame-lisiere { left: 15vw; top: 5vh; width: 68vw; }
  .chapter-spectres { min-height: 1450px; }
  .chapter-spectres .chapter-title span:nth-child(2) { margin-left: 20vw; }
  .spectral-machine { top: 45vh; height: 72vh; }
  .spectral-slice img { height: 72vh; }
  .frame-silicon { right: 1vw; top: 87vh; width: 85vw; }
  .afterimage { min-height: 86svh; padding: 12px; }
  .afterimage-word { font-size: 20vw; }
  .about { padding: 12vh 12px 8vh; }
  .about-head { grid-template-columns: 1fr; gap: 12vh; padding-bottom: 10vh; }
  .about h2 { font-size: 16vw; }
  .about-body { grid-template-columns: 1fr; gap: 10vh; }
  .about-body > div { grid-template-columns: 1fr; gap: 28px; }
  .milestones { grid-template-columns: 1fr; gap: 24px; }
  .milestones > span { margin-bottom: 18px; }
  .contact { padding: 12px; }
  .contact h2 { font-size: 23vw; line-height: .7; }
  .contact h2 span { margin-left: 3vw; }
  .contact-link { width: 112px; height: 112px; }
  .viewer { padding: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .drift { transform: none !important; }
}

/* 2026 corpus edition — the original spatial language, with the new selection. */
.lang-en { display: none !important; }
html[data-lang="en"] .lang-fr { display: none !important; }
html[data-lang="en"] .lang-en { display: revert !important; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;
  pointer-events: none;
  background-image: var(--grain-texture);
  background-size: 180px 180px;
}

.hud-actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.language-switcher { position: relative; }
.language { min-width: 34px; border: 0; padding: 5px 0; color: inherit; background: none; font: 9px/1 var(--mono); letter-spacing: .1em; text-align: center; }
.language-menu { position: absolute; top: 27px; right: 50%; display: grid; min-width: 78px; padding: 7px; gap: 2px; color: #fff; background: rgba(5,5,5,.94); border: 1px solid rgba(255,255,255,.35); transform: translateX(50%) translateY(-5px); opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility 0s .2s; }
.language-menu[aria-hidden="false"] { opacity: 1; visibility: visible; transform: translateX(50%); transition-delay: 0s; }
.language-menu button { border: 0; padding: 7px 9px; color: #fff; background: transparent; font: 8px/1 var(--mono); letter-spacing: .06em; text-align: center; white-space: nowrap; }
.language-menu button:hover, .language-menu button:focus-visible, .language-menu button[aria-checked="true"] { color: #050505; background: #fff; }
.index-toggle { justify-self: auto; }
.index em span { display: inline; font: inherit; line-height: inherit; letter-spacing: inherit; text-transform: inherit; font-weight: inherit; }
.index-foot { grid-template-columns: auto auto auto auto 1fr; }
.index-foot a > span { display: inline; justify-self: auto; opacity: 1; }
html[data-lang="en"] .curatorial h2 > span.lang-en { display: block !important; }

html[data-lang="zh"] {
  --grotesk: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --condensed: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}
html[data-lang="ja"] {
  --grotesk: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  --condensed: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
}
html[data-lang="ru"] {
  --grotesk: "Arial Narrow", "Roboto Condensed", "Arial", sans-serif;
  --condensed: "Arial Narrow", "Roboto Condensed", "Arial", sans-serif;
}
html[data-lang="zh"] .position h2,
html[data-lang="ja"] .position h2,
html[data-lang="zh"] .chapter-title,
html[data-lang="ja"] .chapter-title,
html[data-lang="zh"] .curatorial h2,
html[data-lang="ja"] .curatorial h2,
html[data-lang="zh"] .about h2,
html[data-lang="ja"] .about h2,
html[data-lang="zh"] .contact h2,
html[data-lang="ja"] .contact h2 { letter-spacing: -.045em; }
html[data-lang="ru"] .position h2,
html[data-lang="ru"] .chapter-title,
html[data-lang="ru"] .curatorial h2,
html[data-lang="ru"] .about h2,
html[data-lang="ru"] .contact h2 { letter-spacing: -.055em; }
html[data-lang="zh"] .curatorial-copy,
html[data-lang="ja"] .curatorial-copy,
html[data-lang="zh"] .practice-copy,
html[data-lang="ja"] .practice-copy,
html[data-lang="zh"] .bio-copy,
html[data-lang="ja"] .bio-copy { line-height: 1.82; }
html[data-lang="zh"] .contact h2,
html[data-lang="ja"] .contact h2 { line-height: .9; }

.field { background-color: #050505; background-image: var(--grain-texture); background-size: 180px 180px; }
.field-fallback { height: 82vh; }
.field-fallback img { height: 100%; object-fit: contain; }

/* The requested deletion: only the large burgundy orbital line disappears. */
.chapter-peaux::before { content: none !important; display: none !important; }

/* The small circular chapter navigation remains intact. */
.chapter-rail a:hover, .chapter-rail a.is-active { border-color: #fff; transform: scale(1.15); }

.chapter { min-height: 325svh; }
.composition { min-height: 270vh; margin-top: 2vh; }
.composition .frame { aspect-ratio: auto !important; }
.artwork { height: auto; isolation: isolate; }
.artwork img { height: auto; object-fit: contain; }
.artwork::after { content: attr(data-view-label); }
.artwork-diptych { overflow: visible; background: transparent; }
.diptych { display: grid; width: 100%; gap: clamp(7px, .65vw, 13px); background: transparent; }
.diptych-horizontal { grid-template-rows: 1fr 1fr; aspect-ratio: 1600 / 817; }
.diptych-vertical { grid-template-columns: 1fr 1fr; aspect-ratio: 1572 / 764; }
.diptych-panel { min-width: 0; min-height: 0; overflow: hidden; background-image: var(--diptych-image); background-repeat: no-repeat; }
.diptych-horizontal .diptych-panel { background-size: 100% auto; }
.diptych-horizontal .diptych-first { background-position: center top; }
.diptych-horizontal .diptych-second { background-position: center bottom; }
.diptych-vertical .diptych-panel { background-size: auto 100%; }
.diptych-vertical .diptych-first { background-position: left center; }
.diptych-vertical .diptych-second { background-position: right center; }
.viewer-diptych { display: none; }
.artwork-diptych .diptych { transition: transform .9s cubic-bezier(.2,.8,.2,1), filter .5s; }
.artwork-diptych:hover .diptych { transform: scale(1.018); filter: contrast(1.04); }

/* Sans titre is a three-volume work, not a rectangular photograph. */
.artwork-triptych { overflow: visible; background: transparent; }
.triptych {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1973 / 1105;
  overflow: hidden;
  background: transparent;
}
.triptych-panel { position: absolute; display: block; overflow: hidden; background: transparent; }
.triptych-panel img { display: block; width: 100%; height: 100%; max-width: none; object-fit: fill; }
.triptych-left { left: 0; top: 0; width: 24.6832%; height: 100%; }
.triptych-centre { left: 25.3928%; top: 10.9502%; width: 49.2651%; height: 77.9186%; }
.triptych-right { left: 75.3675%; top: 0; width: 24.6325%; height: 100%; }
.artwork-triptych .triptych { transition: transform .9s cubic-bezier(.2,.8,.2,1), filter .5s; }
.artwork-triptych:hover .triptych { transform: scale(1.018); filter: contrast(1.04); }
.viewer-triptych { display: none; width: min(82vw, 1440px); max-height: calc(100svh - 130px); }
.viewer.shows-triptych .viewer-image { display: none; }
.viewer.shows-triptych .viewer-triptych { display: block; background: var(--sand); }

.chapter-peaux .chapter-title > span:first-child { width: 78%; }
.chapter-peaux .chapter-title > span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 1.2px #f2efe8;
  font-family: var(--condensed);
  font-style: normal;
  font-weight: 900;
  font-size: .48em;
  line-height: .82;
  letter-spacing: -.085em;
  text-transform: uppercase;
  transform: scaleX(.74);
  transform-origin: right center;
}

.cursor-reactive {
  --react-x: 0px;
  --react-y: 0px;
  --react-skew: 0deg;
  --react-scale: 1;
  --react-shadow-x: 0px;
  --react-shadow-y: 0px;
  --react-shadow-color: rgba(255,59,112,0);
  position: relative;
  transform: translate3d(var(--react-x), var(--react-y), 0) skewX(var(--react-skew)) scaleX(var(--react-scale));
  transform-origin: center center;
  text-shadow: var(--react-shadow-x) var(--react-shadow-y) 0 var(--react-shadow-color);
  will-change: transform, text-shadow;
  transition: transform 90ms cubic-bezier(.2,.8,.2,1), text-shadow 90ms linear;
}
.curatorial .cursor-reactive { --react-shadow-color: rgba(255,59,112,.48); }
.about .cursor-reactive { --react-shadow-color: rgba(255,59,112,.30); }
.cursor-reactive.reactive-body { transition-duration: 140ms; }

.composition-surface .frame:nth-child(1) { left: 4vw; top: 7vh; width: 44vw; }
.composition-surface .frame:nth-child(2) { right: 9vw; top: 42vh; width: 25vw; }
.composition-surface .frame:nth-child(3) { left: 18vw; top: 92vh; width: 52vw; }
.composition-surface .frame:nth-child(4) { right: 7vw; top: 133vh; width: 24vw; }
.composition-surface .frame:nth-child(5) { left: 4vw; top: 183vh; width: 46vw; }
.composition-surface .frame:nth-child(6) { right: 8vw; top: 228vh; width: 43vw; }

.chapter-memoires::after { content: "02"; bottom: 10vh; }
.composition-matiere .frame { width: min(22vw, 330px); }
.composition-matiere .frame:nth-child(1) { left: 8vw; top: 10vh; }
.composition-matiere .frame:nth-child(2) { right: 14vw; top: 48vh; width: min(18vw, 270px); }
.composition-matiere .frame:nth-child(3) { left: 27vw; top: 88vh; width: min(24vw, 360px); }
.composition-matiere .frame:nth-child(4) { right: 7vw; top: 128vh; width: min(22vw, 330px); }
.composition-matiere .frame:nth-child(5) { left: 9vw; top: 172vh; width: min(20vw, 300px); }
.composition-matiere .frame:nth-child(6) { right: 25vw; top: 215vh; width: min(23vw, 345px); }

.composition-structure .frame:nth-child(1) { left: 2vw; top: 8vh; width: 62vw; }
.composition-structure .frame:nth-child(2) { right: 2vw; top: 58vh; width: 48vw; }
.composition-structure .frame:nth-child(3) { left: 12vw; top: 104vh; width: 25vw; }
.composition-structure .frame:nth-child(4) { right: 8vw; top: 147vh; width: 58vw; }
.composition-structure .frame:nth-child(5) { left: 3vw; top: 191vh; width: 52vw; }
.composition-structure .frame:nth-child(6) { right: 3vw; top: 235vh; width: 64vw; }

.chapter-spectres { min-height: 325svh; }
.chapter-spectres .chapter-title span:nth-child(2) { margin-left: 24vw; }
.chapter-spectres .spectral-machine { opacity: 1; }
.chapter-spectres .spectral-slice { opacity: .48; }
.composition-duree { z-index: 3; }
.composition-duree .frame:nth-child(1) { left: 5vw; top: 10vh; width: 58vw; }
.composition-duree .frame:nth-child(2) { right: 3vw; top: 54vh; width: 50vw; }
.composition-duree .frame:nth-child(3) { left: 12vw; top: 98vh; width: 64vw; }
.composition-duree .frame:nth-child(4) { right: 8vw; top: 143vh; width: 56vw; }
.composition-duree .frame:nth-child(5) { left: 3vw; top: 187vh; width: 53vw; }
.composition-duree .frame:nth-child(6) { right: 3vw; top: 231vh; width: 66vw; }

.about-body > div { align-items: start; }
.about-body > .practice-copy { grid-template-columns: 1fr 1fr; }
.practice-copy p:nth-child(3), .practice-copy p:nth-child(6) { grid-column: 1 / -1; }
.afterimage-word > div { width: 100%; }
.contact h2 { font-size: clamp(5.5rem, 15.5vw, 16rem); }
.contact-link { text-align: center; }
.viewer-close b { font: inherit; font-weight: 400; }

.biography {
  position: relative;
  min-height: 142svh;
  padding: 14vh 20px 26vh;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background-color: var(--blue);
  background-image: var(--grain-texture);
  background-size: 180px 180px;
}
.biography::before {
  content: "BIO";
  position: absolute;
  right: -1vw;
  bottom: 3vh;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.13);
  font-size: 31vw;
  font-weight: 900;
  line-height: .66;
  letter-spacing: -.12em;
  pointer-events: none;
}
.bio-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font: 8px/1.3 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.bio-meta > span:nth-child(2) { text-align: center; }
.bio-meta > span:last-child { text-align: right; }
.bio-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
  gap: 7vw;
  align-items: end;
  margin-top: 17vh;
}
.biography h2 {
  margin: 0;
  font-size: clamp(6.5rem, 16.8vw, 17rem);
  font-weight: 900;
  line-height: .62;
  letter-spacing: -.11em;
}
.biography h2 > span { display: block; }
.biography h2 > span:last-child {
  margin-left: 6vw;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--acid);
  transform: scaleX(.82);
  transform-origin: left center;
}
.bio-lead {
  margin: 0 0 .4em;
  font-size: clamp(1.55rem, 2.55vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.bio-portrait {
  display: grid;
  grid-template-columns: minmax(170px, .34fr) minmax(0, 1.66fr);
  gap: 6vw;
  align-items: start;
  margin: 13vh 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.42);
}
.bio-portrait figcaption {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 35px;
  margin: 0;
  font: 8px/1.5 var(--mono);
  letter-spacing: .07em;
  text-transform: uppercase;
}
.bio-portrait figcaption::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--acid);
}
.bio-portrait figcaption span:last-child { opacity: .48; }
.bio-portrait-frame {
  position: relative;
  width: min(48vw, 560px);
  justify-self: end;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}
.bio-portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.18);
}
.bio-portrait img { width: 100%; height: auto; object-fit: contain; }
.bio-content {
  display: grid;
  grid-template-columns: minmax(170px, .34fr) minmax(0, 1.66fr);
  gap: 6vw;
  margin-top: 15vh;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.42);
}
.bio-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 35px;
  margin: 0;
  font: 8px/1.5 var(--mono);
  letter-spacing: .07em;
  text-transform: uppercase;
}
.bio-axis > span:last-child { opacity: .48; }
.bio-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3vw;
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  line-height: 1.58;
}
.bio-copy p { margin: 0; }
.bio-commission {
  display: grid;
  grid-template-columns: minmax(120px, .34fr) minmax(180px, .48fr) minmax(0, 1.18fr);
  gap: 6vw;
  align-items: start;
  margin-top: 12vh;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.42);
}
.bio-commission > span { font: 8px/1.4 var(--mono); letter-spacing: .08em; }
.bio-commission strong { color: var(--acid); font-size: clamp(1.9rem, 3.5vw, 4.1rem); line-height: .8; letter-spacing: -.065em; }
.bio-commission p { max-width: 690px; margin: 0; font-size: clamp(1rem, 1.12vw, 1.18rem); line-height: 1.58; }
.bio-commission i { font-style: normal; font-weight: 800; }
.bio-archive {
  width: min(100%, 980px);
  margin: 8vh auto 0;
}
.bio-archive-frame {
  position: relative;
  overflow: hidden;
  background: #050505;
}
.bio-archive-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.18);
}
.bio-archive img {
  display: block;
  width: 100%;
  height: auto;
}
.bio-archive figcaption {
  display: grid;
  grid-template-columns: minmax(180px, .55fr) minmax(0, 1fr);
  gap: 5vw;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.42);
  font: 8px/1.55 var(--mono);
  letter-spacing: .07em;
  text-transform: uppercase;
}
.bio-archive figcaption strong { color: var(--acid); font-weight: 700; }
.bio-archive figcaption i { font-style: normal; }
.bio-archive figcaption span { max-width: 560px; }

/* Editorial copy: balanced justification without exaggerated word spacing. */
.curatorial-copy p,
.practice-copy p,
.bio-copy p,
.bio-commission p {
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  hyphenate-limit-chars: 7 3 3;
  hyphenate-limit-lines: 2;
  overflow-wrap: break-word;
  word-spacing: normal;
}
html[data-lang="zh"] .curatorial-copy p,
html[data-lang="ja"] .curatorial-copy p,
html[data-lang="zh"] .practice-copy p,
html[data-lang="ja"] .practice-copy p,
html[data-lang="zh"] .bio-copy p,
html[data-lang="ja"] .bio-copy p,
html[data-lang="zh"] .bio-commission p,
html[data-lang="ja"] .bio-commission p {
  text-justify: inter-character;
  hyphens: none;
  -webkit-hyphens: none;
  line-break: strict;
  overflow-wrap: normal;
}
.biography .cursor-reactive { --react-shadow-color: rgba(255,59,112,.38); }

@media (max-width: 800px) {
  .hud-actions { gap: 12px; }
  .language { font-size: 8px; }
  .index-foot { grid-template-columns: repeat(4, auto); gap: 10px; }
  .index-foot a > span { font-size: 6.5px; }
  .field-fallback { width: 78vw; height: 76vh; }
  .field-fallback img { height: 100%; object-fit: contain; }
  .chapter { min-height: auto; padding-bottom: 80px; }
  .chapter-title { font-size: 18vw; }
  .chapter-peaux .chapter-title > span:nth-child(2) { font-size: .54em; }
  .composition {
    min-height: 0;
    margin-top: 10vh;
    padding: 0 0 10vh;
    display: flex;
    flex-direction: column;
    gap: 15vh;
  }
  .composition .frame,
  .composition-surface .frame,
  .composition-matiere .frame,
  .composition-structure .frame,
  .composition-duree .frame {
    position: relative;
    inset: auto;
    width: 82vw;
    max-width: none;
    align-self: flex-start;
  }
  .composition .frame:nth-child(even) { align-self: flex-end; }
  .composition-surface .frame:nth-child(2),
  .composition-surface .frame:nth-child(4),
  .composition-structure .frame:nth-child(3) { width: 54vw; }
  .composition-matiere .frame,
  .composition-matiere .frame:nth-child(n) { width: 54vw; max-width: 280px; }
  .composition-structure .frame,
  .composition-structure .frame:nth-child(n),
  .composition-duree .frame,
  .composition-duree .frame:nth-child(n) { width: 88vw; }
  .chapter-spectres { min-height: auto; }
  .chapter-spectres .spectral-machine { top: 39vh; height: 58vh; opacity: 1; }
  .chapter-spectres .spectral-slice { opacity: .34; }
  .spectral-slice img { height: 58vh; }
  .curatorial { min-height: auto; padding: 12vh 12px 10vh; }
  .curatorial-meta { grid-template-columns: 1fr 1fr; }
  .curatorial-meta > span:nth-child(2), .curatorial-meta > span:nth-child(3) { text-align: right; }
  .curatorial-meta > span:last-child { display: none; }
  .curatorial h2 { margin-top: 16vh; font-size: 18vw; line-height: .76; }
  .curatorial h2 > span:nth-child(2), .curatorial h2 > span:nth-child(4) { margin: .08em 0 0 5vw; font-size: .72em; }
  .curatorial-body { grid-template-columns: 1fr; gap: 12vh; margin-top: 18vh; }
  .curatorial-lead { font-size: 2.2rem; }
  .curatorial-copy { grid-template-columns: 1fr; gap: 28px; font-size: 1rem; }
  .curatorial-foot { margin-top: 12vh; }
  .about-body > .practice-copy { grid-template-columns: 1fr; }
  .practice-copy p:nth-child(3), .practice-copy p:nth-child(6) { grid-column: auto; }
  .contact h2 { font-size: 20vw; }
  .contact-foot > span:last-child { text-align: right; }
  .biography { min-height: auto; padding: 12vh 12px 18vh; }
  .biography::before { right: -1vw; bottom: 2vh; font-size: 36vw; }
  .bio-meta { grid-template-columns: 1fr 1fr; }
  .bio-meta > span:nth-child(2) { text-align: right; }
  .bio-meta > span:last-child { display: none; }
  .bio-hero { grid-template-columns: 1fr; gap: 12vh; margin-top: 15vh; }
  .biography h2 { font-size: 25vw; }
  .biography h2 > span:last-child { margin-left: 5vw; }
  .bio-lead { max-width: 88vw; font-size: 2rem; }
  .bio-portrait { grid-template-columns: 1fr; gap: 26px; margin-top: 11vh; }
  .bio-portrait figcaption { min-height: 0; flex-direction: row; align-items: center; }
  .bio-portrait figcaption::before { width: 22px; }
  .bio-portrait-frame { width: min(88vw, 560px); justify-self: end; }
  .bio-content { grid-template-columns: 1fr; gap: 8vh; margin-top: 13vh; }
  .bio-axis { flex-direction: row; }
  .bio-axis > span:last-child { text-align: right; }
  .bio-copy { grid-template-columns: 1fr; gap: 30px; font-size: 1rem; }
  .bio-commission { grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 10vh; }
  .bio-commission strong { text-align: right; }
  .bio-commission p { grid-column: 1 / -1; }
  .bio-archive { margin-top: 8vh; }
  .bio-archive figcaption { grid-template-columns: 1fr; gap: 8px; }
  .viewer-media { width: 94vw; height: calc(100svh - 112px); }
  .viewer-diptych { width: 94vw; }
  .viewer-triptych { width: 94vw; }
  .viewer-nav { top: auto; bottom: 48px; transform: none; }
  .viewer-nav b { display: none !important; }
  .viewer-previous { left: 12px; }
  .viewer-next { right: 12px; }
  .viewer > p { grid-template-columns: 1fr auto; }
  .viewer-counter { grid-column: 2; grid-row: 1; }
  .viewer-meta { display: none; }
}

/* Artwork dates and dimensions: confined to captions and the viewer footer. */
.frame figcaption > .artwork-details {
  grid-column: 2 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 3px 10px;
  min-width: 0;
  line-height: 1.5;
  opacity: .65;
  justify-content: var(--caption-details-align, flex-start);
}
.viewer > p > .viewer-artwork-details {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 14px;
  line-height: 1.5;
  opacity: .7;
}
.viewer > p > .viewer-artwork-details > span { opacity: 1; }

/* Keep captions on the exposed edge of overlapping desktop photographs. */
@media (min-width: 801px) {
  .composition-surface .frame:nth-child(2) > figcaption,
  .composition-structure .frame:nth-child(4) > figcaption,
  .composition-duree .frame:nth-child(2) > figcaption,
  .composition-duree .frame:nth-child(4) > figcaption,
  :is(.composition-surface, .composition-structure, .composition-duree) .frame:last-child > figcaption {
    --caption-details-align: flex-end;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    grid-template-columns: auto auto auto;
    text-align: right;
  }

  /* The final image height scales with viewport width, not viewport height. */
  .composition-surface {
    min-height: max(270vh, calc(228vh + 28.7832vw + 6rem));
  }
  .composition-structure {
    min-height: max(270vh, calc(235vh + 36vw + 6rem));
  }
  .composition-duree {
    min-height: max(270vh, calc(231vh + 37.125vw + 6rem));
  }
}

/* Television static is painted in section backgrounds, below all content. */
.tv-noise {
  background-image: url("assets/tv-static.svg");
  background-size: 128px 128px;
  background-repeat: repeat;
  animation: tv-noise-drift 1.8s linear infinite;
  animation-play-state: paused;
}
.tv-noise.is-scintillating {
  animation: tv-noise-drift 1.8s linear infinite, tv-static .4s steps(1, end) 1;
  animation-play-state: paused;
}
.tv-noise.is-noise-visible { animation-play-state: running; }
body.index-open main .tv-noise,
body.viewer-open main .tv-noise { animation-play-state: paused; }
html.noise-paused .tv-noise { animation-play-state: paused !important; }

/* Small changes of direction keep the grain restless between signal breaks. */
@keyframes tv-noise-drift {
  0%, 100% { background-position: 0 0; }
  18% { background-position: 6px -3px; }
  38% { background-position: -4px 7px; }
  61% { background-position: 8px 2px; }
  79% { background-position: 2px -5px; }
}

/* Three pronounced grain pulses over 0.4 seconds, once every 17 seconds.
   Only the background grain gains intensity; content and the base drift stay intact. */
@keyframes tv-static {
  0% { background-position: 0 0; background-image: url("assets/tv-static-burst.svg"); }
  12.5% { background-position: -23px -17px; background-image: url("assets/tv-static-burst.svg"); }
  25% { background-position: -91px 57px; background-image: url("assets/tv-static.svg"); }
  37.5% { background-position: 43px -71px; background-image: url("assets/tv-static-burst.svg"); }
  50% { background-position: 101px 29px; background-image: url("assets/tv-static-burst.svg"); }
  62.5% { background-position: -47px 97px; background-image: url("assets/tv-static.svg"); }
  75% { background-position: 17px -109px; background-image: url("assets/tv-static-burst.svg"); }
  87.5% { background-position: -79px -43px; background-image: url("assets/tv-static.svg"); }
  100% { background-position: 0 0; background-image: url("assets/tv-static.svg"); }
}

@media (prefers-reduced-motion: reduce) {
  .tv-noise { animation: none !important; }
}

/* Listening controls share the existing header and gallery navigation. */
.sound-control { position: relative; flex: 0 0 auto; }
.sound-control[hidden] { display: none; }
.sound-toggle {
  display: flex; align-items: center; gap: 5px; min-height: 31px;
  padding: 0; border: 0; color: inherit; background: none;
  font: 10px/1 var(--mono); letter-spacing: .04em;
}
.sound-toggle svg {
  width: 18px; height: 18px; fill: none; stroke: currentColor;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.sound-waves, .sound-control.is-playing .sound-slash { display: none; }
.sound-control.is-playing .sound-waves { display: initial; }
.sound-toggle:focus-visible { outline: 1px solid currentColor; outline-offset: 5px; }
.sound-volume {
  position: absolute; top: 100%; right: 0; z-index: 5; width: 156px;
  display: grid; gap: 10px; padding: 16px 12px 12px;
  color: #fff; background: #080808; border: 1px solid rgba(255,255,255,.35);
  opacity: 0; visibility: hidden; pointer-events: none;
  font: 11px/1.3 var(--mono); letter-spacing: .02em;
}
.sound-control:hover .sound-volume,
.sound-control:focus-within .sound-volume { opacity: 1; visibility: visible; pointer-events: auto; }
.sound-volume input { width: 100%; margin: 0; accent-color: #ff3b70; cursor: pointer; }
.sound-status { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.viewer-sound { position: absolute; top: 20px; left: 20px; z-index: 4; }
.viewer-sound .sound-volume { left: 0; right: auto; }
@media (max-width: 800px) {
  .viewer-sound { top: 12px; left: 12px; }
}
