/*
  THESIS: A large-format exhibition index, not a dashboard of demo cards.
  OWN-WORLD: Carbon walls, exhibition paper, acid marker, alternating project plates.
  STORY: Ten current works lead; authorship and craft are legible; older work waits in one archive drawer.
  FIRST VIEWPORT: A poster-sized “10”, the promise “Zehn Websites. Kein Template.” and a collection ledger.
  FORM: Editorial exhibition catalogue; each project receives a subject-specific CSS specimen.
*/

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

:root {
  color-scheme: dark;
  --carbon: #11110f;
  --carbon-2: #1a1a17;
  --paper: #f2efe6;
  --chalk: #fffdf7;
  --acid: #d7ff37;
  --cobalt: #3f55ff;
  --vermilion: #ff5538;
  --muted-dark: #5d5d56;
  --muted-light: #a7a79e;
  --page-progress: 0;
  --font-display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  background: var(--carbon);
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--carbon);
  color: var(--chalk);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: calc(var(--page-progress) * 100%);
  height: 3px;
  background: var(--acid);
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  transform: translateY(-150%);
  background: var(--acid);
  color: var(--carbon);
  font-weight: 800;
  text-decoration: none;
}

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

/* Icon sheet: referenced by <use>, never rendered on its own. */
.glyph-sheet {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.masthead {
  overflow: hidden;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(18px, 2.2vw, 34px);
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(255, 255, 255, .12) 50%, transparent calc(50% + .5px)),
    var(--carbon);
}

.masthead__bar,
.masthead__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.masthead__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.masthead__brand::before {
  width: 12px;
  height: 12px;
  background: var(--acid);
  content: "";
}

.masthead__nav {
  display: flex;
  gap: clamp(14px, 2.4vw, 34px);
  align-items: center;
}

/* Die Textzeile war 18px hoch und verfehlte damit die Mindestzielgröße.
   Die Fläche wächst, die Typografie bleibt unverändert. */
.masthead__nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-underline-offset: 4px;
}

.masthead__stage {
  align-self: center;
  display: grid;
  grid-template-columns: minmax(230px, .78fr) minmax(360px, 1.22fr);
  gap: clamp(30px, 5vw, 90px);
  align-items: end;
  padding: clamp(70px, 9vh, 130px) 0;
}

.masthead__number {
  position: relative;
  margin: 0;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(13rem, 31vw, 32rem);
  font-weight: 900;
  letter-spacing: -.095em;
  line-height: .62;
  -webkit-text-stroke: clamp(2px, .25vw, 4px) var(--chalk);
  user-select: none;
}

.masthead__number::after {
  position: absolute;
  right: 5%;
  bottom: -6%;
  width: clamp(30px, 4vw, 62px);
  height: clamp(30px, 4vw, 62px);
  border-radius: 50%;
  background: var(--acid);
  content: "";
}

.masthead__copy {
  max-width: 770px;
}

.masthead__kicker {
  margin: 0 0 22px;
  color: var(--acid);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.masthead h1 {
  max-width: 8.5ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 8.2vw, 9rem);
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: .78;
  text-wrap: balance;
}

.masthead__intro {
  max-width: 52ch;
  margin: clamp(26px, 4vw, 50px) 0 0 auto;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  line-height: 1.48;
}

.masthead__ledger {
  display: flex;
  gap: 12px;
  align-items: center;
}

.masthead__ledger b {
  color: var(--acid);
}

.masthead__clock {
  font-variant-numeric: tabular-nums;
}

.collection {
  --surface: var(--paper);
  --ink: var(--carbon);
  background: var(--surface);
  color: var(--ink);
}

.collection--codex {
  --surface: var(--carbon);
  --ink: var(--chalk);
}

/* Sammlung C teilt die helle Fläche mit A und unterscheidet sich über den
   Akzent — dieselbe Logik, mit der A und B bereits getrennt werden. */
.collection--mika {
  --accent: var(--vermilion);
}

.collection__head {
  min-height: 44svh;
  display: grid;
  grid-template-columns: minmax(160px, .42fr) 1fr;
  gap: 26px;
  align-items: end;
  padding: clamp(60px, 9vw, 140px) clamp(20px, 4vw, 64px) clamp(38px, 6vw, 78px);
  border-bottom: 1px solid currentColor;
}

.collection__edition {
  align-self: start;
  margin: 5px 0 0;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.collection__edition span {
  display: block;
  margin-top: 8px;
  color: var(--muted-dark);
  letter-spacing: .02em;
  text-transform: none;
}

.collection--codex .collection__edition span {
  color: var(--muted-light);
}

.collection__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 10rem);
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: .78;
}

.collection__title i {
  color: var(--cobalt);
  font-family: Georgia, serif;
  font-weight: 400;
}

.collection--codex .collection__title i {
  color: var(--acid);
}

.collection--mika .collection__title i {
  color: var(--vermilion);
}

/* Einleitung der Sammlung: erklärt die Herkunftsangabe, bevor die erste
   Karte sie zeigt. */
.collection__note {
  max-width: 62ch;
  margin: 0;
  padding: clamp(28px, 4vw, 46px) clamp(20px, 4vw, 64px) 0;
  color: var(--muted-dark);
  font-size: clamp(.98rem, 1.3vw, 1.16rem);
}

.collection__note abbr {
  text-decoration: none;
}

/* Herkunftsangabe auf der Karte: welche MXL-Nummern das Ergebnis getragen
   haben. Eine Nummer bedeutet eine reine Vorlage, mehrere eine Mischung. */
.work__source {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: clamp(18px, 2.4vw, 26px) 0 0;
  flex-wrap: wrap;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.work__source-kind {
  padding: 5px 9px;
  border: 1px solid currentColor;
  color: var(--vermilion);
}

.work__source-ids {
  color: var(--muted-dark);
  font-family: "Courier New", monospace;
  font-weight: 700;
  letter-spacing: .06em;
}

.work {
  min-height: clamp(480px, 62vw, 760px);
  display: grid;
  grid-template-areas: "copy visual";
  grid-template-columns: minmax(260px, .72fr) minmax(420px, 1.28fr);
  gap: clamp(30px, 5vw, 82px);
  align-items: stretch;
  padding: clamp(28px, 4vw, 62px);
  border-bottom: 1px solid currentColor;
  color: inherit;
  text-decoration: none;
}

.work:nth-of-type(even) {
  grid-template-areas: "visual copy";
  grid-template-columns: minmax(420px, 1.28fr) minmax(260px, .72fr);
}

.work__copy {
  grid-area: copy;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
}

.work__meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
  border-top: 5px solid currentColor;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.work__meta span:last-child {
  text-align: right;
}

.work__body {
  align-self: center;
  padding: 35px 0;
}

.work__title {
  max-width: 8ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 6.5vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: .82;
  text-wrap: balance;
}

.work__description {
  max-width: 38ch;
  margin: clamp(22px, 3vw, 36px) 0 0;
  color: var(--muted-dark);
  font-size: clamp(.98rem, 1.3vw, 1.18rem);
}

.collection--codex .work__description {
  color: var(--muted-light);
}

.work__action {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  padding-bottom: 10px;
  border-bottom: 1px solid currentColor;
  font-size: .82rem;
  font-weight: 800;
}

.work__cta {
  position: relative;
  padding-bottom: 4px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.work__cta::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: currentColor;
  transition: transform 420ms cubic-bezier(.16, 1, .3, 1);
  content: "";
}

.work__arrow {
  position: relative;
  z-index: 0;
  display: grid;
  overflow: hidden;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  isolation: isolate;
}

/* Signal fill wipes up from the baseline the moment the plate is engaged. */
.work__arrow::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: translateY(100%);
  background: var(--acid);
  transition: transform 300ms cubic-bezier(.4, 0, .2, 1);
  content: "";
}

.work__arrow-glyph {
  grid-area: 1 / 1;
  width: 19px;
  height: 19px;
  transition:
    transform 460ms cubic-bezier(.16, 1, .3, 1),
    color 180ms linear 90ms;
}

/* The trailing copy waits off-plate and takes the leader's place on hover. */
.work__arrow-glyph--trail {
  transform: translate(-150%, 150%);
}

.work:hover .work__cta::after,
.work:focus-visible .work__cta::after,
.work:active .work__cta::after {
  transform: scaleX(1);
}

.work:hover .work__arrow::before,
.work:focus-visible .work__arrow::before,
.work:active .work__arrow::before {
  transform: translateY(0);
}

.work:hover .work__arrow-glyph,
.work:focus-visible .work__arrow-glyph,
.work:active .work__arrow-glyph {
  transform: translate(150%, -150%);
  color: var(--carbon);
}

.work:hover .work__arrow-glyph--trail,
.work:focus-visible .work__arrow-glyph--trail,
.work:active .work__arrow-glyph--trail {
  transform: translate(0, 0);
}

.work__visual {
  grid-area: visual;
  min-width: 0;
  min-height: 380px;
  display: grid;
  overflow: hidden;
  place-items: stretch;
  background: var(--carbon-2);
  isolation: isolate;
}

.work__visual > * {
  transition: transform 600ms cubic-bezier(.16, 1, .3, 1);
}

.work:hover .work__visual > *,
.work:focus-visible .work__visual > * {
  transform: scale(1.015);
}

/* 01 — technical drawing */
.spec-blueprint {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background-color: #e9e7dc;
  background-image:
    linear-gradient(rgba(34, 41, 42, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 41, 42, .11) 1px, transparent 1px);
  background-size: 24px 24px;
  color: #20292a;
  font-family: "Courier New", monospace;
}

.spec-blueprint::before {
  position: absolute;
  inset: 24px;
  border: 2px solid currentColor;
  content: "";
}

.blueprint-part {
  position: relative;
  width: min(60%, 360px);
  aspect-ratio: 1;
  border: clamp(28px, 6vw, 70px) solid #c6a300;
  border-radius: 50%;
  outline: 2px solid currentColor;
}

.blueprint-part::before,
.blueprint-part::after {
  position: absolute;
  content: "";
  background: currentColor;
}

.blueprint-part::before {
  top: 50%;
  left: -42%;
  width: 184%;
  height: 2px;
}

.blueprint-part::after {
  top: -42%;
  left: 50%;
  width: 2px;
  height: 184%;
}

.blueprint-note {
  position: absolute;
  right: 42px;
  bottom: 36px;
  padding: 8px 12px;
  border: 2px solid currentColor;
  background: #e9e7dc;
  font-size: clamp(.7rem, 1.2vw, .9rem);
}

/* 02 — screenprint poster */
.spec-riso {
  position: relative;
  overflow: hidden;
  background: #e8d8b9;
  color: #131313;
}

.riso-red,
.riso-blue {
  position: absolute;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.riso-red {
  top: -20%;
  left: -12%;
  background: #f04a24;
}

.riso-blue {
  right: -13%;
  bottom: -23%;
  background: #2241b8;
}

.riso-word {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(4.5rem, 11vw, 10rem);
  line-height: .72;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.riso-word span:last-child {
  margin-left: 14%;
  color: #f04a24;
  mix-blend-mode: multiply;
}

.riso-date {
  position: absolute;
  top: 24px;
  right: 26px;
  writing-mode: vertical-rl;
  font-weight: 900;
}

/* 03 — geological profile */
.spec-soil {
  position: relative;
  display: grid;
  grid-template-rows: 13% 18% 23% 16% 30%;
  background: #252719;
  color: #f5f0dc;
}

.soil-layer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 46px);
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  font: 700 clamp(.65rem, 1.4vw, .9rem) "Arial Narrow", Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.soil-layer:nth-child(1) { background: #84994b; }
.soil-layer:nth-child(2) { background: #9d683a; }
.soil-layer:nth-child(3) {
  background:
    repeating-linear-gradient(15deg, #5e3e2c 0 8px, #6f4b35 8px 14px);
}
.soil-layer:nth-child(4) { background: #9b8b69; }
.soil-layer:nth-child(5) {
  background:
    radial-gradient(circle at 15px 13px, rgba(255,255,255,.14) 0 2px, transparent 2.4px),
    #3b3228;
  background-size: 30px 26px;
}

.soil-depth {
  font-variant-numeric: tabular-nums;
  opacity: .75;
}

/* 04 — case file */
.spec-file {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #d4d0c3;
  color: #17242b;
}

.file-sheet {
  width: 74%;
  min-height: 78%;
  padding: clamp(24px, 4vw, 55px);
  transform: rotate(-2.3deg);
  background:
    linear-gradient(90deg, transparent 58px, rgba(190, 40, 31, .2) 59px, transparent 60px),
    #f4f0e5;
  box-shadow: 14px 16px 0 rgba(23, 36, 43, .18);
}

.file-tabs {
  position: absolute;
  top: 11%;
  right: 5%;
  display: grid;
  gap: 5px;
}

.file-tabs i {
  width: clamp(55px, 8vw, 100px);
  height: 35px;
  background: var(--tab, #d5463b);
}

.file-tabs i:nth-child(2) { --tab: #dca62b; transform: translateX(12px); }
.file-tabs i:nth-child(3) { --tab: #2f7684; transform: translateX(2px); }
.file-tabs i:nth-child(4) { --tab: #6c8052; transform: translateX(17px); }

.file-code {
  font: 700 .75rem "Arial Narrow", Arial, sans-serif;
  letter-spacing: .12em;
}

.file-title {
  max-width: 8ch;
  margin: 18% 0 18px;
  font: 700 clamp(2.2rem, 5vw, 5rem) Georgia, serif;
  line-height: .9;
}

.file-lines {
  display: grid;
  gap: 9px;
}

.file-lines i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: .45;
}

.file-lines i:nth-child(2) { width: 83%; }
.file-lines i:nth-child(3) { width: 91%; }

/* 05 — climbing board */
.spec-boulder {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, transparent 0 44%, rgba(255,255,255,.055) 44% 45%, transparent 45%),
    #24231f;
}

.hold {
  position: absolute;
  width: clamp(22px, 4vw, 48px);
  aspect-ratio: 1.5;
  border-radius: 50% 45% 55% 42%;
  transform: rotate(var(--r, 0deg));
  background: var(--c);
  box-shadow: 0 4px 0 rgba(0, 0, 0, .32);
}

.hold:nth-child(1) { --c: #f1cb31; --r: 18deg; top: 18%; left: 15%; }
.hold:nth-child(2) { --c: #ee5a48; --r: -30deg; top: 29%; left: 36%; }
.hold:nth-child(3) { --c: #4b9cdc; --r: 55deg; top: 14%; right: 21%; }
.hold:nth-child(4) { --c: #a874dc; --r: -12deg; top: 49%; left: 21%; }
.hold:nth-child(5) { --c: #4fba6b; --r: 80deg; top: 58%; left: 50%; }
.hold:nth-child(6) { --c: #efede7; --r: 6deg; top: 43%; right: 14%; }
.hold:nth-child(7) { --c: #f1cb31; --r: -50deg; bottom: 15%; left: 12%; }
.hold:nth-child(8) { --c: #ee5a48; --r: 35deg; bottom: 14%; right: 28%; }

.boulder-label {
  position: absolute;
  right: 4%;
  bottom: 4%;
  color: #f5f2e9;
  font: 900 clamp(2.5rem, 7vw, 6rem) Arial, sans-serif;
  letter-spacing: -.08em;
}

/* 06 — kitchen zine */
.spec-klee {
  position: relative;
  overflow: hidden;
  background: #eee2d4;
  color: #17110e;
}

.klee-photo {
  position: absolute;
  top: 7%;
  left: 8%;
  width: 54%;
  height: 62%;
  transform: rotate(-3deg);
  background:
    radial-gradient(circle at 65% 45%, #f5d372 0 8%, #f7e6b2 8.4% 18%, transparent 18.5%),
    radial-gradient(circle at 32% 36%, #d55a37 0 11%, #813921 11.5% 16%, transparent 16.5%),
    radial-gradient(circle at 52% 72%, #2e5b36 0 10%, transparent 10.5%),
    #c6aa80;
  box-shadow: 12px 14px 0 #17110e;
}

.klee-ticket {
  position: absolute;
  top: 12%;
  right: 7%;
  width: 34%;
  min-height: 48%;
  padding: 24px 18px;
  transform: rotate(4deg);
  background: #fffdf7;
  border-top: 10px solid #f15a43;
  font: 700 clamp(.68rem, 1.2vw, .9rem) "Arial Narrow", Arial, sans-serif;
}

.klee-ticket::after {
  display: block;
  height: 70px;
  margin-top: 18px;
  background: repeating-linear-gradient(0deg, #17110e 0 2px, transparent 2px 8px);
  content: "";
  opacity: .65;
}

.klee-word {
  position: absolute;
  left: 6%;
  bottom: 4%;
  color: #f15a43;
  font: 900 clamp(5.2rem, 13vw, 12rem) Georgia, serif;
  letter-spacing: -.1em;
  line-height: .7;
}

/* 07 — radio tuner */
.spec-radio {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(24px, 4vw, 54px);
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 4px),
    #2b2d2b;
  color: #d9f56b;
  box-shadow: inset 0 0 0 12px #161714, inset 0 0 0 14px #6f746e;
  font-family: "Courier New", monospace;
}

.radio-scale {
  align-self: center;
  height: 33%;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  align-items: end;
  padding: 24px 14px 10px;
  border: 2px solid #8f948f;
  background: #141713;
}

.radio-scale i {
  height: var(--h, 50%);
  border-left: 1px solid currentColor;
}

.radio-scale i:nth-child(2n) { --h: 75%; }
.radio-scale i:nth-child(3n) { --h: 100%; }

.radio-needle {
  position: absolute;
  top: 31%;
  left: 61%;
  width: 2px;
  height: 23%;
  background: #ff5a3d;
  box-shadow: 0 0 10px rgba(255, 90, 61, .4);
}

.radio-controls {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.radio-frequency {
  font-size: clamp(2.3rem, 7vw, 6rem);
  letter-spacing: -.08em;
  line-height: .8;
}

.radio-dial {
  width: clamp(70px, 10vw, 120px);
  aspect-ratio: 1;
  border: 10px solid #8f948f;
  border-radius: 50%;
  background:
    repeating-conic-gradient(#151614 0 5deg, #4f514e 5deg 9deg);
  box-shadow: inset 0 0 0 8px #191a18;
}

/* 08 — experiment notebook */
.spec-lab {
  position: relative;
  overflow: hidden;
  background: #f6e0db;
  color: #121212;
}

.lab-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 18, 18, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 18, 18, .12) 1px, transparent 1px);
  background-size: 34px 34px;
}

.lab-shape {
  position: absolute;
  border: 4px solid #121212;
  box-shadow: 8px 8px 0 #121212;
}

.lab-shape--sun {
  top: 11%;
  left: 9%;
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f6d44a;
}

.lab-shape--wave {
  right: -5%;
  bottom: 10%;
  width: 64%;
  height: 36%;
  transform: rotate(-8deg);
  background: #ace2df;
  clip-path: polygon(0 64%, 12% 22%, 26% 66%, 39% 18%, 53% 65%, 68% 24%, 82% 69%, 100% 19%, 100% 100%, 0 100%);
}

.lab-shape--pill {
  top: 19%;
  right: 13%;
  width: 18%;
  height: 37%;
  transform: rotate(24deg);
  border-radius: 999px;
  background: #c3427b;
}

.lab-word {
  position: absolute;
  left: 6%;
  bottom: 3%;
  z-index: 2;
  font: 900 clamp(4rem, 12vw, 10rem) Impact, sans-serif;
  letter-spacing: -.04em;
  transform: rotate(-4deg);
}

.lab-word span {
  color: #2b55b8;
}

/* 09 — transit map */
.spec-transit {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 28, 53, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 28, 53, .08) 1px, transparent 1px),
    #f2f1e8;
  background-size: 32px 32px;
  color: #061c35;
}

.transit-line {
  position: absolute;
  height: 14px;
  transform-origin: left center;
  background: var(--line);
}

.transit-line::before,
.transit-line::after {
  position: absolute;
  top: 50%;
  width: 22px;
  aspect-ratio: 1;
  transform: translateY(-50%);
  border: 5px solid var(--line);
  border-radius: 50%;
  background: #f2f1e8;
  content: "";
}

.transit-line::before { left: -6px; }
.transit-line::after { right: -6px; }
.transit-line--a { --line: #e84a22; top: 28%; left: 8%; width: 73%; transform: rotate(25deg); }
.transit-line--b { --line: #1649d8; top: 70%; left: 5%; width: 82%; transform: rotate(-31deg); }
.transit-line--c { --line: #387f70; top: 12%; left: 53%; width: 57%; transform: rotate(82deg); }

.transit-board {
  position: absolute;
  right: 4%;
  bottom: 4%;
  min-width: 43%;
  padding: 16px 18px;
  background: #061c35;
  color: #f2f1e8;
  box-shadow: 8px 8px 0 #e84a22;
  font: 700 clamp(.68rem, 1.2vw, .9rem) "Arial Narrow", Arial, sans-serif;
}

.transit-board b {
  display: block;
  margin-top: 7px;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: .9;
}

/* 10 — optometry */
.spec-focus {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f7f7f2;
  color: #07182e;
}

.focus-chart {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 24px;
  font-family: Arial, sans-serif;
  font-weight: 900;
  line-height: 1;
}

.focus-chart span:nth-child(1) { font-size: clamp(4.5rem, 10vw, 9rem); }
.focus-chart span:nth-child(2) { font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: .25em; }
.focus-chart span:nth-child(3) { font-size: clamp(1.5rem, 3.5vw, 3rem); letter-spacing: .35em; }
.focus-chart span:nth-child(4) { font-size: clamp(.9rem, 2vw, 1.6rem); letter-spacing: .44em; }

.focus-lenses {
  position: relative;
  background: #07182e;
}

.focus-lens {
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  border: 10px solid #f7f7f2;
  border-radius: 50%;
  background: var(--lens);
  background: color-mix(in srgb, var(--lens), transparent 22%);
  mix-blend-mode: screen;
}

.focus-lens:first-child {
  --lens: #1649d8;
  top: 12%;
  left: -16%;
}

.focus-lens:last-child {
  --lens: #e94a32;
  right: 3%;
  bottom: 9%;
}

.focus-bridge {
  position: absolute;
  top: 47%;
  left: 31%;
  width: 40%;
  height: 12px;
  transform: rotate(-11deg);
  background: #f7f7f2;
}

/* 11 — inflatable sticker sheet (MXL-051) */
.spec-puff {
  position: relative;
  overflow: hidden;
  background: #f7f5ef;
}

.puff-band {
  position: absolute;
  top: 42%;
  left: -6%;
  width: 112%;
  height: 26%;
  transform: rotate(-4deg);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 6%, rgba(255, 255, 255, .72) 18%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(17, 19, 15, 0) 56%, rgba(17, 19, 15, .32) 100%),
    linear-gradient(97deg, #ff87b5 0%, #ffc933 26%, #c6e04f 48%, #4fd39b 68%, #ff8f38 85%, #b98cff 100%);
}

.puff-dot {
  position: absolute;
  display: grid;
  width: 22%;
  aspect-ratio: 1;
  place-items: center;
  border: 6px solid #fff;
  border-radius: 50%;
  background:
    radial-gradient(120% 90% at 32% 14%, rgba(255, 255, 255, .85), rgba(255, 255, 255, 0) 56%),
    var(--dot);
  box-shadow: 0 18px 26px -20px rgba(17, 19, 15, .7);
  color: var(--dot-ink);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.9rem);
  font-style: normal;
  font-weight: 900;
}

.puff-dot--a { --dot: #ff87b5; --dot-ink: #4a0f26; top: 9%;  left: 11%; }
.puff-dot--b { --dot: #ffc933; --dot-ink: #422f05; top: 20%; right: 14%; }
.puff-dot--c { --dot: #b98cff; --dot-ink: #260f47; bottom: 8%; left: 34%; }

/* 12 — organ facade in the dark (MXL-007) */
.spec-orgel {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: end center;
  background: #080908;
}

.orgel-licht {
  position: absolute;
  inset: -30% -10% auto;
  height: 100%;
  background: radial-gradient(56% 66% at 50% 12%, rgba(244, 241, 233, .16), rgba(244, 241, 233, 0) 68%);
}

.orgel-reihe {
  display: flex;
  width: min(78%, 460px);
  height: 78%;
  gap: clamp(4px, .8vw, 10px);
  align-items: flex-end;
  justify-content: center;
  mask-image: linear-gradient(180deg, #000 74%, transparent 100%);
}

.orgel-reihe i {
  width: clamp(16px, 3vw, 34px);
  height: var(--h);
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(90deg, #14171a, #39424a 17%, #6f7a84 34%, #cfd8de 47%, #414a52 78%, #14171a);
}

/* Die drei Turmpfeifen klingen: dieselbe Signalfarbe wie im Projekt selbst. */
.orgel-reihe i[data-hell] {
  filter: brightness(1.45);
  box-shadow: 0 0 26px rgba(252, 116, 221, .3);
}

/* 13 — accession records on warm paper (MXL-118 + MXL-090 + MXL-113) */
.spec-saat {
  display: grid;
  align-content: center;
  gap: clamp(14px, 1.8vw, 24px);
  padding: clamp(22px, 3.4vw, 48px);
  background: #f7f5ef;
  color: #11130f;
  font-family: Arial, Helvetica, sans-serif;
}

.saat-satz {
  display: grid;
  gap: 8px;
  padding: clamp(14px, 1.8vw, 22px);
  /* Der asymmetrische Radius ist die Signatur von MXL-090. */
  border: 1px solid #ddd9cd;
  border-radius: 16px 16px 16px 3px;
  background: #fff;
}

.saat-satz b {
  color: #72776d;
  font-family: "Courier New", monospace;
  font-size: clamp(.66rem, .82vw, .78rem);
  font-weight: 700;
  letter-spacing: .04em;
}

.saat-satz > span {
  font-size: clamp(.94rem, 1.35vw, 1.24rem);
  font-weight: 700;
  letter-spacing: -.01em;
}

.saat-balken {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6a2b var(--k), #e8e5da var(--k));
}

.saat-balken--gut {
  background: linear-gradient(90deg, #11130f var(--k), #e8e5da var(--k));
}

.saat-satz em {
  color: #72776d;
  font-family: "Courier New", monospace;
  font-size: clamp(.62rem, .78vw, .74rem);
  font-style: normal;
  font-weight: 700;
}

/* Der eine Ember des Systems — sonst nirgends. */
.saat-marker {
  justify-self: start;
  padding: 3px 9px;
  border-radius: 999px;
  background: #fff1e9;
  color: #8a3208;
}

/* 14 — pastel sky and a forty-week arc (MXL-068 + MXL-079 + MXL-050) */
.spec-ufer {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(26px, 4vw, 56px);
  background: linear-gradient(168deg, #dbe6ff 0%, #eef1e8 52%, #ffe9e2 100%);
  color: #11130f;
}

.ufer-form {
  position: absolute;
  border-radius: 48% 52% 44% 56% / 52% 44% 56% 48%;
  background: rgba(255, 255, 255, .5);
}

.ufer-form--a { top: -12%; right: 8%; width: 42%; aspect-ratio: 1; }
.ufer-form--b { bottom: -16%; left: 4%; width: 34%; aspect-ratio: 1; background: rgba(255, 255, 255, .3); }

.ufer-wort {
  position: relative;
  z-index: 2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: .9;
}

.ufer-wort i {
  display: block;
  font-size: .26em;
  font-style: normal;
  letter-spacing: .01em;
}

/* Vierzig Wochen, drei Trimester, ein Korallzeiger — wie im Projekt. */
.ufer-bogen {
  position: relative;
  z-index: 2;
  display: flex;
  height: clamp(30px, 4vw, 46px);
  gap: 2px;
  overflow: hidden;
  border-radius: 999px;
}

.ufer-bogen i { flex: 1; background: rgba(255, 255, 255, .82); }
.ufer-bogen i:nth-child(n+14) { background: rgba(255, 255, 255, .55); }
.ufer-bogen i:nth-child(n+28) { background: rgba(255, 255, 255, .34); }
.ufer-bogen i:nth-child(-n+24) { filter: saturate(.4) brightness(.97); }

.ufer-bogen b {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60%;
  width: 3px;
  border-radius: 999px;
  background: #fa7864;
}

/* 15 — the water column (MXL-040) */
.spec-tiefe {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  padding: clamp(22px, 3vw, 44px) clamp(20px, 2.6vw, 40px);
  background: linear-gradient(180deg, #123f52, #0d2b3d 26%, #081726 58%, #030608);
  color: #f4f1e9;
  font-family: "Courier New", monospace;
}

.tiefe-zone {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 14px;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid rgba(244, 241, 233, .22);
  font-size: clamp(.66rem, .82vw, .78rem);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.tiefe-zone b { font-weight: 700; }
.tiefe-zone i { color: rgba(244, 241, 233, .55); font-style: normal; }

/* Die Einsatzgrenze ist der einzige Ort mit Signalfarbe. */
.tiefe-marke {
  position: relative;
  z-index: 2;
  padding-top: 10px;
  border-top: 2px solid #8d73ff;
  color: #8d73ff;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -.01em;
}

.tiefe-schnee { position: absolute; inset: 0; z-index: 1; }

.tiefe-schnee i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(244, 241, 233, .45);
}

.tiefe-schnee i:nth-child(1) { top: 12%; left: 22%; }
.tiefe-schnee i:nth-child(2) { top: 28%; left: 68%; }
.tiefe-schnee i:nth-child(3) { top: 41%; left: 39%; }
.tiefe-schnee i:nth-child(4) { top: 53%; left: 81%; }
.tiefe-schnee i:nth-child(5) { top: 64%; left: 14%; }
.tiefe-schnee i:nth-child(6) { top: 72%; left: 57%; }
.tiefe-schnee i:nth-child(7) { top: 84%; left: 33%; }
.tiefe-schnee i:nth-child(8) { top: 91%; left: 74%; }

/* 16 — record on pure black (MXL-147) */
.spec-platte {
  display: grid;
  place-items: center;
  padding: clamp(24px, 3.4vw, 56px);
  background: #000;
}

.platte-scheibe {
  position: relative;
  display: grid;
  width: min(80%, 380px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 50%, #0b0b0b 0, #0b0b0b 2px, #161616 2px, #161616 4px),
    #0b0b0b;
  /* Der eine Schatten der Vorlage: 0 4px 74px #7e2d2d87 */
  box-shadow: 0 4px 74px #7e2d2d87;
}

.platte-scheibe::before {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(118deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0) 66%, rgba(255, 255, 255, .1) 88%, rgba(255, 255, 255, 0));
  content: "";
}

/* Das Mittelloch sitzt in der Mitte — der Text muss ihm ausweichen,
   sonst steht das Loch mitten im Wort. */
.platte-label {
  position: relative;
  display: grid;
  width: 38%;
  aspect-ratio: 1;
  place-content: center;
  gap: 26%;
  border-radius: 50%;
  background: #fff6df;
  color: #16120c;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.platte-label b { font-size: clamp(.72rem, 1.1vw, 1rem); font-weight: 900; letter-spacing: -.01em; line-height: 1.02; }
.platte-label i { color: #ff002f; font-size: clamp(.56rem, .8vw, .7rem); font-style: normal; font-weight: 700; letter-spacing: .1em; }

.platte-label::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11%;
  aspect-ratio: 1;
  translate: -50% -50%;
  border-radius: 50%;
  background: #000;
  content: "";
}

/* 17 — a marbling bath under poster type (MXL-022 + MXL-040) */
.spec-marmor {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #ece6d4;
  color: #11130f;
}

/* Tropfen verdrängen einander: harte Ränder, keine Verläufe — wie im
   Verdrängungsmodell der Website. Die Kleisterstreifen darüber sind die
   Spur des Kamms. */
.marmor-bad {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(236, 230, 212, 0) 0 24px, rgba(236, 230, 212, .5) 24px 27px),
    radial-gradient(26% 30% at 76% 16%, #ece6d4 0 34%, #2e4076 34% 99%, transparent 100%),
    radial-gradient(21% 24% at 20% 24%, #587f63 0 99%, transparent 100%),
    radial-gradient(24% 27% at 46% 64%, #23241f 0 30%, #d2799f 30% 99%, transparent 100%),
    radial-gradient(19% 22% at 84% 68%, #d9b94a 0 99%, transparent 100%),
    radial-gradient(11% 13% at 32% 84%, #23241f 0 99%, transparent 100%),
    radial-gradient(14% 16% at 60% 26%, #d9b94a 0 99%, transparent 100%),
    radial-gradient(16% 18% at 10% 62%, #2e4076 0 99%, transparent 100%),
    radial-gradient(12% 14% at 90% 38%, #d2799f 0 99%, transparent 100%);
}

/* Die Papierkontur hinter der Tusche — derselbe Griff wie auf dem Plakat. */
.marmor-wort {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.4vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .92;
  text-transform: uppercase;
}

.marmor-wort b {
  display: block;
  -webkit-text-stroke: 6px #f7f5ef;
  font-weight: 900;
  paint-order: stroke fill;
}

.marmor-wort b:nth-child(2) { margin-left: .55em; }
.marmor-wort b:nth-child(3) { margin-left: .18em; }

.marmor-zettel {
  position: absolute;
  z-index: 2;
  bottom: 9%;
  left: 8%;
  padding: 6px 10px;
  border: 1px solid rgba(17, 19, 15, .16);
  border-radius: 8px;
  background: #f7f5ef;
  font-family: "Courier New", monospace;
  font-size: clamp(.6rem, .76vw, .72rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* 18 — BLANK Oberflächentechnik: Chrom auf Nacht, harter Schnitt in Papier. */
.spec-chromschnitt {
  display: grid;
  grid-template-rows: 1.6fr 1fr;
  width: 100%;
  min-height: 100%;
}

.spec-chromschnitt .chromschnitt-wort {
  display: grid;
  place-items: center;
  background: #0a0b0a;
  padding: clamp(24px, 3vw, 48px);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: -0.04em;
  /* Poster-Chrom der Website: Verlauf als stehende Vertretung der
     gerechneten WebGL-Fläche. Der Verlauf wird auf die Höhe der Zeile
     gestaucht — über die ganze Platte gespannt träfe die Schrift nur das
     dunkle Mittelstück und bliebe ein Fleck. */
  background-image: linear-gradient(177deg,
    #2c2d2b 0%, #babcb4 20%, #fdfdfa 33%, #6f716b 46%,
    #191a18 55%, #8d8f88 68%, #dfe0da 82%, #3a3b38 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 1.05em;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-color: #0a0b0a;
}

.spec-chromschnitt .chromschnitt-galerie {
  display: grid;
  align-content: space-evenly;
  gap: 0;
  background: #f4f1e9;
  padding: clamp(12px, 1.6vw, 24px) clamp(24px, 3vw, 48px);
}

.spec-chromschnitt .chromschnitt-galerie i {
  display: block;
  height: 1px;
  background: #d9d5c9;
  position: relative;
}

.spec-chromschnitt .chromschnitt-galerie i::after {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 22%;
  height: 5px;
  background: #11130f;
}

.spec-chromschnitt .chromschnitt-galerie i:last-child::after {
  background: #ff342e;
}

.archive {
  padding: clamp(70px, 10vw, 150px) clamp(20px, 4vw, 64px);
  background: var(--cobalt);
  color: var(--chalk);
}

.archive details {
  border-top: 6px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.archive summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 150px;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 7vw, 7rem);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .85;
}

.archive summary::-webkit-details-marker {
  display: none;
}

.archive summary::after {
  display: grid;
  width: clamp(54px, 7vw, 92px);
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid currentColor;
  content: "+";
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
}

.archive details[open] summary::after {
  content: "–";
}

.archive__intro {
  max-width: 62ch;
  margin: 0 0 60px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.archive__groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 90px);
  padding: 20px 0 clamp(55px, 8vw, 100px);
}

.archive__group h3 {
  margin: 0 0 22px;
  color: var(--acid);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

.archive__list a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .45);
  text-decoration: none;
}

.archive__list a:hover,
.archive__list a:focus-visible {
  color: var(--acid);
}

.archive__list small {
  color: rgba(255, 255, 255, .7);
  font-size: .68rem;
  letter-spacing: .06em;
  text-align: right;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  padding: clamp(40px, 6vw, 85px) clamp(20px, 4vw, 64px);
  background: var(--carbon);
  color: var(--chalk);
}

.site-footer__statement {
  max-width: 10ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 7vw, 7rem);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .84;
}

.site-footer__meta {
  max-width: 42ch;
  text-align: right;
}

.site-footer__meta p {
  margin: 0 0 14px;
  color: var(--muted-light);
}

.site-footer__meta a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .masthead__stage {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .masthead__number {
    position: absolute;
    top: 18%;
    right: 0;
    z-index: 0;
    opacity: .18;
    font-size: 52vw;
  }

  .masthead__copy {
    position: relative;
    z-index: 1;
  }

  .masthead__intro {
    margin-left: 0;
  }

  .work,
  .work:nth-of-type(even) {
    min-height: auto;
    grid-template-areas: "copy" "visual";
    grid-template-columns: 1fr;
  }

  .work__copy {
    min-height: 430px;
  }

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

@media (max-width: 680px) {
  .masthead {
    background: var(--carbon);
  }

  .masthead__bar {
    align-items: flex-start;
  }

  .masthead__nav {
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
  }

  .masthead__stage {
    padding: 55px 0;
  }

  .masthead h1 {
    font-size: clamp(3.5rem, 18vw, 5.7rem);
  }

  .masthead__foot {
    align-items: end;
  }

  .masthead__ledger {
    max-width: 18ch;
    flex-wrap: wrap;
    gap: 4px 10px;
  }

  .collection__head {
    min-height: 34svh;
    grid-template-columns: 1fr;
    align-content: end;
  }

  .collection__edition {
    align-self: end;
  }

  .work {
    gap: 28px;
    padding: 24px 18px 34px;
  }

  .work__copy {
    min-height: 390px;
  }

  .work__visual {
    min-height: 330px;
  }

  .work__title {
    font-size: clamp(2.9rem, 16vw, 5rem);
  }

  .spec-focus {
    grid-template-columns: 1.15fr .85fr;
  }

  .riso-red {
    left: 0;
  }

  .riso-blue,
  .lab-shape--wave {
    right: 0;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer__meta {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
