:root {
  color-scheme: light dark;
  --paper: #ecebe6;
  --ink: #121210;
  --ink-dim: rgba(18, 18, 16, 0.56);
  --ink-faint: rgba(18, 18, 16, 0.14);
  --bone: #ece9e2;
  --bone-dim: rgba(236, 233, 226, 0.55);
  --bone-faint: rgba(236, 233, 226, 0.16);
  --acid: #cfff52;
  --font-display: "Archivo", system-ui, sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body::after {
  content: "";
  position: fixed;
  inset: -8%;
  width: 116%;
  height: 116%;
  pointer-events: none;
  z-index: 200;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(6) infinite;
  will-change: transform;
  transform: translateZ(0);
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-4%, 3%); }
  50% { transform: translate(3%, -4%); }
  75% { transform: translate(-2%, -2%); }
}

::selection { background: var(--ink); color: var(--acid); }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--paper);
  display: flex;
  align-items: flex-end;
}
.preloader__inner {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: var(--pad);
}
.preloader__count {
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 800;
  font-stretch: 115%;
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.preloader__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
  padding-bottom: 0.5rem;
  text-align: right;
}
.preloader__br { display: none; }
@media (max-width: 768px) {
  .preloader__sep { display: none; }
  .preloader__br { display: inline; }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--acid);
  border: 0;
  box-shadow: 0 2px 10px rgba(18, 18, 16, 0.28);
  pointer-events: none;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out);
}
.cursor.is-hover {
  width: 76px;
  height: 76px;
  background: var(--acid);
}
.cursor__label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  opacity: 0;
  transition: opacity 0.12s var(--ease-out);
  white-space: nowrap;
}
.cursor.is-hover .cursor__label { opacity: 1; transition: opacity 0.25s var(--ease-out); }
@media (hover: none), (max-width: 768px) {
  .cursor { display: none; }
}

html.has-cursor,
html.has-cursor * { cursor: none !important; }

.logo {
  margin-right: auto;
  display: block;
  width: clamp(2.1rem, 4.5vw, 2.7rem);
  aspect-ratio: 1 / 1;
  border-radius: 5px;
  overflow: hidden;
  line-height: 0;
}
.logo__img {
  display: block;
  width: 100%;
  height: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(0.55rem, 1.4vw, 0.85rem) var(--pad);
  color: var(--ink);
  transition: color 0.5s var(--ease-out);
  pointer-events: none;
}
.header.is-dark { color: var(--bone); }
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(236, 235, 230, 0.55);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--ink-faint);
  opacity: 0;
  transition: opacity 0.8s ease-in-out, background-color 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
}
.header.is-stuck::before { opacity: 1; }
.header.is-dark::before {
  background: rgba(18, 18, 16, 0.5);
  border-bottom-color: var(--bone-faint);
}
.header a, .header button { pointer-events: auto; }
.header__nav { display: flex; gap: clamp(1.2rem, 3vw, 2.6rem); }
.header__link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  padding: 0.25rem 0;
}
.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.header__link:hover::after { transform: scaleX(1); transform-origin: left; }
.lang {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.lang__btn {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  padding: 0.25rem 0;
  opacity: 0.45;
  transition: opacity 0.3s;
}
.lang__btn:hover { opacity: 1; }
.lang__btn[aria-current="page"] { opacity: 1; }
.lang__sep { opacity: 0.35; }

.menu__lang {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.header__meta { display: flex; align-items: center; gap: 1.25rem; }
.header__clock {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  font-variant-numeric: tabular-nums;
}
.header__burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  width: 34px;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 4px 0;
}
.header__burger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: currentColor;
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}
.header__burger.is-open span:first-child { transform: translateY(4.25px) rotate(45deg); }
.header__burger.is-open span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__burger { display: flex; }
}

.menu {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
}
.menu__nav { display: flex; flex-direction: column; gap: 0.5rem; }
.menu__link {
  font-size: clamp(2.6rem, 11vw, 4.5rem);
  font-weight: 800;
  font-stretch: 115%;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.menu__link em {
  font-size: 0.9rem;
  color: var(--ink-dim);
}
.menu__foot {
  position: absolute;
  bottom: var(--pad);
  left: var(--pad);
  right: var(--pad);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--pad) + 3.5rem) var(--pad) var(--pad);
  overflow: hidden;
  background:
    radial-gradient(110% 80% at 75% 20%, rgba(255, 255, 255, 0.6), transparent 60%),
    radial-gradient(90% 90% at 15% 85%, rgba(18, 18, 16, 0.06), transparent 60%),
    var(--paper);
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero__top,
.hero__bottom,
.hero__title { position: relative; }

.hero__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.hero__kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
  max-width: 24ch;
  white-space: nowrap;
}
.hero__kicker--right { text-align: right; max-width: none; }

.hero__title {
  font-size: clamp(3.4rem, 13.5vw, 12.5rem);
  font-weight: 800;
  font-stretch: 118%;
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: auto 0 0 -0.069em;
  user-select: none;
  color: var(--ink);
}
.hero__line { display: flex; align-items: baseline; overflow: hidden; white-space: nowrap; }

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(1.5rem, 4vh, 3.5rem);
}
.hero__blurb {
  max-width: 62ch;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  color: var(--ink-dim);
  line-height: 1.55;
}
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: var(--ink-faint);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--ink);
  animation: scrollcue 1.8s var(--ease-out) infinite;
}
@keyframes scrollcue {
  0% { top: -100%; }
  60%, 100% { top: 100%; }
}

@media (max-width: 768px) {
  .hero__bottom { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .hero__scroll { display: none; }
  .hero__kicker--right { display: none; }
}

.split { display: inline-block; }
.split .char {
  display: inline-block;
  will-change: transform;
}

[data-reveal] { opacity: 0; }

.marquee {
  border-top: 1px solid var(--ink-faint);
  border-bottom: 1px solid var(--ink-faint);
  padding: clamp(1rem, 2.5vw, 1.8rem) 0;
  overflow: hidden;
}
.marquee__track { display: flex; width: max-content; }
.marquee__inner {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-right: clamp(1.5rem, 4vw, 3.5rem);
  white-space: nowrap;
}
.marquee__inner span {
  font-size: clamp(1.6rem, 4.5vw, 3.6rem);
  font-weight: 700;
  font-stretch: 112%;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.marquee__inner i {
  font-style: normal;
  color: var(--acid);
  -webkit-text-stroke: 1px var(--acid);
  font-size: clamp(1rem, 2.5vw, 1.8rem);
}

section, .footer { padding: clamp(5rem, 12vh, 9rem) var(--pad); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--ink-faint);
  padding-bottom: 1.1rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.section-head__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.section-head__label em {
  color: var(--ink-dim);
  margin-right: 0.6rem;
}
.section-head__note {
  font-size: 0.8rem;
  color: var(--ink-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.art-2 {
  background:
    radial-gradient(80% 80% at 75% 20%, #f6f4ee 0%, transparent 50%),
    radial-gradient(100% 100% at 20% 85%, #34332e 0%, transparent 65%),
    linear-gradient(210deg, #8d8b82, #1d1d1a 80%);
}
.art-2::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.logos {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.6rem, 1.4vw, 1.1rem);
}
.logo-tile__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  aspect-ratio: 4 / 3;
  padding: 1rem;
  border: 1px solid var(--ink-faint);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.4s, transform 0.4s;
}
.logo-tile__link:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
}
.logo-tile__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 8rem;
}
.logo-tile__mark img {
  max-width: 98%;
  max-height: 8rem;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 0.4s, opacity 0.4s;
}
.logo-tile__link:hover .logo-tile__mark img {
  filter: none;
  opacity: 1;
}
.logo-tile__mark.has-img .logo-tile__name { display: none; }

.logo-tile__name {
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  font-weight: 800;
  font-stretch: 115%;
  letter-spacing: -0.02em;
  color: var(--ink-dim);
  transition: color 0.4s;
}
.logo-tile__link:hover .logo-tile__name { color: var(--ink); }

.logo-tile__tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
}

@media (max-width: 760px) {
  .logos { grid-template-columns: repeat(2, 1fr); }
}

.about__statement {
  font-size: clamp(1.3rem, 3vw, 2.5rem);
  font-weight: 600;
  font-stretch: 108%;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 26ch;
}
.about__statement .word { opacity: 0.13; }
.about__statement em { font-weight: 400; }

.about__lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(340px, 38vw, 500px);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}
.about__lead .about__statement { max-width: 37ch; }

.about__media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
}
.about__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.about__caption {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--paper);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  mix-blend-mode: difference;
}

@media (max-width: 860px) {
  .about__lead { grid-template-columns: 1fr; }
}

.about__stats {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr 1fr 0.85fr;
  gap: 2rem;
  margin-top: clamp(3.5rem, 9vw, 7rem);
  border-top: 1px solid var(--ink-faint);
  padding-top: 2.2rem;
}
.stat { display: flex; flex-direction: column; gap: 0.4rem; }
.stat__num {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 800;
  font-stretch: 118%;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.stat__num::after {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  font-size: 0.5em;
  vertical-align: 0.95em;
  margin-left: 0.15em;
  border-radius: 2px;
  background-color: var(--acid);
  background-image:
    linear-gradient(var(--ink), var(--ink)),
    linear-gradient(var(--ink), var(--ink));
  background-repeat: no-repeat;
  background-position: center, center;
  background-size: 70% 16%, 16% 70%;
}
.stat__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
}

@media (max-width: 960px) and (min-width: 641px) {
  .about__stats { grid-template-columns: repeat(2, 1fr); gap: 2.4rem 2rem; }
}
@media (max-width: 640px) {
  .about__stats { grid-template-columns: 1fr; gap: 1.6rem; }
  .stat { flex-direction: row; align-items: baseline; justify-content: space-between; gap: 1rem; }
  .stat__num { flex: none; white-space: nowrap; }
  .stat__label { text-align: right; }
}

.services__list { display: flex; flex-direction: column; }
.service {
  display: grid;
  grid-template-columns: 4rem 1fr 1.2fr;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: start;
  padding: clamp(1.8rem, 4vw, 2.8rem) 0;
  border-bottom: 1px solid var(--ink-faint);
}
.service:first-child { border-top: 1px solid var(--ink-faint); }
.service__num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--acid);
  border-radius: 3px;
  padding: 0.15rem 0.4rem;
  justify-self: start;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}
.service__title {
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  font-weight: 700;
  font-stretch: 112%;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.service__desc {
  color: var(--ink-dim);
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  max-width: 48ch;
}

@media (max-width: 768px) {
  .service { grid-template-columns: 1fr; gap: 0.7rem; }
  .service__num { margin-top: 0; }
}

.footer {
  background: var(--ink);
  color: var(--bone);
  display: flex;
  flex-direction: column;
}
.footer__kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  color: var(--bone-dim);
  margin-top: clamp(1rem, 3vw, 2.25rem);
  margin-bottom: 1.5rem;
}
.footer__cta {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.8rem, 2.5vw, 2rem);
  align-self: flex-start;
  font-size: clamp(2.5rem, 9.5vw, 9rem);
  font-weight: 800;
  font-stretch: 118%;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.4s;
  overflow: hidden;
  margin-bottom: clamp(1rem, 3vw, 2.25rem);
}
.footer__cta:hover { color: var(--acid); }
html[lang="nl"] .footer__cta { font-size: clamp(1.75rem, 6.4vw, 6.5rem); }
.footer__arrow {
  width: clamp(2.2rem, 7vw, 6.5rem);
  height: clamp(2.2rem, 7vw, 6.5rem);
  flex-shrink: 0;
  transition: transform 0.5s var(--ease-out);
}
.footer__cta:hover .footer__arrow { transform: translate(8%, -8%) rotate(8deg); }

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 2fr) minmax(0, 4fr);
  gap: 2rem;
  margin-top: clamp(4rem, 10vw, 8rem);
  padding-top: 2.2rem;
  border-top: 1px solid var(--bone-faint);
}
.footer__col { display: flex; flex-direction: column; gap: 0.55rem; font-size: 0.92rem; }
.footer__col a, .footer__col span { color: var(--bone-dim); transition: color 0.3s; }
.footer__col a:hover { color: var(--acid); }
.footer__col-label {
  font-size: 0.72rem !important;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--bone) !important;
  margin-bottom: 0.4rem;
}
.footer__fine {
  font-size: 0.74rem;
  line-height: 1.6;
  color: var(--bone-dim);
}

.footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(3rem, 7vw, 5rem);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bone-dim);
}
.footer__top { transition: color 0.3s; }
.footer__top:hover { color: var(--acid); }

@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  body::after, .hero__scroll-line::after { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* ---- Native dark theme ----
   The page advertises real dark-mode support (see <meta name="color-scheme">
   + this query). Browsers honour it, and Dark Reader detects native dark
   support and stops force-inverting the design — fixing the broken render.
   Palette mirrors the light theme: the cream/ink pair is swapped, the acid
   accent and the bone tones (used on dark surfaces) are kept. */
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #14130f;
    --ink: #ecebe6;
    --ink-dim: rgba(236, 235, 230, 0.56);
    --ink-faint: rgba(236, 235, 230, 0.16);
    /* --bone, --acid: already read as "light on dark", left unchanged */
  }

  /* Hero CSS background — visible before the WebGL canvas paints and for
     reduced-motion users (canvas is skipped). Canvas palette: main.js. */
  .hero {
    background:
      radial-gradient(110% 80% at 75% 20%, rgba(207, 255, 82, 0.05), transparent 60%),
      radial-gradient(90% 90% at 15% 85%, rgba(0, 0, 0, 0.5), transparent 60%),
      var(--paper);
  }

  /* Header glass — dark by default (matches the existing .is-dark variant) */
  .header::before {
    background: rgba(20, 19, 15, 0.6);
    border-bottom-color: var(--ink-faint);
  }

  /* Footer stays a distinct, deeper band rather than flipping to light */
  .footer { background: #0d0c09; }

  /* Foreground that sits on the acid-green accent must stay dark */
  .cursor__label,
  .service__num { color: #121210; }
  .stat__num::after {
    background-image:
      linear-gradient(#121210, #121210),
      linear-gradient(#121210, #121210);
  }

  /* Caption rides a real photo via mix-blend difference — keep it light */
  .about__caption { color: var(--bone); }

  /* Client logos: render as light marks so they read on the dark page,
     then reveal full colour on a light chip on hover (as in the light theme) */
  .logo-tile__mark img { filter: grayscale(1) invert(1); opacity: 0.72; }
  .logo-tile__link:hover { background: var(--bone); }
  .logo-tile__link:hover .logo-tile__mark img { filter: none; opacity: 1; }
}
