/* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
   PARAFIX · creative with intelligence
   Strict black/white · italic display × mono labels · one red accent
   ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ */

:root {
  --paper: #ffffff;
  --paper-2: #f5f5f5;
  --ink: #0a0a0a;
  --ink-2: #1a1a1a;
  --muted: rgba(10,10,10,0.55);
  --faint: rgba(10,10,10,0.12);
  --accent: #d3361f;
  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  --sans: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, sans-serif;
  --gutter: clamp(20px, 5vw, 80px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--paper); width: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: default;
  background-image:
    radial-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.018) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 2px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--ink); color: var(--paper); }

/* ░░░ FIXED CHROME ░░░ */
.chrome-tl, .chrome-tr, .chrome-bl, .chrome-br {
  position: fixed;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 8px;
}
.chrome-tl { top: 18px; left: 22px; }
.chrome-tr { top: 18px; right: 22px; }
.chrome-bl { bottom: 18px; left: 22px; }
.chrome-br { bottom: 18px; right: 22px; }
.chrome-tl .dot {
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
.chrome-tl .slash { color: var(--muted); }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

/* ░░░ HERO — VERTICAL STACK ░░░ */
.hero {
  min-height: 100vh;
  width: 100%;
  position: relative;
  padding: 14vh var(--gutter) 18vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1.5px solid var(--ink);
  overflow: hidden;
}
.hero-stack {
  position: relative;
  z-index: 2;
}
.hero-line {
  font-family: var(--serif);
  line-height: 0.88;
  letter-spacing: -0.04em;
  font-weight: 400;
  font-size: clamp(64px, 14vw, 240px);
  white-space: nowrap;
}
.hero-line.one {
  text-align: left;
  animation: rise 1.1s 0.1s cubic-bezier(.2,.7,.2,1) both;
}
.hero-line.two {
  text-align: center;
  font-size: clamp(40px, 7vw, 120px);
  font-style: italic;
  color: var(--muted);
  margin: -0.04em 0;
  animation: rise 1.1s 0.35s cubic-bezier(.2,.7,.2,1) both;
}
.hero-line.three {
  text-align: right;
  animation: rise 1.1s 0.6s cubic-bezier(.2,.7,.2,1) both;
}
.hero-line .word.italic { font-style: italic; }
.hero-line .bracket { color: var(--faint); margin: 0 0.05em; font-style: normal; }
.hero-line .caret {
  display: inline-block;
  width: 0.4em;
  margin-left: 0.05em;
  animation: blink 1s step-end infinite;
  font-style: normal;
  color: var(--ink);
}
@keyframes blink { 50% { opacity: 0; } }
@keyframes rise {
  from { transform: translateY(40px); opacity: 0; clip-path: inset(0 0 100% 0); }
  to { transform: translateY(0); opacity: 1; clip-path: inset(0 0 0 0); }
}

.hero-aside {
  position: absolute;
  bottom: 10vh;
  left: var(--gutter);
  max-width: 460px;
  z-index: 3;
  animation: fade-in 1.4s 1.2s both;
}
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.aside-rule {
  width: 56px;
  height: 1px;
  background: var(--ink);
  margin-bottom: 16px;
}
.aside-text {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.aside-text em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  letter-spacing: -0.01em;
}

.grid-life {
  position: absolute;
  bottom: 10vh;
  right: var(--gutter);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1;
  color: var(--ink);
  opacity: 0.55;
  animation: fade-in 1.4s 1.4s both;
}
.grid-life::before {
  content: '◇ life · n=364';
  display: block;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
#life {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--ink);
}

@media (max-width: 900px) {
  .hero-aside { position: static; margin-top: 56px; max-width: 100%; }
  .grid-life { display: none; }
}

/* ░░░ MARQUEE ░░░ */
.marquee {
  border-bottom: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.02em;
  white-space: nowrap;
  animation: scroll 32s linear infinite;
  align-items: center;
  width: max-content;
}
.marquee-track .sep { color: var(--paper); opacity: 0.4; font-style: normal; font-size: 0.7em; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ░░░ SHARED META ░░░ */
.p-meta, .ms-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 14px;
  margin-bottom: 56px;
}
.p-meta .status { color: var(--ink); opacity: 0.85; }
.p-meta .status.live::before, .p-meta .status.rd::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  background: currentColor;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: 1px;
}

/* ░░░ MANIFEST ░░░ */
.manifest-slide {
  min-height: 100vh;
  width: 100%;
  padding: 14vh var(--gutter);
  border-bottom: 1.5px solid var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ms-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 24px);
}
.ms-line {
  font-family: var(--serif);
  font-size: clamp(40px, 7.5vw, 130px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 400;
  animation: ms-rise .9s cubic-bezier(.2,.7,.2,1) both;
}
.ms-line:nth-child(1) { animation-delay: 0.1s; }
.ms-line:nth-child(2) { animation-delay: 0.3s; }
.ms-line:nth-child(3) { animation-delay: 0.5s; }
.ms-line em { font-style: italic; color: var(--muted); }
@keyframes ms-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
.ms-tagline {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 40px);
  letter-spacing: -0.01em;
  padding-top: 48px;
  border-top: 1px solid var(--ink);
  display: flex;
  gap: 24px;
  align-items: baseline;
  flex-wrap: wrap;
}
.ms-tagline em { font-style: italic; color: var(--ink); font-weight: 500; }
.ms-tagline .ms-and { color: var(--faint); }

/* ░░░ PROJECTS INTRO ░░░ */
.proj-intro {
  padding: 12vh var(--gutter) 6vh;
  border-bottom: 1.5px solid var(--ink);
}
.pi-title {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
  max-width: 24ch;
}
.pi-title em { font-style: italic; color: var(--muted); }

/* ░░░ PROJECT — brand-themed (vars per project) ░░░ */
.project {
  padding: 14vh var(--gutter);
  border-bottom: 1.5px solid var(--ink);
  background: var(--brand-soft, var(--paper));
  color: var(--brand-ink, var(--ink));
  position: relative;
}
.project .p-meta {
  color: var(--brand-ink, var(--ink));
  border-color: currentColor;
  opacity: 0.95;
}
.project .p-meta .status { color: inherit; }
.project .p-kind { color: var(--brand, var(--ink)); }
.project .p-kind::before { background: currentColor; }
.project .p-name { color: var(--brand-ink, var(--ink)); }
.project .p-name em { color: var(--brand, var(--ink)); font-style: italic; }
.project .p-deck { color: var(--brand-ink, var(--ink)); }
.project .p-deck em { color: var(--brand, var(--ink)); opacity: 1; }
.project .p-link { color: var(--brand, var(--ink)); border-color: currentColor; }

.proj-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.proj-split.flip .proj-text { order: 2; }
.proj-split.flip .proj-visual { order: 1; }
.proj-text { max-width: 56ch; }

.p-kind {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.p-kind::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--ink);
}
.p-name {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 156px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin-bottom: 32px;
  color: var(--ink);
}
.p-name em { font-style: italic; }
.p-deck {
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.42;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 40px;
}
.p-deck em { font-style: italic; opacity: 0.7; }
.p-link {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 4px;
  transition: padding-right .2s;
  color: var(--ink);
}
.p-link:hover { padding-right: 12px; }

@media (max-width: 900px) {
  .proj-split { grid-template-columns: 1fr; }
  .proj-split.flip .proj-text { order: 1; }
  .proj-split.flip .proj-visual { order: 2; }
}

/* ░░░ BROWSER MOCKUP — SHARED, themed via project vars ░░░ */
.browser {
  background: var(--brand-soft, var(--paper));
  border: 1.5px solid var(--brand-ink, var(--ink));
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--brand-ink, var(--ink));
  transition: transform .3s ease, box-shadow .3s ease;
}
.browser:hover {
  transform: translate(-3px, -3px);
  box-shadow: 12px 12px 0 var(--brand-ink, var(--ink));
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: var(--brand-ink, var(--ink));
  color: var(--brand-soft, var(--paper));
  font-family: var(--mono);
  font-size: 11px;
}
.browser-bar > span:not(.url) {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.browser-bar .url {
  margin-left: 14px;
  letter-spacing: 0.04em;
  opacity: 0.85;
}
.browser-body {
  padding: 32px;
  min-height: 380px;
  background: var(--brand-soft, var(--paper));
  color: var(--brand-ink, var(--ink));
}

/* ░░░ MOCK · DRIES (indigo) ░░░ */
.db-nav {
  display: flex;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.db-nav span { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.5; }
.db-eye {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.db-h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.db-h1 em { font-style: italic; color: var(--brand); }
.db-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}
.db-stats > div { display: flex; flex-direction: column; gap: 4px; }
.db-stats strong {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: var(--brand);
  letter-spacing: -0.02em;
  opacity: 1;
}

/* ░░░ MOCK · POPINN (coral) ░░░ */
.pop-body {
  background:
    radial-gradient(circle at 85% -10%, rgba(232,93,58,0.22), transparent 55%),
    var(--brand-soft);
}
.pop-eye {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.pop-h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.pop-h1 em { font-style: italic; color: var(--brand); }
.pop-search {
  display: flex;
  gap: 6px;
  align-items: center;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(91,31,13,0.15);
  border-radius: 999px;
  padding: 6px;
  margin-bottom: 36px;
  width: fit-content;
}
.ps-pill {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  background: white;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(91,31,13,0.1);
}
.ps-go {
  width: 32px; height: 32px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
}
.pop-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pop-card {
  background: white;
  border: 1px solid rgba(91,31,13,0.12);
  border-radius: 8px;
  padding: 8px;
  font-family: var(--sans);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pc-img {
  aspect-ratio: 4/3;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.pc-img.v1 { background: linear-gradient(135deg, #ffd1bd 0%, #ffaa85 60%, #e85d3a 100%); }
.pc-img.v2 { background: linear-gradient(135deg, #fdba74 0%, #fb923c 60%, #c2410c 100%); }
.pc-img.v3 { background: linear-gradient(135deg, #fde68a 0%, #f59e0b 60%, #92400e 100%); }
.pc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.4), transparent 50%);
}
.pc-name { font-size: 11px; }
.pc-name em { font-family: var(--serif); font-style: italic; font-size: 13px; }
.pc-price {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--brand);
  font-weight: 500;
}

/* ░░░ MOCK · ORBIS RECORDS (amber on burgundy) ░░░ */
.or-sleeve {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1.5px solid var(--brand);
  background: var(--brand-soft);
  color: var(--brand-ink);
  box-shadow: 8px 8px 0 var(--brand);
  transition: transform .3s ease, box-shadow .3s ease;
}
.or-sleeve:hover { transform: translate(-3px, -3px); box-shadow: 12px 12px 0 var(--brand); }
.or-cover {
  aspect-ratio: 1/1;
  background:
    radial-gradient(circle at 30% 20%, rgba(217,119,6,0.18), transparent 50%),
    var(--brand-soft);
  color: var(--brand-ink);
  position: relative;
  overflow: hidden;
  border-right: 1.5px solid var(--brand);
}
.or-vinyl {
  position: absolute;
  top: 50%; left: 50%;
  width: 78%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, #000 0px, #000 1px, #1a1206 2px, #1a1206 3px),
    radial-gradient(circle, #000 0%, #000 70%);
  animation: spin-vinyl 12s linear infinite;
  box-shadow: 0 0 60px rgba(0,0,0,0.7);
}
@keyframes spin-vinyl { from { transform: translate(-50%, -50%) rotate(0); } to { transform: translate(-50%, -50%) rotate(360deg); } }
.or-vinyl::before {
  content: '';
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand) 0%, #92400e 70%, var(--brand-soft) 100%);
  border: 1px solid var(--brand);
}
.or-vinyl::after {
  content: '';
  position: absolute;
  inset: 47%;
  border-radius: 50%;
  background: var(--brand-soft);
  border: 1px solid var(--brand);
}
.or-mark {
  position: absolute;
  top: 20px; left: 22px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--brand);
  z-index: 2;
}
.or-mark em { font-style: italic; color: var(--brand-ink); }
.or-cat {
  position: absolute;
  bottom: 20px; left: 22px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--brand);
  opacity: 0.85;
  z-index: 2;
}
.or-tracklist {
  padding: 28px 24px;
  background: var(--brand-soft);
  color: var(--brand-ink);
  font-family: var(--mono);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.or-side-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  border-bottom: 1px solid rgba(217,119,6,0.25);
  padding-bottom: 6px;
}
.or-tracklist ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.or-tracklist li {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 12px;
  align-items: baseline;
  font-size: 11px;
  letter-spacing: 0.02em;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(253,232,196,0.15);
}
.or-tracklist li:last-child { border-bottom: none; }
.or-tracklist li > span:first-child { color: var(--brand); }
.or-tracklist .t {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--brand-ink);
}
.or-tracklist .d { opacity: 0.6; color: var(--brand); }

@media (max-width: 700px) {
  .or-sleeve { grid-template-columns: 1fr; }
  .or-cover { border-right: none; border-bottom: 1.5px solid var(--brand); }
}

/* ░░░ MOCK · ORBIS RECORDS · b/w catalogue wall (new) ░░░ */
.p-orbis { background: #0a0a0a; color: #f5f5f5; border-bottom-color: rgba(245,245,245,0.2); }
.p-orbis .p-kind { color: #f5f5f5; opacity: 0.85; }
.p-orbis .p-kind::before { background: #f5f5f5; }
.p-orbis .p-name { color: #f5f5f5; }
.p-orbis .p-name em { color: #f5f5f5; font-style: italic; }
.p-orbis .p-deck { color: rgba(245,245,245,0.88); }
.p-orbis .p-deck em { color: #f5f5f5; opacity: 1; font-style: italic; }
.p-orbis .p-link { color: #f5f5f5; border-bottom-color: #f5f5f5; }
.p-orbis .p-meta { color: rgba(245,245,245,0.7); border-bottom-color: rgba(245,245,245,0.4); }
.p-orbis .p-meta .status { color: #f5f5f5; }

.or-wall {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  align-items: start;
}
.or-logo-frame {
  background: #f5f5f5;
  color: #0a0a0a;
  padding: 24px;
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.or-logo-frame:hover { transform: rotate(-1.5deg); }
.or-logo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
}
.or-frame-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  border-top: 1px solid rgba(10,10,10,0.2);
  padding-top: 14px;
  opacity: 0.7;
}
.or-cat-block {
  background: rgba(245,245,245,0.03);
  border: 1px solid rgba(245,245,245,0.18);
  padding: 24px;
}
.or-cat-head {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(245,245,245,0.25);
  padding-bottom: 12px;
  margin-bottom: 16px;
  opacity: 0.7;
}
.or-cat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.or-cat-list li {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(245,245,245,0.12);
  transition: padding-left .2s, background .2s;
  cursor: default;
}
.or-cat-list li:last-child { border-bottom: none; }
.or-cat-list li:hover { padding-left: 8px; background: rgba(245,245,245,0.04); }
.or-cat-list .y {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  opacity: 0.55;
}
.or-cat-list .t {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.or-cat-list .t em { font-style: italic; }
.or-cat-list .a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  opacity: 0.65;
  text-align: right;
}
@media (max-width: 800px) {
  .or-wall { grid-template-columns: 1fr; }
  .or-cat-list li { grid-template-columns: 30px 1fr; }
  .or-cat-list .a { grid-column: 2; padding-top: 2px; opacity: 0.5; text-align: left; }
}

/* ░░░ KLEURENMONSTER · character left, BHAG story right ░░░ */
.p-kleurenmonster {
  position: relative;
  overflow: hidden;
}
.km-bg-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.km-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: km-float 11s ease-in-out infinite;
}
.km-blob.b1 { width: 45%; height: 55%; top: -15%; left: -10%; background: var(--c1); }
.km-blob.b2 { width: 35%; height: 45%; top: 30%; right: 10%; background: var(--c2); animation-delay: -2s; }
.km-blob.b3 { width: 38%; height: 50%; bottom: -10%; right: -10%; background: var(--c3); animation-delay: -4s; }
.km-blob.b4 { width: 30%; height: 40%; top: 10%; right: -8%; background: var(--c4); animation-delay: -6s; }
@keyframes km-float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-25px, 20px) scale(0.92); }
}
.km-star {
  position: absolute;
  color: var(--brand);
  font-size: 16px;
  z-index: 2;
  text-shadow: 0 0 20px var(--brand);
  animation: km-twinkle 3.4s ease-in-out infinite;
}
.km-star.s1 { top: 10%; left: 18%; font-size: 24px; }
.km-star.s2 { top: 22%; left: 38%; animation-delay: 0.6s; }
.km-star.s3 { top: 55%; left: 8%; animation-delay: 1.2s; font-size: 22px; color: var(--c1); text-shadow: 0 0 20px var(--c1); }
.km-star.s4 { bottom: 18%; left: 32%; animation-delay: 0.3s; font-size: 26px; color: var(--c3); text-shadow: 0 0 20px var(--c3); }
.km-star.s5 { top: 70%; left: 22%; animation-delay: 1.8s; color: var(--c4); text-shadow: 0 0 20px var(--c4); }
.km-star.s6 { top: 38%; left: 50%; animation-delay: 2.4s; font-size: 18px; color: var(--c2); text-shadow: 0 0 20px var(--c2); }
.km-star.s7 { bottom: 35%; left: 14%; animation-delay: 0.9s; font-size: 20px; color: var(--c5); text-shadow: 0 0 20px var(--c5); }
@keyframes km-twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.85) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.25) rotate(180deg); }
}

.km-split {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.km-visual {
  display: grid;
  place-items: center;
  position: relative;
}
.km-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter:
    drop-shadow(0 30px 60px rgba(0,0,0,0.55))
    drop-shadow(0 0 80px rgba(255,210,63,0.18));
  animation: km-breathe 7s ease-in-out infinite;
}
@keyframes km-breathe {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}
.km-text { max-width: 52ch; }
.p-kleurenmonster .p-name { text-shadow: 0 2px 16px rgba(0,0,0,0.5); }
.p-kleurenmonster .p-name em { font-style: italic; }
.p-kleurenmonster .p-note {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245,245,245,0.75);
  margin-bottom: 36px;
  border-left: 2px solid var(--brand);
  padding-left: 18px;
}
.p-kleurenmonster .p-note em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--brand);
  opacity: 1;
}

@media (max-width: 900px) {
  .km-split { grid-template-columns: 1fr; }
  .km-img { max-width: 320px; margin: 0 auto; }
}

/* ░░░ COLOPHON ░░░ */
.colophon {
  background: var(--ink);
  color: var(--paper);
  padding: 18vh var(--gutter) 0;
  position: relative;
  overflow: hidden;
}
.col-marker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 14px;
  margin-bottom: 64px;
}
.col-title {
  font-family: var(--serif);
  font-size: clamp(48px, 9vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 400;
  max-width: 14ch;
  margin-bottom: 80px;
}
.col-title em { font-style: italic; color: rgba(255,255,255,0.55); }
.col-mail {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--serif);
  font-size: clamp(40px, 8vw, 140px);
  line-height: 1;
  letter-spacing: -0.02em;
  border-bottom: 2px solid var(--paper);
  padding-bottom: 8px;
  margin-bottom: 100px;
  transition: letter-spacing .3s ease;
}
.col-mail .at {
  font-style: italic;
  color: var(--paper);
  margin: 0 0.05em;
  display: inline-block;
  animation: spin 8s linear infinite;
}
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.col-mail:hover { letter-spacing: 0; }
.col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 40px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}
.col-grid a { color: var(--paper); border-bottom: 1px solid rgba(255,255,255,0.4); }
.col-grid .lbl {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
@media (max-width: 720px) { .col-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }

.col-foot {
  margin-top: 80px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 600px) {
  .chrome-tl, .chrome-tr, .chrome-bl, .chrome-br { font-size: 9px; }
  .chrome-tl { top: 12px; left: 14px; }
  .chrome-tr { top: 12px; right: 14px; }
  .chrome-bl { bottom: 12px; left: 14px; }
  .chrome-br { bottom: 12px; right: 14px; }
}
